From 529d404c12e4001a67a6a57afd3a16a24d444198 Mon Sep 17 00:00:00 2001 From: rfi Date: Fri, 23 Feb 2024 14:35:50 +0700 Subject: [PATCH] ship skin comamnd and changing skin --- BLHX.Server.Common/Data/Data.cs | 4 +- .../Data/Model/ShipSkinTemplate.cs | 131 + BLHX.Server.Common/Database/Player.cs | 4 + .../20240223041338_ShipSkins.Designer.cs | 258 + .../Player/20240223041338_ShipSkins.cs | 29 + .../Player/PlayerContextModelSnapshot.cs | 6 + .../ShareCfg/ship_skin_template.json | 231492 +++++++++++++++ BLHX.Server.Game/Commands/Command.cs | 6 + BLHX.Server.Game/Commands/HelpCommand.cs | 2 +- BLHX.Server.Game/Commands/SkinCommand.cs | 54 + BLHX.Server.Game/Connection.cs | 16 +- BLHX.Server.Game/Handlers/P10.cs | 2 +- BLHX.Server.Game/Handlers/P12.cs | 16 +- BLHX.Server.Game/Handlers/P33.cs | 18 + BLHX.Server.Game/Handlers/P34.cs | 6 + 15 files changed, 232033 insertions(+), 11 deletions(-) create mode 100644 BLHX.Server.Common/Data/Model/ShipSkinTemplate.cs create mode 100644 BLHX.Server.Common/Migrations/Player/20240223041338_ShipSkins.Designer.cs create mode 100644 BLHX.Server.Common/Migrations/Player/20240223041338_ShipSkins.cs create mode 100644 BLHX.Server.Common/Resources/ShareCfg/ship_skin_template.json create mode 100644 BLHX.Server.Game/Commands/SkinCommand.cs create mode 100644 BLHX.Server.Game/Handlers/P33.cs diff --git a/BLHX.Server.Common/Data/Data.cs b/BLHX.Server.Common/Data/Data.cs index 89339fb..ede4255 100644 --- a/BLHX.Server.Common/Data/Data.cs +++ b/BLHX.Server.Common/Data/Data.cs @@ -1,6 +1,5 @@ using BLHX.Server.Common.Utils; using System.Reflection; -using System.Text.RegularExpressions; namespace BLHX.Server.Common.Data; @@ -14,6 +13,9 @@ public static class Data [LoadData("tradingport_template.json", LoadDataType.ShareCfg)] public static Dictionary GoldFieldTemplate { get; private set; } = null!; + [LoadData("ship_skin_template.json", LoadDataType.ShareCfg)] + public static Dictionary ShipSkinTemplate { get; private set; } = null!; + [LoadData("chapter_template.json", LoadDataType.ShareCfgData)] public static Dictionary ChapterTemplate { get; private set; } = null!; diff --git a/BLHX.Server.Common/Data/Model/ShipSkinTemplate.cs b/BLHX.Server.Common/Data/Model/ShipSkinTemplate.cs new file mode 100644 index 0000000..984bf8a --- /dev/null +++ b/BLHX.Server.Common/Data/Model/ShipSkinTemplate.cs @@ -0,0 +1,131 @@ +using System.Text.Json.Serialization; + +#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable. +namespace BLHX.Server.Common.Data +{ + public class ShipSkinTemplate + { + [JsonPropertyName("bg")] + public string Bg { get; set; } + + [JsonPropertyName("bg_sp")] + public string BgSp { get; set; } + + [JsonPropertyName("bgm")] + public string Bgm { get; set; } + + [JsonPropertyName("bound_bone")] + public dynamic BoundBone { get; set; } + + [JsonPropertyName("desc")] + public string Desc { get; set; } + + [JsonPropertyName("fx_container")] + public List> FxContainer { get; set; } + + [JsonPropertyName("group_index")] + public int GroupIndex { get; set; } + + [JsonPropertyName("gyro")] + public int Gyro { get; set; } + + [JsonPropertyName("hand_id")] + public int HandId { get; set; } + + [JsonPropertyName("id")] + public uint Id { get; set; } + + [JsonPropertyName("illustrator")] + public int Illustrator { get; set; } + + [JsonPropertyName("illustrator2")] + public int Illustrator2 { get; set; } + + [JsonPropertyName("l2d_animations")] + public dynamic L2DAnimations { get; set; } + + [JsonPropertyName("l2d_drag_rate")] + public dynamic L2DDragRate { get; set; } + + [JsonPropertyName("l2d_ignore_drag")] + public long L2DIgnoreDrag { get; set; } + + [JsonPropertyName("l2d_para_range")] + public dynamic L2DParaRange { get; set; } + + [JsonPropertyName("l2d_se")] + public dynamic L2DSe { get; set; } + + [JsonPropertyName("l2d_voice_calibrate")] + public dynamic L2DVoiceCalibrate { get; set; } + + [JsonPropertyName("lip_smoothing")] + public int LipSmoothing { get; set; } + + [JsonPropertyName("lip_sync_gain")] + public int LipSyncGain { get; set; } + + [JsonPropertyName("live2d_offset")] + public dynamic Live2DOffset { get; set; } + + [JsonPropertyName("live2d_offset_profile")] + public dynamic Live2DOffsetProfile { get; set; } + + [JsonPropertyName("main_UI_FX")] + public string MainUiFx { get; set; } + + [JsonPropertyName("name")] + public string Name { get; set; } + + [JsonPropertyName("painting")] + public string Painting { get; set; } + + [JsonPropertyName("prefab")] + public string Prefab { get; set; } + + [JsonPropertyName("rarity_bg")] + public string RarityBg { get; set; } + + [JsonPropertyName("ship_group")] + public uint ShipGroup { get; set; } + + [JsonPropertyName("ship_l2d_id")] + public dynamic ShipL2DId { get; set; } + + [JsonPropertyName("shop_id")] + public uint ShopId { get; set; } + + [JsonPropertyName("shop_type_id")] + public int ShopTypeId { get; set; } + + [JsonPropertyName("show_skin")] + public string ShowSkin { get; set; } + + [JsonPropertyName("skin_type")] + public int SkinType { get; set; } + + [JsonPropertyName("smoke")] + public dynamic Smoke { get; set; } + + [JsonPropertyName("special_effects")] + public dynamic SpecialEffects { get; set; } + + [JsonPropertyName("spine_action_offset")] + public dynamic SpineActionOffset { get; set; } + + [JsonPropertyName("spine_offset")] + public dynamic SpineOffset { get; set; } + + [JsonPropertyName("tag")] + public List Tag { get; set; } + + [JsonPropertyName("time")] + public dynamic Time { get; set; } + + [JsonPropertyName("voice_actor")] + public int VoiceActor { get; set; } + + [JsonPropertyName("voice_actor_2")] + public int VoiceActor2 { get; set; } + } +} diff --git a/BLHX.Server.Common/Database/Player.cs b/BLHX.Server.Common/Database/Player.cs index 3d665e4..a4d042c 100644 --- a/BLHX.Server.Common/Database/Player.cs +++ b/BLHX.Server.Common/Database/Player.cs @@ -90,6 +90,9 @@ namespace BLHX.Server.Common.Database new() { Id = 11 }, new() { Id = 12 } }); + e.Property(b => b.ShipSkins) + .HasJsonConversion() + .HasDefaultValue(new List() { }); e.Property(b => b.Adv) .HasDefaultValue(""); e.HasMany(b => b.Resources) @@ -149,6 +152,7 @@ namespace BLHX.Server.Common.Database public DateTime CreatedAt { 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; } = []; diff --git a/BLHX.Server.Common/Migrations/Player/20240223041338_ShipSkins.Designer.cs b/BLHX.Server.Common/Migrations/Player/20240223041338_ShipSkins.Designer.cs new file mode 100644 index 0000000..a3cea78 --- /dev/null +++ b/BLHX.Server.Common/Migrations/Player/20240223041338_ShipSkins.Designer.cs @@ -0,0 +1,258 @@ +// +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("20240223041338_ShipSkins")] + partial class ShipSkins + { + /// + 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.Player", b => + { + b.Property("Uid") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Adv") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasDefaultValue(""); + + b.Property("CreatedAt") + .HasColumnType("TEXT"); + + b.Property("DisplayInfo") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Exp") + .HasColumnType("INTEGER"); + + 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("Level") + .HasColumnType("INTEGER"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("ShipSkins") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("jsonb") + .HasDefaultValue("[]"); + + b.Property("Token") + .IsRequired() + .HasColumnType("TEXT"); + + 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.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.Database.Player", b => + { + b.Navigation("ResourceFields"); + + b.Navigation("Resources"); + + b.Navigation("Ships"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/BLHX.Server.Common/Migrations/Player/20240223041338_ShipSkins.cs b/BLHX.Server.Common/Migrations/Player/20240223041338_ShipSkins.cs new file mode 100644 index 0000000..0cd43e4 --- /dev/null +++ b/BLHX.Server.Common/Migrations/Player/20240223041338_ShipSkins.cs @@ -0,0 +1,29 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace BLHX.Server.Common.Migrations.Player +{ + /// + public partial class ShipSkins : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "ShipSkins", + table: "Players", + type: "jsonb", + nullable: false, + defaultValue: "[]"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "ShipSkins", + table: "Players"); + } + } +} diff --git a/BLHX.Server.Common/Migrations/Player/PlayerContextModelSnapshot.cs b/BLHX.Server.Common/Migrations/Player/PlayerContextModelSnapshot.cs index c9cbf58..ba786f6 100644 --- a/BLHX.Server.Common/Migrations/Player/PlayerContextModelSnapshot.cs +++ b/BLHX.Server.Common/Migrations/Player/PlayerContextModelSnapshot.cs @@ -56,6 +56,12 @@ namespace BLHX.Server.Common.Migrations.Player .IsRequired() .HasColumnType("TEXT"); + b.Property("ShipSkins") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("jsonb") + .HasDefaultValue("[]"); + b.Property("Token") .IsRequired() .HasColumnType("TEXT"); diff --git a/BLHX.Server.Common/Resources/ShareCfg/ship_skin_template.json b/BLHX.Server.Common/Resources/ShareCfg/ship_skin_template.json new file mode 100644 index 0000000..e30b204 --- /dev/null +++ b/BLHX.Server.Common/Resources/ShareCfg/ship_skin_template.json @@ -0,0 +1,231492 @@ +{ + "100000": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.35, + 0.67, + 0 + ] + ], + "cannon": [ + [ + 0.35, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.25, + 0 + ] + ] + }, + "desc": "Universal Bulin. Can be used to limit break all ships of Elite rarity or below.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 100000, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Universal Bulin", + "painting": "gin", + "prefab": "gin", + "rarity_bg": "", + "ship_group": 10000, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.09, + 0.59, + -0.15 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.83, + 2.24, + -0.59 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "100001": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.129, + 1.063, + 0 + ] + ], + "cannon": [ + [ + 1.129, + 1.027, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0, + 0 + ] + ] + }, + "desc": "Buli? Did I just get an upgrade buli? Now, I can fight too buli!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 100001, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Universal Enhanced Rigging (Experimental) +α", + "painting": "gin_2", + "prefab": "gin_2", + "rarity_bg": "", + "ship_group": 10000, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 4, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.461, + 2.161, + -0.15 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "100010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.02, + 0.6, + 0 + ] + ], + "cannon": [ + [ + -0.02, + 0.6, + 0 + ] + ], + "torpedo": [ + [ + -0.02, + 0.6, + 0 + ] + ] + }, + "desc": "Prototype Bulin MKII. Can be used to limit break all Super Rare ships.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 100010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prototype Bulin MKII", + "painting": "kin", + "prefab": "kin", + "rarity_bg": "", + "ship_group": 10001, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.266, + 0.329, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "100020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.644, + 1.272, + 0 + ] + ], + "cannon": [ + [ + 1.661, + 1.246, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Specialized Bulin Custom MKIII. Can be used to Limit Break all Ultra Rare ships.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 100020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Specialized Bulin Custom MKIII", + "painting": "buli_super", + "prefab": "buli_super", + "rarity_bg": "", + "ship_group": 10002, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.513, + 2.111, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_buli_super", + [ + 130, + 469, + 0 + ], + [ + 1.5 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 188, + -638, + 0 + ], + [ + 0.8 + ] + ], + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "101020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 0.74, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 0.79, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0, + 0 + ] + ] + }, + "desc": "Farragut-class destroyer – Dewey, Hull Number DD-349.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dewey", + "painting": "duwei", + "prefab": "duwei", + "rarity_bg": "", + "ship_group": 10102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.37, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 178, + "voice_actor_2": -1 + }, + "101021": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 0.74, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 0.79, + 0 + ] + ], + "torpedo": [ + [ + 0.119, + 0, + 0 + ] + ] + }, + "desc": "Saratoga went over there, and Lexington is... Oh, Commander, good morning! Are you here to play with us, or were you just out for some fresh air...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Longing", + "painting": "duwei_2", + "prefab": "duwei_2", + "rarity_bg": "", + "ship_group": 10102, + "ship_l2d_id": "", + "shop_id": 70212, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.37, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 178, + "voice_actor_2": -1 + }, + "101022": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.17, + 1.161, + 0 + ] + ], + "cannon": [ + [ + 1.207, + 1.131, + 0 + ] + ], + "torpedo": [ + [ + -0.008, + 0, + 0 + ] + ] + }, + "desc": "Lexington gave me this Christmas costume as a thank-you for always supporting her. Commander, do you think I look... pretty in it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 101022, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Christmas Thank-You", + "painting": "duwei_3", + "prefab": "duwei_3", + "rarity_bg": "", + "ship_group": 10102, + "ship_l2d_id": "", + "shop_id": 70282, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.37, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 178, + "voice_actor_2": -1 + }, + "101030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.151, + 0.607, + 0 + ] + ], + "cannon": [ + [ + -0.151, + 0.607, + 0 + ] + ], + "torpedo": [ + [ + 0.39, + 0.421, + 0 + ] + ] + }, + "desc": "Mahan-class destroyer - Cassin, Hull Number DD-372!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101030, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cassin", + "painting": "kaxin", + "prefab": "kaxin", + "rarity_bg": "", + "ship_group": 10103, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.436, + 0.23, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.266, + 0.329, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 95, + "voice_actor_2": -1 + }, + "101031": { + "bg": "103", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.725, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 1.817, + 0.991, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + 0.008, + 0 + ] + ] + }, + "desc": "I know I said we'd go shopping after school, but walking is so exhausting... I'll just hitch a ride in this cart. Looks sturdy enough...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101031, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shopping Carte Blanche", + "painting": "kaxin_2", + "prefab": "kaxin_2", + "rarity_bg": "", + "ship_group": 10103, + "ship_l2d_id": "", + "shop_id": 70570, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.496, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 95, + "voice_actor_2": -1 + }, + "101039": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.26, + 0.52, + 0 + ] + ], + "cannon": [ + [ + -0.26, + 0.52, + 0 + ] + ], + "torpedo": [ + [ + 0.05, + 0.15, + 0 + ] + ] + }, + "desc": "Commander... I think I've been in the house too long. My body feels different... Oh? I've improved? I see... Wonderful! I guess I can keep staying inside...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 101039, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cassin (Retrofit)", + "painting": "kaxin_g", + "prefab": "kaxin_g", + "rarity_bg": "", + "ship_group": 10103, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 95, + "voice_actor_2": -1 + }, + "101040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.487, + 0.603, + 0 + ] + ], + "cannon": [ + [ + 0.487, + 0.603, + 0 + ] + ], + "torpedo": [ + [ + -0.286, + 0.417, + 0 + ] + ] + }, + "desc": "Mahan-class destroyer - Downes, Hull Number DD-375!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101040, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Downes", + "painting": "tangsi", + "prefab": "tangsi", + "rarity_bg": "", + "ship_group": 10104, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.285, + 0.241, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.379, + 0.307, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 96, + "voice_actor_2": -1 + }, + "101041": { + "bg": "103", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.071, + 1.009, + 0 + ] + ], + "cannon": [ + [ + 1.05, + 1.016, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "I heard another person was coming to help out at the store, but I never thought it'd be you, Commander! What am I doing here? Ahaha, well uh, I had a little bit of free time on my hands... right~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101041, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Part-Time Bomber", + "painting": "tangsi_2", + "prefab": "tangsi_2", + "rarity_bg": "", + "ship_group": 10104, + "ship_l2d_id": "", + "shop_id": 70569, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.499, + 2.436, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 96, + "voice_actor_2": -1 + }, + "101049": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.26, + 0.52, + 0 + ] + ], + "cannon": [ + [ + -0.26, + 0.52, + 0 + ] + ], + "torpedo": [ + [ + 0.05, + 0.15, + 0 + ] + ] + }, + "desc": "Rawr! I'm Tiger Downes! What do you think, Commander? I feel great now! Faster. Stronger! Let's head out to sea and cause some trouble!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 101049, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Downes (Retrofit)", + "painting": "tangsi_g", + "prefab": "tangsi_g", + "rarity_bg": "", + "ship_group": 10104, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 96, + "voice_actor_2": -1 + }, + "101050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.232, + 0.796, + 0 + ] + ], + "cannon": [ + [ + -0.232, + 0.796, + 0 + ] + ], + "torpedo": [ + [ + 0.371, + 0.379, + 0 + ] + ] + }, + "desc": "Gridley-class destroyer - Gridley, Hull Number DD-380!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101050, + "illustrator": 3, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gridley", + "painting": "gelideli", + "prefab": "gelideli", + "rarity_bg": "", + "ship_group": 10105, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.569, + 0.296, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.313, + 0.274, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 25, + "voice_actor_2": -1 + }, + "101051": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.73, + 0.71, + 0 + ] + ], + "cannon": [ + [ + 0.73, + 0.71, + 0 + ] + ], + "torpedo": [ + [ + 0.07, + 0.15, + 0 + ] + ] + }, + "desc": "Commander, Merry Christmas! Guhehe~ Won't you attend my \"Super Special Sexy Sara (tentative)\" photoshoot event?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101051, + "illustrator": 3, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Christmas Photoshoot", + "painting": "gelideli_2", + "prefab": "gelideli_2", + "rarity_bg": "", + "ship_group": 10105, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 25, + "voice_actor_2": -1 + }, + "101060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.162, + 0.75, + 0 + ] + ], + "cannon": [ + [ + -0.162, + 0.75, + 0 + ] + ], + "torpedo": [ + [ + 0.356, + 0.333, + 0 + ] + ] + }, + "desc": "Gridley-class destroyer - Craven, Hull Number DD-382!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101060, + "illustrator": 3, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Craven", + "painting": "keleiwen", + "prefab": "keleiwen", + "rarity_bg": "", + "ship_group": 10106, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.539, + 0.249, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.371, + 0.226, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 96, + "voice_actor_2": -1 + }, + "101061": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.18, + 0.91, + 0 + ] + ], + "cannon": [ + [ + 1.17, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.09, + 0 + ] + ] + }, + "desc": "I much rather cheer for my Commander than go to class...but no matter where I go, I will definitely give it my all! Commander, wait for me to come back as the top student of this school year.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101061, + "illustrator": 3, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cheerleader On The Playground", + "painting": "keleiwen_2", + "prefab": "keleiwen_2", + "rarity_bg": "", + "ship_group": 10106, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.41, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 96, + "voice_actor_2": -1 + }, + "101070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.12, + 0.8, + 0 + ] + ], + "cannon": [ + [ + -0.12, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + -0.49, + 0.35, + 0 + ] + ] + }, + "desc": "Gridley-class destroyer - McCall, Hull Number DD-400!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101070, + "illustrator": 3, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "McCall", + "painting": "maikaoer", + "prefab": "maikaoer", + "rarity_bg": "", + "ship_group": 10107, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.49, + 0.294, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.303, + 0.283, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 95, + "voice_actor_2": -1 + }, + "101080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.08, + 0.83, + 0 + ] + ], + "cannon": [ + [ + -0.08, + 0.83, + 0 + ] + ], + "torpedo": [ + [ + 0.52, + 0.18, + 0 + ] + ] + }, + "desc": "Gridley-class destroyer, Maury, Hull Number DD-401\nUnlock build after receiving", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101080, + "illustrator": 3, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Maury", + "painting": "moli", + "prefab": "moli", + "rarity_bg": "", + "ship_group": 10108, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.317, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.303, + 0.283, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 88, + "voice_actor_2": -1 + }, + "101090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.4, + 0.97, + 0 + ] + ], + "cannon": [ + [ + -0.4, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.51, + 0.41, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer - Fletcher, Hull Number DD-445!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101090, + "illustrator": 4, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fletcher", + "painting": "fulaiche", + "prefab": "fulaiche", + "rarity_bg": "", + "ship_group": 10109, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.578, + 0.396, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.391, + 0.339, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "101110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.28, + 1.01, + 0 + ] + ], + "cannon": [ + [ + -0.28, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0.61, + 0.23, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer - Charles Ausburne, Hull Number DD-570!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101110, + "illustrator": 4, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Charles Ausburne", + "painting": "aosiben", + "prefab": "aosiben", + "rarity_bg": "", + "ship_group": 10111, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.549, + 0.316, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.391, + 0.339, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 29, + "voice_actor_2": -1 + }, + "101119": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.055, + 1.39, + 0 + ] + ], + "cannon": [ + [ + 0.825, + 0.863, + 0 + ] + ], + "torpedo": [ + [ + -0.017, + 0.001, + 0 + ] + ] + }, + "desc": "Captain Ausburne of the Little Beavers, upgraded and ready to go! Heh heh, my new-and-improved justice isn't just for show! Evildoers are gonna be in for a bad time!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 5, + "id": 101119, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Charles Ausburne (Retrofit)", + "painting": "aosiben_g", + "prefab": "aosiben_g", + "rarity_bg": "", + "ship_group": 10111, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.687, + 1.859, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.567, + 0.622, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 29, + "voice_actor_2": -1 + }, + "101120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.36, + 0.9, + 0 + ] + ], + "cannon": [ + [ + -0.36, + 0.9, + 0 + ] + ], + "torpedo": [ + [ + -0.39, + 0.37, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer - Thatcher, Hull Number DD-514!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101120, + "illustrator": 4, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Thatcher", + "painting": "saqieer", + "prefab": "saqieer", + "rarity_bg": "", + "ship_group": 10112, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.549, + 0.316, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.146, + 0.768, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 84, + "voice_actor_2": -1 + }, + "101130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.866, + 1.309, + 0 + ] + ], + "cannon": [ + [ + 0.866, + 1.309, + 0 + ] + ], + "torpedo": [ + [ + 0.3, + 0.45, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer - Aulick, Hull Number DD-569!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101130, + "illustrator": 4, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Aulick", + "painting": "aolike", + "prefab": "aolike", + "rarity_bg": "", + "ship_group": 10113, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.401, + 0.452, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.353, + 0.622, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 100, + "voice_actor_2": -1 + }, + "101140": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.174, + 1.261, + 0 + ] + ], + "cannon": [ + [ + -0.174, + 1.261, + 0 + ] + ], + "torpedo": [ + [ + -0.642, + 0.484, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer - Foote, Hull Number DD-511!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101140, + "illustrator": 4, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Foote", + "painting": "fute", + "prefab": "fute", + "rarity_bg": "", + "ship_group": 10114, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.676, + 0.26, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.549, + 0.848, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 100, + "voice_actor_2": -1 + }, + "101150": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.354, + 1.064, + 0 + ] + ], + "cannon": [ + [ + -0.354, + 1.064, + 0 + ] + ], + "torpedo": [ + [ + -0.671, + 0.513, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer - Spence, Hull Number DD-512!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101150, + "illustrator": 4, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Spence", + "painting": "sipengsi", + "prefab": "sipengsi", + "rarity_bg": "", + "ship_group": 10115, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 0.272, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 100, + "voice_actor_2": -1 + }, + "101160": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.74, + 0.45, + 0 + ] + ], + "cannon": [ + [ + 0.74, + 0.45, + 0 + ] + ], + "torpedo": [ + [ + 0.26, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 0.74, + 0.45, + 0 + ] + ] + }, + "desc": "Benson-class Destroyer - Benson, Hull Number DD-421!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101160, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Benson", + "painting": "bensen", + "prefab": "bensen", + "rarity_bg": "", + "ship_group": 10116, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 0.272, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 85, + "voice_actor_2": -1 + }, + "101161": { + "bg": "119", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.145, + 0.988, + 0 + ] + ], + "cannon": [ + [ + 2.186, + 1.006, + 0 + ] + ], + "torpedo": [ + [ + -0.009, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 2.229, + 0.997, + 0 + ] + ] + }, + "desc": "Fighting for love and peace this Halloween night, it's none other than the pumpkin-style Planet Bunny cutie pie, Benson!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101161, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cutie Pumpkin Pie", + "painting": "bensen_2", + "prefab": "bensen_2", + "rarity_bg": "", + "ship_group": 10116, + "ship_l2d_id": "", + "shop_id": 70443, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.391, + 2.476, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 85, + "voice_actor_2": -1 + }, + "101170": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.37, + 0.97, + 0 + ] + ], + "cannon": [ + [ + -0.37, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.53, + 0.39, + 0 + ] + ] + }, + "desc": "Benson-class destroyer - Laffey, Hull Number DD-459!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101170, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": [ + 1, + 1, + 1 + ], + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Laffey", + "painting": "lafei", + "prefab": "lafei", + "rarity_bg": "", + "ship_group": 10117, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.559, + 2.57, + -0.13 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "101172": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.08, + 1.04, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 1.04, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.11, + 0 + ] + ] + }, + "desc": "Mmph... The waistline is too high... and a little too tight... The sleeves are too breezy cause they're so big... It's not like I wanted to change clothes, but... what do you think, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 101172, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Snow Rabbit and Candy Apple", + "painting": "lafei_3", + "prefab": "lafei_3", + "rarity_bg": "", + "ship_group": 10117, + "ship_l2d_id": "", + "shop_id": 70034, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.33, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "101173": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.08, + 1.04, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 1.04, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.11, + 0 + ] + ] + }, + "desc": "Have a happy and auspicious New Year? Uh.... can I go now...? I'm feeling a bit sleepy, so can I go back to sleep?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 15, + "id": 101173, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "White Rabbit Welcomes the Spring", + "painting": "lafei_4", + "prefab": "lafei_4", + "rarity_bg": "", + "ship_group": 10117, + "ship_l2d_id": "", + "shop_id": 70147, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.33, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "101174": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.98, + 1.03, + 0 + ] + ], + "cannon": [ + [ + 0.89, + 0.94, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0.11, + 0 + ] + ] + }, + "desc": "I'm done changing... how is it? Today, I’m supposed to call you “valued guest?” Um... I don’t really get it...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 101174, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bunny Clerk?", + "painting": "lafei_5", + "prefab": "lafei_5", + "rarity_bg": "", + "ship_group": 10117, + "ship_l2d_id": "", + "shop_id": 70175, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.33, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "101175": { + "bg": "113", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.537, + 1.166, + 0 + ] + ], + "cannon": [ + [ + 1.454, + 1.293, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + -0.006, + 0 + ] + ] + }, + "desc": "Commander, ahhn... Umm, Commander, Laffey does not need to be fed... Rather, Laffey should be the one feeding you...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 13, + "id": 101175, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Picnic Adventure?", + "painting": "lafei_8", + "prefab": "lafei_8", + "rarity_bg": "", + "ship_group": 10117, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 4, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.33, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "101176": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.482, + 0.99, + 0 + ] + ], + "cannon": [ + [ + 1.473, + 0.981, + 0 + ] + ], + "torpedo": [ + [ + -0.014, + 0.018, + 0 + ] + ] + }, + "desc": "\"Laffey came from Planet Bunny...\" Umm, I forgot that line Benson told me to say... In any case, everyone, please give me lots of support... Actually, just a little support is fine... Uhh, I have to do it again with more motivation?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 13, + "id": 101176, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bunny Idol @Unmotivated", + "painting": "lafei_6", + "prefab": "lafei_6", + "rarity_bg": "", + "ship_group": 10117, + "ship_l2d_id": "", + "shop_id": 70264, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.33, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "101177": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.5, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 1.454, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0.022, + 0, + 0 + ] + ] + }, + "desc": "Yaaawn... Laffey's cleaning her room, Commander... If you don't wanna help then just find a place to sit... Anyway, back to cleaning... Zzz...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 7, + "gyro": 0, + "hand_id": 13, + "id": 101177, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sleep to Clean Another Day", + "painting": "lafei_9", + "prefab": "lafei_9", + "rarity_bg": "", + "ship_group": 10117, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 4, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.359, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "101178": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.18, + 0.91, + 0 + ] + ], + "cannon": [ + [ + 0.25, + 0.94, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.12, + 0 + ] + ] + }, + "desc": "Laffey seems to have changed a bit... Commander, do you like how Laffey is now?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 101178, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "White Rabbit's Oath", + "painting": "lafei_h", + "prefab": "lafei_h", + "rarity_bg": "", + "ship_group": 10117, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.44, + 2.27, + -0.13 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "101179": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.18, + 0.91, + 0 + ] + ], + "cannon": [ + [ + 0.25, + 0.94, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.12, + 0 + ] + ] + }, + "desc": "Laffey, improved and reporting in! I feel energized and ready to redouble my efforts! Hey, Commander, I still don't want you to touch my ears...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 101179, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Laffey (Retrofit)", + "painting": "lafei_g", + "prefab": "lafei_g", + "rarity_bg": "", + "ship_group": 10117, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.44, + 2.27, + -0.13 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "101240": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.268, + 1.114, + 0 + ] + ], + "cannon": [ + [ + -0.268, + 1.114, + 0 + ] + ], + "torpedo": [ + [ + -0.385, + 0.42, + 0 + ] + ], + "vicegun": [ + [ + -0.268, + 1.114, + 0 + ] + ] + }, + "desc": "Sims-class destroyer - Sims, Hull Number DD-409!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101240, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sims", + "painting": "ximusi", + "prefab": "ximusi", + "rarity_bg": "", + "ship_group": 10124, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.54, + 0.262, + 1.67 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 98, + "voice_actor_2": -1 + }, + "101249": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.738, + 0.892, + 0 + ] + ], + "cannon": [ + [ + 0.726, + 0.923, + 0 + ] + ], + "torpedo": [ + [ + 0.166, + 0.062, + 0 + ] + ], + "vicegun": [ + [ + 0.744, + 0.923, + 0 + ] + ] + }, + "desc": "Y'know, Commander~ No matter how nice you are to me, I'm still going to prank you~ Oh, but if you want my help with pranking others, I'll consider it~ Heehee~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 101249, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sims (Retrofit)", + "painting": "ximusi_g", + "prefab": "ximusi_g", + "rarity_bg": "", + "ship_group": 10124, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.487, + 2.324, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 98, + "voice_actor_2": -1 + }, + "101250": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.179, + 0.619, + 0 + ] + ], + "cannon": [ + [ + 0.179, + 0.619, + 0 + ] + ], + "torpedo": [ + [ + 0.193, + 0.234, + 0 + ] + ], + "vicegun": [ + [ + 0.179, + 0.619, + 0 + ] + ] + }, + "desc": "Sims-class Destroyer - Hammann, Hull Number DD-412!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101250, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hammann", + "painting": "haman", + "prefab": "haman", + "rarity_bg": "", + "ship_group": 10125, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.44, + 2.61, + -0.1 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "101251": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.934, + 1.406, + 0 + ] + ], + "cannon": [ + [ + 0.934, + 1.406, + 0 + ] + ], + "torpedo": [ + [ + 0.069, + 0.113, + 0 + ] + ], + "vicegun": [ + [ + 0.934, + 1.406, + 0 + ] + ] + }, + "desc": "I'm not really happy at all! But since you're bonding with me for once, I have to say... thank y... H-hmph! I didn't say anything!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101251, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rebellious Summer", + "painting": "haman_2", + "prefab": "haman_2", + "rarity_bg": "", + "ship_group": 10125, + "ship_l2d_id": "", + "shop_id": 70012, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.333, + 2.384, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "101252": { + "bg": "135", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.191, + 1.215, + 0 + ] + ], + "cannon": [ + [ + 1.158, + 1.142, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.132, + 1.201, + 0 + ] + ] + }, + "desc": "Hmph! I'm only here because you pleaded so desperately for me to come! Don't get any funny ideas! ...Why did I take so long to pick out my clothes? It... it's not like I was trying to impress anyone! I definitely wasn't looking forward to this party or anything!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 101252, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prideful Fairy of the Ballroom", + "painting": "haman_3", + "prefab": "haman_3", + "rarity_bg": "", + "ship_group": 10125, + "ship_l2d_id": "", + "shop_id": 70380, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.478, + 2.384, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "101253": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.44, + 1.1, + 0 + ] + ], + "cannon": [ + [ + 1.484, + 1.104, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.483, + 1.093, + 0 + ] + ] + }, + "desc": "Ughh... These gloves are so heavy and the dress is too revealing. Why on earth did I decide to put these on... I can't show myself to Yorktown like this!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 101253, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hammanyan Pawnch!", + "painting": "haman_4", + "prefab": "haman_4", + "rarity_bg": "", + "ship_group": 10125, + "ship_l2d_id": "", + "shop_id": 70442, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.389, + 2.518, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "101254": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.238, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 1.186, + 1.003, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.227, + 0.986, + 0 + ] + ] + }, + "desc": "I-I'm nobody's surprise! Ugh, I should've never listened to Sims... Stop staring already and undo these ribbons around my arms!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 101254, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Holy Night Surprise!", + "painting": "haman_5", + "prefab": "haman_5", + "rarity_bg": "", + "ship_group": 10125, + "ship_l2d_id": "", + "shop_id": 70456, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.389, + 2.595, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "101259": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.76, + 0.74, + 0 + ] + ], + "cannon": [ + [ + 0.76, + 0.74, + 0 + ] + ], + "torpedo": [ + [ + 0.22, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.76, + 0.74, + 0 + ] + ] + }, + "desc": "I'm just wearing new clothes, so why should I have to raise my skirt like this? Huh? You want me to look more upset? You... you pervert!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 101259, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hammann (Retrofit)", + "painting": "haman_g", + "prefab": "haman_g", + "rarity_bg": "", + "ship_group": 10125, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.68, + 2.64, + -0.12 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.42, + 0.77, + -0.13 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "101260": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.53, + 0.66, + 0 + ] + ], + "torpedo": [ + [ + -0.46, + 0.56, + 0 + ] + ], + "vicegun": [ + [ + 0.53, + 0.66, + 0 + ] + ] + }, + "desc": "Cannon-class Destroyer Escort - Eldridge, Hull Number DE-173!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101260, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Eldridge", + "painting": "aierdeliqi", + "prefab": "aierdeliqi", + "rarity_bg": "", + "ship_group": 10126, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.55, + 0.94, + -0.24 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.81, + 2.103, + -1.042 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 54, + "voice_actor_2": -1 + }, + "101261": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.16, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + -0.02, + 0.21, + 0 + ] + ], + "vicegun": [ + [ + 0.16, + 0.8, + 0 + ] + ] + }, + "desc": "Merry Christmas... Commander, Eldridge's outfit... cute?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101261, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Holy Night's Embrace", + "painting": "aierdeliqi_2", + "prefab": "aierdeliqi_2", + "rarity_bg": "", + "ship_group": 10126, + "ship_l2d_id": "", + "shop_id": 70024, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.63, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 54, + "voice_actor_2": -1 + }, + "101262": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.88, + 0.83, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.88, + 0.85, + 0 + ] + ] + }, + "desc": "Commander, do you like Eldridge...this way? Meow~...look what I've done to my books...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 101262, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Inquisitive Recluse", + "painting": "aierdeliqi_3", + "prefab": "aierdeliqi_3", + "rarity_bg": "", + "ship_group": 10126, + "ship_l2d_id": "", + "shop_id": 70050, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.63, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 54, + "voice_actor_2": -1 + }, + "101263": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.626, + 1.076, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.585, + 1.03, + 0 + ] + ] + }, + "desc": "Commander... Sakura Empire's New Year, looks very fun, let's go together...? (Eldridge looks at you expectantly)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 101263, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "home": 2.2, + "login": 2.2, + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 24, + -99, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's Outing", + "painting": "aierdeliqi_4", + "prefab": "aierdeliqi_4", + "rarity_bg": "", + "ship_group": 10126, + "ship_l2d_id": "", + "shop_id": 70130, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.63, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 54, + "voice_actor_2": -1 + }, + "101264": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.204, + 1.269, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + -0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.112, + 1.239, + 0 + ] + ] + }, + "desc": "Eldridge and kitties, idol mode... Commander, you like...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 5, + "id": 101264, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "expedition": 0.97, + "login": 15.67, + "mail": 1.67, + "main_1": 0.5, + "main_2": 0.5, + "main_3": 0.5, + "mission": 1.5, + "mission_complete": 0.5, + "propose": 3.9, + "touch": 0.5, + "touch2": 0.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -13, + -36, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kitty Idol", + "painting": "aierdeliqi_5", + "prefab": "aierdeliqi_5", + "rarity_bg": "", + "ship_group": 10126, + "ship_l2d_id": "", + "shop_id": 70259, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.63, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 54, + "voice_actor_2": -1 + }, + "101265": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.204, + 1.038, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.141, + 1.017, + 0 + ] + ] + }, + "desc": "Eldridge, arriving at designated altitude... Moon, mooncake, and Manjuus spotted...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 5, + "id": 101265, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Moon Festival Spacewalk", + "painting": "aierdeliqi_7", + "prefab": "aierdeliqi_7", + "rarity_bg": "", + "ship_group": 10126, + "ship_l2d_id": "", + "shop_id": 70592, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.63, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 54, + "voice_actor_2": -1 + }, + "101270": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.63, + 0.764, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.79, + 0.764, + 0 + ] + ] + }, + "desc": "Benson-class Destroyer - Bailey, Hull Number DD-492!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101270, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bailey", + "painting": "beili", + "prefab": "beili", + "rarity_bg": "", + "ship_group": 10127, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.26, + 0.79, + -0.16 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.47, + 2.45, + -0.66 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 63, + "voice_actor_2": -1 + }, + "101271": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.04, + 0.65, + 0 + ] + ], + "torpedo": [ + [ + 0.146, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 0.67, + 0 + ] + ] + }, + "desc": "Can you see the ghost next to me? Hehehe— the black witch from Planet Bunny is none other than me, Bailey! ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101271, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Trickster Black Rabbit", + "painting": "beili_2", + "prefab": "beili_2", + "rarity_bg": "", + "ship_group": 10127, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.53, + 2.34, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 63, + "voice_actor_2": -1 + }, + "101272": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.88, + 0.764, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.86, + 0.764, + 0 + ] + ] + }, + "desc": "Your Bunny Santa has arrived! That's right – not regular ol' Santa, but Bunny Santa! The real Santa's busy, so Bailey from Planet Bunny is here to help out!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 101272, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jolly Saint Bunnylass!", + "painting": "beili_3", + "prefab": "beili_3", + "rarity_bg": "", + "ship_group": 10127, + "ship_l2d_id": "", + "shop_id": 70791, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.34, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 63, + "voice_actor_2": -1 + }, + "101279": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.08, + 0.79, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 0.08, + 0.79, + 0 + ] + ] + }, + "desc": "The day has finally arrived~! Bunnies, are you ready? Bailey's debut show is about to begin! Commander, sisters, come and see my bunny magic!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 5, + "id": 101279, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bailey (Retrofit)", + "painting": "beili_g", + "prefab": "beili_g", + "rarity_bg": "", + "ship_group": 10127, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.59, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 63, + "voice_actor_2": -1 + }, + "101290": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.68, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.82, + 0.68, + 0 + ] + ] + }, + "desc": "Fletcher-class Destroyer - Radford, Hull Number DD-446!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101290, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Radford", + "painting": "ladefute", + "prefab": "ladefute", + "rarity_bg": "", + "ship_group": 10129, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.31, + 2.18, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 101, + "voice_actor_2": -1 + }, + "101291": { + "bg": "119", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.984, + 0.954, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + 0.008, + 0 + ] + ], + "vicegun": [ + [ + 1.074, + 0.961, + 0 + ] + ] + }, + "desc": "Commander, the sweet magic within my tome lets me turn things into candy! Hehe, that sounds pretty convincing— ...Eh, Commander? Wh-when'd you get here?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101291, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sweet Magic!", + "painting": "ladefute_3", + "prefab": "ladefute_3", + "rarity_bg": "", + "ship_group": 10129, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.406, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 101, + "voice_actor_2": -1 + }, + "101300": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.68, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.82, + 0.68, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer - Jenkins, Hull Number DD-447!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101300, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jenkins", + "painting": "jiejinsi", + "prefab": "jiejinsi", + "rarity_bg": "", + "ship_group": 10130, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.31, + 2.18, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 101, + "voice_actor_2": -1 + }, + "101301": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.224, + 1.035, + 0 + ] + ], + "torpedo": [ + [ + 0.011, + -0.012, + 0 + ] + ], + "vicegun": [ + [ + 1.236, + 1.041, + 0 + ] + ] + }, + "desc": "Commander, g-good evening...? Right now, I'm bringing presents to Radford and the others...? Could you give me a hand? Th-thank you... Um, your present.. this apple, do you want it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101301, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Light of the Holiest Star", + "painting": "jiejinsi_3", + "prefab": "jiejinsi_3", + "rarity_bg": "", + "ship_group": 10130, + "ship_l2d_id": "", + "shop_id": 70455, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.638, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 101, + "voice_actor_2": -1 + }, + "101310": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.64, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.14, + 0 + ] + ], + "vicegun": [ + [ + 0.82, + 0.64, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer – Nicholas, Hull Number DD-449!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101310, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nicholas", + "painting": "nigulasi", + "prefab": "nigulasi", + "rarity_bg": "", + "ship_group": 10131, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.23, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "101311": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.313, + 1.543, + 0 + ] + ], + "torpedo": [ + [ + 0.151, + 0.049, + 0 + ] + ], + "vicegun": [ + [ + 1.313, + 1.516, + 0 + ] + ] + }, + "desc": "I love doing relief missions as a nurse... I don't need to go outside or take part in any training, I just need to look after injured people... What about treating them? No worries, they just need to rest and they'll get better.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101311, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nurse Nicholas", + "painting": "nigulasi_2", + "prefab": "nigulasi_2", + "rarity_bg": "", + "ship_group": 10131, + "ship_l2d_id": "", + "shop_id": 70049, + "shop_type_id": 15, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.495, + 2.302, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "101312": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.163, + 0.477, + 0 + ] + ], + "torpedo": [ + [ + 0.151, + 0.049, + 0 + ] + ], + "vicegun": [ + [ + 1.098, + 0.496, + 0 + ] + ] + }, + "desc": "Merry Christmas, Commander. I'm your present, probably... Would you mind closing the lid for me so I can sleep a bit more... zzz...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 101312, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Surprise!?", + "painting": "nigulasi_3", + "prefab": "nigulasi_3", + "rarity_bg": "", + "ship_group": 10131, + "ship_l2d_id": "", + "shop_id": 70126, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.495, + 2.302, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "101313": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.107, + 1.088, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.007, + 0 + ] + ], + "vicegun": [ + [ + 1.098, + 1.123, + 0 + ] + ] + }, + "desc": "Commander, did you also come to play in the pool? ...Me? Fletcher said I have to help clean up because I was slacking off... Mm, watch your step~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 101313, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Cleaning \"Volunteer\"", + "painting": "nigulasi_4", + "prefab": "nigulasi_4", + "rarity_bg": "", + "ship_group": 10131, + "ship_l2d_id": "", + "shop_id": 70410, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.495, + 2.302, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "101314": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.191, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.175, + 0.994, + 0 + ] + ] + }, + "desc": "Commander, because you kept your promise and came... here's some chocolate, and a letter for you. Please read it later. No, it's not that big of a deal... Just a little embarrassing...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 101314, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "After-School Promise", + "painting": "nigulasi_5", + "prefab": "nigulasi_5", + "rarity_bg": "", + "ship_group": 10131, + "ship_l2d_id": "", + "shop_id": 70504, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 5, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.495, + 2.302, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": [ + [ + 2021, + 2, + 14 + ], + [ + 0, + 0, + 0 + ] + ], + "voice_actor": 116, + "voice_actor_2": -1 + }, + "101319": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.64, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.14, + 0 + ] + ], + "vicegun": [ + [ + 0.82, + 0.64, + 0 + ] + ] + }, + "desc": "Commander, what month is it...? I think I overslept a bit... am I taller than I was before? *Yawn*... Gotta be because I slept the whole time...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 101319, + "illustrator": 26, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nicholas (Retrofit)", + "painting": "nigulasi_g", + "prefab": "nigulasi_g", + "rarity_bg": "", + "ship_group": 10131, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.23, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "101330": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.98, + 1.27, + 0 + ] + ], + "torpedo": [ + [ + 0.39, + -0.13, + 0 + ] + ], + "vicegun": [ + [ + 1.02, + 1.28, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer – Bush, Hull Number DD-529.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101330, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bush", + "painting": "bushi", + "prefab": "bushi", + "rarity_bg": "", + "ship_group": 10133, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 161, + "voice_actor_2": -1 + }, + "101331": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.012, + 0.73, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.36, + 0 + ] + ], + "vicegun": [ + [ + 1.012, + 0.73, + 0 + ] + ] + }, + "desc": "Tadaaah! All done! How does it look? I think I'm pretty talented as an artist!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101331, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Budding Painter", + "painting": "bushi_2", + "prefab": "bushi_2", + "rarity_bg": "", + "ship_group": 10133, + "ship_l2d_id": "", + "shop_id": 70182, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.335, + 2.623, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 161, + "voice_actor_2": -1 + }, + "101340": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.9, + 0.9, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 0.93, + 0.9, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer – Hazelwood, Hull Number DD-531.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 7, + "id": 101340, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hazelwood", + "painting": "heizewude", + "prefab": "heizewude", + "rarity_bg": "", + "ship_group": 10134, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 161, + "voice_actor_2": -1 + }, + "101350": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.085, + 0.859, + 0 + ] + ], + "torpedo": [ + [ + 0.032, + 0.025, + 0 + ] + ], + "vicegun": [ + [ + 0.088, + 0.969, + 0 + ] + ] + }, + "desc": "Yoohoo~! You the Commander? You look kinda weaksauce, though~! Name's Bache! I'm joining this fleet, starting today! I'll take good care of you, so just kick back and get ready for my greatness!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101350, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bache", + "painting": "beiqi", + "prefab": "beiqi", + "rarity_bg": "", + "ship_group": 10135, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 204, + "voice_actor_2": -1 + }, + "101351": { + "bg": "118", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.018, + 0.921, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.993, + 0.918, + 0 + ] + ] + }, + "desc": "Ahaha~! Are you seeing this, Commander? This sturdiness, this gorgeous paint job, and these special accessories hand-picked by yours truly! Muahaha! I am the true speed-star of this port!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101351, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gorgeous Speed-star", + "painting": "beiqi_2", + "prefab": "beiqi_2", + "rarity_bg": "", + "ship_group": 10135, + "ship_l2d_id": "", + "shop_id": 70246, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 204, + "voice_actor_2": -1 + }, + "101352": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.208, + 1.073, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.24, + 1.115, + 0 + ] + ] + }, + "desc": "Tada! Your favorite tennis superstar, Bache, is right here! ...Hey Commander, you're supposed to cheer for me like you're one of my fans in the stands!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 101352, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Showy Sports Star", + "painting": "beiqi_3", + "prefab": "beiqi_3", + "rarity_bg": "", + "ship_group": 10135, + "ship_l2d_id": "", + "shop_id": 70340, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 204, + "voice_actor_2": -1 + }, + "101360": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.53, + 1.02, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.45, + 1.02, + 0 + ] + ] + }, + "desc": "Benson class Destroyer— Hobby, hull number DD-610.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101360, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hobby", + "painting": "huobi", + "prefab": "huobi", + "rarity_bg": "", + "ship_group": 10136, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 151, + "voice_actor_2": -1 + }, + "101361": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.048, + 0.888, + 0 + ] + ], + "torpedo": [ + [ + 0.177, + 0.069, + 0 + ] + ], + "vicegun": [ + [ + -0.01, + 0.848, + 0 + ] + ] + }, + "desc": "Here comes the debut of school uniform Hobby~ Commander, how do I look? Hobby is all grown up~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101361, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Idol Schoolgirl", + "painting": "huobi_2", + "prefab": "huobi_2", + "rarity_bg": "", + "ship_group": 10136, + "ship_l2d_id": "", + "shop_id": 70111, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 151, + "voice_actor_2": -1 + }, + "101370": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + -0.23, + 0.95, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + -0.21, + 0.89, + 0 + ] + ] + }, + "desc": "Benson class Destroyer— Kalk, hull number DD-611.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101370, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kalk", + "painting": "keerke", + "prefab": "keerke", + "rarity_bg": "", + "ship_group": 10137, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 151, + "voice_actor_2": -1 + }, + "101371": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + -0.229, + 0.944, + 0 + ] + ], + "torpedo": [ + [ + 0.149, + 0.047, + 0 + ] + ], + "vicegun": [ + [ + -0.217, + 0.982, + 0 + ] + ] + }, + "desc": "Kalk, reporting in once again, now with a new outfit! Hehe... Commander, will you walk me to school?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101371, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Snow Fairy Schoolgirl", + "painting": "keerke_2", + "prefab": "keerke_2", + "rarity_bg": "", + "ship_group": 10137, + "ship_l2d_id": "", + "shop_id": 70112, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 151, + "voice_actor_2": -1 + }, + "101380": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.802, + 0.86, + 0 + ] + ], + "torpedo": [ + [ + 0.149, + 0.047, + 0 + ] + ], + "vicegun": [ + [ + 0.841, + 0.85, + 0 + ] + ] + }, + "desc": "Fletcher-class Destroyer - Kimberly (DD-521)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101380, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kimberly", + "painting": "jinboli", + "prefab": "jinboli", + "rarity_bg": "", + "ship_group": 10138, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 168, + "voice_actor_2": -1 + }, + "101382": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.86, + 0.86, + 0 + ] + ], + "torpedo": [ + [ + 0.149, + 0.047, + 0 + ] + ], + "vicegun": [ + [ + 0.801, + 0.83, + 0 + ] + ] + }, + "desc": "While wearing clothes from the Dragon Empery, I can't help but reminisce about those days... Hehe, Commander, do you prefer me in Empery-style clothes, or Union-style clothes?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 15, + "id": 101382, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Style of the East", + "painting": "jinboli_3", + "prefab": "jinboli_3", + "rarity_bg": "", + "ship_group": 10138, + "ship_l2d_id": "", + "shop_id": 70155, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 168, + "voice_actor_2": -1 + }, + "101390": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.85, + 0.802, + 0 + ] + ], + "torpedo": [ + [ + 0.149, + 0.047, + 0 + ] + ], + "vicegun": [ + [ + 0.85, + 0.782, + 0 + ] + ] + }, + "desc": "Fletcher-class Destroyer - Mullany (DD-528)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101390, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mullany", + "painting": "malani", + "prefab": "malani", + "rarity_bg": "", + "ship_group": 10139, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 166, + "voice_actor_2": -1 + }, + "101392": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.889, + 0.782, + 0 + ] + ], + "torpedo": [ + [ + 0.149, + 0.047, + 0 + ] + ], + "vicegun": [ + [ + -0.137, + 0.84, + 0 + ] + ] + }, + "desc": "What's with the weird look, Commander? Ah, I got this outfit while studying abroad in the Dragon Empery. Umm... does it suit me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 15, + "id": 101392, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Eastern Etiquette", + "painting": "malani_3", + "prefab": "malani_3", + "rarity_bg": "", + "ship_group": 10139, + "ship_l2d_id": "", + "shop_id": 70156, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 166, + "voice_actor_2": -1 + }, + "101400": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + -0.361, + 0.936, + 0 + ] + ], + "torpedo": [ + [ + 0.299, + 0.047, + 0 + ] + ], + "vicegun": [ + [ + -0.444, + 0.966, + 0 + ] + ] + }, + "desc": "Farragut-class destroyer – Aylwin, Hull Number DD-355.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101400, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Aylwin", + "painting": "aierwen", + "prefab": "aierwen", + "rarity_bg": "", + "ship_group": 10140, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 198, + "voice_actor_2": -1 + }, + "101401": { + "bg": "", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.915, + 1.034, + 0 + ] + ], + "torpedo": [ + [ + 0.149, + 0.047, + 0 + ] + ], + "vicegun": [ + [ + 0.9, + 1.021, + 0 + ] + ] + }, + "desc": "So this is an aquarium... What a novel experience! Oh, also, I won't be your guide today as it's your turn to escort me around, Commander. Please don't get us lost, okay? Ehehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101401, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sunday Aquarium Visit", + "painting": "aierwen_2", + "prefab": "aierwen_2", + "rarity_bg": "", + "ship_group": 10140, + "ship_l2d_id": "", + "shop_id": 70208, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 198, + "voice_actor_2": -1 + }, + "101410": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.004, + 0.816, + 0 + ] + ], + "torpedo": [ + [ + 0.06, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 0.968, + 0.789, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer - Stanly , Hull Number DD-478.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101410, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Stanly", + "painting": "sitanli", + "prefab": "sitanli", + "rarity_bg": "", + "ship_group": 10141, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 143, + "voice_actor_2": -1 + }, + "101420": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.239, + 1.032, + 0 + ] + ], + "torpedo": [ + [ + -0.008, + 0.008, + 0 + ] + ], + "vicegun": [ + [ + 1.24, + 1.099, + 0 + ] + ] + }, + "desc": "Destroyer Smalley, reporting in. Interests: kickboxing.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101420, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Smalley", + "painting": "simoli", + "prefab": "simoli", + "rarity_bg": "", + "ship_group": 10142, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 180, + "voice_actor_2": -1 + }, + "101421": { + "bg": "119", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.834, + 1.348, + 0 + ] + ], + "torpedo": [ + [ + 0.068, + -0.05, + 0 + ] + ], + "vicegun": [ + [ + 1.841, + 1.371, + 0 + ] + ] + }, + "desc": "I am the courier of the night. In other words, it's my job to bring stuff straight to you, Commander. Here you go, this jack-o-lantern is for you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101421, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Candy Courier", + "painting": "simoli_3", + "prefab": "simoli_3", + "rarity_bg": "", + "ship_group": 10142, + "ship_l2d_id": "", + "shop_id": 70257, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 180, + "voice_actor_2": -1 + }, + "101430": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.13, + 0.73, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 0.79, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer – Halsey Powell, Hull Number DD-686.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 101430, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Halsey Powell", + "painting": "haerxibaoweier", + "prefab": "haerxibaoweier", + "rarity_bg": "", + "ship_group": 10143, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.19, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 218, + "voice_actor_2": -1 + }, + "101431": { + "bg": "127", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.17, + 0.83, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.16, + 0.85, + 0 + ] + ] + }, + "desc": "Halsey Powell is making her debut as your lucky star for the Spring Festival! Commander, if you show me a fun time, you'll be blessed with good luck this year!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 101431, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Spring's Lucky Star", + "painting": "haerxibaoweier_3", + "prefab": "haerxibaoweier_3", + "rarity_bg": "", + "ship_group": 10143, + "ship_l2d_id": "", + "shop_id": 70313, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.18, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 218, + "voice_actor_2": -1 + }, + "101440": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.112, + 1.049, + 0 + ] + ], + "remote": [ + -50, + 0, + 0 + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.125, + 1.05, + 0 + ] + ] + }, + "desc": "Allen M. Sumner-class destroyer – Cooper, Hull Number DD-695.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101440, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cooper", + "painting": "kubo", + "prefab": "kubo", + "rarity_bg": "", + "ship_group": 10144, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.19, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 229, + "voice_actor_2": -1 + }, + "101441": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.174, + 1.104, + 0 + ] + ], + "remote": [ + -50, + 0, + 0 + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 1.088, + 0 + ] + ] + }, + "desc": "30 to 15... Next match will be mine, you hear! Oh, Commander, are you here to play a round of tennis?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101441, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 1.32, + "main_1": 3.05, + "main_2": 1.47, + "mission": 1.6, + "touch2": 0.54 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blazing Tennis Battle", + "painting": "kubo_2", + "prefab": "kubo_2", + "rarity_bg": "", + "ship_group": 10144, + "ship_l2d_id": "", + "shop_id": 70329, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.19, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 229, + "voice_actor_2": -1 + }, + "101442": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.067, + 0.997, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.053, + 1.005, + 0 + ] + ] + }, + "desc": "Hm? I'm just wrapping up some presents! Can't just present them as-is, and all that. Hehe~ I could sure use a little help, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 101442, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Heartwarming Holiday Hearth", + "painting": "kubo_3", + "prefab": "kubo_3", + "rarity_bg": "", + "ship_group": 10144, + "ship_l2d_id": "", + "shop_id": 70454, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.486, + 2.499, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 229, + "voice_actor_2": -1 + }, + "101450": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.244, + 1.085, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.099, + 1.05, + 0 + ] + ] + }, + "desc": "I'm Eagle Union destroyer Allen M. Sumner! Just call me Allen! It's a pleasure, Commander! Anyway, I've heard you've got yummy food and cushy work here at this port. That true?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101450, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Allen M. Sumner", + "painting": "ailunsamuna", + "prefab": "ailunsamuna", + "rarity_bg": "", + "ship_group": 10145, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.402, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 266, + "voice_actor_2": -1 + }, + "101451": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.39, + 1.31, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.33, + 1.2, + 0 + ] + ] + }, + "desc": "Welcome, Commander! I would fetch you our menu, but I've had a teensy accident here... Don't worry, I'll fix this somehow!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101451, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -36, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Charming Rabbit", + "painting": "ailunsamuna_2", + "prefab": "ailunsamuna_2", + "rarity_bg": "", + "ship_group": 10145, + "ship_l2d_id": "", + "shop_id": 70541, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.18, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 266, + "voice_actor_2": -1 + }, + "101460": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.226, + 1.007, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.23, + 1.007, + 0 + ] + ] + }, + "desc": "Fletcher-class Stephen Potter here. You've probably met a million of my sisters already, so I'll spare you my life story. See you around.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101460, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Stephen Potter", + "painting": "shidifenbote", + "prefab": "shidifenbote", + "rarity_bg": "", + "ship_group": 10146, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.521, + 2.444, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 267, + "voice_actor_2": -1 + }, + "101461": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.05, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.12, + 1.22, + 0 + ] + ] + }, + "desc": "Welcome to my private retreat, where you can skip work and veg out all you want. And by \"skip work\" I mean \"enjoy your regularly scheduled day off.\" Anyway, make yourself at home, Commander.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101461, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chillaxation Station", + "painting": "shidifenbote_2", + "prefab": "shidifenbote_2", + "rarity_bg": "", + "ship_group": 10146, + "ship_l2d_id": "", + "shop_id": 70548, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.59, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 267, + "voice_actor_2": -1 + }, + "101470": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.02, + 1.12, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.99, + 1.09, + 0 + ] + ] + }, + "desc": "Fletcher-class destroyer – Morrison, Hull Number DD-560.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101470, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Morrison", + "painting": "molisen", + "prefab": "molisen", + "rarity_bg": "", + "ship_group": 10147, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.755, + 2.437, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 277, + "voice_actor_2": -1 + }, + "101471": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.187, + 1.173, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.21, + 1.175, + 0 + ] + ] + }, + "desc": "Zzz... Commander? S-sorry, I fell asleep for a bit... Uh, umm, what would you like me to do...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101471, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sleeping Bunny", + "painting": "molisen_2", + "prefab": "molisen_2", + "rarity_bg": "", + "ship_group": 10147, + "ship_l2d_id": "", + "shop_id": 70551, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.521, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 277, + "voice_actor_2": -1 + }, + "101480": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.058, + 1.048, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + 1.069, + 0.99, + 0 + ] + ] + }, + "desc": "Allen M. Sumner-class destroyer – Ingraham, Hull Number DD-694.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101480, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ingraham", + "painting": "yinggelahan", + "prefab": "yinggelahan", + "rarity_bg": "", + "ship_group": 10148, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + 0.004, + 1.783, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 282, + "voice_actor_2": -1 + }, + "101481": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.112, + 0.89, + 0 + ] + ], + "torpedo": [ + [ + 0.007, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.076, + 1.081, + 0 + ] + ] + }, + "desc": "Hmm... Could use a little more sweetness, and a splash of the secret ingredient... Oh, you're here? Great. I appoint you as my first dedicated taste-tester, Commander. We're gonna come up with some novel and fresh drinks, you and I!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101481, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fixin' for a Mixin'", + "painting": "yinggelahan_2", + "prefab": "yinggelahan_2", + "rarity_bg": "", + "ship_group": 10148, + "ship_l2d_id": "", + "shop_id": 70586, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.117, + 2.402, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 282, + "voice_actor_2": -1 + }, + "101490": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.12, + 1.13, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + 1.02, + 1.03, + 0 + ] + ] + }, + "desc": "Allen M. Sumner-class destroyer – Bristol, Hull Number DD-857.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101490, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bristol", + "painting": "bulisituoer", + "prefab": "bulisituoer", + "rarity_bg": "", + "ship_group": 10149, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 302, + "voice_actor_2": -1 + }, + "101491": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.05, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + 0.93, + 0.96, + 0 + ] + ] + }, + "desc": "Happy Lunar New Year, Commander! The time's finally come to look into the age-old legends from the Dragon Empery! The truth behind these legends is bound to be as fascinating as the legends themselves!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101491, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tales from the Empery", + "painting": "bulisituoer_2", + "prefab": "bulisituoer_2", + "rarity_bg": "", + "ship_group": 10149, + "ship_l2d_id": "", + "shop_id": 70650, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.41, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 302, + "voice_actor_2": -1 + }, + "101500": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.25, + 0.81, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + 1.22, + 0.73, + 0 + ] + ] + }, + "desc": "Edsall-class destroyer escort – Hammann II, Hull Number DE-131.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101500, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hammann II", + "painting": "hamanII", + "prefab": "hamanII", + "rarity_bg": "", + "ship_group": 10150, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.3, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "101501": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.25, + 0.81, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + 1.22, + 0.73, + 0 + ] + ] + }, + "desc": "Hmph! I only promised to come to the beach because I was worried you'd be lonely! There's no deeper meaning—w-wait! What are you doing?! Stooop!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101501, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Another Rebellious Summer", + "painting": "hamanII_2", + "prefab": "hamanII_2", + "rarity_bg": "", + "ship_group": 10150, + "ship_l2d_id": "", + "shop_id": 70778, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "101510": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.762, + 1.145, + 0 + ] + ], + "cannon": [ + [ + 1.89, + 1.061, + 0 + ] + ], + "torpedo": [ + [ + -0.164, + 0.026, + 0 + ] + ], + "vicegun": [ + [ + 1.96, + 1.095, + 0 + ] + ] + }, + "desc": "Allen M. Sumner-class destroyer – Laffey II, Hull Number DD-724.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 101510, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Laffey II", + "painting": "lafeiII", + "prefab": "lafeiII", + "rarity_bg": "", + "ship_group": 10151, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.274, + 2.494, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_lafeiII", + [ + -73, + -18, + 0 + ], + [ + 0.7 + ] + ], + "spine_action_offset": true, + "spine_offset": [ + [ + -30, + -626, + 0 + ], + [ + 0.7 + ] + ], + "tag": [], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "101511": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.615, + 0.955, + 0 + ] + ], + "cannon": [ + [ + 1.674, + 0.853, + 0 + ] + ], + "torpedo": [ + [ + -0.147, + 0.069, + 0 + ] + ], + "vicegun": [ + [ + 1.623, + 0.879, + 0 + ] + ] + }, + "desc": "Laffey's helping out around the pop-up shop... Commander, sit wherever you want... Any open seat is probably fine.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 101511, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 70, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sleepy on a Busy Day", + "painting": "lafeiII_3", + "prefab": "lafeiII_3", + "rarity_bg": "", + "ship_group": 10151, + "ship_l2d_id": [ + 10151101, + 10151102, + 10151103, + 10151104, + 10151105, + 10151106, + 10151107, + 10151108, + 10151109, + 10151110, + 10151111, + 10151112, + 10151113, + 10151114, + 10151115, + 10151116, + 10151117, + 10151118, + 10151119, + 10151120, + 10151121, + 10151122 + ], + "shop_id": 70937, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.023, + 2.486, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "102010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.59, + 1.125, + 0 + ], + [ + 0.429, + 0.906, + 0 + ] + ], + "cannon": [ + [ + -0.317, + 0.665, + 0 + ] + ], + "torpedo": [ + [ + -0.016, + 0.582, + 0 + ] + ] + }, + "desc": "Omaha-class light cruiser – Omaha, Hull Number CL-4!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102010, + "illustrator": 6, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Omaha", + "painting": "aomaha", + "prefab": "aomaha", + "rarity_bg": "", + "ship_group": 10201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 0.397, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.42, + 0.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 62, + "voice_actor_2": -1 + }, + "102020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.376, + 0.996, + 0 + ], + [ + 0.52, + 0.827, + 0 + ] + ], + "cannon": [ + [ + -0.063, + 0.526, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.407, + 0 + ] + ] + }, + "desc": "Omaha-class light cruiser – Raleigh, Hull Number CL-7!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 102020, + "illustrator": 6, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Raleigh", + "painting": "luoli", + "prefab": "luoli", + "rarity_bg": "", + "ship_group": 10202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.53, + 0.3, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.42, + 0.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 62, + "voice_actor_2": -1 + }, + "102030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.457, + 1.102, + 0 + ], + [ + -0.834, + 1.234, + 0 + ] + ], + "cannon": [ + [ + 0.789, + 0.501, + 0 + ] + ], + "vicegun": [ + [ + 0.789, + 0.501, + 0 + ], + [ + -0.238, + 0.927, + 0 + ] + ] + }, + "desc": "Brooklyn-class Light Cruiser – Brooklyn, Hull Number CL-40!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 3, + "id": 102030, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Brooklyn", + "painting": "bulukelin", + "prefab": "bulukelin", + "rarity_bg": "", + "ship_group": 10203, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.39, + 0.41, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.61, + 0.53, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 64, + "voice_actor_2": -1 + }, + "102040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.897, + 0.902, + 0 + ], + [ + -0.546, + 0.902, + 0 + ] + ], + "cannon": [ + [ + -0.32, + 0.833, + 0 + ] + ], + "vicegun": [ + [ + -0.32, + 0.833, + 0 + ], + [ + 0.068, + 0.683, + 0 + ] + ] + }, + "desc": "Brooklyn-class light cruiser – Phoenix, Hull Number CL-46!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102040, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Phoenix", + "painting": "feinikesi", + "prefab": "feinikesi", + "rarity_bg": "", + "ship_group": 10204, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.54, + 0.43, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.06, + 0.59, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 64, + "voice_actor_2": -1 + }, + "102050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.984, + 1.171, + 0 + ], + [ + -0.664, + 1.115, + 0 + ] + ], + "cannon": [ + [ + -0.094, + 0.708, + 0 + ] + ], + "vicegun": [ + [ + -0.094, + 0.708, + 0 + ], + [ + -0.413, + 0.965, + 0 + ] + ] + }, + "desc": "Brooklyn-class Light Cruiser – Helena, Hull Number CL-50!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102050, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Helena", + "painting": "hailunna", + "prefab": "hailunna", + "rarity_bg": "", + "ship_group": 10205, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.53, + 0.43, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.07, + 0.99, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "102051": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.045, + 0.96, + 0 + ] + ], + "cannon": [ + [ + 1.06, + 0.975, + 0 + ] + ], + "vicegun": [ + [ + 1.029, + 1.029, + 0 + ] + ] + }, + "desc": "I... want to be part of the new year festivities too. Oh, you don't have to worry about me. I'm no longer the fledgling I once was.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 102051, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's Bluebird", + "painting": "hailunna_2", + "prefab": "hailunna_2", + "rarity_bg": "", + "ship_group": 10205, + "ship_l2d_id": "", + "shop_id": 70136, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.627, + 2.291, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "102052": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.045, + 0.96, + 0 + ] + ], + "cannon": [ + [ + 1.06, + 0.975, + 0 + ] + ], + "vicegun": [ + [ + 1.029, + 1.029, + 0 + ] + ] + }, + "desc": "Um, Commander, could we... share a dance? I have things I want to tell you...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 102052, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "May I Have this Dance?", + "painting": "hailunna_3", + "prefab": "hailunna_3", + "rarity_bg": "", + "ship_group": 10205, + "ship_l2d_id": "", + "shop_id": 70188, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.627, + 2.291, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "102053": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.045, + 0.96, + 0 + ] + ], + "cannon": [ + [ + 1.06, + 0.975, + 0 + ] + ], + "vicegun": [ + [ + 1.029, + 1.029, + 0 + ] + ] + }, + "desc": "Commander, what do you think... umm... about this swimsuit? Actually, umm, never mind. If I were to hear your impressions directly, I'd be too embarrassed to stand in front of you... So, would you mind, umm... secretly whispering it to me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 102053, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": [ + 0.5, + 0.5, + 0.5 + ], + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamAngleY": [ + -15, + 15 + ], + "ParamBodyAngleX": [ + -8, + 8 + ], + "ParamBodyAngleY": [ + -8, + 8 + ], + "ParamEyeBallX": [ + -0.4, + 0.2 + ], + "ParamEyeBallY": [ + -0.4, + 0.4 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 175, + -60.5, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shimmering Triangle Wave", + "painting": "hailunna_4", + "prefab": "hailunna_4", + "rarity_bg": "", + "ship_group": 10205, + "ship_l2d_id": [ + 1020531, + 1020532, + 1020533 + ], + "shop_id": 70898, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.627, + 2.291, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "102058": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.969, + 1.128, + 0 + ] + ], + "cannon": [ + [ + 0.771, + 0.975, + 0 + ] + ], + "vicegun": [ + [ + 0.777, + 0.983, + 0 + ] + ] + }, + "desc": "Wh-what do you think, Commander? Does it suit me? ...I never could've imagined getting to wear this even in my dreams, let alone experience the bliss I feel now... Thank you so, so much.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 102058, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Miracle in White", + "painting": "hailunna_h", + "prefab": "hailunna_h", + "rarity_bg": "", + "ship_group": 10205, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.825, + 1.901, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "102059": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.34, + 1.091, + 0 + ] + ], + "cannon": [ + [ + 1.315, + 1.072, + 0 + ] + ], + "vicegun": [ + [ + 1.32, + 1.085, + 0 + ] + ] + }, + "desc": "This new equipment... might take some time to get used to... N-no, I'm sure I can handle it now! Commander, Helena will... meet your expectations!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 102059, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Helena (Retrofit)", + "painting": "hailunna_g", + "prefab": "hailunna_g", + "rarity_bg": "", + "ship_group": 10205, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.53, + 2.289, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "102060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.464, + 1.052, + 0 + ], + [ + -0.439, + 1.353, + 0 + ] + ], + "cannon": [ + [ + -0.257, + 0.783, + 0 + ] + ], + "torpedo": [ + [ + 0.119, + 0.702, + 0 + ] + ] + }, + "desc": "Atlanta-class light cruiser – Atlanta, Hull Number CL-51!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102060, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Atlanta", + "painting": "yatelanda", + "prefab": "yatelanda", + "rarity_bg": "", + "ship_group": 10206, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.63, + 0.67, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.32, + 0.67, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 55, + "voice_actor_2": -1 + }, + "102070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.464, + 1.052, + 0 + ], + [ + -0.439, + 1.353, + 0 + ] + ], + "cannon": [ + [ + 0.645, + 0.568, + 0 + ] + ], + "torpedo": [ + [ + -0.51, + 0.443, + 0 + ] + ] + }, + "desc": "Atlanta-class light cruiser – Juneau, Hull Number CL-52!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102070, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Juneau", + "painting": "zhunuo", + "prefab": "zhunuo", + "rarity_bg": "", + "ship_group": 10207, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 62, + "voice_actor_2": -1 + }, + "102071": { + "bg": "161", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.051, + 1.264, + 0 + ] + ], + "cannon": [ + [ + 0.905, + 0.661, + 0 + ] + ], + "torpedo": [ + [ + 0.017, + 0, + 0 + ] + ] + }, + "desc": "This swan is so soft and pettable... Heehee, it even let me put a ribbon on it. Now we have matching looks... Huh? You could take a picture of us? I-if it's not too much work then please, by all means!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 102071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "In the Swan Garden", + "painting": "zhunuo_2", + "prefab": "zhunuo_2", + "rarity_bg": "", + "ship_group": 10207, + "ship_l2d_id": "", + "shop_id": 70752, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.778, + 1.775, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 62, + "voice_actor_2": -1 + }, + "102079": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.009, + 1.232, + 0 + ] + ], + "cannon": [ + [ + 1.077, + 0.888, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.948, + 1.069, + 0 + ] + ] + }, + "desc": "After all that painstaking work, I've f-finally managed to complete my retrofit! Even though I'm still afraid of getting hurt, I'll try to be brave for you, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 102079, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Juneau (Retrofit)", + "painting": "zhunuo_g", + "prefab": "zhunuo_g", + "rarity_bg": "", + "ship_group": 10207, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 62, + "voice_actor_2": -1 + }, + "102080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.464, + 1.052, + 0 + ], + [ + -0.439, + 1.353, + 0 + ] + ], + "cannon": [ + [ + 0.645, + 0.568, + 0 + ] + ], + "torpedo": [ + [ + -0.51, + 0.443, + 0 + ] + ] + }, + "desc": "Atlanta-class Light Cruiser – San Diego, Hull Number CL-53!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102080, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "San Diego", + "painting": "shengdiyage", + "prefab": "shengdiyage", + "rarity_bg": "", + "ship_group": 10208, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "102081": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.67, + 0.86, + 0 + ] + ], + "cannon": [ + [ + 0.67, + 0.86, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + 0.2, + 0 + ] + ] + }, + "desc": "Merry Christmas! Super idol San Diego, making her dazzling debut! Commander, you must come to my performance! ...Venue?! What's that?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 102081, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sandy Claus", + "painting": "shengdiyage_2", + "prefab": "shengdiyage_2", + "rarity_bg": "", + "ship_group": 10208, + "ship_l2d_id": "", + "shop_id": 70028, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.29, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "102088": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.56, + 1.19, + 0 + ] + ], + "cannon": [ + [ + 1.527, + 1.072, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Commander, with the power of your love, San Diego is sure to become number one in this port! ...Number one in what? I'm not really sure myself, but I'll definitely make it happen!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 102088, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "No. 1 June Bride!", + "painting": "shengdiyage_h", + "prefab": "shengdiyage_h", + "rarity_bg": "", + "ship_group": 10208, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "102089": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.85, + 0.91, + 0 + ] + ], + "cannon": [ + [ + 0.73, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.1, + 0 + ] + ] + }, + "desc": "Heheh~☆ I have no idea what just happened, but I feel like I've gotten super strong! Commander, can you see my sparkly aura~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 102089, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "San Diego (Retrofit)", + "painting": "shengdiyage_g", + "prefab": "shengdiyage_g", + "rarity_bg": "", + "ship_group": 10208, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.3, + -0.4 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_jinkela", + [ + 37, + 89, + 0 + ], + [ + 1.6 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 0, + -500, + 0 + ], + [ + 0.62 + ] + ], + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "102090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.269, + 0.914, + 0 + ], + [ + 0.922, + 0.739, + 0 + ] + ], + "cannon": [ + [ + -0.182, + 0.695, + 0 + ] + ], + "vicegun": [ + [ + -0.269, + 0.914, + 0 + ], + [ + 0.922, + 0.739, + 0 + ] + ] + }, + "desc": "Cleveland-class Light Cruiser – Cleveland, Hull Number CL-55!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102090, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cleveland", + "painting": "kelifulan", + "prefab": "kelifulan", + "rarity_bg": "", + "ship_group": 10209, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.57, + 0.48, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.53, + 0.47, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102091": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.45, + 0.84, + 0 + ] + ], + "cannon": [ + [ + 1.45, + 0.84, + 0 + ] + ], + "torpedo": [ + [ + 0.22, + 0.18, + 0 + ] + ], + "vicegun": [ + [ + 1.45, + 0.84, + 0 + ] + ] + }, + "desc": "There's room for two on this pumpkin. C'mon, hurry and get on... Ah, that reminds me! I've got some pumpkin pie as well. Wanna try some, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 102091, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Reaper Fever", + "painting": "kelifulan_2", + "prefab": "kelifulan_2", + "rarity_bg": "", + "ship_group": 10209, + "ship_l2d_id": "", + "shop_id": 70018, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.29, + 2.66, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102092": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.18, + 0.65, + 0 + ] + ], + "cannon": [ + [ + 0.64, + 1.2, + 0 + ] + ], + "torpedo": [ + [ + 0.22, + 0.18, + 0 + ] + ], + "vicegun": [ + [ + 0.61, + 1.15, + 0 + ] + ] + }, + "desc": "Why am I stuck with this tuxedo when everyone else is wearing a dress?! ... Though it does feel slick, so I guess it's pretty nice. So, weren't we gonna go to the party, Commander? Then it's about time we head out!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 102092, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": { + "home": [ + "finger", + 4.35 + ], + "login": [ + "finger", + 2.27 + ], + "main_1": [ + "finger", + 2.1 + ] + }, + "l2d_voice_calibrate": { + "propose": 2.5, + "touch2": 2.467 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 47, + -197, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gentry Knight", + "painting": "kelifulan_3", + "prefab": "kelifulan_3", + "rarity_bg": "", + "ship_group": 10209, + "ship_l2d_id": "", + "shop_id": 70101, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.47, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102093": { + "bg": "118", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.051, + 0.947, + 0 + ] + ], + "cannon": [ + [ + 1.127, + 0.986, + 0 + ] + ], + "torpedo": [ + [ + 0.012, + 0.024, + 0 + ] + ], + "vicegun": [ + [ + 1.103, + 0.955, + 0 + ] + ] + }, + "desc": "Good timing! I was just about to take my little buddy here out for a road trip! Commander, there's room for two if you want to come!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 102093, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 47, + -197, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Road Trip!", + "painting": "kelifulan_4", + "prefab": "kelifulan_4", + "rarity_bg": "", + "ship_group": 10209, + "ship_l2d_id": "", + "shop_id": 70211, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.47, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102094": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.051, + 0.947, + 0 + ] + ], + "cannon": [ + [ + 1.127, + 0.986, + 0 + ] + ], + "torpedo": [ + [ + 0.012, + 0.024, + 0 + ] + ], + "vicegun": [ + [ + 1.103, + 0.955, + 0 + ] + ] + }, + "desc": "Happy New Year's, Commander! I heard everyone from the Sakura Empire was dressing like this, so... Hehehe, think this looks good on me? I thought I'd ask for your impression first, Commander.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 102094, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 47, + -197, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's Challenge!", + "painting": "kelifulan_5", + "prefab": "kelifulan_5", + "rarity_bg": "", + "ship_group": 10209, + "ship_l2d_id": "", + "shop_id": 70296, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.47, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102095": { + "bg": "149", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.168, + 1.209, + 0 + ] + ], + "cannon": [ + [ + 1.127, + 0.986, + 0 + ] + ], + "torpedo": [ + [ + 0.012, + 0.024, + 0 + ] + ], + "vicegun": [ + [ + 1.103, + 0.955, + 0 + ] + ] + }, + "desc": "Isn't it real exciting visiting a place you don't normally get to go? We don't often get opportunities to travel like this, so let's go look for delicious food and spectacular scenery!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 13, + "id": 102095, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Southbound Journey", + "painting": "kelifulan_6", + "prefab": "kelifulan_6", + "rarity_bg": "", + "ship_group": 10209, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.536, + 2.334, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102096": { + "bg": "146", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.168, + 1.209, + 0 + ] + ], + "cannon": [ + [ + 1.127, + 0.986, + 0 + ] + ], + "torpedo": [ + [ + 0.012, + 0.024, + 0 + ] + ], + "vicegun": [ + [ + 1.103, + 0.955, + 0 + ] + ] + }, + "desc": "Ahem... I, Cleveland, am your conductor for tonight! Whoa, the echo really IS faint! How did I not know we had such a fancy concert hall at the port? ...Oh, you wanna shout something too, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 13, + "id": 102096, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Golden Conductor", + "painting": "kelifulan_7", + "prefab": "kelifulan_7", + "rarity_bg": "", + "ship_group": 10209, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.536, + 2.334, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": "", + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102097": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.168, + 1.209, + 0 + ] + ], + "cannon": [ + [ + 1.127, + 0.986, + 0 + ] + ], + "torpedo": [ + [ + -0.144, + 0.059, + 0 + ] + ], + "vicegun": [ + [ + 1.103, + 0.955, + 0 + ] + ] + }, + "desc": "Commander, you're early. There's plenty of time until the pop-up shop opens. But this is a good opportunity to ask – what do you think of the outfit I made just for this occasion? ...G-girly and cute? Woohoo! That's exactly the reaction I wanted!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 7, + "gyro": 0, + "hand_id": 13, + "id": 102097, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 20, + -36, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Knight of the Pop-Up Shop", + "painting": "kelifulan_8", + "prefab": "kelifulan_8", + "rarity_bg": "", + "ship_group": 10209, + "ship_l2d_id": [ + 10209701, + 10209702, + 10209703 + ], + "shop_id": 70943, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.372, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": "", + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102098": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 0.97, + 0 + ] + ], + "cannon": [ + [ + 1.37, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.25, + 1.03, + 0 + ] + ] + }, + "desc": "Man, this is so embarrassing... C-Commander, w-w-what do you, umm, like, think of my d-d-d-dress...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 102098, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 47, + -197, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Heartfelt Moment", + "painting": "kelifulan_h", + "prefab": "kelifulan_h", + "rarity_bg": "", + "ship_group": 10209, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.47, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.16, + 1.27, + 0 + ] + ], + "cannon": [ + [ + 0.16, + 1.27, + 0 + ] + ], + "torpedo": [ + [ + 0.06, + 0.17, + 0 + ] + ], + "vicegun": [ + [ + 0.16, + 1.27, + 0 + ] + ] + }, + "desc": "Cleveland-class light cruiser – Columbia, hull number CL-56.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102100, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Columbia", + "painting": "gelunbiya", + "prefab": "gelunbiya", + "rarity_bg": "", + "ship_group": 10210, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.57, + 0.48, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.53, + 0.47, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102101": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.08, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.14, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 1.04, + 0 + ] + ] + }, + "desc": "Commander, here, I made some chocolate for you~ Come on, hurry up and take it already! Holding this pose makes me look like I'm waiting for some Prince Charming, and it's super embarrassing.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 102101, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "After-School Odette", + "painting": "gelunbiya_2", + "prefab": "gelunbiya_2", + "rarity_bg": "", + "ship_group": 10210, + "ship_l2d_id": "", + "shop_id": 70318, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.03, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102102": { + "bg": "118", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.982, + 1.088, + 0 + ] + ], + "cannon": [ + [ + 1.042, + 1.043, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 0.966, + 0.996, + 0 + ] + ] + }, + "desc": "...Mm, that's good enough for today's journal entry. Wonder what Cleve's gonna think after reading this~ What do you think, Commander? Wait... Commander? Jeez, don't wander off when I'm all focused on my writing...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 102102, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Across the Vast Prairies", + "painting": "gelunbiya_3", + "prefab": "gelunbiya_3", + "rarity_bg": "", + "ship_group": 10210, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.428, + 2.323, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.18, + 0.82, + 0 + ] + ], + "cannon": [ + [ + 0.18, + 0.82, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.18, + 0.82, + 0 + ] + ] + }, + "desc": "Richmond", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102110, + "illustrator": 35, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Richmond", + "painting": "lishiman", + "prefab": "lishiman", + "rarity_bg": "", + "ship_group": 10211, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.24, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 57, + "voice_actor_2": -1 + }, + "102120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.37, + 0.73, + 0 + ] + ], + "cannon": [ + [ + 1.37, + 0.73, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.16, + 0 + ] + ], + "vicegun": [ + [ + 1.37, + 0.73, + 0 + ] + ] + }, + "desc": "Brooklyn-class Light Cruiser – Honolulu, Hull Number CL-48!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102120, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Honolulu", + "painting": "huonululu", + "prefab": "huonululu", + "rarity_bg": "", + "ship_group": 10212, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 114, + "voice_actor_2": -1 + }, + "102121": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 0.73, + 0 + ] + ], + "cannon": [ + [ + 0.19, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0.24, + 0.16, + 0 + ] + ], + "vicegun": [ + [ + 1.32, + 0.78, + 0 + ] + ] + }, + "desc": "If everyone's focusing on the teacher, they probably won't stare at me from up front... As for the umbrella, it's... I know it makes me stand out, but I don't want people to stare at me from behind either...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 102121, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Umbrella Girl", + "painting": "huonululu_2", + "prefab": "huonululu_2", + "rarity_bg": "", + "ship_group": 10212, + "ship_l2d_id": "", + "shop_id": 70054, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 114, + "voice_actor_2": -1 + }, + "102122": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.146, + 0.558, + 0 + ] + ], + "cannon": [ + [ + -0.123, + 0.64, + 0 + ] + ], + "torpedo": [ + [ + 0.155, + 0.055, + 0 + ] + ], + "vicegun": [ + [ + -0.161, + 0.581, + 0 + ] + ] + }, + "desc": "Aaaahh! My sundae! What's up with this stupid hose?! Commander, don't just stand there, help me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 102122, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 45, + 15, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Accident?!", + "painting": "huonululu_3", + "prefab": "huonululu_3", + "rarity_bg": "", + "ship_group": 10212, + "ship_l2d_id": "", + "shop_id": 70109, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 114, + "voice_actor_2": -1 + }, + "102123": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.24, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.16, + 0 + ] + ], + "vicegun": [ + [ + 1.17, + 1.18, + 0 + ] + ] + }, + "desc": "Just where did St. Louis find something like this... such shameless undergarments, if someone found out... Awawawaa! Commander, what are you doing in here? Get out right now!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 102123, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Manjuu Mischief", + "painting": "huonululu_4", + "prefab": "huonululu_4", + "rarity_bg": "", + "ship_group": 10212, + "ship_l2d_id": "", + "shop_id": 70129, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 114, + "voice_actor_2": -1 + }, + "102124": { + "bg": "114", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.238, + 0.943, + 0 + ] + ], + "cannon": [ + [ + 1.325, + 0.977, + 0 + ] + ], + "torpedo": [ + [ + 0.071, + -0.029, + 0 + ] + ], + "vicegun": [ + [ + 1.355, + 0.996, + 0 + ] + ] + }, + "desc": "Come on, Louis, the goldfish stall is this way! ... W-why are you giving me that weird look like th– Wait... Eeeek! C-Commander?! When did you get here?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 102124, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -30, + 30 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -25, + -15, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Among the Stalls", + "painting": "huonululu_5", + "prefab": "huonululu_5", + "rarity_bg": "", + "ship_group": 10212, + "ship_l2d_id": "", + "shop_id": 70216, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 114, + "voice_actor_2": -1 + }, + "102130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.21, + 0.83, + 0 + ] + ], + "cannon": [ + [ + 1.21, + 0.83, + 0 + ] + ], + "torpedo": [ + [ + 0.05, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + 1.21, + 0.83, + 0 + ] + ] + }, + "desc": "Brooklyn-class Light Cruiser – St. Louis, Hull Number CL-49!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 102130, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "St. Louis", + "painting": "shengluyisi", + "prefab": "shengluyisi", + "rarity_bg": "", + "ship_group": 10213, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 114, + "voice_actor_2": -1 + }, + "102131": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2, + 0.69, + 0 + ] + ], + "cannon": [ + [ + 2.21, + 0.72, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + -0.06, + 0 + ] + ], + "vicegun": [ + [ + 2.14, + 0.81, + 0 + ] + ] + }, + "desc": "What do you think of this foreign dress, Commander? *Giggle* ...Perhaps it's rekindled something within you?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 102131, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 59, + -132, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blue and White Pottery", + "painting": "shengluyisi_2", + "prefab": "shengluyisi_2", + "rarity_bg": "", + "ship_group": 10213, + "ship_l2d_id": "", + "shop_id": 70047, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.66, + 2.7, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 114, + "voice_actor_2": -1 + }, + "102132": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.356, + 0.806, + 0 + ] + ], + "cannon": [ + [ + 1.45, + 0.805, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.372, + 0.818, + 0 + ] + ] + }, + "desc": "The Sakura Empire's clothes are just so refined. Ahaha... Aren't you cold standing out there, Commander? Sit down with me and have a drink.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 102132, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Spirits in the Snow", + "painting": "shengluyisi_3", + "prefab": "shengluyisi_3", + "rarity_bg": "", + "ship_group": 10213, + "ship_l2d_id": "", + "shop_id": 70134, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.854, + 2.227, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 114, + "voice_actor_2": -1 + }, + "102133": { + "bg": "137", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.204, + 1.215, + 0 + ] + ], + "cannon": [ + [ + 1.035, + 1.174, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.141, + 1.22, + 0 + ] + ] + }, + "desc": "Oh my, what a good little commander you've been, waiting here all this time for me. Hop in~ Did you think you would be driving? Hehe, you shouldn't underestimate me~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 102133, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -30, + 30 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "home": 4, + "login": 9.5, + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 293.8, + 33.83, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Luxurious Wheels", + "painting": "shengluyisi_4", + "prefab": "shengluyisi_4", + "rarity_bg": "", + "ship_group": 10213, + "ship_l2d_id": "", + "shop_id": 70369, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.636, + 2.392, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 114, + "voice_actor_2": -1 + }, + "102140": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.11, + 1.2, + 0 + ] + ], + "cannon": [ + [ + -0.18, + 1.24, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + 0.13, + 0 + ] + ] + }, + "desc": "Cleveland-class light cruiser – Montpelier, hull number CL-57.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102140, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Montpelier", + "painting": "mengbiliai", + "prefab": "mengbiliai", + "rarity_bg": "", + "ship_group": 10214, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.45, + 2.39, + -0.15 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 131, + "voice_actor_2": -1 + }, + "102141": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.98, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.02, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.95, + 1, + 0 + ] + ] + }, + "desc": "So this is Sakura-style New Year's attire... If Cleve was also interested in this... Hm? Commander, were you watching? Um, well, Happy New Year's.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 102141, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 59, + -162, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Flower of the Snowy Night", + "painting": "mengbiliai_2", + "prefab": "mengbiliai_2", + "rarity_bg": "", + "ship_group": 10214, + "ship_l2d_id": "", + "shop_id": 70137, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 131, + "voice_actor_2": -1 + }, + "102142": { + "bg": "146", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.14, + 3.06, + 0 + ] + ], + "cannon": [ + [ + 1.15, + 3.09, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.14, + 3.1, + 0 + ] + ] + }, + "desc": "As unreliable as you are, I didn't think you'd be too scared to approach a movie prop... You're just \"admiring it from a distance?\" ...Fair enough.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 102142, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Persephone's Throne", + "painting": "mengbiliai_3", + "prefab": "mengbiliai_3", + "rarity_bg": "", + "ship_group": 10214, + "ship_l2d_id": "", + "shop_id": 70556, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.75, + 2.19, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 131, + "voice_actor_2": -1 + }, + "102150": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.23, + 1.05, + 0 + ] + ], + "cannon": [ + [ + -0.14, + 1.09, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ] + }, + "desc": "Cleveland-class light cruiser - Denver (CL-58)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102150, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Denver", + "painting": "danfo", + "prefab": "danfo", + "rarity_bg": "", + "ship_group": 10215, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.49, + 2.23, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 117, + "voice_actor_2": -1 + }, + "102160": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.23, + 1.05, + 0 + ] + ], + "cannon": [ + [ + -0.14, + 1.09, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ] + }, + "desc": "Omaha-class light cruiser – Memphis, Hull Number CL-13.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102160, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Memphis", + "painting": "mengfeisi", + "prefab": "mengfeisi", + "rarity_bg": "", + "ship_group": 10216, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.49, + 2.23, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 159, + "voice_actor_2": -1 + }, + "102161": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0.97, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0.025, + 0.038, + 0 + ] + ] + }, + "desc": "Oh my, do I really look so unusual in this outfit? I want to be able to enjoy my day off as well, you know? Hehe, don't you think it feels nice to just sit back and take in the ocean breeze?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 102161, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Casual Vacation", + "painting": "mengfeisi_2", + "prefab": "mengfeisi_2", + "rarity_bg": "", + "ship_group": 10216, + "ship_l2d_id": "", + "shop_id": 70181, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.53, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 159, + "voice_actor_2": -1 + }, + "102162": { + "bg": "119", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.003, + 1.096, + 0 + ] + ], + "cannon": [ + [ + 0.982, + 1.074, + 0 + ] + ], + "torpedo": [ + [ + -0.006, + -0.018, + 0 + ] + ] + }, + "desc": "We have to work hard if we want to play hard, isn't that right, Commander? Are you ready for our happy Halloween?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 102162, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mystical Night", + "painting": "mengfeisi_3", + "prefab": "mengfeisi_3", + "rarity_bg": "", + "ship_group": 10216, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.53, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 159, + "voice_actor_2": -1 + }, + "102163": { + "bg": "103", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.103, + 0.996, + 0 + ] + ], + "cannon": [ + [ + 1.103, + 0.996, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Oh, what a wonderful breeze. Maybe the windows ought always to be open during class... Commander? What are you standing around for? There's a vacant seat right here for you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 102163, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Breath of Fresh Air", + "painting": "mengfeisi_4", + "prefab": "mengfeisi_4", + "rarity_bg": "", + "ship_group": 10216, + "ship_l2d_id": "", + "shop_id": 70568, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.452, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 159, + "voice_actor_2": -1 + }, + "102180": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.06, + 0.82, + 0 + ] + ], + "cannon": [ + [ + 0.97, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ] + }, + "desc": "Omaha-class light cruiser— Concord, hull number CL-10.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102180, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Concord", + "painting": "kangkede", + "prefab": "kangkede", + "rarity_bg": "", + "ship_group": 10218, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.49, + 2.23, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "102181": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.18, + 0.84, + 0 + ] + ], + "cannon": [ + [ + 0.16, + 0.89, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ] + }, + "desc": "Apple candy, Taiyaki, and fried noodles~ The Sakura Empire’s Temple Fair really is something~ Hehe Commander, do you also want to take a bite of my apple candy? Here you go~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 102181, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Red Apple Candy", + "painting": "kangkede_2", + "prefab": "kangkede_2", + "rarity_bg": "", + "ship_group": 10218, + "ship_l2d_id": "", + "shop_id": 70117, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.49, + 2.23, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "102182": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.519, + 1.108, + 0 + ] + ], + "cannon": [ + [ + 1.559, + 1.105, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0.006, + 0 + ] + ] + }, + "desc": "Merry Sweetsmas, Commander! Today, I get to eat as many sweets as I want without anyone saying things about it~♪ Hmm, I already eat this much every day? I guess so~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 102182, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sweet☆Christmas", + "painting": "kangkede_3", + "prefab": "kangkede_3", + "rarity_bg": "", + "ship_group": 10218, + "ship_l2d_id": "", + "shop_id": 70280, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.23, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "102190": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.95, + 0.69, + 0 + ] + ], + "cannon": [ + [ + 1, + 0.69, + 0 + ] + ], + "torpedo": [ + [ + 0.024, + 0.055, + 0 + ] + ] + }, + "desc": "Brooklyn-class light cruiser – Helena (CL-50)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 102190, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lena", + "painting": "hailunna_younv", + "prefab": "hailunna_younv", + "rarity_bg": "", + "ship_group": 10219, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.504, + 2.202, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "102200": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.071, + 0.879, + 0 + ] + ], + "cannon": [ + [ + 1.074, + 0.858, + 0 + ] + ], + "torpedo": [ + [ + 0.032, + 0.068, + 0 + ] + ] + }, + "desc": "Cleveland-class light cruiser – Cleveland (CL-55)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 102200, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Clevelad", + "painting": "kelifulan_younv", + "prefab": "kelifulan_younv", + "rarity_bg": "", + "ship_group": 10220, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.183, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102210": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.92, + 0.91, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 0.88, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.037, + 0 + ] + ] + }, + "desc": "Atlanta-class light cruiser – San Diego (CL-53)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 102210, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Li'l Sandy", + "painting": "shengdiyage_younv", + "prefab": "shengdiyage_younv", + "rarity_bg": "", + "ship_group": 10221, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.23, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "102220": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.92, + 1.084, + 0 + ] + ], + "cannon": [ + [ + 0.972, + 1.083, + 0 + ] + ], + "torpedo": [ + [ + 0.086, + 0.023, + 0 + ] + ] + }, + "desc": "Atlanta-class light cruiser – San Juan, Hull Number CL-54.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102220, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "San Juan", + "painting": "shenghuan", + "prefab": "shenghuan", + "rarity_bg": "", + "ship_group": 10222, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.23, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 205, + "voice_actor_2": -1 + }, + "102221": { + "bg": "146", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1, + 1.21, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 1.083, + 0 + ] + ], + "torpedo": [ + [ + 0.086, + 0.023, + 0 + ] + ] + }, + "desc": "All right, dress looking good. Now just to check my makeup... Need to be thorough, so I don't embarrass myself in front of– What?! C-Commander?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 102221, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Longing Princess", + "painting": "shenghuan_2", + "prefab": "shenghuan_2", + "rarity_bg": "", + "ship_group": 10222, + "ship_l2d_id": "", + "shop_id": 70601, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.44, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 205, + "voice_actor_2": -1 + }, + "102230": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.071, + 1.046, + 0 + ] + ], + "cannon": [ + [ + 1.088, + 1.068, + 0 + ] + ], + "torpedo": [ + [ + 0.039, + 0.032, + 0 + ] + ] + }, + "desc": "Cleveland-class light cruiser – Birmingham, Hull Number CL-62.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102230, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Birmingham", + "painting": "bominghan", + "prefab": "bominghan", + "rarity_bg": "", + "ship_group": 10223, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.183, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 203, + "voice_actor_2": -1 + }, + "102231": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.042, + 0.98, + 0 + ] + ], + "cannon": [ + [ + 1.074, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0.032, + 0.025, + 0 + ] + ] + }, + "desc": "Good morning, Commander. Unfortunately, this bicycle only seats one person, but I could dismount and lead it along as we walk together.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 102231, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rider of Red", + "painting": "bominghan_2", + "prefab": "bominghan_2", + "rarity_bg": "", + "ship_group": 10223, + "ship_l2d_id": "", + "shop_id": 70209, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.183, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 203, + "voice_actor_2": -1 + }, + "102232": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.002, + 1.007, + 0 + ] + ], + "cannon": [ + [ + 0.993, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Happy Lunar New Year, Commander. I'm trying out Dragon Empery fashion for a change, though this dress will some getting used to. Hey, uh, do you want to join me under the umbrella? For cover against the snowfall, I mean.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 102232, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fruitful Snow of an Auspicious Year", + "painting": "bominghan_4", + "prefab": "bominghan_4", + "rarity_bg": "", + "ship_group": 10223, + "ship_l2d_id": "", + "shop_id": 70492, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.375, + 2.506, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 203, + "voice_actor_2": -1 + }, + "102233": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.071, + 1.046, + 0 + ] + ], + "cannon": [ + [ + 1.088, + 1.068, + 0 + ] + ], + "torpedo": [ + [ + 0.039, + 0.032, + 0 + ] + ] + }, + "desc": "The wind and the waves are great today. You wanna try windsurfing after this, Commander? It's a lot of fun and I can teach you the... Hang on, there's a good wind coming and I've got to catch it!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 102233, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "To Where the Wind Blows", + "painting": "bominghan_3", + "prefab": "bominghan_3", + "rarity_bg": "", + "ship_group": 10223, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.183, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 203, + "voice_actor_2": -1 + }, + "102240": { + "bg": "121", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.114, + 1.107, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 1.088, + 0 + ] + ], + "vicegun": [ + [ + 1.14, + 1.04, + 0 + ] + ] + }, + "desc": "Light cruiser Cleveland, right here! I'm new to this whole idol biz, but I'll go with the flow and give it my all! Oh, and I'm counting on your support, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102240, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cleveland μ", + "painting": "kelifulan_idol", + "prefab": "kelifulan_idol", + "rarity_bg": "", + "ship_group": 10224, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.369, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "102250": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.114, + 0.89, + 0 + ] + ], + "cannon": [ + [ + 1.17, + 0.85, + 0 + ] + ], + "vicegun": [ + [ + 1.14, + 0.89, + 0 + ] + ] + }, + "desc": "Cleveland-class light cruiser – Biloxi, Hull Number CL-80.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 102250, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Biloxi", + "painting": "biluokexi", + "prefab": "biluokexi", + "rarity_bg": "", + "ship_group": 10225, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.67, + 2.17, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 217, + "voice_actor_2": -1 + }, + "102251": { + "bg": "128", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.114, + 0.84, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 0.82, + 0 + ] + ], + "vicegun": [ + [ + 1.14, + 0.79, + 0 + ] + ] + }, + "desc": "We're celebrating an overseas holiday, hence my not-so-casual outfit today. Heheh, what do you think? Looking slick?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 102251, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dapper Gangstress", + "painting": "biluokexi_2", + "prefab": "biluokexi_2", + "rarity_bg": "", + "ship_group": 10225, + "ship_l2d_id": "", + "shop_id": 70310, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.7, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 217, + "voice_actor_2": -1 + }, + "102252": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.114, + 1.104, + 0 + ] + ], + "cannon": [ + [ + 1.101, + 1.123, + 0 + ] + ], + "vicegun": [ + [ + 1.114, + 1.159, + 0 + ] + ] + }, + "desc": "\"Hehe... Now that you've finally fallen into my hands, why don't we take the day to get to know each other real well, Commander?\" Oh my, was my acting a bit too realistic~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 102252, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Empress in the Silk Seat", + "painting": "biluokexi_4", + "prefab": "biluokexi_4", + "rarity_bg": "", + "ship_group": 10225, + "ship_l2d_id": "", + "shop_id": 70376, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.7, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 217, + "voice_actor_2": -1 + }, + "102253": { + "bg": "143", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.259, + 0.919, + 0 + ] + ], + "cannon": [ + [ + 1.24, + 0.904, + 0 + ] + ], + "vicegun": [ + [ + 1.252, + 0.908, + 0 + ] + ] + }, + "desc": "I heard that this place is famous for its festivals with beautiful fireworks, so I made sure to come dressed for the occasion... What do you think? ...I'm even more beautiful? Well, I couldn't let the fireworks be the only things leaving an impression upo", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 102253, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Night Sky's Brilliant Blue Blossoms", + "painting": "biluokexi_5", + "prefab": "biluokexi_5", + "rarity_bg": "", + "ship_group": 10225, + "ship_l2d_id": "", + "shop_id": 70474, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.7, + 2.474, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 217, + "voice_actor_2": -1 + }, + "102254": { + "bg": "158", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.259, + 1.054, + 0 + ] + ], + "cannon": [ + [ + 1.159, + 1.093, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 1.003, + 0 + ] + ] + }, + "desc": "The cast is all here. So, what do we rehearse first? The part where we elope and live happily ever after? Hahahah!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 102254, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Romeo or Juliet?", + "painting": "biluokexi_6", + "prefab": "biluokexi_6", + "rarity_bg": "", + "ship_group": 10225, + "ship_l2d_id": "", + "shop_id": 70712, + "shop_type_id": 19, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.524, + 2.251, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 217, + "voice_actor_2": -1 + }, + "102260": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.388, + 1.106, + 0 + ] + ], + "cannon": [ + [ + 1.211, + 1.069, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.282, + 1.091, + 0 + ] + ] + }, + "desc": "Atlanta-class light cruiser – Reno, Hull Number CL-96.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 102260, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Reno", + "painting": "linuo", + "prefab": "linuo", + "rarity_bg": "", + "ship_group": 10226, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.67, + 2.17, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 231, + "voice_actor_2": -1 + }, + "102261": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.469, + 1.106, + 0 + ] + ], + "cannon": [ + [ + 1.417, + 1.072, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.413, + 1.156, + 0 + ] + ] + }, + "desc": "This really is a huge clash of all the biggest names from all the factions. It's one exciting match after another! I gotta cheer my hardest too. Eagle Union, go get 'em!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 102261, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Biggest Little Cheerleader", + "painting": "linuo_2", + "prefab": "linuo_2", + "rarity_bg": "", + "ship_group": 10226, + "ship_l2d_id": "", + "shop_id": 70334, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.67, + 2.17, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 231, + "voice_actor_2": -1 + }, + "102262": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.368, + 1.106, + 0 + ] + ], + "cannon": [ + [ + 1.282, + 1.111, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.357, + 1.156, + 0 + ] + ] + }, + "desc": "\"Superhero spin-off! The superhero who saved the world is enjoying a hard-earned vacation on the afternoon beach with the sidekick!\" ... Hehe, Commander, a tagline like that sounds pretty cool, doesn't it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 102262, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Spin-off", + "painting": "linuo_4", + "prefab": "linuo_4", + "rarity_bg": "", + "ship_group": 10226, + "ship_l2d_id": "", + "shop_id": 70412, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.67, + 2.17, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 231, + "voice_actor_2": -1 + }, + "102263": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.368, + 1.152, + 0 + ] + ], + "cannon": [ + [ + 1.227, + 1.065, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.348, + 1.092, + 0 + ] + ] + }, + "desc": "Come on in, Commander! Don't you recognize me? I'm Reno Bunnino – cutesy bunny girl by day, villain-vanquishing superhero by night! Pretty neat concept, am I right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 102263, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -47, + -61, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Reno Bunnino", + "painting": "linuo_3", + "prefab": "linuo_3", + "rarity_bg": "", + "ship_group": 10226, + "ship_l2d_id": "", + "shop_id": 70582, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.67, + 2.17, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 231, + "voice_actor_2": -1 + }, + "102264": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.246, + 1.168, + 0 + ] + ], + "cannon": [ + [ + 1.3, + 1.087, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.034, + 1.126, + 0 + ] + ] + }, + "desc": "Check this out, Commander! Hehehe, I added a little firework launcher to my superhero gadgets. Cool, huh? ...Your interest lies more in my new look? But... the firework...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 102264, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Spring's Inspiration", + "painting": "linuo_5", + "prefab": "linuo_5", + "rarity_bg": "", + "ship_group": 10226, + "ship_l2d_id": "", + "shop_id": 70652, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.572, + 2.197, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 231, + "voice_actor_2": -1 + }, + "102270": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.931, + 0.989, + 0 + ] + ], + "cannon": [ + [ + 0.972, + 1.003, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.926, + 0.989, + 0 + ] + ] + }, + "desc": "Omaha-class light cruiser – Marblehead, Hull Number CL-12.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 16, + "id": 102270, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Marblehead", + "painting": "mabuerheide", + "prefab": "mabuerheide", + "rarity_bg": "", + "ship_group": 10227, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.67, + 2.17, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 230, + "voice_actor_2": -1 + }, + "102271": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.237, + 1.147, + 0 + ] + ], + "cannon": [ + [ + 1.205, + 1.225, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.219, + 1.201, + 0 + ] + ] + }, + "desc": "After trying out a whole bunch of activities, I settled on joinin' the boxing club in the end. Everyone wants to exercise now and then, right? Come along, Commander, and we'll have a fun workout together~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 16, + "id": 102271, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Boxing Girl!", + "painting": "mabuerheide_2", + "prefab": "mabuerheide_2", + "rarity_bg": "", + "ship_group": 10227, + "ship_l2d_id": "", + "shop_id": 70336, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.67, + 2.17, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 230, + "voice_actor_2": -1 + }, + "102272": { + "bg": "1102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.148, + 1.034, + 0 + ] + ], + "cannon": [ + [ + 1.157, + 1.023, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.118, + 1.034, + 0 + ] + ] + }, + "desc": "Whoa! Talk about a stunning view! You like, totally know all the best spots in the city, Commander~ Hehe, okay, so... Merry Christmas!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 16, + "id": 102272, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Charmer in the Snowy Reflection", + "painting": "mabuerheide_3", + "prefab": "mabuerheide_3", + "rarity_bg": "", + "ship_group": 10227, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.533, + 2.426, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 230, + "voice_actor_2": -1 + }, + "102273": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.148, + 1.034, + 0 + ] + ], + "cannon": [ + [ + 1.157, + 1.023, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.118, + 1.034, + 0 + ] + ] + }, + "desc": "The annual moon gazing festival's upon us again~ Ah, so you know a thing or two about the Mid-Autumn Festival, Commander? Then I reckon you know what we're doing tonight, right~? ♡", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 16, + "id": 102273, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Moongazing on the 29½th", + "painting": "mabuerheide_4", + "prefab": "mabuerheide_4", + "rarity_bg": "", + "ship_group": 10227, + "ship_l2d_id": "", + "shop_id": 70593, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.533, + 2.426, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 230, + "voice_actor_2": -1 + }, + "102274": { + "bg": "147", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.148, + 1.034, + 0 + ] + ], + "cannon": [ + [ + 1.157, + 1.023, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.118, + 1.034, + 0 + ] + ] + }, + "desc": "Phew... Should be in the clear now. Oh, hey, Commander. Whatcha doing here? Waiting for a cutie to show up or something? Surely it can't be a coincidence... right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 16, + "id": 102274, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Not-So-Serendipitous Rain", + "painting": "mabuerheide_5", + "prefab": "mabuerheide_5", + "rarity_bg": "", + "ship_group": 10227, + "ship_l2d_id": "", + "shop_id": 70829, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.533, + 2.426, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_mabuerheide_5", + [ + 273, + 25, + 0 + ], + [ + 1.5 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 22, + -557, + 0 + ], + [ + 0.85 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 230, + "voice_actor_2": -1 + }, + "102290": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.06, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.07, + 1.13, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.05, + 1.07, + 0 + ] + ] + }, + "desc": "Brooklyn-class light cruiser – Boise, Hull Number CL-47.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102290, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Boise", + "painting": "boyixi", + "prefab": "boyixi", + "rarity_bg": "", + "ship_group": 10229, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.7, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 276, + "voice_actor_2": -1 + }, + "102291": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.11, + 1.29, + 0 + ] + ], + "cannon": [ + [ + 1.07, + 1.22, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 1.29, + 0 + ] + ] + }, + "desc": "Huff... Puff... Deep breaths... I'll never get used to wearing this outfit in front of others... I think...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 102291, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 170, + -35, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sheepish Sapphire", + "painting": "boyixi_2", + "prefab": "boyixi_2", + "rarity_bg": "", + "ship_group": 10229, + "ship_l2d_id": "", + "shop_id": 70542, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 276, + "voice_actor_2": -1 + }, + "102292": { + "bg": "119", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.097, + 1.095, + 0 + ] + ], + "cannon": [ + [ + 1.07, + 1.048, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.169, + 1.07, + 0 + ] + ] + }, + "desc": "Um, I decided to try on a costume, since it's Halloween and all... Do you think I got that witchy look down...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 102292, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Castle Tales", + "painting": "boyixi_3", + "prefab": "boyixi_3", + "rarity_bg": "", + "ship_group": 10229, + "ship_l2d_id": "", + "shop_id": 70612, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.618, + 2.466, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 276, + "voice_actor_2": -1 + }, + "102293": { + "bg": "157", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 1.17, + 0 + ] + ], + "cannon": [ + [ + 1.12, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 1.02, + 0 + ] + ] + }, + "desc": "Huff... Puff... These Dragon Empery clothes look good on me? It's rather revealing and breezy, and makes me feel self-conscious... but if you like it, I suppose it's fine...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 102293, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jade Mermaid", + "painting": "boyixi_4", + "prefab": "boyixi_4", + "rarity_bg": "", + "ship_group": 10229, + "ship_l2d_id": "", + "shop_id": 70704, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 276, + "voice_actor_2": -1 + }, + "102310": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.7, + 1.96, + 0 + ] + ], + "cannon": [ + [ + 1.72, + 1.58, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Cleveland-class light cruiser – Houston II, Hull Number CL-81.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 102310, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Houston II", + "painting": "xiusidunII", + "prefab": "xiusidunII", + "rarity_bg": "", + "ship_group": 10231, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.39, + -0.15 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 7, + "voice_actor_2": -1 + }, + "102311": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.805, + 1.912, + 0 + ] + ], + "cannon": [ + [ + 1.682, + 1.675, + 0 + ] + ], + "torpedo": [ + [ + -0.19, + 0.048, + 0 + ] + ] + }, + "desc": "Thank you for waiting! Houston is here and ready to serve! Mm... I've never worn a costume like this. It's kind of embarrassing... And is it just me, or is it a size or two too small?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 102311, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ready to Serve!", + "painting": "xiusidunII_2", + "prefab": "xiusidunII_2", + "rarity_bg": "", + "ship_group": 10231, + "ship_l2d_id": "", + "shop_id": 70944, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.127, + 2.437, + -0.15 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 7, + "voice_actor_2": -1 + }, + "103010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.05, + 0.8, + 0 + ] + ], + "cannon": [ + [ + 1.05, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + 0.35, + 0.4, + 0 + ] + ], + "vicegun": [ + [ + 1.05, + 0.8, + 0 + ] + ] + }, + "desc": "Pensacola-class Heavy Cruiser – Pensacola, Hull Number CA-24!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 103010, + "illustrator": 9, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pensacola", + "painting": "pengsakela", + "prefab": "pengsakela", + "rarity_bg": "", + "ship_group": 10301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 0.272, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "103020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.997, + 0.476, + 0 + ] + ], + "cannon": [ + [ + 0.997, + 0.476, + 0 + ] + ], + "torpedo": [ + [ + 0.305, + -0.036, + 0 + ] + ], + "vicegun": [ + [ + 0.997, + 0.476, + 0 + ] + ] + }, + "desc": "Pensacola-class Heavy Cruiser – Salt Lake City, Hull Number CA-25!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 103020, + "illustrator": 9, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Salt Lake City", + "painting": "yanhucheng", + "prefab": "yanhucheng", + "rarity_bg": "", + "ship_group": 10302, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 0.272, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "103030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.958, + 0.903, + 0 + ] + ], + "cannon": [ + [ + -0.476, + 1.335, + 0 + ] + ], + "vicegun": [ + [ + -0.958, + 0.903, + 0 + ] + ] + }, + "desc": "Northampton-class Heavy Cruiser – Northampton, Hull Number CA-26!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 3, + "id": 103030, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Northampton", + "painting": "beianpudun", + "prefab": "beianpudun", + "rarity_bg": "", + "ship_group": 10303, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.76, + 0.58, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.45, + 0.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 27, + "voice_actor_2": -1 + }, + "103040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.003, + 0.978, + 0 + ] + ], + "cannon": [ + [ + -0.163, + 1.397, + 0 + ] + ], + "vicegun": [ + [ + -0.382, + 0.721, + 0 + ], + [ + 1.009, + 0.201, + 0 + ] + ] + }, + "desc": "Northampton-class Heavy Cruiser – Chicago, Hull Number CA-29!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 103040, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chicago", + "painting": "zhijiage", + "prefab": "zhijiage", + "rarity_bg": "", + "ship_group": 10304, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.52, + 0.57, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.77, + 0.52, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 84, + "voice_actor_2": -1 + }, + "103050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.902, + 0.808, + 0 + ] + ], + "cannon": [ + [ + 0.895, + 0.732, + 0 + ] + ], + "plane": [ + [ + -0.213, + 1.015, + 0 + ] + ], + "torpedo": [ + [ + 0.062, + 0.488, + 0 + ] + ], + "vicegun": [ + [ + -0.212, + 0.973, + 0 + ] + ] + }, + "desc": "Northampton-class Heavy Cruiser – Houston, Hull Number CA-30!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 103050, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Houston", + "painting": "xiusidun", + "prefab": "xiusidun", + "rarity_bg": "", + "ship_group": 10305, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 7, + "voice_actor_2": -1 + }, + "103060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.038, + 1.046, + 0 + ] + ], + "cannon": [ + [ + 1.704, + 0.702, + 0 + ] + ], + "vicegun": [ + [ + -0.038, + 1.046, + 0 + ] + ] + }, + "desc": "Portland-class Heavy Cruiser – Portland, Hull Number CA-33!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 103060, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Portland", + "painting": "botelan", + "prefab": "botelan", + "rarity_bg": "", + "ship_group": 10306, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.75, + 0.53, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.57, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 10, + "voice_actor_2": -1 + }, + "103061": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.045, + 0.896, + 0 + ] + ], + "cannon": [ + [ + 1.069, + 0.936, + 0 + ] + ], + "vicegun": [ + [ + 0.149, + 0.103, + 0 + ] + ] + }, + "desc": "Commander, look, look! This is my handmade Indy plushie! Isn't it utterly adorable?! It's the magnum opus of my work in the Arts & Crafts Club!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 103061, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "At School With Indy!", + "painting": "botelan_2", + "prefab": "botelan_2", + "rarity_bg": "", + "ship_group": 10306, + "ship_l2d_id": "", + "shop_id": 70164, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.703, + 2.275, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 10, + "voice_actor_2": -1 + }, + "103069": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.48, + 0.77, + 0 + ] + ], + "cannon": [ + [ + 1.48, + 0.77, + 0 + ] + ], + "vicegun": [ + [ + 1.48, + 0.77, + 0 + ] + ] + }, + "desc": "Nice to meet you, I'm Indianaportland! ... Hm? Who's Indy? She's my precious little sister, and my most beloved...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 103069, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Portland (Retrofit)", + "painting": "botelan_g", + "prefab": "botelan_g", + "rarity_bg": "", + "ship_group": 10306, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.75, + 0.838, + -0.178 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.465, + 2.504, + -1.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 10, + "voice_actor_2": -1 + }, + "103070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.034, + 2.917, + 0 + ] + ], + "cannon": [ + [ + 1.876, + 1.689, + 0 + ] + ], + "vicegun": [ + [ + -0.034, + 2.917, + 0 + ] + ] + }, + "desc": "Portland-class Heavy Cruiser – Indianapolis, Hull Number CA-35!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 7, + "id": 103070, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Indianapolis", + "painting": "bolisi", + "prefab": "bolisi", + "rarity_bg": "", + "ship_group": 10307, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.18, + 1.53, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 1.16, + 1.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 7, + "voice_actor_2": -1 + }, + "103071": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.969, + 0.961, + 0 + ] + ], + "cannon": [ + [ + 1.96, + 1.129, + 0 + ] + ], + "vicegun": [ + [ + 0.159, + 0.065, + 0 + ] + ] + }, + "desc": "School life... It's nice as long as you and my sister are here... I think...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 7, + "id": 103071, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "At School With My Sister...", + "painting": "bolisi_2", + "prefab": "bolisi_2", + "rarity_bg": "", + "ship_group": 10307, + "ship_l2d_id": "", + "shop_id": 70165, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.779, + 2.099, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 7, + "voice_actor_2": -1 + }, + "103072": { + "bg": "135", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.807, + 1.157, + 0 + ] + ], + "cannon": [ + [ + 1.832, + 1.24, + 0 + ] + ], + "vicegun": [ + [ + 1.721, + 1.286, + 0 + ] + ] + }, + "desc": "Oh. Good evening, Commander. Do you want some steak? It goes great with wine.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 7, + "id": 103072, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Light of Circle City", + "painting": "bolisi_3", + "prefab": "bolisi_3", + "rarity_bg": "", + "ship_group": 10307, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.566, + 2.406, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 7, + "voice_actor_2": -1 + }, + "103080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.33, + 0.77, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 0.73, + 0 + ] + ], + "vicegun": [ + [ + 1.07, + 0.61, + 0 + ] + ] + }, + "desc": "New Orleans-class heavy cruiser – Astoria, hull number CA-34.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 103080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Astoria", + "painting": "asituoliya", + "prefab": "asituoliya", + "rarity_bg": "", + "ship_group": 10308, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.19, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 143, + "voice_actor_2": -1 + }, + "103081": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.17, + 1.11, + 0 + ] + ], + "cannon": [ + [ + 1.19, + 1.13, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 1.13, + 0 + ] + ] + }, + "desc": "Huh? Commander? ... Wait, why are you staring at me like I'm some exotic animal? C-cute? Ehehe... Th-thanks...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 103081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pure \"Gurl?\"", + "painting": "Asituoliya_3", + "prefab": "Asituoliya_3", + "rarity_bg": "", + "ship_group": 10308, + "ship_l2d_id": "", + "shop_id": 70082, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.3, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 143, + "voice_actor_2": -1 + }, + "103082": { + "bg": "104", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 1.15, + 0.83, + 0 + ] + ], + "vicegun": [ + [ + 1.15, + 0.84, + 0 + ] + ] + }, + "desc": "Heyyo! You ready for this, Commander? It's carnival day! You can have all the drinks you want, it's on the house!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 103082, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Black Bunny Carnival", + "painting": "asituoliya_2", + "prefab": "asituoliya_2", + "rarity_bg": "", + "ship_group": 10308, + "ship_l2d_id": "", + "shop_id": 70527, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 143, + "voice_actor_2": -1 + }, + "103090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.27, + 0.76, + 0 + ] + ], + "cannon": [ + [ + 1.19, + 0.85, + 0 + ] + ], + "vicegun": [ + [ + 1.19, + 0.78, + 0 + ] + ] + }, + "desc": "New Orleans-class heavy cruiser – Quincy, hull number CA-39.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 103090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Quincy", + "painting": "kunxi", + "prefab": "kunxi", + "rarity_bg": "", + "ship_group": 10309, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.12, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 144, + "voice_actor_2": -1 + }, + "103091": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.49, + 0.67, + 0 + ] + ], + "cannon": [ + [ + -0.45, + 0.71, + 0 + ] + ], + "vicegun": [ + [ + -0.51, + 0.71, + 0 + ] + ] + }, + "desc": "Everyone's so cheerful and energetic... Commander, um, if you're tired, want to rest here with me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 103091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sizzling Summer, Brisk Breeze", + "painting": "kunxi_2", + "prefab": "kunxi_2", + "rarity_bg": "", + "ship_group": 10309, + "ship_l2d_id": "", + "shop_id": 70083, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 144, + "voice_actor_2": -1 + }, + "103100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.43, + 0.93, + 0 + ] + ], + "cannon": [ + [ + 0.93, + 0.7, + 0 + ] + ], + "vicegun": [ + [ + 0.95, + 0.67, + 0 + ] + ] + }, + "desc": "New Orleans-class heavy cruiser – Vincennes, hull number CA-44.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 103100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vincennes", + "painting": "wensensi", + "prefab": "wensensi", + "rarity_bg": "", + "ship_group": 10310, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.27, + 2.14, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 144, + "voice_actor_2": -1 + }, + "103101": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.35, + 0.56, + 0 + ] + ], + "cannon": [ + [ + 1.34, + 0.51, + 0 + ] + ], + "vicegun": [ + [ + 1.29, + 0.5, + 0 + ] + ] + }, + "desc": "Zzz... sho comfy... Huh? Commyander...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 103101, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sweet Dreams", + "painting": "Wensensi_3", + "prefab": "Wensensi_3", + "rarity_bg": "", + "ship_group": 10310, + "ship_l2d_id": "", + "shop_id": 70084, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.13, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 144, + "voice_actor_2": -1 + }, + "103102": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.72, + 0.65, + 0 + ] + ], + "cannon": [ + [ + 0.63, + 0.64, + 0 + ] + ], + "vicegun": [ + [ + 0.65, + 0.64, + 0 + ] + ] + }, + "desc": "Off to school we go~ Being punctual makes me a good girl~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 103102, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Leisurely ABC's", + "painting": "wensensi_2", + "prefab": "wensensi_2", + "rarity_bg": "", + "ship_group": 10310, + "ship_l2d_id": "", + "shop_id": 70140, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.26, + 2.11, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 144, + "voice_actor_2": -1 + }, + "103110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.86, + 0.52, + 0 + ] + ], + "torpedo": [ + [ + 0.42, + 0.34, + 0 + ] + ], + "vicegun": [ + [ + 0.86, + 0.52, + 0 + ] + ] + }, + "desc": "Wichita-class heavy cruiser – Wichita, Hull Number CA-45! \nUnlock build after receiving", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 103110, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Wichita", + "painting": "weiqita", + "prefab": "weiqita", + "rarity_bg": "", + "ship_group": 10311, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 1.05, + 0.14 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.498, + 2.78, + -0.69 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "103111": { + "bg": "135", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.416, + 1.131, + 0 + ] + ], + "torpedo": [ + [ + -0.008, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.385, + 1.125, + 0 + ] + ] + }, + "desc": "It's about time you showed up, Commander. Now, show me some spirit! As my lieutenant, don't do anything slovenly that would incur the mockery of others! Very well, let's move out!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 103111, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The General's Banquet", + "painting": "weiqita_2", + "prefab": "weiqita_2", + "rarity_bg": "", + "ship_group": 10311, + "ship_l2d_id": "", + "shop_id": 70427, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.401, + 2.602, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "103112": { + "bg": "119", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.416, + 1.131, + 0 + ] + ], + "torpedo": [ + [ + -0.008, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.385, + 1.125, + 0 + ] + ] + }, + "desc": "Tonight I am not a renowned naval general, I am a feared commander of witches! And you... Yes, you're not my lieutenant, you are my arcane familiar! ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 103112, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Domineering Witchita ", + "painting": "weiqita_3", + "prefab": "weiqita_3", + "rarity_bg": "", + "ship_group": 10311, + "ship_l2d_id": "", + "shop_id": 70435, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.401, + 2.602, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "103120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.5, + 1.22, + 0 + ] + ], + "torpedo": [ + [ + 0.155, + 0.084, + 0 + ] + ], + "vicegun": [ + [ + 1.4, + 0.99, + 0 + ] + ] + }, + "desc": "Lock on... Fire!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 103120, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Orleans", + "painting": "xinaoerliang", + "prefab": "xinaoerliang", + "rarity_bg": "", + "ship_group": 10312, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.59, + 2.3, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 289, + "voice_actor_2": -1 + }, + "103121": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.323, + 1.22, + 0 + ] + ], + "torpedo": [ + [ + 0.116, + 0.045, + 0 + ] + ], + "vicegun": [ + [ + 1.301, + 0.99, + 0 + ] + ] + }, + "desc": "To your prestige, and to your continued victories, Commander. Hehe, I do find myself in the mood for rum tonight. Care to keep me company for a while?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 103121, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Evening Agricole", + "painting": "xinaoerliang_2", + "prefab": "xinaoerliang_2", + "rarity_bg": "", + "ship_group": 10312, + "ship_l2d_id": "", + "shop_id": 70625, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.379, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 289, + "voice_actor_2": -1 + }, + "103130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.619, + 0.953, + 0 + ] + ], + "torpedo": [ + [ + 0.155, + 0.084, + 0 + ] + ], + "vicegun": [ + [ + 1.654, + 1.041, + 0 + ] + ] + }, + "desc": "New Orleans class Heavy Cruiser— Minneapolis, hull number CA-36.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 16, + "id": 103130, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Minneapolis", + "painting": "mingniabolisi", + "prefab": "mingniabolisi", + "rarity_bg": "", + "ship_group": 10313, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 2.427, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 153, + "voice_actor_2": -1 + }, + "103131": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.95, + 0.91, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.04, + 0 + ] + ], + "vicegun": [ + [ + 0.91, + 0.94, + 0 + ] + ] + }, + "desc": "Textbooks, pencils and erasers... hey, must students always pay attention in class... Commander? Can you arrange for us to get more extracurricular activities?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 16, + "id": 103131, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Wild Huntress Schoolgirl", + "painting": "mingniabolisi_2", + "prefab": "mingniabolisi_2", + "rarity_bg": "", + "ship_group": 10313, + "ship_l2d_id": "", + "shop_id": 70113, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.33, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 153, + "voice_actor_2": -1 + }, + "103132": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.95, + 1.074, + 0 + ] + ], + "torpedo": [ + [ + -0.009, + -0.006, + 0 + ] + ], + "vicegun": [ + [ + 0.966, + 1.181, + 0 + ] + ] + }, + "desc": "Oh crap! Move outta the way, Commander! Come on, man, look out next time! You'd have gotten hurt if I'd slammed into you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 16, + "id": 103132, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "eXtreme Games", + "painting": "mingniabolisi_3", + "prefab": "mingniabolisi_3", + "rarity_bg": "", + "ship_group": 10313, + "ship_l2d_id": "", + "shop_id": 70330, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.33, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 153, + "voice_actor_2": -1 + }, + "103133": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.112, + 0.987, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.153, + 0.994, + 0 + ] + ] + }, + "desc": "Merry Christmas, Commander! Right now, I'm Santa Claus! And this guy over here is my partner in delivering presents! Right, this is a present for you. C'mon, go ahead and take it!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 16, + "id": 103133, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Holy Night Ride", + "painting": "mingniabolisi_4", + "prefab": "mingniabolisi_4", + "rarity_bg": "", + "ship_group": 10313, + "ship_l2d_id": "", + "shop_id": 70453, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.492, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 153, + "voice_actor_2": -1 + }, + "103138": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.584, + 1.047, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + -0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.654, + 1.041, + 0 + ] + ] + }, + "desc": "Commander, why's that Quincy so happy to see me in this outfit? It's hard to move around in, and there's all this stuff flapping around that makes it hard to hunt. What do you think of this outfit?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 16, + "id": 103138, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Trapper White", + "painting": "mingniabolisi_h", + "prefab": "mingniabolisi_h", + "rarity_bg": "", + "ship_group": 10313, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 2.427, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 153, + "voice_actor_2": -1 + }, + "103140": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.266, + 1.151, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.301, + 1.144, + 0 + ] + ] + }, + "desc": "New Orleans-class heavy cruiser – San Francisco, Hull Number CA-38.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 103140, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "San Francisco", + "painting": "jiujinshan", + "prefab": "jiujinshan", + "rarity_bg": "", + "ship_group": 10314, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.596, + 2.323, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 275, + "voice_actor_2": -1 + }, + "103141": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.062, + 1.166, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.075, + 1.103, + 0 + ] + ] + }, + "desc": "Music! Lights! Refreshments! We're all set! Welcome to San Francisco's party! Come and enjoy yourself!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 103141, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Funny Bunny!", + "painting": "jiujinshan_3", + "prefab": "jiujinshan_3", + "rarity_bg": "", + "ship_group": 10314, + "ship_l2d_id": "", + "shop_id": 70546, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 2.35, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 275, + "voice_actor_2": -1 + }, + "103142": { + "bg": "159", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.851, + 0.805, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 0.837, + 0.797, + 0 + ] + ] + }, + "desc": "Good evening, Puddin'! Welcome to my pole dancing show! You aren't going home tonight 'til you're head over heels for me♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 103142, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "It's Showtime!", + "painting": "jiujinshan_4", + "prefab": "jiujinshan_4", + "rarity_bg": "", + "ship_group": 10314, + "ship_l2d_id": "", + "shop_id": 70724, + "shop_type_id": 21, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 1.854, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 275, + "voice_actor_2": -1 + }, + "103160": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.047, + 0.794, + 0 + ] + ], + "torpedo": [ + [ + 0.155, + 0.041, + 0 + ] + ], + "vicegun": [ + [ + 1.024, + 0.773, + 0 + ] + ] + }, + "desc": "Baltimore-class heavy cruiser – Baltimore, Hull Number CA-68.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 103160, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Baltimore", + "painting": "baerdimo", + "prefab": "baerdimo", + "rarity_bg": "", + "ship_group": 10316, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 2.427, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 191, + "voice_actor_2": -1 + }, + "103161": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.113, + 0.721, + 0 + ] + ], + "torpedo": [ + [ + 0.155, + 0.012, + 0 + ] + ], + "vicegun": [ + [ + 0.097, + 0.708, + 0 + ] + ] + }, + "desc": "Oh, you wanna observe my club activities, Commander? Ahah, as you can tell, it's just a sports club with the goal of making you sweat. Nothing suspicious about that, is there...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 103161, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "After-School Ace", + "painting": "baerdimo_2", + "prefab": "baerdimo_2", + "rarity_bg": "", + "ship_group": 10316, + "ship_l2d_id": "", + "shop_id": 70207, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.567, + 2.333, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 191, + "voice_actor_2": -1 + }, + "103162": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.185, + 1.032, + 0 + ] + ], + "torpedo": [ + [ + 0.009, + 0.012, + 0 + ] + ], + "vicegun": [ + [ + 1.195, + 1.089, + 0 + ] + ] + }, + "desc": "Heya, you here to watch the game? Heh, heavy cruiser Baltimore, the passerby solver of troubles, here to play it cool!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 103162, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Black Ace", + "painting": "baerdimo_4", + "prefab": "baerdimo_4", + "rarity_bg": "", + "ship_group": 10316, + "ship_l2d_id": "", + "shop_id": 70333, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.567, + 2.333, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 191, + "voice_actor_2": -1 + }, + "103163": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.199, + 1.124, + 0 + ] + ], + "torpedo": [ + [ + 0.009, + 0.012, + 0 + ] + ], + "vicegun": [ + [ + 1.195, + 1.089, + 0 + ] + ] + }, + "desc": "Damn, that Bremerton... What did she make me wear this time... Even though I was the one to ask her for advice... Um... Ugh... This doesn't look too weird, right...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 103163, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 6.67, + "main_1": 0.2, + "propose": 0.4, + "touch": 0.66 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Evening Breeze Minuet", + "painting": "baerdimo_5", + "prefab": "baerdimo_5", + "rarity_bg": "", + "ship_group": 10316, + "ship_l2d_id": "", + "shop_id": 70418, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.567, + 2.333, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 191, + "voice_actor_2": -1 + }, + "103164": { + "bg": "142", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.176, + 1.177, + 0 + ] + ], + "torpedo": [ + [ + 0.009, + 0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.172, + 1.204, + 0 + ] + ] + }, + "desc": "\"Our meeting here must have been preordained by fate. Hail to you. I am a passing traveler by the name of Baltimore.\" ...Hahah, it's nothing. Just some lines I came up with to match my traditional getup. Did they do the trick, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 103164, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ace's Travel Journal", + "painting": "baerdimo_3", + "prefab": "baerdimo_3", + "rarity_bg": "", + "ship_group": 10316, + "ship_l2d_id": "", + "shop_id": 70525, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.433, + 2.437, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 191, + "voice_actor_2": -1 + }, + "103165": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.15, + 0.87, + 0 + ] + ], + "torpedo": [ + [ + 0.009, + 0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 0.94, + 0 + ] + ] + }, + "desc": "Heya, Commander. You here to spectate the race? Strap in, 'cause it's gonna be wild... My getup? They asked me to help out the grid girls, so yeah. Just hope I'll do a good job of building hype for the race.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 13, + "id": 103165, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -40, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Finish Line Flagbearer", + "painting": "baerdimo_6", + "prefab": "baerdimo_6", + "rarity_bg": "", + "ship_group": 10316, + "ship_l2d_id": [ + 1031651 + ], + "shop_id": 70758, + "shop_type_id": 14, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.433, + 2.34, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 191, + "voice_actor_2": -1 + }, + "103240": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.202, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + -0.009, + -0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.22, + 1.132, + 0 + ] + ] + }, + "desc": "Baltimore-class heavy cruiser – Bremerton, Hull Number CA-130.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 103240, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bremerton", + "painting": "bulaimodun", + "prefab": "bulaimodun", + "rarity_bg": "", + "ship_group": 10324, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 2.427, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 134, + "voice_actor_2": -1 + }, + "103241": { + "bg": "112", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.371, + 1.067, + 0 + ] + ], + "torpedo": [ + [ + 0.016, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.316, + 1.122, + 0 + ] + ] + }, + "desc": "*pant*... *pant*... Man, it's so sunny today... Commander, or should I say, \"Coach,\" could ya lend me your parasol? I'm starting to feel my brains melting away...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 103241, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Scorching-Hot Training", + "painting": "bulaimodun_3", + "prefab": "bulaimodun_3", + "rarity_bg": "", + "ship_group": 10324, + "ship_l2d_id": "", + "shop_id": 70331, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 2.427, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 134, + "voice_actor_2": -1 + }, + "103242": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.371, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + -0.012, + 0 + ] + ], + "vicegun": [ + [ + 1.383, + 0.998, + 0 + ] + ] + }, + "desc": "\"Stop right there, evildoers! You've managed to evade justice all this time, but the hour of judgment is finally upon you!\" ...Hmm, making the perfect flashy debut is pretty tough, isn't it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 103242, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -10, + 10 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 2.17 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kung Fu Cruiser", + "painting": "bulaimodun_4", + "prefab": "bulaimodun_4", + "rarity_bg": "", + "ship_group": 10324, + "ship_l2d_id": "", + "shop_id": 70482, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.491, + 2.587, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 134, + "voice_actor_2": -1 + }, + "103243": { + "bg": "108", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.229, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.166, + 0.998, + 0 + ] + ] + }, + "desc": "I reckon we've done enough shopping for the moment. Let's stop and chill here for a bit, then have another look around~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 103243, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleY": [ + -15, + 15 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 10, + -90, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Day-Off Date", + "painting": "bulaimodun_2", + "prefab": "bulaimodun_2", + "rarity_bg": "", + "ship_group": 10324, + "ship_l2d_id": "", + "shop_id": 70623, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.463, + 2.539, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 134, + "voice_actor_2": -1 + }, + "103244": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.202, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + -0.009, + -0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.22, + 1.132, + 0 + ] + ] + }, + "desc": "Welcome to Bremerton's counseling corner! Actually, I came up with this idea just for you, since you're always working so hard... Tadaaah~! I've prepared us some matching sleepwear~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 103244, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -20, + 20 + ], + "ParamAngleY": [ + -15, + 15 + ], + "ParamBodyAngleX": [ + -8, + 8 + ], + "ParamBodyAngleY": [ + -8, + 4 + ], + "ParamEyeBallX": [ + -0.1, + 0.1 + ], + "ParamEyeBallY": [ + -0.1, + 0.1 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 57, + 65, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Relaxation Consultation", + "painting": "bulaimodun_5", + "prefab": "bulaimodun_5", + "rarity_bg": "", + "ship_group": 10324, + "ship_l2d_id": "", + "shop_id": 70774, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.213, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 134, + "voice_actor_2": -1 + }, + "103248": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.76, + 0.867, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.764, + 0.846, + 0 + ] + ] + }, + "desc": "Three, two, one, go! Did you get a pic of me tossing the bouquet, Commander? Ahahah! I'm postin' this to Juustagram later, so you should do the same! It'll be like... retaking our pledge of love♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 103248, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Joyride of Love", + "painting": "bulaimodun_h", + "prefab": "bulaimodun_h", + "rarity_bg": "", + "ship_group": 10324, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.859, + 2.284, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 134, + "voice_actor_2": -1 + }, + "103250": { + "bg": "140", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.304, + 0.894, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.274, + 0.914, + 0 + ] + ] + }, + "desc": "The name's Baltimore, Eagle Union heavy cruiser. Whoops, right, I'm not just a soldier anymore, but an idol as well. I agreed to do it, and I'm gonna do it as best I can. We'll be counting on your support, Commander. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 103250, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Baltimore μ", + "painting": "baerdimo_idol", + "prefab": "baerdimo_idol", + "rarity_bg": "", + "ship_group": 10325, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 2.427, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 191, + "voice_actor_2": -1 + }, + "103260": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.202, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.24, + 0.85, + 0 + ] + ] + }, + "desc": "Oregon City-class heavy cruiser – Northampton II, Hull Number CA-125.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 3, + "id": 103260, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Northampton II", + "painting": "beianpudunII", + "prefab": "beianpudunII", + "rarity_bg": "", + "ship_group": 10326, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.427, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 27, + "voice_actor_2": -1 + }, + "103261": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.202, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.24, + 0.85, + 0 + ] + ] + }, + "desc": "Whew. How many laps have I done since my last break...? Oh. Commander, are you here to hone your swimming skills too?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 3, + "id": 103261, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "complete": 0.33, + "home": 1.5, + "login": 0.4, + "mail": 0.43, + "main_1": 0.26, + "main_2": 0.26, + "main_3": 0.33, + "mission": 0.33, + "mission_complete": 0.33, + "propose": 0.33, + "touch": 0.33, + "touch2": 0.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 15, + -25, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Swimming Star", + "painting": "beianpudunII_2", + "prefab": "beianpudunII_2", + "rarity_bg": "", + "ship_group": 10326, + "ship_l2d_id": [ + 1032611 + ], + "shop_id": 70777, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.36, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 27, + "voice_actor_2": -1 + }, + "103262": { + "bg": "157", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.57, + 0.82, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.56, + 0.82, + 0 + ] + ] + }, + "desc": "Phew... This getup does help me get into the festival mood. It looks nice, and it's supremely comfortable, but I can't shake this embarrassment... Huh? Commander? When did you get here?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 3, + "id": 103262, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Comfy Crane Amidst the Clouds", + "painting": "beianpudunII_3", + "prefab": "beianpudunII_3", + "rarity_bg": "", + "ship_group": 10326, + "ship_l2d_id": "", + "shop_id": 70961, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.34, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 27, + "voice_actor_2": -1 + }, + "103270": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.058, + 1.038, + 0 + ] + ], + "cannon": [ + [ + 2.059, + 0.999, + 0 + ] + ], + "torpedo": [ + [ + -0.052, + 0.061, + 0 + ] + ], + "vicegun": [ + [ + 2.134, + 1.089, + 0 + ] + ] + }, + "desc": "Northampton-class heavy cruiser – Louisville, Hull Number CA-28.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 103270, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Louisville", + "painting": "luyisiweier", + "prefab": "luyisiweier", + "rarity_bg": "", + "ship_group": 10327, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.261, + 2.531, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 393, + "voice_actor_2": -1 + }, + "103271": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.902, + 1.237, + 0 + ] + ], + "cannon": [ + [ + 1.868, + 1.042, + 0 + ] + ], + "torpedo": [ + [ + -0.147, + 0.026, + 0 + ] + ], + "vicegun": [ + [ + 1.884, + 1.115, + 0 + ] + ] + }, + "desc": "Commander, here's your order of... Umm, it's written on the ticket, right... Huh? Where did I put that thing? Oh no, I'm in real trouble if I mess up the Commander's order...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 103271, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "An Order of Dreams", + "painting": "luyisiweier_2", + "prefab": "luyisiweier_2", + "rarity_bg": "", + "ship_group": 10327, + "ship_l2d_id": "", + "shop_id": 70941, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.198, + 2.377, + 0.14 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_luyisiweier_2", + [ + 156, + -59, + 0 + ], + [ + 0.4 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 231, + -699, + 0 + ], + [ + 0.4 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 393, + "voice_actor_2": -1 + }, + "104010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.3, + 1.41, + 0 + ] + ], + "cannon": [ + [ + 2.31, + 1.31, + 0 + ] + ], + "torpedo": [ + [ + -0.07, + -0.15, + 0 + ] + ], + "vicegun": [ + [ + 2.42, + 1.34, + 0 + ] + ] + }, + "desc": "Lexington-class battlecruiser – Constellation, Hull Number CC-2.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 104010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Constellation", + "painting": "xingzuo", + "prefab": "xingzuo", + "rarity_bg": "", + "ship_group": 10401, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.14, + 2.41, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 390, + "voice_actor_2": -1 + }, + "104011": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.3, + 1.41, + 0 + ] + ], + "cannon": [ + [ + 2.234, + 1.224, + 0 + ] + ], + "torpedo": [ + [ + -0.143, + 0.057, + 0 + ] + ], + "vicegun": [ + [ + 2.42, + 1.34, + 0 + ] + ] + }, + "desc": "Welcome, Commander. If you want me to take your order, please subscribe for one month to my horoscope reading on Juustagram... Heehee, I'm joking. If you have any questions, I will gladly answer.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 104011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Galaxy's Finest", + "painting": "xingzuo_2", + "prefab": "xingzuo_2", + "rarity_bg": "", + "ship_group": 10401, + "ship_l2d_id": "", + "shop_id": 70938, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.268, + 2.436, + 0.14 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_xingzuo_2", + [ + -64, + -142, + 0 + ], + [ + 0.8 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 47, + -506, + 0 + ], + [ + 0.8 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 390, + "voice_actor_2": -1 + }, + "105010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.04, + 0.546, + 0 + ] + ], + "cannon": [ + [ + -0.358, + 1.3, + 0 + ] + ], + "vicegun": [ + [ + -0.034, + 0.734, + 0 + ], + [ + 1.04, + 0.546, + 0 + ] + ] + }, + "desc": "Nevada-class battleship – Nevada, Hull Number BB-36!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 105010, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nevada", + "painting": "neihuada", + "prefab": "neihuada", + "rarity_bg": "", + "ship_group": 10501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.664, + 0.493, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.563, + 0.503, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 73, + "voice_actor_2": -1 + }, + "105011": { + "bg": "161", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.21, + 1.368, + 0 + ] + ], + "cannon": [ + [ + 1.078, + 1.096, + 0 + ] + ], + "vicegun": [ + [ + 1.393, + 0.838, + 0 + ] + ] + }, + "desc": "Howdy, young'un! Aren't you tired from goin' around greetin' fancy people? Come over here and relax with me and some good food.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 105011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Magnificent Banquet", + "painting": "neihuada_2", + "prefab": "neihuada_2", + "rarity_bg": "", + "ship_group": 10501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.892, + 1.843, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 73, + "voice_actor_2": -1 + }, + "105019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 0.79, + 0 + ] + ], + "cannon": [ + [ + 0.96, + 0.87, + 0 + ] + ], + "vicegun": [ + [ + 0.98, + 0.85, + 0 + ] + ] + }, + "desc": "Heh, with this, I won't be outperformed by those fancy greenhorn battleships. Young'un, from now on, just leave everything to Nevada here!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 105019, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nevada (Retrofit)", + "painting": "neihuada_g", + "prefab": "neihuada_g", + "rarity_bg": "", + "ship_group": 10501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.56, + 2.17, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 73, + "voice_actor_2": -1 + }, + "105020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.563, + 0 + ] + ], + "cannon": [ + [ + -0.205, + 1.3, + 0 + ] + ], + "vicegun": [ + [ + 0.051, + 0.768, + 0 + ], + [ + 1.1, + 0.563, + 0 + ] + ] + }, + "desc": "Nevada-class battleship – Oklahoma, Hull Number BB-37!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 105020, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Oklahoma", + "painting": "ekelahema", + "prefab": "ekelahema", + "rarity_bg": "", + "ship_group": 10502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.691, + 0.565, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.483, + 0.534, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 73, + "voice_actor_2": -1 + }, + "105021": { + "bg": "162", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 1.12, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 0.91, + 0 + ] + ], + "vicegun": [ + [ + 0.051, + 0.768, + 0 + ], + [ + 1.1, + 0.75, + 0 + ] + ] + }, + "desc": "Howdy, Commander! Oh, this outfit? I've been super into this kind of stuff lately! I even added some jack-o-lanterns for extra ambiance and had some Manjuus help out. So what's the verdict? Pretty cool, isn't it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 105021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Piratey Transformation!", + "painting": "ekelahema_2", + "prefab": "ekelahema_2", + "rarity_bg": "", + "ship_group": 10502, + "ship_l2d_id": "", + "shop_id": 70766, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 73, + "voice_actor_2": -1 + }, + "105029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.07, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 0.15, + 1.1, + 0 + ] + ], + "vicegun": [ + [ + 0.1, + 1.08, + 0 + ] + ] + }, + "desc": "Thanks a ton, Commander. With my new strength, do you think I've managed to catch up to my sister a little? Ehehe, for your sake, I'll work even harder!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 105029, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Oklahoma (Retrofit)", + "painting": "ekelahema_g", + "prefab": "ekelahema_g", + "rarity_bg": "", + "ship_group": 10502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.49, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 73, + "voice_actor_2": -1 + }, + "105030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.06, + 1.185, + 0 + ], + [ + 1.51, + 0.784, + 0 + ] + ], + "cannon": [ + [ + 0.06, + 1.3, + 0 + ] + ], + "vicegun": [ + [ + 0.06, + 1.185, + 0 + ], + [ + 1.51, + 0.784, + 0 + ] + ] + }, + "desc": "Pennsylvania-class battleship – Pennsylvania, Hull Number BB-38!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 105030, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pennsylvania", + "painting": "binxifaniya", + "prefab": "binxifaniya", + "rarity_bg": "", + "ship_group": 10503, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.717, + 0.483, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.385, + 0.503, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "105031": { + "bg": "153", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.36, + 1.39, + 0 + ] + ], + "cannon": [ + [ + 1.26, + 1.15, + 0 + ] + ], + "vicegun": [ + [ + 0.86, + 1.07, + 0 + ], + [ + 1.44, + 0.95, + 0 + ] + ] + }, + "desc": "Halt! Who are you?! ...Oh, it's you, Commander. I briefly mistook you for a spy there. Why are you here? To spectate? Or, God forbid, to gather intel on my army?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 105031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Keystone General", + "painting": "binxifaniya_2", + "prefab": "binxifaniya_2", + "rarity_bg": "", + "ship_group": 10503, + "ship_l2d_id": "", + "shop_id": 70655, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "105040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.051, + 1.083, + 0 + ], + [ + 1.432, + 0.75, + 0 + ] + ], + "cannon": [ + [ + 0.051, + 1.3, + 0 + ] + ], + "vicegun": [ + [ + 0.051, + 1.083, + 0 + ], + [ + 1.432, + 0.75, + 0 + ] + ] + }, + "desc": "Pennsylvania-class Battleship – Arizona, Hull Number BB-39!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 105040, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arizona", + "painting": "yalisangna", + "prefab": "yalisangna", + "rarity_bg": "", + "ship_group": 10504, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.74, + 0.372, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.227, + 0.657, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 37, + "voice_actor_2": -1 + }, + "105041": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.106, + 1.278, + 0 + ], + [ + 1.13, + 1.202, + 0 + ] + ], + "cannon": [ + [ + 1.062, + 1.069, + 0 + ] + ], + "vicegun": [ + [ + 0.876, + 1.092, + 0 + ], + [ + 1.157, + 1.149, + 0 + ] + ] + }, + "desc": "I heard these clothes are from the Dragon Empery, but they're a bit... Umm, it's not that I dislike them, but the thought of you seeing me in them is rather embarrassing... B-but it's not like I'm going to start crying...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 105041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Enchantress from Afar", + "painting": "yalisangna_2", + "prefab": "yalisangna_2", + "rarity_bg": "", + "ship_group": 10504, + "ship_l2d_id": "", + "shop_id": 70656, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.389, + 2.301, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 37, + "voice_actor_2": -1 + }, + "105070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.5, + 0.8, + 0 + ], + [ + -0.5, + 0.8, + 0 + ] + ], + "cannon": [ + [ + -0.247, + 1.3, + 0 + ] + ], + "vicegun": [ + [ + 0.921, + 0.154, + 0 + ], + [ + 0.802, + 0.802, + 0 + ] + ] + }, + "desc": "Tennessee-class battleship – Tennessee, Hull Number BB-43!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 3, + "id": 105070, + "illustrator": 12, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tennessee", + "painting": "tiannaxi", + "prefab": "tiannaxi", + "rarity_bg": "", + "ship_group": 10507, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.815, + 0.39, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.332, + 0.431, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 65, + "voice_actor_2": -1 + }, + "105080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.076, + 1.256, + 0 + ], + [ + 0.945, + 0.923, + 0 + ] + ], + "cannon": [ + [ + -0.569, + 1.3, + 0 + ] + ], + "vicegun": [ + [ + -0.076, + 1.256, + 0 + ], + [ + 0.945, + 0.923, + 0 + ] + ] + }, + "desc": "Tennessee-class battleship – California, Hull Number BB-44!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 3, + "id": 105080, + "illustrator": 12, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "California", + "painting": "jialifuniya", + "prefab": "jialifuniya", + "rarity_bg": "", + "ship_group": 10508, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.753, + 0.554, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.367, + 0.575, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 65, + "voice_actor_2": -1 + }, + "105090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.331, + 0.83, + 0 + ] + ], + "cannon": [ + [ + 1.369, + 1.007, + 0 + ] + ], + "vicegun": [ + [ + 1.387, + 0.979, + 0 + ] + ] + }, + "desc": "Colorado class battleship— Colorado, hull number BB-45", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 105090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Colorado", + "painting": "keluoladuo", + "prefab": "keluoladuo", + "rarity_bg": "", + "ship_group": 10509, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.403, + 2.209, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 152, + "voice_actor_2": -1 + }, + "105092": { + "bg": "149", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.138, + 1.232, + 0 + ] + ], + "cannon": [ + [ + 1.302, + 1.084, + 0 + ] + ], + "vicegun": [ + [ + 1.284, + 0.88, + 0 + ] + ] + }, + "desc": "Hmm-hum-hum... So very cute~♪ ...Commander? Um, about that... Please do me a favor and forget you heard anything.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 105092, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Traveling Melody", + "painting": "keluoladuo_3", + "prefab": "keluoladuo_3", + "rarity_bg": "", + "ship_group": 10509, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.502, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 152, + "voice_actor_2": -1 + }, + "105100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.133, + 1.164, + 0 + ] + ], + "cannon": [ + [ + 1.161, + 1.127, + 0 + ] + ], + "vicegun": [ + [ + 1.17, + 1.025, + 0 + ] + ] + }, + "desc": "Colorado class battleship— Maryland, hull number BB-46", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 105100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Maryland", + "painting": "malilan", + "prefab": "malilan", + "rarity_bg": "", + "ship_group": 10510, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.592, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 162, + "voice_actor_2": -1 + }, + "105110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.46, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.46, + 1.14, + 0 + ] + ], + "vicegun": [ + [ + 1.46, + 1.14, + 0 + ] + ] + }, + "desc": "Colorado class battleship— West Virginia, hull number BB-48.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 105110, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "West Virginia", + "painting": "xifujiniya", + "prefab": "xifujiniya", + "rarity_bg": "", + "ship_group": 10511, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.464, + 2.341, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 154, + "voice_actor_2": -1 + }, + "105112": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.46, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.46, + 1.14, + 0 + ] + ], + "vicegun": [ + [ + 1.46, + 1.14, + 0 + ] + ] + }, + "desc": "Colorado, Maryland, you two ready to rock? Keep your cool! Commander, and everyone in the audience, get ready for the Big Seven's big performance!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 105112, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Scenic Rhapsody", + "painting": "xifujiniya_3", + "prefab": "xifujiniya_3", + "rarity_bg": "", + "ship_group": 10511, + "ship_l2d_id": "", + "shop_id": 70896, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.72, + 2.341, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 154, + "voice_actor_2": -1 + }, + "105119": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.46, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.46, + 1.14, + 0 + ] + ], + "vicegun": [ + [ + 1.46, + 1.14, + 0 + ] + ] + }, + "desc": "West Virginia, completing retrofit. Back when I joined the fleet, I said I'd show you my strength – now, after you've made me this much stronger, I feel humbled. Once more, Commander, my strength is yours.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 105119, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "West Virginia (Retrofit)", + "painting": "xifujiniya_g", + "prefab": "xifujiniya_g", + "rarity_bg": "", + "ship_group": 10511, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.72, + 2.341, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 154, + "voice_actor_2": -1 + }, + "105120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.52, + 1.06, + 0 + ] + ], + "cannon": [ + [ + 1.52, + 1.06, + 0 + ] + ], + "vicegun": [ + [ + 1.52, + 1.06, + 0 + ] + ] + }, + "desc": "North Carolina class battleship, North Carolina. Hull Number BB-55.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 105120, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "North Carolina", + "painting": "beikaluolaina", + "prefab": "beikaluolaina", + "rarity_bg": "", + "ship_group": 10512, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.3, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 39, + "voice_actor_2": -1 + }, + "105121": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.619, + 1.24, + 0 + ] + ], + "cannon": [ + [ + 1.619, + 1.222, + 0 + ] + ], + "vicegun": [ + [ + 1.619, + 1.132, + 0 + ] + ] + }, + "desc": "Commander? Oh, umm, this is just, err, equipment changing practice... Also, I recall you saying you like bunny girls. You still do, right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 105121, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 60, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Heart's Desire", + "painting": "beikaluolaina_2", + "prefab": "beikaluolaina_2", + "rarity_bg": "", + "ship_group": 10512, + "ship_l2d_id": "", + "shop_id": 70583, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.534, + 2.375, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 39, + "voice_actor_2": -1 + }, + "105130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.42, + 1.4, + 0 + ] + ], + "cannon": [ + [ + 1.42, + 1.4, + 0 + ] + ], + "vicegun": [ + [ + 1.42, + 1.4, + 0 + ] + ] + }, + "desc": "North Carolina class battleship, Washington. Hull Number BB-56.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 105130, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Washington", + "painting": "huashengdun", + "prefab": "huashengdun", + "rarity_bg": "", + "ship_group": 10513, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.29, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "105131": { + "bg": "157", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.23, + 1.43, + 0 + ] + ], + "cannon": [ + [ + 1.32, + 1.26, + 0 + ] + ], + "vicegun": [ + [ + 1.21, + 1.15, + 0 + ] + ] + }, + "desc": "Sup, Commander? ...Looking good? I don't think this outfit's anything special... You better not be trying to cozy up to me, or I'll knock your teeth out!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 105131, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jubilant Smile", + "painting": "huashengdun_2", + "prefab": "huashengdun_2", + "rarity_bg": "", + "ship_group": 10513, + "ship_l2d_id": "", + "shop_id": 70708, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "105140": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.464, + 1.052, + 0 + ], + [ + -0.439, + 1.353, + 0 + ] + ], + "cannon": [ + [ + -0.257, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.119, + 0.702, + 0 + ] + ], + "vicegun": [ + [ + -0.257, + 0.783, + 0 + ] + ] + }, + "desc": "South Dakota-class battleship – South Dakota, Hull Number BB-57!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 3, + "id": 105140, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "South Dakota", + "painting": "nandaketa", + "prefab": "nandaketa", + "rarity_bg": "", + "ship_group": 10514, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.498, + 0.298, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.453, + 0.524, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 19, + "voice_actor_2": -1 + }, + "105141": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.25, + 0.96, + 0 + ] + ], + "cannon": [ + [ + 1.22, + 0.74, + 0 + ] + ], + "torpedo": [ + [ + 0.11, + 0.12, + 0 + ] + ], + "vicegun": [ + [ + 1.41, + 0.84, + 0 + ] + ] + }, + "desc": "Massachusetts suggested I learn something useful that's unrelated to combat, so I started playing the piano... It seemed impossible at first, but after actually trying it, I've developed a pretty good feel for it.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 3, + "id": 105141, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Solo Concert", + "painting": "nandaketa_2", + "prefab": "nandaketa_2", + "rarity_bg": "", + "ship_group": 10514, + "ship_l2d_id": "", + "shop_id": 70103, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 19, + "voice_actor_2": -1 + }, + "105170": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.245, + 1.238, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 1.22, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + -0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.23, + 1.21, + 0 + ] + ] + }, + "desc": "Iowa-class battleship – New Jersey, Hull Number BB-62.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 105170, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Jersey", + "painting": "xinzexi", + "prefab": "xinzexi", + "rarity_bg": "", + "ship_group": 10517, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.641, + 2.55, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "xinzexi", + [ + 100, + -10, + 0 + ], + [ + 1 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -20, + -715, + 0 + ], + [ + 1.1 + ] + ], + "tag": [], + "time": "", + "voice_actor": 273, + "voice_actor_2": -1 + }, + "105171": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.246, + 1.348, + 0 + ] + ], + "cannon": [ + [ + 1.248, + 1.41, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.255, + 1.288, + 0 + ] + ] + }, + "desc": "One, two, jump! Woah, think I nailed it this time~♪ So, how many points would you give me for that? Naturally, a perfect 100, right? Don'tcha just love it when things go smoothly?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 105171, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Exhilarating Steps!", + "painting": "xinzexi_2", + "prefab": "xinzexi_2", + "rarity_bg": "", + "ship_group": 10517, + "ship_l2d_id": "", + "shop_id": 70543, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.591, + 2.488, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 273, + "voice_actor_2": -1 + }, + "105172": { + "bg": "168", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.246, + 1.348, + 0 + ] + ], + "cannon": [ + [ + 1.248, + 1.41, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.255, + 1.288, + 0 + ] + ] + }, + "desc": "Sooo hot... Are you alright, honey? You're not heat-exhausted, are you? I'll share my drink with you if you're thirsty, but in return, I'll need you to put my sunscreen on for me. Heheh, that's just what you like to do, right, honey~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 105172, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -20, + 20 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 40, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Midsummer Leisure", + "painting": "xinzexi_3", + "prefab": "xinzexi_3", + "rarity_bg": "", + "ship_group": 10517, + "ship_l2d_id": [ + 1051721, + 1051722, + 1051723, + 1051724, + 1051725, + 1051726, + 1051727, + 1051728 + ], + "shop_id": 70847, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.591, + 2.488, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 273, + "voice_actor_2": -1 + }, + "105178": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.4, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 1.55, + 1.17, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.41, + 1.26, + 0 + ] + ] + }, + "desc": "The indomitable Black Dragon... I mean, the adorable New Jersey makes her bridal appearance! Hehe~ Stunned, arent'cha? Of course you are, honey~♪ How wouldn't you be?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 105178, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Snow-White Ceremony", + "painting": "xinzexi_h", + "prefab": "xinzexi_h", + "rarity_bg": "", + "ship_group": 10517, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.591, + 2.488, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 273, + "voice_actor_2": -1 + }, + "105190": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.05, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 1.11, + 1.24, + 0 + ] + ] + }, + "desc": "South Dakota-class battleship – Massachusetts, Hull Number BB-59.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 3, + "id": 105190, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Massachusetts", + "painting": "masazhusai", + "prefab": "masazhusai", + "rarity_bg": "", + "ship_group": 10519, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.16, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 131, + "voice_actor_2": -1 + }, + "105191": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.399, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.388, + 1.075, + 0 + ] + ], + "torpedo": [ + [ + 0.007, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.358, + 1.155, + 0 + ] + ] + }, + "desc": "Hey... Is this outfit that strange to you? Thought it looks just like what my sister's wearing... so what are you staring at? I don't get you at all...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 3, + "id": 105191, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dressed to Impress", + "painting": "masazhusai_2", + "prefab": "masazhusai_2", + "rarity_bg": "", + "ship_group": 10519, + "ship_l2d_id": "", + "shop_id": 70371, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.16, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 131, + "voice_actor_2": -1 + }, + "105200": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.144, + 0.875, + 0 + ] + ], + "cannon": [ + [ + 1.32, + 1.339, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.03, + 0 + ] + ], + "vicegun": [ + [ + 1.37, + 1.356, + 0 + ] + ] + }, + "desc": "South Dakota-class battleship – Alabama, Hull Number BB-60.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 3, + "id": 105200, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Alabama", + "painting": "alabama", + "prefab": "alabama", + "rarity_bg": "", + "ship_group": 10520, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.522, + 2.16, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 190, + "voice_actor_2": -1 + }, + "105201": { + "bg": "165", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.29, + 1.25, + 0 + ] + ], + "cannon": [ + [ + 1.32, + 1.339, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.03, + 0 + ] + ], + "vicegun": [ + [ + 1.37, + 1.356, + 0 + ] + ] + }, + "desc": "Hrmm... Lotta orders to work through... Runnin' a Dragon Empery restaurant ain't easy. Hmm? You here for some chow too, Commander? Then how about... I put you ahead in line?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 3, + "id": 105201, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Untarnished Silver, Silken Gold", + "painting": "alabama_2", + "prefab": "alabama_2", + "rarity_bg": "", + "ship_group": 10520, + "ship_l2d_id": "", + "shop_id": 70816, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.522, + 2.16, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 190, + "voice_actor_2": -1 + }, + "106010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.59, + 0.597, + 0 + ] + ], + "plane": [ + [ + 0.59, + 0.597, + 0 + ] + ] + }, + "desc": "Long Island-class escort carrier – Long Island, Hull Number CVE-1!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 106010, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Long Island", + "painting": "changdao", + "prefab": "changdao", + "rarity_bg": "", + "ship_group": 10601, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.509, + 0.442, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.416, + 0.493, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 45, + "voice_actor_2": -1 + }, + "106011": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.46, + 0.49, + 0 + ] + ], + "plane": [ + [ + 0.46, + 0.49, + 0 + ] + ] + }, + "desc": "Everyone's favorite and talked-about Long Island, actually has another hidden secret...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 106011, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Long Island - Indoor Slacker", + "painting": "changdao_2", + "prefab": "changdao_2", + "rarity_bg": "", + "ship_group": 10601, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.509, + 0.442, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.416, + 0.493, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 45, + "voice_actor_2": -1 + }, + "106013": { + "bg": "119", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.46, + 0.49, + 0 + ] + ], + "plane": [ + [ + 0.46, + 0.49, + 0 + ] + ] + }, + "desc": "\"Tune in everyone, Gamer Girl L.I. is about to begin her spooky Halloween special stream~\" ...Well, that should do it for my channel intro... Hmm, wonder how many viewers I'll get~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 106013, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Long Island's Spooky Stream", + "painting": "changdao_3", + "prefab": "changdao_3", + "rarity_bg": "", + "ship_group": 10601, + "ship_l2d_id": "", + "shop_id": 70434, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.509, + 0.442, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.416, + 0.493, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 45, + "voice_actor_2": -1 + }, + "106019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.67, + 0.79, + 0 + ] + ], + "plane": [ + [ + -0.67, + 0.79, + 0 + ] + ] + }, + "desc": "Commander~ I am Long Island~ I've changed? Ghosts don't cha... Huh? I seemed to have become a little more alive!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 106019, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Long Island (Retrofit)", + "painting": "changdao_g", + "prefab": "changdao_g", + "rarity_bg": "", + "ship_group": 10601, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.509, + 0.442, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.416, + 0.493, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 45, + "voice_actor_2": -1 + }, + "106020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.28, + 0.61, + 0 + ] + ], + "plane": [ + [ + 0.28, + 0.61, + 0 + ] + ] + }, + "desc": "Bogue-class escort carrier — Bogue, Hull Number CVE-9!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 106020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bogue", + "painting": "boge", + "prefab": "boge", + "rarity_bg": "", + "ship_group": 10602, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.61, + 0.9, + -0.25 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.47, + 2.69, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 41, + "voice_actor_2": -1 + }, + "106029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.28, + 0.61, + 0 + ] + ], + "plane": [ + [ + 0.28, + 0.61, + 0 + ] + ] + }, + "desc": "Commander, there's no need to be so afraid. There are only two things my balls hit-- Enemies, and victory! Ah, sometimes they do hit the windows too, ahaha...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 106029, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bogue (Retrofit)", + "painting": "boge_g", + "prefab": "boge_g", + "rarity_bg": "", + "ship_group": 10602, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.61, + 0.9, + -0.25 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.47, + 2.69, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 41, + "voice_actor_2": -1 + }, + "106550": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.178, + 1.184, + 0 + ] + ], + "plane": [ + [ + 1.093, + 1.161, + 0 + ] + ] + }, + "desc": "Casablanca-class escort carrier – Casablanca, Hull Number CVE-55.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 106550, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Casablanca", + "painting": "kasabulanka", + "prefab": "kasabulanka", + "rarity_bg": "", + "ship_group": 10655, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.515, + 2.316, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 226, + "voice_actor_2": -1 + }, + "106551": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.059, + 1.073, + 0 + ] + ], + "plane": [ + [ + 0, + 0.001, + 0 + ] + ] + }, + "desc": "Phew... Can't train hard if you don't stay hydrated! Oh, Commander, good day! Did you come to watch us practice?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 106551, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cheer Squad on Break", + "painting": "kasabulanka_2", + "prefab": "kasabulanka_2", + "rarity_bg": "", + "ship_group": 10655, + "ship_l2d_id": "", + "shop_id": 70337, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.589, + 2.301, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 226, + "voice_actor_2": -1 + }, + "107010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.545, + 0.636, + 0 + ], + [ + 0.681, + 0.704, + 0 + ] + ], + "cannon": [ + [ + 0.38, + 0.71, + -0.41 + ] + ], + "plane": [ + [ + -0.545, + 0.636, + 0 + ], + [ + 0.681, + 0.704, + 0 + ] + ], + "vicegun": [ + [ + 0.38, + 0.71, + -0.41 + ] + ] + }, + "desc": "Langley-class aicraft carrier ー Langley, Hull Number CV-1!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 107010, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Langley", + "painting": "lanli", + "prefab": "lanli", + "rarity_bg": "", + "ship_group": 10701, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.709, + 0.36, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.607, + 0.473, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 50, + "voice_actor_2": -1 + }, + "107019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.751, + 0.47, + 0 + ] + ], + "cannon": [ + [ + 0.751, + 0.47, + 0 + ] + ], + "plane": [ + [ + 0.751, + 0.47, + 0 + ] + ], + "vicegun": [ + [ + 0.751, + 0.47, + 0 + ] + ] + }, + "desc": "Listen carefully or I'll step on you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 5, + "id": 107019, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Langley (Retrofit)", + "painting": "lanli_g", + "prefab": "lanli_g", + "rarity_bg": "", + "ship_group": 10701, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.57, + 0.52, + -0.03 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.35, + 2, + -0.88 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 50, + "voice_actor_2": -1 + }, + "107020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.5, + 0.8, + 0 + ], + [ + -0.5, + 0.8, + 0 + ] + ], + "cannon": [ + [ + 0.63, + 0.661, + 0 + ] + ], + "plane": [ + [ + 0.63, + 0.497, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.5, + 0.8, + 0 + ] + ] + }, + "desc": "Lexington-class aircraft carrier ー Lexington, Hull Number CV-2!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107020, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lexington", + "painting": "liekexingdun", + "prefab": "liekexingdun", + "rarity_bg": "", + "ship_group": 10702, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 26, + "voice_actor_2": -1 + }, + "107021": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.5, + 0.8, + 0 + ], + [ + -0.5, + 0.8, + 0 + ] + ], + "cannon": [ + [ + 0.63, + 0.661, + 0 + ] + ], + "plane": [ + [ + 0.63, + 0.497, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.5, + 0.8, + 0 + ] + ] + }, + "desc": "Hehe… sometimes you can completely change the way people see you with just a simple change in attire. Don't you agree, Commander~? Don’t worry, I'm still your Lexington~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 107021, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Beauty of Spring", + "painting": "liekexingdun_2", + "prefab": "liekexingdun_2", + "rarity_bg": "", + "ship_group": 10702, + "ship_l2d_id": "", + "shop_id": 70154, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.54, + 2.404, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 26, + "voice_actor_2": -1 + }, + "107030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.772, + 0.605, + 0 + ] + ], + "cannon": [ + [ + -0.772, + 0.605, + 0 + ] + ], + "plane": [ + [ + -0.772, + 0.605, + 0 + ] + ] + }, + "desc": "Lexington-class aircraft carrier ー Saratoga, Hull Number CV-3!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 107030, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Saratoga", + "painting": "salatuojia", + "prefab": "salatuojia", + "rarity_bg": "", + "ship_group": 10703, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.887, + 1.243, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.642, + 1.068, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "107031": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.13, + 3.07, + 0 + ] + ], + "cannon": [ + [ + -0.13, + 3.07, + 0 + ] + ], + "plane": [ + [ + 0.2, + 1.04, + 0 + ] + ] + }, + "desc": "Even if we don't get to relax on holiday, it's always good to have a swimsuit! Ok, let's go! Are you ready to swim?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 107031, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Seven Seas of Rest", + "painting": "salatuojia_2", + "prefab": "salatuojia_2", + "rarity_bg": "", + "ship_group": 10703, + "ship_l2d_id": "", + "shop_id": 70007, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 30, + [ + [ + "smoke", + [ + -0.61, + 2.26, + -0.6 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "107032": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.95, + 1.29, + 0 + ] + ], + "cannon": [ + [ + 0.9, + 1.26, + 0 + ] + ], + "plane": [ + [ + 0.9, + 1.25, + 0 + ] + ] + }, + "desc": "Hey everyone~! This time, Sister Sara has brought you fashion from a faraway land! Commander, what do you think of it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 107032, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hibiscus-scented Idol", + "painting": "salatuojia_3", + "prefab": "salatuojia_3", + "rarity_bg": "", + "ship_group": 10703, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.26, + -0.6 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "107033": { + "bg": "210", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.25, + 1.1, + 0 + ] + ], + "cannon": [ + [ + 1.26, + 1.13, + 0 + ] + ], + "plane": [ + [ + 1.24, + 1.06, + 0 + ] + ] + }, + "desc": "HAI DOMO~! I’m the virtual idol, Saratoga! Well, Commander, what do you think? I asked Kizuna AI to make this dress specifically for me, modeled after her outfit!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 5, + "id": 107033, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Virtual Idol", + "painting": "salatuojia_4", + "prefab": "salatuojia_4", + "rarity_bg": "", + "ship_group": 10703, + "ship_l2d_id": "", + "shop_id": 70179, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.36, + -0.6 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "107034": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.403, + 1.1, + 0 + ] + ], + "cannon": [ + [ + 1.634, + 1.181, + 0 + ] + ], + "plane": [ + [ + 0.035, + -0.017, + 0 + ] + ] + }, + "desc": "Friends of the blue sea and sky, your guardian angel and idol Sara has arrived! Ehehe~ Commander, join me in protecting the beauty of the blue seas!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 5, + "id": 107034, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Superstar of the Blue Seas", + "painting": "salatuojia_5", + "prefab": "salatuojia_5", + "rarity_bg": "", + "ship_group": 10703, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.562, + 2.241, + -0.6 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "107035": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.403, + 1.1, + 0 + ] + ], + "cannon": [ + [ + 1.634, + 1.181, + 0 + ] + ], + "plane": [ + [ + 0.035, + -0.017, + 0 + ] + ] + }, + "desc": "Merry Christmas! Here comes Christmas Sara, shining like a star in the silent night! Hehehe, how's that for a holiday greeting? So, have you decided where we're gonna spend our Christmas Eve yet?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 5, + "id": 107035, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Silent Night Songstress", + "painting": "salatuojia_6", + "prefab": "salatuojia_6", + "rarity_bg": "", + "ship_group": 10703, + "ship_l2d_id": "", + "shop_id": 70457, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.562, + 2.241, + -0.6 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "107036": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.403, + 1.013, + 0 + ] + ], + "cannon": [ + [ + 1.405, + 0.992, + 0 + ] + ], + "plane": [ + [ + 1.364, + 1.001, + 0 + ] + ] + }, + "desc": "Tadaaah! Happy Lunar New Year, Commander! How do you like this fresh new spring look that Sara's rocking? Hope you haven't forgotten our promise to check out the port's spring festival together~ Ready, then? Let's go!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 5, + "id": 107036, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Spring's Opening Act!", + "painting": "salatuojia_7", + "prefab": "salatuojia_7", + "rarity_bg": "", + "ship_group": 10703, + "ship_l2d_id": "", + "shop_id": 70494, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.262, + 2.549, + -0.6 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "107037": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.151, + 1.388, + 0 + ] + ], + "cannon": [ + [ + 1.122, + 1.404, + 0 + ] + ], + "plane": [ + [ + 1.112, + 1.451, + 0 + ] + ] + }, + "desc": "Tada! Welcome to Sister Sara's special picnic! Look at all the delicious food I brought~ See, Commander, I told you it wasn't just another prank~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 7, + "gyro": 0, + "hand_id": 5, + "id": 107037, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Sweetest Picnic!", + "painting": "salatuojia_8", + "prefab": "salatuojia_8", + "rarity_bg": "", + "ship_group": 10703, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.545, + 2.068, + -0.6 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "107038": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.39, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.36, + 1.06, + 0 + ] + ], + "plane": [ + [ + 1.37, + 0.99, + 0 + ] + ] + }, + "desc": "You ready, Commander? ...Come on, don't give me a \"just one moment\" right before the finish line~ It's time to imprint my adorable dress into your memory forever~♡", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 5, + "id": 107038, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ring the Bell of Joy", + "painting": "salatuojia_h", + "prefab": "salatuojia_h", + "rarity_bg": "", + "ship_group": 10703, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.545, + 2.068, + -0.6 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "107039": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.236, + 1.425, + 0 + ] + ], + "cannon": [ + [ + 1.255, + 1.534, + 0 + ] + ], + "plane": [ + [ + 1.216, + 1.385, + 0 + ] + ] + }, + "desc": "Sister Sara is leaving her nest and going in a new direction! I'm now making my official debut as Saratoga: The Little Witch Idol! I'm leaving my PR to you, Commander~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 107039, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Saratoga (Retrofit)", + "painting": "salatuojia_g", + "prefab": "salatuojia_g", + "rarity_bg": "", + "ship_group": 10703, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.534, + 2.264, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "107040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.75, + 0.88, + 0 + ] + ], + "plane": [ + [ + 0.75, + 0.88, + 0 + ] + ] + }, + "desc": "Ranger-class aircraft carrier ー Ranger, Hull Number CV-4!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107040, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ranger", + "painting": "tujizhe", + "prefab": "tujizhe", + "rarity_bg": "", + "ship_group": 10704, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 74, + "voice_actor_2": -1 + }, + "107049": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.32, + 1.09, + 0 + ] + ], + "plane": [ + [ + 1.32, + 1.09, + 0 + ] + ] + }, + "desc": "I didn't realize I could still become more powerful! I'll work harder from here on out to teach everyone how to fight!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 107049, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ranger (Retrofit)", + "painting": "tujizhe_g", + "prefab": "tujizhe_g", + "rarity_bg": "", + "ship_group": 10704, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 74, + "voice_actor_2": -1 + }, + "107050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.5, + 0.8, + 0 + ], + [ + -0.5, + 0.8, + 0 + ] + ], + "plane": [ + [ + -0.5, + 0.5, + 0 + ] + ] + }, + "desc": "Yorktown-class aircraft carrier ー Yorktown, Hull Number CV-5!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107050, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yorktown", + "painting": "yuekecheng", + "prefab": "yuekecheng", + "rarity_bg": "", + "ship_group": 10705, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.549, + 0.503, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.385, + 0.667, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "107051": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.407, + 1.036, + 0 + ] + ], + "plane": [ + [ + 1.407, + 1.036, + 0 + ] + ] + }, + "desc": "Hey, Commander, are you lost? How about a drink? ... Huh? Drunk? Me? Oh, Commander, you're such a card. This is just grape juice... isn't it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 107051, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Evening I Can't Remember", + "painting": "yuekecheng_2", + "prefab": "yuekecheng_2", + "rarity_bg": "", + "ship_group": 10705, + "ship_l2d_id": "", + "shop_id": 70190, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "107052": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.148, + 1.234, + 0 + ] + ], + "plane": [ + [ + 1.161, + 1.254, + 0 + ] + ] + }, + "desc": "Across seven steps, in a tower atop a hill, you'll find the king's resting place... Hehe. Will you come with me to Utopia, Commander? I'm joking, of course, but I am very glad we could make this journey together.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 107052, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Saintly Wings", + "painting": "yuekecheng_3", + "prefab": "yuekecheng_3", + "rarity_bg": "", + "ship_group": 10705, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.611, + 2.392, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "107058": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.148, + 1.234, + 0 + ] + ], + "plane": [ + [ + 1.161, + 1.254, + 0 + ] + ] + }, + "desc": "This wedding dress, brimming with light, flutters like a feather in the wind... I'm sure that I'm still in a long, deep, slumber... That's right, Commander. The two of us are surely sharing a blissful dream together, heehee.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 107058, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Towards Tomorrow's Brilliant Breeze", + "painting": "yuekecheng_h", + "prefab": "yuekecheng_h", + "rarity_bg": "", + "ship_group": 10705, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.611, + 2.392, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "107060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.802, + 0.53, + 0 + ] + ], + "plane": [ + [ + -0.863, + 0.643, + 0 + ] + ] + }, + "desc": "Yorktown-class aircraft carrier ー Enterprise, Hull Number CV-6!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107060, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Enterprise", + "painting": "qiye", + "prefab": "qiye", + "rarity_bg": "", + "ship_group": 10706, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "107061": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.38, + 0 + ] + ], + "plane": [ + [ + 1.01, + 1.38, + 0 + ] + ] + }, + "desc": "Merry Christmas, Commander! I shall be Santa Claus tonight, so make sure to hang up your stockings on the fireplace before going to sleep!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 107061, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Reindeer Master", + "painting": "qiye_2", + "prefab": "qiye_2", + "rarity_bg": "", + "ship_group": 10706, + "ship_l2d_id": "", + "shop_id": 70025, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.17, + 2.91, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "107062": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.38, + 0 + ] + ], + "plane": [ + [ + 1.01, + 1.38, + 0 + ] + ] + }, + "desc": "So this is the traditional attire of the Dragon Empery? Hmm... it fits quite well. Oh? Custom-made bow and arrows… Interesting, let's see how far these arrows can fly.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 9, + "id": 107062, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blooming Peony", + "painting": "qiye_3", + "prefab": "qiye_3", + "rarity_bg": "", + "ship_group": 10706, + "ship_l2d_id": "", + "shop_id": 70149, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.551, + 2.421, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "107063": { + "bg": "118", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.949, + 1.064, + 0 + ] + ], + "plane": [ + [ + 0.913, + 1.087, + 0 + ] + ] + }, + "desc": "Happy Anniversary! Commander, celebrate to your heart's content today! I'll be praying for our continued victories!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 107063, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Anniversary Ride", + "painting": "qiye_4", + "prefab": "qiye_4", + "rarity_bg": "", + "ship_group": 10706, + "ship_l2d_id": "", + "shop_id": 70217, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.551, + 2.421, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "107064": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.38, + 0 + ] + ], + "plane": [ + [ + 1.01, + 1.38, + 0 + ] + ] + }, + "desc": "There is no doubt in my mind that I was born to fight. For the azure lanes of liberty, Enterprise, engaging!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 107064, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Soaring Wings of Freedom", + "painting": "qiye_5", + "prefab": "qiye_5", + "rarity_bg": "", + "ship_group": 10706, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 4, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.551, + 2.421, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "107065": { + "bg": "135", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.392, + 1.136, + 0 + ] + ], + "plane": [ + [ + 1.359, + 1.162, + 0 + ] + ] + }, + "desc": "My ballgown? I don't normally get to wear clothes like these, so it took me a while to change. Ah, let's hurry to the venue. We shouldn't keep everyone else waiting.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 1, + "id": 107065, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Heroic Finery", + "painting": "qiye_6", + "prefab": "qiye_6", + "rarity_bg": "", + "ship_group": 10706, + "ship_l2d_id": "", + "shop_id": 70375, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.551, + 2.329, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "107066": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.31, + 1.136, + 0 + ] + ], + "plane": [ + [ + 1.22, + 1.11, + 0 + ] + ] + }, + "desc": "Commander, did you come to watch the race? You know... I'd rather be down there competing than standing around over here. That feeling of being able to seize the wind... Don't you think that racing and sailing share the same essence?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 1, + "id": 107066, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 190, + -110, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Wind Catcher", + "painting": "qiye_7", + "prefab": "qiye_7", + "rarity_bg": "", + "ship_group": 10706, + "ship_l2d_id": "", + "shop_id": 70615, + "shop_type_id": 14, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.68, + 2.329, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "107067": { + "bg": "155", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.27, + 1.21, + 0 + ] + ], + "plane": [ + [ + 1.21, + 1.32, + 0 + ] + ] + }, + "desc": "It feels odd taking an extended leave just to go on vacation... but I guess you need breaks to stay on top of your game. With that in mind, let's make every minute count, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 7, + "gyro": 0, + "hand_id": 1, + "id": 107067, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bon Voyage", + "painting": "qiye_8", + "prefab": "qiye_8", + "rarity_bg": "", + "ship_group": 10706, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "107068": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -1.22, + 1.02, + 0 + ] + ], + "plane": [ + [ + 1, + 1.92, + 0 + ] + ] + }, + "desc": "How, how does it look? Do I look a bit strange... no, of course I like it. I'd say every girl dreams about this day, just that...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 107068, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Starlight Oath", + "painting": "qiye_h", + "prefab": "qiye_h", + "rarity_bg": "", + "ship_group": 10706, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "107070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.757, + 1.097, + 0 + ] + ], + "plane": [ + [ + -0.492, + 0.598, + 0 + ] + ] + }, + "desc": "Yorktown-class aircraft carrier ー Hornet, Hull Number CV-8!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107070, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hornet", + "painting": "dahuangfeng", + "prefab": "dahuangfeng", + "rarity_bg": "", + "ship_group": 10707, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.76, + 0.4, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.53, + 0.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "107071": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.99, + 0.96, + 0 + ] + ], + "plane": [ + [ + 0.97, + 0.94, + 0 + ] + ] + }, + "desc": "Congratulations! You did it, Commander! Now let's pop the champagne and celebrate! It's party time!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 107071, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bubbly Anniversary!", + "painting": "dahuangfeng_2", + "prefab": "dahuangfeng_2", + "rarity_bg": "", + "ship_group": 10707, + "ship_l2d_id": "", + "shop_id": 70189, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "107072": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.536, + 1.01, + 0 + ] + ], + "plane": [ + [ + 1.552, + 1.005, + 0 + ] + ] + }, + "desc": "Mmmmm... Nothing beats pizza straight outta the oven! Here, Commander, wanna give it a try? We're gonna have to recommend this to Enty next time!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 107072, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Freshly-Baked Bonding!", + "painting": "dahuangfeng_3", + "prefab": "dahuangfeng_3", + "rarity_bg": "", + "ship_group": 10707, + "ship_l2d_id": "", + "shop_id": 70479, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.601, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "107073": { + "bg": "132", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.07, + 1.285, + 0 + ] + ], + "plane": [ + [ + 0.062, + 0.096, + 0 + ] + ] + }, + "desc": "Let's keep it up, everyone! One more point, and we can make a comeback!!! ...Hah... *gulp gulp*... Whew~! Thanks a billion for the drink, Commander! And thanks for watching over us as well!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 107073, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cheering Justice!", + "painting": "dahuangfeng_4", + "prefab": "dahuangfeng_4", + "rarity_bg": "", + "ship_group": 10707, + "ship_l2d_id": "", + "shop_id": 70732, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.696, + 1.875, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "107080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.93, + 1.14, + 0 + ] + ], + "plane": [ + [ + 0.93, + 1.14, + 0 + ] + ] + }, + "desc": "Wasp-class aircraft carrier, Wasp. Hull Number CV-7.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107080, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Wasp", + "painting": "hufeng", + "prefab": "hufeng", + "rarity_bg": "", + "ship_group": 10708, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 102, + "voice_actor_2": -1 + }, + "107090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 1.3, + 0 + ] + ], + "plane": [ + [ + 1.09, + 1.32, + 0 + ] + ] + }, + "desc": "Essex-class aircraft carrier – Essex, Hull Number CV-9.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107090, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Essex", + "painting": "aisaikesi", + "prefab": "aisaikesi", + "rarity_bg": "", + "ship_group": 10709, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "107091": { + "bg": "118", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.93, + 1.151, + 0 + ] + ], + "plane": [ + [ + 0.906, + 1.168, + 0 + ] + ] + }, + "desc": "I'm not trying to go anywhere in particular; I just want to enjoy the scenery along the way. Commander, let's go experience the thrills of the road together.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 107091, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Trip Down Route 66", + "painting": "aisaikesi_3", + "prefab": "aisaikesi_3", + "rarity_bg": "", + "ship_group": 10709, + "ship_l2d_id": "", + "shop_id": 70245, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "107092": { + "bg": "135", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.716, + 1.151, + 0 + ] + ], + "plane": [ + [ + 1.784, + 1.168, + 0 + ] + ] + }, + "desc": "Commander?! Ah, um, no, I'm not drunk! ...I, uh, just had a bit too much to drink... just a bit! Please don't tell the others though!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 107092, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Craft Fairytail", + "painting": "aisaikesi_4", + "prefab": "aisaikesi_4", + "rarity_bg": "", + "ship_group": 10709, + "ship_l2d_id": "", + "shop_id": 70419, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "107093": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.766, + 0.999, + 0 + ] + ], + "plane": [ + [ + 1.765, + 0.999, + 0 + ] + ] + }, + "desc": "The Dragon Empery's attire and tools of calligraphy... I see, just wearing this outfit makes me feel more scholarly and artistic! I shall put forth my best effort to prepare for the port's Spring Festival!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 107093, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Brush and Ink", + "painting": "aisaikesi_5", + "prefab": "aisaikesi_5", + "rarity_bg": "", + "ship_group": 10709, + "ship_l2d_id": "", + "shop_id": 70484, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "107094": { + "bg": "154", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.048, + 1.32, + 0 + ] + ], + "plane": [ + [ + 1.368, + 0.472, + 0 + ] + ] + }, + "desc": "My eagle has gone missing... Just as Enterprise said, there's something strange going on in this port–– Wait, I definitely smell a case in the making! Commander, let's get to the bottom of this together!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 107094, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Detective Essex", + "painting": "aisaikesi_6", + "prefab": "aisaikesi_6", + "rarity_bg": "", + "ship_group": 10709, + "ship_l2d_id": "", + "shop_id": 70734, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.761, + 1.98, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "107095": { + "bg": "169", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.048, + 1.32, + 0 + ] + ], + "plane": [ + [ + 1.368, + 0.472, + 0 + ] + ] + }, + "desc": "\"Anchors aweigh! Arr, pirate aircraft carrier Essex be ready for battle! Nothing in the seven seas will escape my grasp!\" Hic... Hehehe... I wanna be a piraaate...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 1, + "id": 107095, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Crossbones Especial", + "painting": "aisaikesi_7", + "prefab": "aisaikesi_7", + "rarity_bg": "", + "ship_group": 10709, + "ship_l2d_id": "", + "shop_id": 70862, + "shop_type_id": 23, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.761, + 1.98, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + 57, + -630, + 0 + ], + [ + 0.45 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "107096": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.048, + 1.32, + 0 + ] + ], + "plane": [ + [ + 1.368, + 0.472, + 0 + ] + ] + }, + "desc": "Cooldown lap completed! Did you see me on the racetrack, Commander? Heehee. Thanks for everything, from setting up the race to assigning racers and supporters!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 1, + "id": 107096, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Gale of Course 88", + "painting": "aisaikesi_8", + "prefab": "aisaikesi_8", + "rarity_bg": "", + "ship_group": 10709, + "ship_l2d_id": "", + "shop_id": 70914, + "shop_type_id": 14, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.86, + 1.98, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "107100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.3, + 1.4, + 0 + ] + ], + "plane": [ + [ + 1.41, + 1.11, + 0 + ] + ] + }, + "desc": "Essex-class aircraft carrier – Yorktown II, Hull Number CV-10.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yorktown II", + "painting": "yuekechengII", + "prefab": "yuekechengII", + "rarity_bg": "", + "ship_group": 10710, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_yuekechengII", + [ + 2418, + -99, + 0 + ], + [ + 2 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -83, + -1643, + 0 + ], + [ + 0.88 + ] + ], + "tag": [], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "107101": { + "bg": "164", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.3, + 1.4, + 0 + ] + ], + "plane": [ + [ + 1.41, + 1.11, + 0 + ] + ] + }, + "desc": "How does this look? ...Ah, it's nothing to worry about. Do you think I should adjust the string a bit...? Hmm... Eek!!! I'm so sorry, Commander... A-are you alright...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 107101, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bright-Sky Mermaid", + "painting": "yuekechengII_2", + "prefab": "yuekechengII_2", + "rarity_bg": "", + "ship_group": 10710, + "ship_l2d_id": "", + "shop_id": 70775, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_yuekechengII_2", + [ + 1585, + -99, + 0 + ], + [ + 1.3 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -50, + -489, + 0 + ], + [ + 0.62 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "107110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.483, + 1.215, + 0 + ] + ], + "plane": [ + [ + 1.438, + 1.204, + 0 + ] + ] + }, + "desc": "Essex-class aircraft carrier – Intrepid, Hull Number CV-11.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 107110, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Intrepid", + "painting": "wuwei", + "prefab": "wuwei", + "rarity_bg": "", + "ship_group": 10711, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 225, + "voice_actor_2": -1 + }, + "107111": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.352, + 1.153, + 0 + ] + ], + "plane": [ + [ + 1.337, + 1.258, + 0 + ] + ] + }, + "desc": "There's been a lot of inter-port meets recently... But before I can join a team with my other Eagle Union colleagues, I've got to up my game first! So, Commander, mind training with me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 107111, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "One Intrepid Pitch", + "painting": "wuwei_2", + "prefab": "wuwei_2", + "rarity_bg": "", + "ship_group": 10711, + "ship_l2d_id": "", + "shop_id": 70332, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 225, + "voice_actor_2": -1 + }, + "107120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.483, + 1.215, + 0 + ] + ], + "plane": [ + [ + 1.438, + 1.01, + 0 + ] + ] + }, + "desc": "Essex-class aircraft carrier – Hornet II, Hull Number CV-12.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107120, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hornet II", + "painting": "dahuangfengII", + "prefab": "dahuangfengII", + "rarity_bg": "", + "ship_group": 10712, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "107121": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.483, + 1.215, + 0 + ] + ], + "plane": [ + [ + 1.438, + 1.01, + 0 + ] + ] + }, + "desc": "The title of fastest in the port is miiiine, hahaha! Commandeer, did you see how badass I was just now? There's a whole lot more I'd like to show you, but it'll hafta wait 'til the next race... Well, I'll let you ride with me later, so look forward to it~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 107121, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Racing Across the Waves!", + "painting": "dahuangfengII_2", + "prefab": "dahuangfengII_2", + "rarity_bg": "", + "ship_group": 10712, + "ship_l2d_id": "", + "shop_id": 70776, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_dahuangfengII_2", + [ + 2198, + -102, + 0 + ], + [ + 1.7 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -138, + -1223, + 0 + ], + [ + 0.92 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "107140": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 1.09, + 0 + ] + ], + "plane": [ + [ + 1.09, + 1.07, + 0 + ] + ] + }, + "desc": "Essex-class aircraft carrier – Ticonderoga, Hull Number CV-14.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107140, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ticonderoga", + "painting": "tikangdeluojia", + "prefab": "tikangdeluojia", + "rarity_bg": "", + "ship_group": 10714, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.67, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 179, + "voice_actor_2": -1 + }, + "107141": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 1.14, + 0 + ] + ], + "plane": [ + [ + 1.12, + 1.11, + 0 + ] + ] + }, + "desc": "It's showtime! The stage is all set for the performance! Let's enjoy this perfect evening together, Commander~!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 107141, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Show Stopper!", + "painting": "tikangdeluojia_2", + "prefab": "tikangdeluojia_2", + "rarity_bg": "", + "ship_group": 10714, + "ship_l2d_id": "", + "shop_id": 70544, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 179, + "voice_actor_2": -1 + }, + "107142": { + "bg": "168", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 1.14, + 0 + ] + ], + "plane": [ + [ + 1.12, + 1.11, + 0 + ] + ] + }, + "desc": "Hi! Thoughts on my swimsuit, Commander? Does it suit your tastes? Heheh, thanks! If you had to leave a comment, what would you say? ...Where did you learn how to tease people so well?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 107142, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sunshine Princess", + "painting": "tikangdeluojia_3", + "prefab": "tikangdeluojia_3", + "rarity_bg": "", + "ship_group": 10714, + "ship_l2d_id": "", + "shop_id": 70853, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 179, + "voice_actor_2": -1 + }, + "107170": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.29, + 1.03, + 0 + ] + ], + "plane": [ + [ + 1.41, + 1.07, + 0 + ] + ] + }, + "desc": "Essex-class aircraft carrier – Bunker Hill, Hull Number CV-17.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107170, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bunker Hill", + "painting": "bangkeshan", + "prefab": "bangkeshan", + "rarity_bg": "", + "ship_group": 10717, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 179, + "voice_actor_2": -1 + }, + "107171": { + "bg": "109", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.29, + 1.03, + 0 + ] + ], + "plane": [ + [ + 1.41, + 1.07, + 0 + ] + ] + }, + "desc": "Mission complete. Next up, a new recommendation from Long Island... Oh, Commander? Come make yourself comfortable.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 107171, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mission Relaxation", + "painting": "bangkeshan_2", + "prefab": "bangkeshan_2", + "rarity_bg": "", + "ship_group": 10717, + "ship_l2d_id": "", + "shop_id": 70526, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 179, + "voice_actor_2": -1 + }, + "107220": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.129, + 0.685, + 0 + ] + ], + "plane": [ + [ + 1.465, + 0.75, + 0 + ] + ] + }, + "desc": "Independence-class light aircraft carrier – Independence, Hull Number CVL-22.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107220, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Independence", + "painting": "duli", + "prefab": "duli", + "rarity_bg": "", + "ship_group": 10722, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.647, + 2.225, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 130, + "voice_actor_2": -1 + }, + "107221": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.924, + 1.132, + 0 + ] + ], + "plane": [ + [ + 0.914, + 1.198, + 0 + ] + ] + }, + "desc": "So this is my new school, huh? Hmm... gotta put my stuff down first before checking in with the teacher.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 107221, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Transfer Student From Afar", + "painting": "duli_2", + "prefab": "duli_2", + "rarity_bg": "", + "ship_group": 10722, + "ship_l2d_id": "", + "shop_id": 70163, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.573, + 2.346, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 130, + "voice_actor_2": -1 + }, + "107222": { + "bg": "135", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.931, + 0.917, + 0 + ] + ], + "plane": [ + [ + 0.914, + 0.955, + 0 + ] + ] + }, + "desc": "Hmm... Isn't this one a bit too garish? Mm... What if we pair it with a necklace or some sort of purse? ...Commander, your thoughts? C'mon, don't just stare at me, give me something to work with here...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 107222, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Independent Line", + "painting": "duli_5", + "prefab": "duli_5", + "rarity_bg": "", + "ship_group": 10722, + "ship_l2d_id": "", + "shop_id": 70400, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.573, + 2.346, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 130, + "voice_actor_2": -1 + }, + "107223": { + "bg": "109", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.453, + 0.992, + 0 + ] + ], + "plane": [ + [ + 1.464, + 1.001, + 0 + ] + ] + }, + "desc": "Whew... A bit of stretching helps keep the body flexible. Hm? I'm in loungewear, what about it? I'd appreciate it if you wouldn't stare too much, though...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 107223, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Liberty and Leisure", + "painting": "duli_6", + "prefab": "duli_6", + "rarity_bg": "", + "ship_group": 10722, + "ship_l2d_id": "", + "shop_id": 70518, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.573, + 2.346, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 130, + "voice_actor_2": -1 + }, + "107224": { + "bg": "108", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 1.095, + 0 + ] + ], + "plane": [ + [ + 0.999, + 1.075, + 0 + ] + ] + }, + "desc": "Just need to feed it a coin, then operate the crane with the joystick... Oh! I got one! That was easier than I expected.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 107224, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Tailwind of Opportunity", + "painting": "duli_3", + "prefab": "duli_3", + "rarity_bg": "", + "ship_group": 10722, + "ship_l2d_id": "", + "shop_id": 70624, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.421, + 2.463, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 130, + "voice_actor_2": -1 + }, + "107229": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 1.18, + 0 + ] + ], + "plane": [ + [ + 1.24, + 1.17, + 0 + ] + ] + }, + "desc": "Light carrier Independence reporting. Retrofitting complete. I'm ready to take on harder, more vital missions. Leave anything like that to me.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 107229, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Independence (Retrofit)", + "painting": "duli_g", + "prefab": "duli_g", + "rarity_bg": "", + "ship_group": 10722, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.63, + 2.35, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 130, + "voice_actor_2": -1 + }, + "107230": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.384, + 0.917, + 0 + ] + ], + "plane": [ + [ + 1.439, + 0.955, + 0 + ] + ] + }, + "desc": "Independence-class light aircraft carrier – Princeton (CVL-23.) ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 107230, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Princeton ", + "painting": "pulinsidun", + "prefab": "pulinsidun", + "rarity_bg": "", + "ship_group": 10723, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.573, + 2.346, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 249, + "voice_actor_2": -1 + }, + "107231": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.176, + 0.917, + 0 + ] + ], + "plane": [ + [ + 1.308, + 0.955, + 0 + ] + ] + }, + "desc": "Commander, are you also here to swim? ...Ah, this here? I brought it with me to the ocean to get some practice in. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 107231, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Seaside Training ", + "painting": "pulinsidun_2", + "prefab": "pulinsidun_2", + "rarity_bg": "", + "ship_group": 10723, + "ship_l2d_id": "", + "shop_id": 70433, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.573, + 2.346, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 249, + "voice_actor_2": -1 + }, + "107232": { + "bg": "108", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.126, + 0.999, + 0 + ] + ], + "plane": [ + [ + 1.14, + 1.005, + 0 + ] + ] + }, + "desc": "You're finally here? ...Ah, well, I only just got here as well, so don't worry about it. Anyway, shall we get going?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 107232, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lolipop Paradise", + "painting": "pulinsidun_3", + "prefab": "pulinsidun_3", + "rarity_bg": "", + "ship_group": 10723, + "ship_l2d_id": "", + "shop_id": 70503, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 5, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.573, + 2.346, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": [ + [ + 2021, + 2, + 14 + ], + [ + 0, + 0, + 0 + ] + ], + "voice_actor": 249, + "voice_actor_2": -1 + }, + "107233": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.33, + 1.27, + 0 + ] + ], + "plane": [ + [ + 1.439, + 0.955, + 0 + ] + ] + }, + "desc": "I'm done changing... Is this supposed to be a \"reindeer\" costume? It feels a bit too risqué... Oh, Commander, since you're already here, come get your Christmas present.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 107233, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gift-Wrapped Reindeer", + "painting": "pulinsidun_4", + "prefab": "pulinsidun_4", + "rarity_bg": "", + "ship_group": 10723, + "ship_l2d_id": "", + "shop_id": 70792, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.573, + 2.346, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 249, + "voice_actor_2": -1 + }, + "107270": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 1.25, + 0 + ] + ], + "plane": [ + [ + 1.1, + 0.9, + 0 + ] + ] + }, + "desc": "Independence-class light aircraft carrier – Langley II, Hull Number CVL-27.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 107270, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Langley II", + "painting": "lanliII", + "prefab": "lanliII", + "rarity_bg": "", + "ship_group": 10727, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.53, + 2.225, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 50, + "voice_actor_2": -1 + }, + "107271": { + "bg": "164", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 1.25, + 0 + ] + ], + "plane": [ + [ + 1.1, + 0.9, + 0 + ] + ] + }, + "desc": "Pheeew... Being able to kick back and relax on such a sunny day is just the best! Oh, Commander! If you'd like to come chill with me, I have watermelon and cold drinks!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 107271, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "On-the-Clock Vacation", + "painting": "lanliII_2", + "prefab": "lanliII_2", + "rarity_bg": "", + "ship_group": 10727, + "ship_l2d_id": "", + "shop_id": 70779, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.225, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 50, + "voice_actor_2": -1 + }, + "107290": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.941, + 0.721, + 0 + ] + ], + "plane": [ + [ + 0.06, + 0.019, + 0 + ] + ] + }, + "desc": "Independence-class light aircraft carrier – Bataan, Hull Number CVL-29.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107290, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bataan", + "painting": "badan", + "prefab": "badan", + "rarity_bg": "", + "ship_group": 10729, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.647, + 2.225, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 161, + "voice_actor_2": -1 + }, + "107291": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.868, + 0.877, + 0 + ] + ], + "plane": [ + [ + 0.06, + 0.019, + 0 + ] + ] + }, + "desc": "Yaaaaawn... Huh!? Commander!? You scared me... I was just going to lie down and... Um, yes, with little Hellcat here... Goodnight...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 107291, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Comfy Cotton Jammies", + "painting": "badan_2", + "prefab": "badan_2", + "rarity_bg": "", + "ship_group": 10729, + "ship_l2d_id": "", + "shop_id": 70210, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.647, + 2.225, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 161, + "voice_actor_2": -1 + }, + "107300": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.443, + 1.093, + 0 + ] + ], + "plane": [ + [ + 1.791, + 1.759, + 0 + ] + ] + }, + "desc": "Independence-class light aircraft carrier – San Jacinto, Hull Number CVL-30.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107300, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "San Jacinto", + "painting": "shenghaxintuo", + "prefab": "shenghaxintuo", + "rarity_bg": "", + "ship_group": 10730, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.327, + 2.381, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 392, + "voice_actor_2": -1 + }, + "107301": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.294, + 0.988, + 0 + ] + ], + "plane": [ + [ + 1.717, + 1.914, + 0 + ] + ] + }, + "desc": "Would you like me to recommend a drink? Hmm... You're quite the drinker, Commander~ Let's see if you can handle my favorite♪ Heehee!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 107301, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Flavor of the Day", + "painting": "shenghaxintuo_2", + "prefab": "shenghaxintuo_2", + "rarity_bg": "", + "ship_group": 10730, + "ship_l2d_id": "", + "shop_id": 70940, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.171, + 2.377, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 392, + "voice_actor_2": -1 + }, + "107380": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.269, + 0.955, + 0 + ] + ], + "plane": [ + [ + 1.456, + 0.862, + 0 + ] + ] + }, + "desc": "Essex-class aircraft carrier – Shangri-La, Hull Number CV-38.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 107380, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shangri-La", + "painting": "xianggelila", + "prefab": "xianggelila", + "rarity_bg": "", + "ship_group": 10738, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.517, + 2.402, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 161, + "voice_actor_2": -1 + }, + "107381": { + "bg": "110", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.83, + 0.694, + 0 + ] + ], + "plane": [ + [ + 1.045, + 0.675, + 0 + ] + ] + }, + "desc": "Commander, welcome to my \"Utopia.\" Here, you can find my prized collection. Now, where should we start our detailed tour?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 107381, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Utopia's Collector", + "painting": "xianggelila_2", + "prefab": "xianggelila_2", + "rarity_bg": "", + "ship_group": 10738, + "ship_l2d_id": "", + "shop_id": 70162, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.612, + 2.709, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 161, + "voice_actor_2": -1 + }, + "107382": { + "bg": "", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.31, + 1.04, + 0 + ] + ], + "plane": [ + [ + 1.32, + 1.01, + 0 + ] + ] + }, + "desc": "This specimen looks to be fairly ancient... You could watch from behind me, or you could join me for an up-close examination; we can enjoy our time here however you wish.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 107382, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Explorer of the Lost World", + "painting": "xianggelila_3", + "prefab": "xianggelila_3", + "rarity_bg": "", + "ship_group": 10738, + "ship_l2d_id": "", + "shop_id": 70390, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.612, + 2.52, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 161, + "voice_actor_2": -1 + }, + "107990": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.164, + 1.298, + 0 + ] + ], + "plane": [ + [ + 1.271, + 1.356, + 0 + ] + ] + }, + "desc": "Yorktown-class aircraft carrier – Enterprise, Hull Number CV-6.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 107990, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Enterprise", + "painting": "qiye_younv", + "prefab": "qiye_younv", + "rarity_bg": "", + "ship_group": 10799, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.164, + -0.25 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "108010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.9, + 1.14, + 0 + ] + ], + "torpedo": [ + [ + 0.41, + 0.2, + 0 + ] + ] + }, + "desc": "Gato-class submarine - Dace (SS-247)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 108010, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dace", + "painting": "tiaoyu", + "prefab": "tiaoyu", + "rarity_bg": "", + "ship_group": 10801, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 124, + "voice_actor_2": -1 + }, + "108020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.906, + 1.069, + 0 + ] + ], + "torpedo": [ + [ + 0.63, + 0.27, + 0 + ] + ] + }, + "desc": "Gato-class submarine – Albacore, Hull Number SS-218.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 108020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Albacore", + "painting": "daqinghuayu", + "prefab": "daqinghuayu", + "rarity_bg": "", + "ship_group": 10802, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.433, + 2.271, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 146, + "voice_actor_2": -1 + }, + "108021": { + "bg": "135", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.598, + 1.069, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0.006, + 0 + ] + ] + }, + "desc": "Oopsie! I totally just dropped something by mistake~! I'd better pick it up quick! Hmm? Saw something you shouldn't have, Commander? Hehehe~ That makes you my partner in crime now!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 108021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beneath the Black Dress", + "painting": "daqinghuayu_4", + "prefab": "daqinghuayu_4", + "rarity_bg": "", + "ship_group": 10802, + "ship_l2d_id": "", + "shop_id": 70372, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.433, + 2.831, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 146, + "voice_actor_2": -1 + }, + "108022": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.1, + 0.79, + 0 + ] + ], + "torpedo": [ + [ + 0.65, + 0.25, + 0 + ] + ] + }, + "desc": "Surpriiiise! I was in the box all along! ...Did I really freak you out that much? Heehee~ Here, have this voucher as an apology. Come see me later to use it~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 108022, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Catty Surprise!", + "painting": "daqinghuayu_3", + "prefab": "daqinghuayu_3", + "rarity_bg": "", + "ship_group": 10802, + "ship_l2d_id": "", + "shop_id": 70640, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 146, + "voice_actor_2": -1 + }, + "108030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.79, + 0.533, + 0 + ] + ], + "torpedo": [ + [ + 0.753, + 0.132, + 0 + ] + ] + }, + "desc": "Gato-class submarine – Cavalla, Hull Number SS-244.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 108030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cavalla", + "painting": "jiqi", + "prefab": "jiqi", + "rarity_bg": "", + "ship_group": 10803, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.433, + 2.271, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 199, + "voice_actor_2": -1 + }, + "108031": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.754, + 0.504, + 0 + ] + ], + "torpedo": [ + [ + 0.63, + 0.19, + 0 + ] + ] + }, + "desc": "You're late, Commander! ... What's all this? Heheh, it's loot I got from the stop n' rob's bargain bin! Here, have some bread!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 108031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Convenience Store Raid!", + "painting": "jiqi_2", + "prefab": "jiqi_2", + "rarity_bg": "", + "ship_group": 10803, + "ship_l2d_id": "", + "shop_id": 70206, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.534, + 2.271, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 199, + "voice_actor_2": -1 + }, + "108032": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.265, + 1.146, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0, + 0 + ] + ] + }, + "desc": "Look at all the cute balloons and flowers, and the delicious food as well! Hehe! Parties are the best!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 108032, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Colorful Ceremony", + "painting": "jiqi_3", + "prefab": "jiqi_3", + "rarity_bg": "", + "ship_group": 10803, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.433, + 2.442, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 199, + "voice_actor_2": -1 + }, + "108040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.734, + 1.063, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + -0.037, + 0 + ] + ] + }, + "desc": "Gato-class submarine – Bluegill, Hull Number SS-242.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 7, + "id": 108040, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bluegill", + "painting": "lansaiyu", + "prefab": "lansaiyu", + "rarity_bg": "", + "ship_group": 10804, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.497, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 227, + "voice_actor_2": -1 + }, + "108041": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.83, + 1.127, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + -0.009, + 0 + ] + ] + }, + "desc": "Look out for Bluegill's ultra-reliable defense, Intrepid! Hehehe, Commander, stay here and see the results of Bluegill's special training!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 7, + "id": 108041, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Up-And-Coming Infielder", + "painting": "lansaiyu_2", + "prefab": "lansaiyu_2", + "rarity_bg": "", + "ship_group": 10804, + "ship_l2d_id": "", + "shop_id": 70335, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 227, + "voice_actor_2": -1 + }, + "108050": { + "bg": "140", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.284, + 0.819, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Lights! Camera! Albacore! Ahaha, don't worry about it, I'm just getting fired up over here! Oh, did you come up with a better idea? Tell me, tell me~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 108050, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Albacore μ", + "painting": "daqinghuayu_idol", + "prefab": "daqinghuayu_idol", + "rarity_bg": "", + "ship_group": 10805, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 146, + "voice_actor_2": -1 + }, + "108060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.16, + 1.12, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Balao-class submarine – Archerfish, Hull Number SS-311.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 7, + "id": 108060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Archerfish", + "painting": "sheshuiyu", + "prefab": "sheshuiyu", + "rarity_bg": "", + "ship_group": 10806, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.29, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 274, + "voice_actor_2": -1 + }, + "108061": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.06, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "You're our lucky guest today, Commander~ You get a taste of my secret concoction... Excuse me, I meant to say \"cocktail!\" Relax, it won't do anything weird to you~ Probably. Ahaha~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 7, + "id": 108061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Coquettish Bunny", + "painting": "sheshuiyu_3", + "prefab": "sheshuiyu_3", + "rarity_bg": "", + "ship_group": 10806, + "ship_l2d_id": "", + "shop_id": 70545, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 274, + "voice_actor_2": -1 + }, + "108062": { + "bg": "147", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.16, + 1.12, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Would you look at that – we're sat next to each other in class. Looking forward to doing some \"extracurricular activities\" with you this term. Hehehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 7, + "id": 108062, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Devil Next Door", + "painting": "sheshuiyu_2", + "prefab": "sheshuiyu_2", + "rarity_bg": "", + "ship_group": 10806, + "ship_l2d_id": "", + "shop_id": 70679, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 274, + "voice_actor_2": -1 + }, + "108070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.284, + 0.819, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Narwhal-class submarine-Nautilus, Hull number SS-168.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 108070, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nautilus", + "painting": "yingwuluo", + "prefab": "yingwuluo", + "rarity_bg": "", + "ship_group": 10807, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 283, + "voice_actor_2": -1 + }, + "108071": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.284, + 0.819, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Phew~ Standing for a long time really wears you out... Hwah?! Commander, when'd you get there? Um, if you'd like, would you like to come exercise with me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 108071, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Afternoon Stretches", + "painting": "yingwuluo_2", + "prefab": "yingwuluo_2", + "rarity_bg": "", + "ship_group": 10807, + "ship_l2d_id": "", + "shop_id": 70587, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 283, + "voice_actor_2": -1 + }, + "108072": { + "bg": "173", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.284, + 0.819, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Commander~ Ehehe, can I introduce you to some of my new friends? Here's Miss Tropical Fish, and Mister Manta Ray... Oh, and Mister Dolphin too! Oh, umm, this friend here can be a bit mischievous at times, and often causes quite a bit of trouble...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 108072, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shining Blossom in the Deep Blue", + "painting": "yingwuluo_3", + "prefab": "yingwuluo_3", + "rarity_bg": "", + "ship_group": 10807, + "ship_l2d_id": "", + "shop_id": 70905, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 283, + "voice_actor_2": -1 + }, + "108080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.56, + 1.74, + 0 + ] + ], + "cannon": [ + [ + 1.693, + 1.524, + 0 + ] + ], + "torpedo": [ + [ + 0.06, + -0.234, + 0 + ] + ] + }, + "desc": "Gato-class submarine – Flasher, Hull Number SS-249.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 108080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Flasher", + "painting": "songdiao", + "prefab": "songdiao", + "rarity_bg": "", + "ship_group": 10808, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.044, + 2.443, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 391, + "voice_actor_2": -1 + }, + "108081": { + "bg": "166", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.627, + 1.245, + 0 + ] + ], + "cannon": [ + [ + 1.912, + 0.953, + 0 + ] + ], + "torpedo": [ + [ + 0.022, + -0.148, + 0 + ] + ] + }, + "desc": "W-welcome, Commander... I-I as the manager will be serving you today, so l-let's hear your order... *sniffle*... I'm so tense it's making me cry...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 108081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tearjerking Service", + "painting": "songdiao_2", + "prefab": "songdiao_2", + "rarity_bg": "", + "ship_group": 10808, + "ship_l2d_id": "", + "shop_id": 70939, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.157, + 2.433, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 391, + "voice_actor_2": -1 + }, + "112010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.855, + 0.938, + 0 + ] + ], + "cannon": [ + [ + 0.855, + 0.938, + 0 + ] + ] + }, + "desc": "Repair ship ー Vestal, Hull Number AR-4!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 112010, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vestal", + "painting": "zaoshen", + "prefab": "zaoshen", + "rarity_bg": "", + "ship_group": 11201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.554, + 0.483, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.611, + 0.709, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 1, + "voice_actor_2": -1 + }, + "112011": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.855, + 0.938, + 0 + ] + ], + "cannon": [ + [ + 0.855, + 0.938, + 0 + ] + ] + }, + "desc": "Listen, everyone~! Playing by the beach is fun, but please keep safety in mind! If you begin to feel ill, come see me~!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 112011, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Revigorating Hestia", + "painting": "zaoshen_2", + "prefab": "zaoshen_2", + "rarity_bg": "", + "ship_group": 11201, + "ship_l2d_id": "", + "shop_id": 70095, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.72, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 1, + "voice_actor_2": -1 + }, + "118020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.88, + 3.08, + 0 + ] + ], + "cannon": [ + [ + 1.6, + 3.32, + 0 + ] + ], + "torpedo": [ + [ + -0.29, + -0.1, + 0 + ] + ], + "vicegun": [ + [ + 1.51, + 3.29, + 0 + ] + ] + }, + "desc": "Alaska-class large cruiser – Guam, Hull Number CB-2.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 118020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Guam", + "painting": "guandao", + "prefab": "guandao", + "rarity_bg": "", + "ship_group": 11802, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.59, + -0.16 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_guandao", + [ + -194, + -1112, + 0 + ], + [ + 0.97 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -175, + -1212, + 0 + ], + [ + 0.97 + ] + ], + "tag": [], + "time": "", + "voice_actor": 389, + "voice_actor_2": -1 + }, + "118021": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.205, + 3.651, + 0 + ] + ], + "cannon": [ + [ + 1.237, + 3.865, + 0 + ] + ], + "torpedo": [ + [ + -0.173, + 0.043, + 0 + ] + ], + "vicegun": [ + [ + 1.224, + 3.766, + 0 + ] + ] + }, + "desc": "Bunny idol, on the stage♪ Commander! You're in for a banger performance, so just forget about everything else and keep your eyes on me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 118021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": [ + 0.5, + 0.5, + 0.5 + ], + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamAngleY": [ + -15, + 15 + ], + "ParamEyeBallX": [ + -0.5, + 0.5 + ], + "ParamEyeBallY": [ + -0.5, + 0.5 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 27, + -47, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Stage-Setting Charmer", + "painting": "guandao_2", + "prefab": "guandao_2", + "rarity_bg": "", + "ship_group": 11802, + "ship_l2d_id": [ + 11802101, + 11802102, + 11802103, + 11802104, + 11802105, + 11802106, + 11802107, + 11802108, + 11802109, + 11802110 + ], + "shop_id": 70936, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.317, + 2.526, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 389, + "voice_actor_2": -1 + }, + "131170": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.174, + 1.55, + 0 + ] + ], + "cannon": [ + [ + 0.883, + 0.965, + 0 + ] + ], + "torpedo": [ + [ + 0.005, + -0.002, + 0 + ] + ] + }, + "desc": "Welcome. Would you like to try a Teriyaki Twister? I could go for a nap right now inside a nice, warm tortilla... Probably.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 10, + "gyro": 0, + "hand_id": 13, + "id": 131170, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sleepy Teriyaki Twister", + "painting": "lafei_11", + "prefab": "lafei_11", + "rarity_bg": "", + "ship_group": 10117, + "ship_l2d_id": "", + "shop_id": 70735, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.735, + 1.824, + -0.13 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "131171": { + "bg": "158", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.45, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Zzzzz... Good night... Laffey, is leveling up... Huh? Commander? Where'd all the monsters go...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 11, + "gyro": 0, + "hand_id": 13, + "id": 131171, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sleepageddon", + "painting": "lafei_10", + "prefab": "lafei_10", + "rarity_bg": "", + "ship_group": 10117, + "ship_l2d_id": "", + "shop_id": 70762, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.34, + -0.13 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "131172": { + "bg": "", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.45, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Oh, Commander? I wasn't waiting for you here... Nope, totally wasn't. But now that you're here, how about we hang out...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 12, + "gyro": 0, + "hand_id": 13, + "id": 131172, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lazy Days", + "painting": "lafei_12", + "prefab": "lafei_12", + "rarity_bg": "", + "ship_group": 10117, + "ship_l2d_id": "", + "shop_id": 70855, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.34, + -0.13 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_lafei_12", + [ + -78, + 528, + 0 + ], + [ + 1.4 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -69, + -316, + 0 + ], + [ + 0.92 + ] + ], + "tag": [ + 6 + ], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "137030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.151, + 1.388, + 0 + ] + ], + "cannon": [ + [ + 1.122, + 1.404, + 0 + ] + ], + "plane": [ + [ + 1.112, + 1.451, + 0 + ] + ] + }, + "desc": "Set, okay! Outfit, okay! All righty, everything's perfect!! Today, Sister Sara is taking on a brand new role as a brand ambassador! How about a taste, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 10, + "gyro": 0, + "hand_id": 5, + "id": 137030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cup Ramen Ambassador?", + "painting": "salatuojia_9", + "prefab": "salatuojia_9", + "rarity_bg": "", + "ship_group": 10703, + "ship_l2d_id": "", + "shop_id": 70588, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.545, + 2.068, + -0.6 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "137060": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.392, + 1.136, + 0 + ] + ], + "plane": [ + [ + 1.359, + 1.162, + 0 + ] + ] + }, + "desc": "...Hah! Think you can handle more, Commander? I'm not afraid of any fight on the water, but when it comes to diving, I'd be lying if I said I wasn't a little uneasy...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 10, + "gyro": 0, + "hand_id": 1, + "id": 137060, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 40, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Diving Under Blue Skies", + "painting": "qiye_9", + "prefab": "qiye_9", + "rarity_bg": "", + "ship_group": 10706, + "ship_l2d_id": [ + 1370601, + 1370602, + 1370603, + 1370604 + ], + "shop_id": 70897, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.551, + 2.329, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "199010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.11, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 1.04, + 1.14, + 0 + ] + ], + "torpedo": [ + [ + -0.03, + 0.05, + 0 + ] + ] + }, + "desc": "Light cruiser – Seattle.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 199010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Seattle", + "painting": "xiyatu", + "prefab": "xiyatu", + "rarity_bg": "", + "ship_group": 19901, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.28, + 2.31, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 129, + "voice_actor_2": -1 + }, + "199011": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.149, + 0.438, + 0 + ] + ], + "cannon": [ + [ + 1.108, + 0.466, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.01, + 0 + ] + ] + }, + "desc": "Hey! Great to have you here, Commander! I've gotta ask, whaddya think of my dress? Looking real gorgeous, right? ...Phew, awesome! I was worried my dress didn't look nice and might be dragging down the party mood, that's all!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 199011, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gorgeous Party", + "painting": "xiyatu_2", + "prefab": "xiyatu_2", + "rarity_bg": "", + "ship_group": 19901, + "ship_l2d_id": "", + "shop_id": 70240, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.28, + 2.31, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 129, + "voice_actor_2": -1 + }, + "199012": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.624, + 0.746, + 0 + ] + ], + "cannon": [ + [ + 1.684, + 0.734, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.007, + 0 + ] + ] + }, + "desc": "Meeeerry Christmas~! Even though the party is about to start, as you can see, I'm still getting ready~ Just gimme a moment, all righty~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 199012, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Christmas Party Prep!", + "painting": "xiyatu_3", + "prefab": "xiyatu_3", + "rarity_bg": "", + "ship_group": 19901, + "ship_l2d_id": "", + "shop_id": 70277, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.28, + 2.31, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 129, + "voice_actor_2": -1 + }, + "199013": { + "bg": "134", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.186, + 1.053, + 0 + ] + ], + "cannon": [ + [ + 1.083, + 1.128, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.333, + 0 + ] + ] + }, + "desc": "Supportive sorceress Seattle, comin' in hot! So, something got you down, my good pal? I'm up to talk about whatever's on your mind, but in return, you've gotta come to my party tonight!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 199013, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sunfish Spell!", + "painting": "xiyatu_4", + "prefab": "xiyatu_4", + "rarity_bg": "", + "ship_group": 19901, + "ship_l2d_id": "", + "shop_id": 70392, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.28, + 2.31, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 129, + "voice_actor_2": -1 + }, + "199020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 1.09, + 0 + ] + ], + "cannon": [ + [ + 1.17, + 0.96, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.05, + 0 + ] + ] + }, + "desc": "Battleship – Georgia.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 199020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Georgia", + "painting": "zuozhiya", + "prefab": "zuozhiya", + "rarity_bg": "", + "ship_group": 19902, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.26, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 173, + "voice_actor_2": -1 + }, + "199021": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1, + 1.012, + 0 + ] + ], + "cannon": [ + [ + 0.994, + 1.009, + 0 + ] + ], + "torpedo": [ + [ + 0.024, + 0.05, + 0 + ] + ] + }, + "desc": "Oh? Commander, did you need to get some fresh air as well? Me? Ahaha... It's a bit too stiff inside that venue, so I came out for a change of pace. Why don't we take a little stroll together?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 199021, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "South Town Pearl", + "painting": "zuozhiya_2", + "prefab": "zuozhiya_2", + "rarity_bg": "", + "ship_group": 19902, + "ship_l2d_id": "", + "shop_id": 70185, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.371, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 173, + "voice_actor_2": -1 + }, + "199022": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.304, + 0.437, + 0 + ] + ], + "cannon": [ + [ + 1.24, + 0.76, + 0 + ] + ], + "torpedo": [ + [ + 0.024, + 0.007, + 0 + ] + ] + }, + "desc": "Heh heh, the warm sun and the sea breeze really hit the spot, don't they? Alright, let's get out there and enjoy ourselves! That's what you've been waiting for, right, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 199022, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lanier Swan", + "painting": "zuozhiya_4", + "prefab": "zuozhiya_4", + "rarity_bg": "", + "ship_group": 19902, + "ship_l2d_id": "", + "shop_id": 70214, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.371, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 173, + "voice_actor_2": -1 + }, + "199023": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.494, + 1.025, + 0 + ] + ], + "cannon": [ + [ + 1.473, + 0.994, + 0 + ] + ], + "torpedo": [ + [ + 0.024, + 0.007, + 0 + ] + ] + }, + "desc": "Happy New Year, Commander! I guess you dress up all flashy like this for the Sakura New Year. Would you escort me...? What are you gawking like that for...? Haha, am I so dazzling? Hahaha!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 199023, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Exalted Vibrance", + "painting": "zuozhiya_6", + "prefab": "zuozhiya_6", + "rarity_bg": "", + "ship_group": 19902, + "ship_l2d_id": "", + "shop_id": 70466, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.466, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 173, + "voice_actor_2": -1 + }, + "199030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.509, + 1.027, + 0 + ] + ], + "cannon": [ + [ + 1.535, + 1.025, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + -0.016, + 0 + ] + ], + "vicegun": [ + [ + 1.512, + 1.042, + 0 + ] + ] + }, + "desc": "Heavy cruiser – Anchorage.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 199030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Anchorage", + "painting": "ankeleiqi", + "prefab": "ankeleiqi", + "rarity_bg": "", + "ship_group": 19903, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.439, + 2.519, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 59, + "voice_actor_2": -1 + }, + "199031": { + "bg": "168", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.509, + 1.027, + 0 + ] + ], + "cannon": [ + [ + 1.535, + 1.025, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + -0.016, + 0 + ] + ], + "vicegun": [ + [ + 1.512, + 1.042, + 0 + ] + ] + }, + "desc": "Mm... There... Teacher? Is Anchorage doing it right? Is Anchorage... swimming? Thank goodness... Falling into the water would be bad, right...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 199031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dolphins and Swim Lessons", + "painting": "ankeleiqi_2", + "prefab": "ankeleiqi_2", + "rarity_bg": "", + "ship_group": 19903, + "ship_l2d_id": [ + 1990311, + 1990312, + 1990313 + ], + "shop_id": 70849, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.439, + 2.519, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 59, + "voice_actor_2": -1 + }, + "199032": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.509, + 1.027, + 0 + ] + ], + "cannon": [ + [ + 1.641, + 0.9829999, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.618, + 1, + 0 + ] + ] + }, + "desc": "Teacher... How are Anchorage's new clothes? Do you like them...? Yeah, I do, too!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 199032, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": [ + 0.5, + 1, + 1 + ], + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 30, + 0 + ], + "live2d_offset_profile": [ + 0, + 70, + 0 + ], + "main_UI_FX": "", + "name": "Moonlit Boat Ride", + "painting": "ankeleiqi_3", + "prefab": "ankeleiqi_3", + "rarity_bg": "", + "ship_group": 19903, + "ship_l2d_id": [ + 19903201, + 19903202, + 19903203, + 19903204, + 19903205, + 19903206, + 19903207, + 19903208, + 19903209, + 19903210, + 19903211, + 19903212, + 19903213, + 19903214, + 19903215, + 19903216, + 19903217, + 19903218, + 19903219, + 19903220, + 19903221, + 19903222, + 19903223, + 19903224, + 19903225, + 19903226, + 19903227, + 19903228, + 19903229, + 19903230, + 19903231, + 19903232, + 19903233, + 19903234, + 19903235, + 19903236, + 19903237, + 19903238, + 19903239, + 19903240, + 19903241, + 19903242, + 19903243 + ], + "shop_id": 70970, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.467, + 2.484, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 59, + "voice_actor_2": -1 + }, + "199040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Aviation battleship – Kearsarge.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 199040, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kearsarge", + "painting": "qiershazhi", + "prefab": "qiershazhi", + "rarity_bg": "", + "ship_group": 19904, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_qiershazhi", + [ + -77, + 39, + 0 + ], + [ + 2.2 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -35, + -1062, + 0 + ], + [ + 0.85 + ] + ], + "tag": [], + "time": "", + "voice_actor": 371, + "voice_actor_2": -1 + }, + "199041": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 1.58, + 0.62, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "I am now the Hybrid Idealization given flesh and blood wearing a suit designed with my performance for you in mind. I am ready to receive orders at any time.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 199041, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -180, + 180, + 0 + ], + "live2d_offset_profile": [ + 0, + 50, + 0 + ], + "main_UI_FX": "", + "name": "All-Night Charge", + "painting": "qiershazhi_2", + "prefab": "qiershazhi_2", + "rarity_bg": "", + "ship_group": 19904, + "ship_l2d_id": [ + 19904101, + 19904102, + 19904103, + 19904104, + 19904105, + 19904106, + 19904107, + 19904108, + 19904109, + 19904110, + 19904111, + 19904112, + 19904113, + 19904114, + 19904115, + 19904116, + 19904117, + 19904118, + 19904119, + 19904120, + 19904121, + 19904122, + 19904123, + 19904124, + 19904125, + 19904126, + 19904127, + 19904128, + 19904129, + 19904130, + 19904131, + 19904132, + 19904133 + ], + "shop_id": 70956, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.23, + 2.29, + -0.18 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_qiershazhi", + [ + -77, + 39, + 0 + ], + [ + 2.2 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -35, + -1062, + 0 + ], + [ + 0.85 + ] + ], + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 371, + "voice_actor_2": -1 + }, + "201010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.318, + 0.719, + 0 + ], + [ + 0.824, + 0.507, + 0 + ] + ], + "cannon": [ + [ + -0.318, + 0.719, + 0 + ] + ], + "torpedo": [ + [ + 0.181, + 0.477, + 0 + ] + ] + }, + "desc": "A-class prototype destoryer ー Amazon, Hull Number D39!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 201010, + "illustrator": 15, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Amazon", + "painting": "nvjiang", + "prefab": "nvjiang", + "rarity_bg": "", + "ship_group": 20101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.593, + 0.319, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.527, + 0.483, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 4, + "voice_actor_2": -1 + }, + "201011": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 1.09, + 0 + ] + ], + "cannon": [ + [ + 1.09, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.09, + 0 + ] + ] + }, + "desc": "No ball is complete without its orchestra! Here, as the leader of the Royal Destroyers Philharmonic, I'll be sure to liven up the night! Now to begin... woaaah! I stepped on my mantle?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 201011, + "illustrator": 15, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Orchestra", + "painting": "nvjiang_2", + "prefab": "nvjiang_2", + "rarity_bg": "", + "ship_group": 20101, + "ship_l2d_id": "", + "shop_id": 70102, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 4, + "voice_actor_2": -1 + }, + "201019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.57, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 1.51, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + 0.03, + 0 + ] + ] + }, + "desc": "Selecting me for a retrofit proves that you are a Commander of culture! Heheh, you'd better prepare yourself! From now on, I'll make sure to \"take care\" of you even more thoroughly!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 5, + "id": 201019, + "illustrator": 15, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Amazon (Retrofit)", + "painting": "nvjiang_g", + "prefab": "nvjiang_g", + "rarity_bg": "", + "ship_group": 20101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.11, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 4, + "voice_actor_2": -1 + }, + "201020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.83, + 0.97, + 0 + ] + ], + "cannon": [ + [ + 0.83, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.08, + 0.15, + 0 + ] + ], + "vicegun": [ + [ + 0.83, + 0.97, + 0 + ] + ] + }, + "desc": "A-class destroyer – Acasta, Hull Number H09.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201020, + "illustrator": 38, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Acasta", + "painting": "akasita", + "prefab": "akasita", + "rarity_bg": "", + "ship_group": 20102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.37, + 2.58, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 110, + "voice_actor_2": -1 + }, + "201021": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.78, + 1.19, + 0 + ] + ], + "cannon": [ + [ + 0.83, + 1.229, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 0.8, + 1.18, + 0 + ] + ] + }, + "desc": "Hm? Guess we're both about to head out... Don't stare at me like that... Even I go outdoors sometimes... Since we're both, uh, headed the same way... maybe we could... walk there together?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 201021, + "illustrator": 38, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fashionable Outing", + "painting": "Akasita_2", + "prefab": "Akasita_2", + "rarity_bg": "", + "ship_group": 20102, + "ship_l2d_id": "", + "shop_id": 70066, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.37, + 2.58, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 110, + "voice_actor_2": -1 + }, + "201022": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.087, + 1.027, + 0 + ] + ], + "cannon": [ + [ + 1.108, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.027, + -0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.117, + 0.921, + 0 + ] + ] + }, + "desc": "I heard you're supposed to hang lanterns up everywhere during the Spring Festival... so Ardent and I gave it a try! What do you think? Pretty cute, right? Um... I was talking about the lanterns...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 201022, + "illustrator": 38, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lights of the Lantern Festival", + "painting": "akasita_3", + "prefab": "akasita_3", + "rarity_bg": "", + "ship_group": 20102, + "ship_l2d_id": "", + "shop_id": 70315, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.591, + 2.235, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 110, + "voice_actor_2": -1 + }, + "201023": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.087, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.108, + 1.17, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.117, + 1.12, + 0 + ] + ] + }, + "desc": "Come on, stop running around and behave already... Ah, Commander? Umm, I'm currently looking after these rabbits... Hm, you're thirsty? Um, give me a moment and I'll whip something up for you...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 201023, + "illustrator": 38, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Monochromatic Marvel", + "painting": "akasita_4", + "prefab": "akasita_4", + "rarity_bg": "", + "ship_group": 20102, + "ship_l2d_id": "", + "shop_id": 70549, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 110, + "voice_actor_2": -1 + }, + "201029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.4, + 1.29, + 0 + ] + ], + "cannon": [ + [ + 1.41, + 1.42, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 1.38, + 1.34, + 0 + ] + ] + }, + "desc": "Ardent told me I \"gotta stop looking so tired\" and I \"gotta be more girly,\" so I did it while I was retrofitting... Do you recognise me, Commander? ... Umm, I'm Acasta, okay?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 201029, + "illustrator": 38, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Acasta (Retrofit)", + "painting": "akasita_g", + "prefab": "akasita_g", + "rarity_bg": "", + "ship_group": 20102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.55, + 2.41, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 110, + "voice_actor_2": -1 + }, + "201030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.8, + 1.01, + 0 + ] + ], + "cannon": [ + [ + 0.8, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + 0.16, + 0 + ] + ], + "vicegun": [ + [ + 0.8, + 1.01, + 0 + ] + ] + }, + "desc": "A-class destroyer – Ardent, Hull Number H41.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201030, + "illustrator": 38, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ardent", + "painting": "rexin", + "prefab": "rexin", + "rarity_bg": "", + "ship_group": 20103, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.37, + 2.59, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 111, + "voice_actor_2": -1 + }, + "201031": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.14, + 1.01, + 0 + ] + ], + "cannon": [ + [ + 1.09, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 1.01, + 0 + ] + ] + }, + "desc": "Ehehe~ What do you think, Commander? If you're just going to say \"cute,\" I won't know if you're talking about my school uniform or the chocolate I made...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 201031, + "illustrator": 38, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ardent Valentine", + "painting": "rexin_2", + "prefab": "rexin_2", + "rarity_bg": "", + "ship_group": 20103, + "ship_l2d_id": "", + "shop_id": 70319, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.16, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 111, + "voice_actor_2": -1 + }, + "201032": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.266, + 1.271, + 0 + ] + ], + "cannon": [ + [ + 1.225, + 1.188, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.216, + 1.181, + 0 + ] + ] + }, + "desc": "Welcome to Ardent's game house~! I'm here to provide fun and excitement for everyone as the GM– ...Ehehe, actually, I'm still learning as a play~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 201032, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Master Ardent?", + "painting": "rexin_3", + "prefab": "rexin_3", + "rarity_bg": "", + "ship_group": 20103, + "ship_l2d_id": "", + "shop_id": 70584, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.543, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 111, + "voice_actor_2": -1 + }, + "201039": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.23, + 1.32, + 0 + ] + ], + "cannon": [ + [ + 1.37, + 1.38, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.04, + 0 + ] + ], + "vicegun": [ + [ + 1.28, + 1.39, + 0 + ] + ] + }, + "desc": "New outfit, new rigging, same ardent spirit! Ahaha, I'm serious~! Commander, thanks a lot~!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 201039, + "illustrator": 38, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ardent (Retrofit)", + "painting": "rexin_g", + "prefab": "rexin_g", + "rarity_bg": "", + "ship_group": 20103, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.37, + 2.59, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 111, + "voice_actor_2": -1 + }, + "201060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.72, + 0.87, + 0 + ] + ], + "cannon": [ + [ + 0.72, + 0.87, + 0 + ] + ], + "torpedo": [ + [ + 0.48, + 0.34, + 0 + ] + ], + "vicegun": [ + [ + 0.72, + 0.87, + 0 + ] + ] + }, + "desc": "B-class destroyer ー Beagle, Hull Number H30!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 201060, + "illustrator": 16, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beagle", + "painting": "xiaolietuquan", + "prefab": "xiaolietuquan", + "rarity_bg": "", + "ship_group": 20106, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 0.272, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 63, + "voice_actor_2": -1 + }, + "201070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.61, + 0.92, + 0 + ] + ], + "cannon": [ + [ + 0.61, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0.43, + 0.39, + 0 + ] + ], + "vicegun": [ + [ + 0.61, + 0.92, + 0 + ] + ] + }, + "desc": "B-class destroyer ー Bulldog, Hull Number H91!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 201070, + "illustrator": 16, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bulldog", + "painting": "dadouquan", + "prefab": "dadouquan", + "rarity_bg": "", + "ship_group": 20107, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.83, + 2.61, + -1.03 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.42, + 0.49, + -0.12 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 63, + "voice_actor_2": -1 + }, + "201080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.038, + 0.59, + 0 + ] + ], + "cannon": [ + [ + 0.038, + 0.59, + 0 + ] + ], + "torpedo": [ + [ + 0.257, + 0.325, + 0 + ] + ] + }, + "desc": "C-class destroyer ー Comet, Hull Number H00!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 201080, + "illustrator": 17, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Comet", + "painting": "huixing", + "prefab": "huixing", + "rarity_bg": "", + "ship_group": 20108, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.273, + 0.298, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.314, + 0.267, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 53, + "voice_actor_2": -1 + }, + "201089": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.12, + 0.96, + 0 + ] + ], + "cannon": [ + [ + -0.12, + 0.96, + 0 + ] + ], + "torpedo": [ + [ + 0.11, + 0.16, + 0 + ] + ] + }, + "desc": "Do ya reckon... I you think I've become more idol-like? Mhm! As a new idol, I'll show y'all... I'll show you how hard I work as a new idol!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 201089, + "illustrator": 17, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Comet (Retrofit)", + "painting": "huixing_g", + "prefab": "huixing_g", + "rarity_bg": "", + "ship_group": 20108, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.31, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 53, + "voice_actor_2": -1 + }, + "201090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.159, + 0.552, + 0 + ] + ], + "cannon": [ + [ + 0.159, + 0.552, + 0 + ] + ], + "torpedo": [ + [ + 0.356, + 0.378, + 0 + ] + ] + }, + "desc": "C-class destroyer ー Crescent, Hull Number H48!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 201090, + "illustrator": 17, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Crescent", + "painting": "xinyue", + "prefab": "xinyue", + "rarity_bg": "", + "ship_group": 20109, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.273, + 0.534, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.358, + 0.288, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 53, + "voice_actor_2": -1 + }, + "201099": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.02, + 0.87, + 0 + ] + ], + "cannon": [ + [ + 0.02, + 0.87, + 0 + ] + ], + "torpedo": [ + [ + 0.06, + 0.2, + 0 + ] + ] + }, + "desc": "Cute? Pretty? Is that all? Can't you expand your vocabulary a little? Jeez... Commander, you really should learn to whisper sweet nothings into my ear!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 201099, + "illustrator": 17, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Crescent (Retrofit)", + "painting": "xinyue_g", + "prefab": "xinyue_g", + "rarity_bg": "", + "ship_group": 20109, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 53, + "voice_actor_2": -1 + }, + "201100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.038, + 0.62, + 0 + ] + ], + "cannon": [ + [ + 0.038, + 0.62, + 0 + ] + ], + "torpedo": [ + [ + 0.129, + 0.348, + 0 + ] + ] + }, + "desc": "C-class destroyer ー Cygnet, Hull Number H83!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201100, + "illustrator": 17, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cygnet", + "painting": "xiaotiane", + "prefab": "xiaotiane", + "rarity_bg": "", + "ship_group": 20110, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.309, + 0.832, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.269, + 2.82, + -0.52 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "201101": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.1, + 0.66, + 0 + ] + ], + "cannon": [ + [ + 0.1, + 0.66, + 0 + ] + ], + "torpedo": [ + [ + -0.04, + 0.22, + 0 + ] + ] + }, + "desc": "Well, the swimsuit that Hood gave to me is a little tight, don't you think? Want to play beach volleyball? Do you think... can we win?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 201101, + "illustrator": 17, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sea Star on Shore", + "painting": "xiaotiane_2", + "prefab": "xiaotiane_2", + "rarity_bg": "", + "ship_group": 20110, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.309, + 0.832, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.269, + 2.82, + -0.52 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "201102": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.33, + 0.94, + 0 + ] + ], + "cannon": [ + [ + -0.33, + 0.94, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.14, + 0 + ] + ] + }, + "desc": "H-happy Christmas! A-after that... umm... I have this present for ya, Commander...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 201102, + "illustrator": 17, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Holy Night's Hymn", + "painting": "xiaotiane_3", + "prefab": "xiaotiane_3", + "rarity_bg": "", + "ship_group": 20110, + "ship_l2d_id": "", + "shop_id": 70027, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "201103": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.01, + 1.58, + 0 + ] + ], + "cannon": [ + [ + -0.01, + 1.6, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.07, + 0 + ] + ] + }, + "desc": "Aww... it took me a while to get changed... Commander, did I keep you waiting long? Hehe... th-that's good. Let's get going, then~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 201103, + "illustrator": 17, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Winter Date", + "painting": "xiaotiane_5", + "prefab": "xiaotiane_5", + "rarity_bg": "", + "ship_group": 20110, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "201104": { + "bg": "104", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.011, + 0.932, + 0 + ] + ], + "cannon": [ + [ + 0.877, + 1.001, + 0 + ] + ], + "torpedo": [ + [ + -0.021, + 0.08, + 0 + ] + ] + }, + "desc": "M-Master... good evening... C-Commander, don't stare at me so intently... *Whimper*... Saratoga told me that this is part of marketing yourself as an idol...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 201104, + "illustrator": 17, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "An Offer To Be Maid", + "painting": "xiaotiane_4", + "prefab": "xiaotiane_4", + "rarity_bg": "", + "ship_group": 20110, + "ship_l2d_id": "", + "shop_id": 70172, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.323, + 2.219, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "201105": { + "bg": "112", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.286, + 1.199, + 0 + ] + ], + "cannon": [ + [ + 1.297, + 1.207, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "C-Commander? Erm... They picked me to be a cheerleader for the Royal Navy team at the sports thing, so I'm practicin' my cheers... D-don't stare at me like that... I'm shy enough... Already...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 13, + "id": 201105, + "illustrator": 17, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Royal Fanfare", + "painting": "xiaotiane_6", + "prefab": "xiaotiane_6", + "rarity_bg": "", + "ship_group": 20110, + "ship_l2d_id": "", + "shop_id": 70339, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.323, + 2.219, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "201109": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.98, + 0.63, + 0 + ] + ], + "cannon": [ + [ + 0.98, + 0.63, + 0 + ] + ], + "torpedo": [ + [ + 0.34, + 0.06, + 0 + ] + ] + }, + "desc": "This outfit is a little tight... Yes, really? I understand. I've got to work harder for the Royal Navy!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 201109, + "illustrator": 17, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cygnet (Retrofit)", + "painting": "xiaotiane_g", + "prefab": "xiaotiane_g", + "rarity_bg": "", + "ship_group": 20110, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.309, + 0.832, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.269, + 2.82, + -0.52 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "201110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.197, + 0.802, + 0 + ], + [ + 0.65, + 0.59, + 0 + ] + ], + "cannon": [ + [ + -0.197, + 0.802, + 0 + ] + ], + "torpedo": [ + [ + -0.667, + 0.582, + 0 + ] + ] + }, + "desc": "F-class destroyer ー Foxhound, Hull Number H69!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201110, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Foxhound", + "painting": "huti", + "prefab": "huti", + "rarity_bg": "", + "ship_group": 20111, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.54, + 0.411, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.456, + 0.473, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 61, + "voice_actor_2": -1 + }, + "201119": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.12, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 0.05, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.09, + 0 + ] + ] + }, + "desc": "I've grown so much that I can't jump like I used to... Commander, are you surprised by my post-retrofit appearance? *Giggle*", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 201119, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Foxhound (Retrofit)", + "painting": "huti_g", + "prefab": "huti_g", + "rarity_bg": "", + "ship_group": 20111, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 61, + "voice_actor_2": -1 + }, + "201120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.129, + 0.726, + 0 + ], + [ + 0.703, + 0.514, + 0 + ] + ], + "cannon": [ + [ + -0.129, + 0.726, + 0 + ] + ], + "torpedo": [ + [ + -0.651, + 0.537, + 0 + ] + ] + }, + "desc": "F-class destroyer ー Fortune, Hull Number H70!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201120, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fortune", + "painting": "mingyunnvshen", + "prefab": "mingyunnvshen", + "rarity_bg": "", + "ship_group": 20112, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.655, + 0.35, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.456, + 0.371, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 75, + "voice_actor_2": -1 + }, + "201121": { + "bg": "", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.19, + 1.55, + 0 + ] + ], + "cannon": [ + [ + 1.12, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "The weather is so nice and sunny, I'm sure whatever I do today will be a success. May everyone else have a good day today as well... Awauh! Little manjuu, are you okay? I can't believe I tripped...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 201121, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Seraphic Sunshine", + "painting": "mingyunnvshen_2", + "prefab": "mingyunnvshen_2", + "rarity_bg": "", + "ship_group": 20112, + "ship_l2d_id": "", + "shop_id": 70604, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.55, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 75, + "voice_actor_2": -1 + }, + "201129": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.84, + 0.75, + 0 + ] + ], + "cannon": [ + [ + 0.84, + 0.75, + 0 + ] + ], + "torpedo": [ + [ + 0.65, + 0.19, + 0 + ] + ] + }, + "desc": "Is this really going to help you, Commander? Ah? I doubt our destiny will change with this... Just kidding, Commander! Anything for you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 201129, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fortune (Retrofit)", + "painting": "mingyunnvshen_g", + "prefab": "mingyunnvshen_g", + "rarity_bg": "", + "ship_group": 20112, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.77, + 0.76, + -0.24 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.456, + 0.7, + -0.19 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 75, + "voice_actor_2": -1 + }, + "201130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.059, + 1.227, + 0 + ] + ], + "cannon": [ + [ + 1.122, + 1.236, + 0 + ] + ], + "torpedo": [ + [ + 0.141, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.086, + 1.236, + 0 + ] + ] + }, + "desc": "G-class Destroyer - Grenville (H03)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201130, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Grenville", + "painting": "gelunweier", + "prefab": "gelunweier", + "rarity_bg": "", + "ship_group": 20113, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 62, + "voice_actor_2": -1 + }, + "201140": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.362, + 0.409, + 0 + ] + ], + "cannon": [ + [ + 1.362, + 0.409, + 0 + ] + ], + "torpedo": [ + [ + -0.023, + 0.137, + 0 + ] + ] + }, + "desc": "G-class destroyer ー Glowworm, Hull Number H92!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 201140, + "illustrator": 4, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Glowworm", + "painting": "yinghuochong", + "prefab": "yinghuochong", + "rarity_bg": "", + "ship_group": 20114, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.873, + 0.241, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.265, + 0.657, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 14, + "voice_actor_2": -1 + }, + "201141": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.301, + 1.014, + 0 + ] + ], + "cannon": [ + [ + 1.314, + 0.986, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.007, + 0 + ] + ] + }, + "desc": "Ahahaha! It is I, Glowworm, the impartial and absolute judge! Any wrongdoers will have me to answer to! Guilty verdicts will result in headbutts!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 201141, + "illustrator": 4, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jokey Adjudicator", + "painting": "yinghuochong_2", + "prefab": "yinghuochong_2", + "rarity_bg": "", + "ship_group": 20114, + "ship_l2d_id": "", + "shop_id": 70496, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.524, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 14, + "voice_actor_2": -1 + }, + "201160": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.36, + 0.94, + 0 + ] + ], + "cannon": [ + [ + 1.43, + 1.13, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.02, + 0 + ] + ] + }, + "desc": "H-class destroyer – Hardy (H87) ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201160, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hardy", + "painting": "yonggan", + "prefab": "yonggan", + "rarity_bg": "", + "ship_group": 20116, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.59, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 170, + "voice_actor_2": -1 + }, + "201200": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.79, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.02, + 0 + ] + ] + }, + "desc": "H-class destroyer – Hunter (H35) ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201200, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hunter", + "painting": "lieren", + "prefab": "lieren", + "rarity_bg": "", + "ship_group": 20120, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 170, + "voice_actor_2": -1 + }, + "201210": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.855, + 0.424, + 0 + ] + ], + "cannon": [ + [ + 0.855, + 0.424, + 0 + ] + ], + "torpedo": [ + [ + -0.545, + 0.537, + 0 + ] + ] + }, + "desc": "J-class destroyer ー Javelin, Hull Number F61!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201210, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Javelin", + "painting": "biaoqiang", + "prefab": "biaoqiang", + "rarity_bg": "", + "ship_group": 20121, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.487, + 0.32, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.354, + 0.977, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "201212": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.22, + 1.17, + 0 + ] + ], + "cannon": [ + [ + -0.24, + 1.17, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.1, + 0 + ] + ] + }, + "desc": "Everyone, hurry up! We rarely get to go out to play, so let's make every minute count! Javelin packed plenty of lunches, so let's have a picnic by the beach!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 201212, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beach Picnic!", + "painting": "biaoqiang_3", + "prefab": "biaoqiang_3", + "rarity_bg": "", + "ship_group": 20121, + "ship_l2d_id": "", + "shop_id": 70088, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "201213": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.04, + 0.75, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 0.78, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Tada! We’re all wearing the same uniform! It’s super cute, isn’t it? Heehee, I’ll be wearing it the entire time I’m on duty, so make sure to visit!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 201213, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Let's Become Waitresses!", + "painting": "biaoqiang_4", + "prefab": "biaoqiang_4", + "rarity_bg": "", + "ship_group": 20121, + "ship_l2d_id": "", + "shop_id": 70176, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "201214": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.4, + 0.7, + 0 + ] + ], + "cannon": [ + [ + 0.47, + 0.66, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Javelin, advancing very slowly! Heehee~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 201214, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Slow Ahead!", + "painting": "biaoqiang_5", + "prefab": "biaoqiang_5", + "rarity_bg": "", + "ship_group": 20121, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "201215": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.72, + 0.863, + 0 + ] + ], + "cannon": [ + [ + 0.735, + 0.871, + 0 + ] + ], + "torpedo": [ + [ + -0.007, + 0, + 0 + ] + ] + }, + "desc": "Laffey, Z23, Ayanami, and Unicorn - are you girls ready? Ehehe~ I'm not planning to lose to any of you today~!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 13, + "id": 201215, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Operation: Pillow Fight!", + "painting": "biaoqiang_7", + "prefab": "biaoqiang_7", + "rarity_bg": "", + "ship_group": 20121, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 4, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.559, + 2.269, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "201216": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.188, + 0.988, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0.016, + 0 + ] + ] + }, + "desc": "\"Hello, everyone~! I'm Javelin, the new idol who arrived from the Royal Navy! I hope that my songs will be able to bring a smile to everyone's faces, so please take good care of me!\" Hehe, how was that for an introduction, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 13, + "id": 201216, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Energetic Idol @120% Motivation!", + "painting": "biaoqiang_6", + "prefab": "biaoqiang_6", + "rarity_bg": "", + "ship_group": 20121, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "201217": { + "bg": "158", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.188, + 0.988, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0.016, + 0 + ] + ] + }, + "desc": "*pant* *pant*... I finally got it! The legendary hero's... Ah, d-don't worry about it! This thing might look a bit weird, but my ATK stat has indeed gone up!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 7, + "gyro": 0, + "hand_id": 13, + "id": 201217, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Legend is Born?!", + "painting": "biaoqiang_8", + "prefab": "biaoqiang_8", + "rarity_bg": "", + "ship_group": 20121, + "ship_l2d_id": "", + "shop_id": 70759, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "201218": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.237, + 0.99, + 0 + ] + ], + "cannon": [ + [ + 1.34, + 0.75, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.1, + 0 + ] + ] + }, + "desc": "Today, I must be the happiest girl in the world! Hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 201218, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blissful Purity", + "painting": "biaoqiang_h", + "prefab": "biaoqiang_h", + "rarity_bg": "", + "ship_group": 20121, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "201219": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.97, + 0.88, + 0 + ] + ], + "cannon": [ + [ + 0.97, + 0.88, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.12, + 0 + ] + ], + "vicegun": [ + [ + 0.97, + 0.88, + 0 + ] + ] + }, + "desc": "Heavy attack mode prepared, ready to use ultimate firepower! Check out the incredible glow on this new gun!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 201219, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Javelin (Retrofit)", + "painting": "biaoqiang_g", + "prefab": "biaoqiang_g", + "rarity_bg": "", + "ship_group": 20121, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.45, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "201220": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.5, + 0.8, + 0 + ], + [ + -0.5, + 0.8, + 0 + ] + ], + "cannon": [ + [ + -0.075, + 0.673, + 0 + ] + ], + "plane": [ + [ + -0.5, + 0.5, + 0 + ] + ], + "torpedo": [ + [ + 0.216, + 0.364, + 0 + ] + ], + "vicegun": [ + [ + -0.075, + 0.673, + 0 + ] + ] + }, + "desc": "J-class destroyer ー Juno, Hull Number F46!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201220, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Juno", + "painting": "tianhou", + "prefab": "tianhou", + "rarity_bg": "", + "ship_group": 20122, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 37, + "voice_actor_2": -1 + }, + "201221": { + "bg": "114", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.375, + 0.757, + 0 + ] + ], + "cannon": [ + [ + 1.43, + 0.728, + 0 + ] + ], + "plane": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + 0.009, + 0 + ] + ], + "vicegun": [ + [ + 1.395, + 0.711, + 0 + ] + ] + }, + "desc": "I love the bustle of a Sakura festival! Commander, care to try some of Akashi's takoyaki? I've heard their taste is out of this world!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 201221, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fairly Flavourful Festival", + "painting": "tianhou_2", + "prefab": "tianhou_2", + "rarity_bg": "", + "ship_group": 20122, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.549, + 2.179, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 37, + "voice_actor_2": -1 + }, + "201230": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.49, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 0.49, + 0.43, + 0 + ] + ], + "torpedo": [ + [ + 0.41, + 0.19, + 0 + ] + ], + "vicegun": [ + [ + 0.49, + 0.43, + 0 + ] + ] + }, + "desc": "V-class destroyer ー Vampire, Hull Number D68!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201230, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vampire", + "painting": "xixuegui", + "prefab": "xixuegui", + "rarity_bg": "", + "ship_group": 20123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.41, + 0.79, + -0.35 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.59, + 2.36, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "201231": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.64, + 1.06, + 0 + ] + ], + "cannon": [ + [ + 0.65, + 1.04, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.82, + 1.06, + 0 + ] + ] + }, + "desc": "What do you think of my new outfit? You love it? Or just like it? Haha, your answer is written right on your face. Next... wait, wait, wait! I haven't put my socks on yet!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 15, + "id": 201231, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Breath of Spring", + "painting": "xixuegui_2", + "prefab": "xixuegui_2", + "rarity_bg": "", + "ship_group": 20123, + "ship_l2d_id": "", + "shop_id": 70044, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.31, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "201232": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.854, + 0.623, + 0 + ] + ], + "cannon": [ + [ + 0.892, + 0.64, + 0 + ] + ], + "torpedo": [ + [ + 0.059, + 0.051, + 0 + ] + ], + "vicegun": [ + [ + 0.913, + 0.697, + 0 + ] + ] + }, + "desc": "Commander, I am now a nurse, so thou hast no choice but to give me thy blood~! Hehe, just kidding~!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 201232, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Devil in White", + "painting": "xixuegui_3", + "prefab": "xixuegui_3", + "rarity_bg": "", + "ship_group": 20123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 15, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.31, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "201233": { + "bg": "114", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.205, + 0.809, + 0 + ] + ], + "cannon": [ + [ + 1.239, + 0.893, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.23, + 0.834, + 0 + ] + ] + }, + "desc": "Commander, thou promised to go to the festival with me, right? If thou forgot, I shall have to give thee a nibble upon the neck, ehehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 201233, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 3.4 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 55, + -14, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Night Princess's Regalia", + "painting": "xixuegui_4", + "prefab": "xixuegui_4", + "rarity_bg": "", + "ship_group": 20123, + "ship_l2d_id": "", + "shop_id": 70225, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.527, + 2.268, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "201234": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.531, + 1.05, + 0 + ] + ], + "cannon": [ + [ + 1.535, + 0.997, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.585, + 1.022, + 0 + ] + ] + }, + "desc": "Feast thine eyes upon Vampire's idol attire... is it not exquisite? Heheh, now thy gaze shall be fixed upon my performance alone~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 201234, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Night Princess Idol", + "painting": "xixuegui_5", + "prefab": "xixuegui_5", + "rarity_bg": "", + "ship_group": 20123, + "ship_l2d_id": "", + "shop_id": 70440, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.381, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "201235": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.331, + 1.05, + 0 + ] + ], + "cannon": [ + [ + 1.43, + 0.921, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.48, + 0.974, + 0 + ] + ] + }, + "desc": "Why do thee look so astonished? Thou promised to have this Christmas dinner with me. Is it that thou would rather offer me fresh blood than a feast? I certainly wouldn't object to that!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 13, + "id": 201235, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Night Princess's Festive Feast", + "painting": "xixuegui_6", + "prefab": "xixuegui_6", + "rarity_bg": "", + "ship_group": 20123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.238, + 2.484, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "201238": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.599, + 0.621, + 0 + ] + ], + "cannon": [ + [ + 0.599, + 0.621, + 0 + ] + ], + "torpedo": [ + [ + 0.139, + 0.066, + 0 + ] + ], + "vicegun": [ + [ + 0.599, + 0.621, + 0 + ] + ] + }, + "desc": "Those who fall in love with vampires are bound to suffer seven times more than their infatuation. After all, love is a poison which leads to death.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 201238, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Eloi's Blessing", + "painting": "xixuegui_h", + "prefab": "xixuegui_h", + "rarity_bg": "", + "ship_group": 20123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.1, + 0.8, + -0.13 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.8, + 2.31, + -0.57 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "201240": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.66, + 0.57, + 0 + ] + ], + "cannon": [ + [ + 0.66, + 0.57, + 0 + ] + ], + "torpedo": [ + [ + 0.09, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 0.66, + 0.57, + 0 + ] + ] + }, + "desc": "J-class destroyer – Jupiter, Hull Number F85.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201240, + "illustrator": 40, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jupiter", + "painting": "qiubite", + "prefab": "qiubite", + "rarity_bg": "", + "ship_group": 20124, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 102, + "voice_actor_2": -1 + }, + "201241": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.936, + 0.79, + 0 + ] + ], + "cannon": [ + [ + 0.963, + 0.745, + 0 + ] + ], + "torpedo": [ + [ + 0.09, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.001, + 0.726, + 0 + ] + ] + }, + "desc": "Good evening, Commander. There's a new show on the telly. You want to watch with me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 201241, + "illustrator": 40, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fanclub Sleepover", + "painting": "qiubite_2", + "prefab": "qiubite_2", + "rarity_bg": "", + "ship_group": 20124, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.271, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 102, + "voice_actor_2": -1 + }, + "201250": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.84, + 0.74, + 0 + ] + ], + "cannon": [ + [ + 0.84, + 0.74, + 0 + ] + ], + "torpedo": [ + [ + 0.23, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.84, + 0.74, + 0 + ] + ] + }, + "desc": "J-class destroyer – Jersey, Hull Number F72!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201250, + "illustrator": 40, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jersey", + "painting": "zexi", + "prefab": "zexi", + "rarity_bg": "", + "ship_group": 20125, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.32, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 177, + "voice_actor_2": -1 + }, + "201260": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.06, + 0.84, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 0.93, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 1.04, + 0.88, + 0 + ] + ] + }, + "desc": "M-class destroyer – Matchless (G52.)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201260, + "illustrator": 40, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Matchless", + "painting": "wudi", + "prefab": "wudi", + "rarity_bg": "", + "ship_group": 20126, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.37, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 92, + "voice_actor_2": -1 + }, + "201261": { + "bg": "113", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.892, + 0.876, + 0 + ] + ], + "cannon": [ + [ + 1.002, + 0.936, + 0 + ] + ], + "torpedo": [ + [ + 0.012, + 0.026, + 0 + ] + ], + "vicegun": [ + [ + 0.884, + 0.88, + 0 + ] + ] + }, + "desc": "Ah, Commander, over here! Hm, you're going to take care of all the plans for today's date? In that case, I look forward to seeing just how suave you can be! Hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 201261, + "illustrator": 40, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Escort Me Please!", + "painting": "wudi_2", + "prefab": "wudi_2", + "rarity_bg": "", + "ship_group": 20126, + "ship_l2d_id": "", + "shop_id": 70194, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.37, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 92, + "voice_actor_2": -1 + }, + "201270": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.84, + 0.74, + 0 + ] + ], + "cannon": [ + [ + 0.84, + 0.74, + 0 + ] + ], + "torpedo": [ + [ + 0.23, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.84, + 0.74, + 0 + ] + ] + }, + "desc": "M-class destroyer – Musketeer (G86.)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201270, + "illustrator": 40, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Musketeer", + "painting": "huoqiangshou", + "prefab": "huoqiangshou", + "rarity_bg": "", + "ship_group": 20127, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.32, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 92, + "voice_actor_2": -1 + }, + "201290": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.69, + 0.74, + 0 + ] + ], + "cannon": [ + [ + 0.4, + 0.76, + 0 + ] + ], + "torpedo": [ + [ + 0.23, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.23, + 0.74, + 0 + ] + ] + }, + "desc": "E-class destroyer – Echo.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201290, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Echo", + "painting": "huisheng", + "prefab": "huisheng", + "rarity_bg": "", + "ship_group": 20129, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.32, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 184, + "voice_actor_2": -1 + }, + "201320": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.219, + 1.224, + 0 + ] + ], + "cannon": [ + [ + 1.151, + 1.169, + 0 + ] + ], + "torpedo": [ + [ + 0.019, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.194, + 1.173, + 0 + ] + ] + }, + "desc": "Eskimo, Tribal-class Destroyer, is here! Oi, this fleet's not half bad! Nice to meet you, Commander! ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201320, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Eskimo ", + "painting": "aisijimo", + "prefab": "aisijimo", + "rarity_bg": "", + "ship_group": 20132, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.32, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 248, + "voice_actor_2": -1 + }, + "201321": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.219, + 1.098, + 0 + ] + ], + "cannon": [ + [ + 1.27, + 1.05, + 0 + ] + ], + "torpedo": [ + [ + 0.019, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.278, + 1.032, + 0 + ] + ] + }, + "desc": "Oh woe, nobody wants to play with me because they're all too busy~ ...Oh, hello little Manjuu... Heheh, maybe I'll play a prank on you instead!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 201321, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Parkaless Prankster", + "painting": "aisijimo_2", + "prefab": "aisijimo_2", + "rarity_bg": "", + "ship_group": 20132, + "ship_l2d_id": "", + "shop_id": 70382, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.32, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 248, + "voice_actor_2": -1 + }, + "201330": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.219, + 1.185, + 0 + ] + ], + "cannon": [ + [ + 1.151, + 1.169, + 0 + ] + ], + "torpedo": [ + [ + 0.019, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.194, + 1.173, + 0 + ] + ] + }, + "desc": "I-class destroyer – Icarus. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201330, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Icarus ", + "painting": "yikaluosi", + "prefab": "yikaluosi", + "rarity_bg": "", + "ship_group": 20133, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.32, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 18, + "voice_actor_2": -1 + }, + "201331": { + "bg": "1101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.238, + 1.108, + 0 + ] + ], + "cannon": [ + [ + 1.163, + 1.072, + 0 + ] + ], + "torpedo": [ + [ + 0.019, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.22, + 1.096, + 0 + ] + ] + }, + "desc": "This is a special exercise for our on-site medical facilities! Well, that's what they said anyway, but isn't this kind of weird...? I feel like I'd rather be taking care of others, not the other way around... ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 201331, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "One-Week Medical Experience? ", + "painting": "yikaluosi_3", + "prefab": "yikaluosi_3", + "rarity_bg": "", + "ship_group": 20133, + "ship_l2d_id": "", + "shop_id": 70396, + "shop_type_id": 15, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.404, + 2.417, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 18, + "voice_actor_2": -1 + }, + "201332": { + "bg": "134", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.238, + 1.108, + 0 + ] + ], + "cannon": [ + [ + 1.163, + 1.072, + 0 + ] + ], + "torpedo": [ + [ + 0.019, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.22, + 1.096, + 0 + ] + ] + }, + "desc": "\"Let's go explore the ocean together! What special things will we be able to find today~?\" Hehe, how's that, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 201332, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nereid's Discovery", + "painting": "yikaluosi_2", + "prefab": "yikaluosi_2", + "rarity_bg": "", + "ship_group": 20133, + "ship_l2d_id": "", + "shop_id": 70414, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.404, + 2.417, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 18, + "voice_actor_2": -1 + }, + "201333": { + "bg": "150", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.13, + 1.19, + 0 + ] + ], + "cannon": [ + [ + 1.07, + 1.05, + 0 + ] + ], + "torpedo": [ + [ + 0.019, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.18, + 0.96, + 0 + ] + ] + }, + "desc": "I hope your work's going well, Commander! I've been here playing with these kitties since finishing my duties. Here, I brewed some fresh tea to help you recharge~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 201333, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "At Your Service", + "painting": "yikaluosi_4", + "prefab": "yikaluosi_4", + "rarity_bg": "", + "ship_group": 20133, + "ship_l2d_id": "", + "shop_id": 70639, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 18, + "voice_actor_2": -1 + }, + "201340": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.49, + 1.185, + 0 + ] + ], + "cannon": [ + [ + 1.45, + 1.169, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.5, + 1.173, + 0 + ] + ] + }, + "desc": "J-class destroyer – Jervis.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201340, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jervis", + "painting": "jiaweisi", + "prefab": "jiaweisi", + "rarity_bg": "", + "ship_group": 20134, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.32, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 316, + "voice_actor_2": -1 + }, + "201341": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.74, + 1.185, + 0 + ] + ], + "cannon": [ + [ + 1.59, + 1.169, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 1.173, + 0 + ] + ] + }, + "desc": "Phew... That about does it. Next on the agenda is... Huh, Commander? What are you doing here?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 201341, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fluttering in the Fair Breeze", + "painting": "jiaweisi_2", + "prefab": "jiaweisi_2", + "rarity_bg": "", + "ship_group": 20134, + "ship_l2d_id": "", + "shop_id": 70695, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.404, + 2.417, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 316, + "voice_actor_2": -1 + }, + "201350": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.45, + 1.57, + 0 + ] + ], + "cannon": [ + [ + 1.661, + 1.246, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "J-class destroyer – Janus.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201350, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Janus", + "painting": "yanusi", + "prefab": "yanusi", + "rarity_bg": "", + "ship_group": 20135, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.14, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 345, + "voice_actor_2": -1 + }, + "201351": { + "bg": "156", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.48, + 1.272, + 0 + ] + ], + "cannon": [ + [ + 1.6, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "D-don't worry, Janus... There's no such thing as Halloween ghouls... Hyeep?! A c-cat?! *whimper*... Jervis, Commander, please come save me...!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 201351, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 70, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fright-Night Scaredy-Cat", + "painting": "yanusi_3", + "prefab": "yanusi_3", + "rarity_bg": "", + "ship_group": 20135, + "ship_l2d_id": "", + "shop_id": 70763, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.513, + 2.111, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 345, + "voice_actor_2": -1 + }, + "201352": { + "bg": "109", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.25, + 1.34, + 0 + ] + ], + "cannon": [ + [ + 1.31, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "It's okay, Janus. You're just getting dressed, so do it like usual, and everything will be fine... Hwuh? Commander? S-sorry! I'm the one who told you to keep your eyes closed, so why did I go and talk to you?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 201352, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fear of Changing... Clothes", + "painting": "yanusi_4", + "prefab": "yanusi_4", + "rarity_bg": "", + "ship_group": 20135, + "ship_l2d_id": "", + "shop_id": 70828, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.513, + 2.111, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_yanusi_4", + [ + 562, + 977, + 0 + ], + [ + 1.8 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -48, + -907, + 0 + ], + [ + 1 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 345, + "voice_actor_2": -1 + }, + "201353": { + "bg": "174", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.25, + 1.34, + 0 + ] + ], + "cannon": [ + [ + 1.465, + 0.743, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "It'll be alright, Janus! Nothing bad's going to happen to you just because the light went out and you're all alone... Umm... Hyeep?! C-Commander? D-did you come to pick me up because you were worried...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 201353, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Don't Turn Off the Lights!", + "painting": "yanusi_5", + "prefab": "yanusi_5", + "rarity_bg": "", + "ship_group": 20135, + "ship_l2d_id": "", + "shop_id": 70954, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.513, + 2.111, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + -48, + -907, + 0 + ], + [ + 1 + ] + ], + "tag": [ + 2 + ], + "time": "", + "voice_actor": 345, + "voice_actor_2": -1 + }, + "201360": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.18, + 0.65, + 0 + ] + ], + "cannon": [ + [ + 1.26, + 0.71, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "H-class destroyer – Hero.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 201360, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hero", + "painting": "yingxiong", + "prefab": "yingxiong", + "rarity_bg": "", + "ship_group": 20136, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.14, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 359, + "voice_actor_2": -1 + }, + "201361": { + "bg": "147", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.48, + 1.272, + 0 + ] + ], + "cannon": [ + [ + 1.6, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Morning, Commander. Looks like our desks are right next to each other~ Whee~☆ Hmm? What's up? Is there something on my skirt? Teehee~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 201361, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Devil Wears Knee-Highs", + "painting": "yingxiong_2", + "prefab": "yingxiong_2", + "rarity_bg": "", + "ship_group": 20136, + "ship_l2d_id": "", + "shop_id": 70826, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.513, + 2.111, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 359, + "voice_actor_2": -1 + }, + "202010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.53, + 1.332, + 0 + ], + [ + 0.87, + 0.242, + 0 + ] + ], + "cannon": [ + [ + -0.53, + 1.332, + 0 + ] + ], + "torpedo": [ + [ + -0.651, + 0.454, + 0 + ] + ], + "vicegun": [ + [ + -0.106, + 0.916, + 0 + ], + [ + 0.726, + 0.325, + 0 + ] + ] + }, + "desc": "Leander-class light cruiser – Leander, Hull Number 75!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Leander", + "painting": "liande", + "prefab": "liande", + "rarity_bg": "", + "ship_group": 20201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.647, + 0.505, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.456, + 0.279, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 66, + "voice_actor_2": -1 + }, + "202019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.11, + 1.12, + 0 + ] + ], + "cannon": [ + [ + -0.11, + 1.12, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + -0.11, + 1.12, + 0 + ] + ] + }, + "desc": "Everything as you wish, Commander. Oh? Yes, I'm Leander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 202019, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Leander (Retrofit)", + "painting": "liande_g", + "prefab": "liande_g", + "rarity_bg": "", + "ship_group": 20201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.44, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 66, + "voice_actor_2": -1 + }, + "202020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.81, + 0.756, + 0 + ] + ], + "cannon": [ + [ + -0.348, + 1.082, + 0 + ] + ], + "torpedo": [ + [ + -0.552, + 0.703, + 0 + ] + ], + "vicegun": [ + [ + 0.81, + 0.756, + 0 + ] + ] + }, + "desc": "Leander-class light cruiser – Achilles, Hull Number 70!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Achilles", + "painting": "ajilisi", + "prefab": "ajilisi", + "rarity_bg": "", + "ship_group": 20202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.575, + 0.382, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.448, + 0.577, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 61, + "voice_actor_2": -1 + }, + "202029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.91, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 0.91, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.15, + 0 + ] + ], + "vicegun": [ + [ + 0.91, + 1.08, + 0 + ] + ] + }, + "desc": "The cute and charming Achilles is Super☆Retro☆Fitted! Even my heel won't give me any problems now! Well, not like it really ever did before, ahaha~☆", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 202029, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Achilles (Retrofit)", + "painting": "ajilisi_g", + "prefab": "ajilisi_g", + "rarity_bg": "", + "ship_group": 20202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.53, + 2.29, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 61, + "voice_actor_2": -1 + }, + "202030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.817, + 0.552, + 0 + ] + ], + "cannon": [ + [ + -0.401, + 1.006, + 0 + ] + ], + "torpedo": [ + [ + 0.325, + 0.196, + 0 + ] + ], + "vicegun": [ + [ + 0.817, + 0.552, + 0 + ] + ] + }, + "desc": "Leander-class light cruiser – Ajax, Hull Number 22!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ajax", + "painting": "ajiakesi", + "prefab": "ajiakesi", + "rarity_bg": "", + "ship_group": 20203, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.521, + 0.29, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.431, + 0.392, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "202031": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -1.01, + 1.43, + 0 + ] + ], + "cannon": [ + [ + -1.02, + 1.43, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + -0.99, + 1.5, + 0 + ] + ] + }, + "desc": "Ahaha, that slovenly expression on your face proves I made the right wardrobe choice♪ Now then, Commander, can I offer you some wine?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 202031, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Party Queen", + "painting": "ajiakesi_2", + "prefab": "ajiakesi_2", + "rarity_bg": "", + "ship_group": 20203, + "ship_l2d_id": "", + "shop_id": 70099, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.47, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "202032": { + "bg": "108", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 1.002, + 0 + ] + ], + "cannon": [ + [ + 1.173, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + -0.007, + -0.014, + 0 + ] + ], + "vicegun": [ + [ + 1.198, + 0.995, + 0 + ] + ] + }, + "desc": "I have some special chocolate right here, just~ for~ you. Hehe, if you want it so badly... then come and get it~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 202032, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Valentine's Reward?", + "painting": "ajiakesi_3", + "prefab": "ajiakesi_3", + "rarity_bg": "", + "ship_group": 20203, + "ship_l2d_id": "", + "shop_id": 70502, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 5, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.47, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": [ + [ + 2021, + 2, + 14 + ], + [ + 0, + 0, + 0 + ] + ], + "voice_actor": 34, + "voice_actor_2": -1 + }, + "202039": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.98, + 0.82, + 0 + ] + ], + "cannon": [ + [ + 0.98, + 0.82, + 0 + ] + ], + "torpedo": [ + [ + 0.27, + 0.21, + 0 + ] + ], + "vicegun": [ + [ + 0.98, + 0.82, + 0 + ] + ] + }, + "desc": "I'll allow you to lick my feet since I'm in such a good mood today. What? I can't believe you'd turn down such a great opportunity!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 202039, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ajax (Retrofit)", + "painting": "ajiakesi_g", + "prefab": "ajiakesi_g", + "rarity_bg": "", + "ship_group": 20203, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.521, + 0.29, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.431, + 0.392, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "202040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.155, + 0.919, + 0 + ] + ], + "cannon": [ + [ + 1.148, + 0.936, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.031, + 0 + ] + ], + "vicegun": [ + [ + 1.19, + 0.968, + 0 + ] + ] + }, + "desc": "Dido-class light cruiser – Dido (HMS Dido.)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dido", + "painting": "daiduo", + "prefab": "daiduo", + "rarity_bg": "", + "ship_group": 20204, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.558, + 2.246, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 169, + "voice_actor_2": -1 + }, + "202041": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.155, + 1.11, + 0 + ] + ], + "cannon": [ + [ + 1.168, + 1.041, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.009, + 0 + ] + ], + "vicegun": [ + [ + 1.144, + 0.968, + 0 + ] + ] + }, + "desc": "It is so audacious for a lowly maid to dress herself in such finery and stand at her master's side... Still, I will go to my master and... M-M-Master...?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 202041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Anxious Bisque Doll", + "painting": "daiduo_2", + "prefab": "daiduo_2", + "rarity_bg": "", + "ship_group": 20204, + "ship_l2d_id": "", + "shop_id": 70374, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.558, + 2.246, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 169, + "voice_actor_2": -1 + }, + "202070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.991, + 1.004, + 0 + ] + ], + "cannon": [ + [ + 1.47, + 1.37, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 0.966, + 1.004, + 0 + ] + ] + }, + "desc": "Southampton-class light cruiser – Southampton.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 202070, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Southampton", + "painting": "nananpudun", + "prefab": "nananpudun", + "rarity_bg": "", + "ship_group": 20207, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.514, + 2.394, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 187, + "voice_actor_2": -1 + }, + "202071": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.991, + 1.004, + 0 + ] + ], + "cannon": [ + [ + 1.47, + 1.37, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 0.966, + 1.004, + 0 + ] + ] + }, + "desc": "Hello there~! Royal Knight Southampton is reporting for duty in a Sakura-style outfit! Hehe, don't you have something to tell me about my new look, like how cute it is? Come on, don't be shy. Speak up~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 202071, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's Little Knight", + "painting": "nananpudun_2", + "prefab": "nananpudun_2", + "rarity_bg": "", + "ship_group": 20207, + "ship_l2d_id": "", + "shop_id": 70295, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.514, + 2.394, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 187, + "voice_actor_2": -1 + }, + "202072": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.11, + 1.06, + 0 + ] + ], + "cannon": [ + [ + 1.42, + 1.13, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 1.19, + 1.06, + 0 + ] + ] + }, + "desc": "Good day, Comm—Err, I guess it's \"Master?\" Ugh, I do prefer calling you Commander though... Anyway, I've been practicing the violin to help create better atmosphere around the shop. Did you come here because you were captivated by the sound of my music?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 202072, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Afternoon Impromptu", + "painting": "nananpudun_3", + "prefab": "nananpudun_3", + "rarity_bg": "", + "ship_group": 20207, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 187, + "voice_actor_2": -1 + }, + "202078": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.19, + 1.2, + 0 + ] + ], + "cannon": [ + [ + 1.33, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 0.96, + 0 + ] + ] + }, + "desc": "The Royal Knight, Southampton, makes her grand entrance in glorious wedding garb~! Oh, Commander, you look a bit on edge. Here, c'mere for a second~ Ehehe. *rub rub* Well? Feeling a bit less stiff?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 202078, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Dazzling Departure", + "painting": "nananpudun_h", + "prefab": "nananpudun_h", + "rarity_bg": "", + "ship_group": 20207, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 187, + "voice_actor_2": -1 + }, + "202080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.01, + 0.96, + 0 + ] + ], + "cannon": [ + [ + -0.03, + 0.94, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 0.03, + 0.88, + 0 + ] + ] + }, + "desc": "Sheffield-class Light Cruiser - HMS Sheffield", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 202080, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sheffield", + "painting": "xiefeierde", + "prefab": "xiefeierde", + "rarity_bg": "", + "ship_group": 20208, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 88, + "voice_actor_2": -1 + }, + "202081": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.84, + 1.3, + 0 + ] + ], + "cannon": [ + [ + 0.85, + 1.26, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 0.73, + 1.29, + 0 + ] + ] + }, + "desc": "... Did you find out about my undercover identity? You leave me no choice. Master, I cannot allow you to leave this room... Of course I'm jesting, it's merely a hobby.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 202081, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cloak and Dagger", + "painting": "xiefeierde_2", + "prefab": "xiefeierde_2", + "rarity_bg": "", + "ship_group": 20208, + "ship_l2d_id": "", + "shop_id": 70142, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 88, + "voice_actor_2": -1 + }, + "202082": { + "bg": "114", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.84, + 1.165, + 0 + ] + ], + "cannon": [ + [ + 0.884, + 1.108, + 0 + ] + ], + "torpedo": [ + [ + 0.058, + 0.026, + 0 + ] + ], + "vicegun": [ + [ + 0.89, + 1.172, + 0 + ] + ] + }, + "desc": "The Sakura Empire's summer festivals... they're quite noisy. It will be difficult to keep things clean with so many people around... Despite that, I'm still having a good time. Is there a problem?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 202082, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Moment's Respite", + "painting": "xiefeierde_3", + "prefab": "xiefeierde_3", + "rarity_bg": "", + "ship_group": 20208, + "ship_l2d_id": "", + "shop_id": 70222, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 88, + "voice_actor_2": -1 + }, + "202083": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.292, + 1.165, + 0 + ] + ], + "cannon": [ + [ + 1.342, + 1.108, + 0 + ] + ], + "torpedo": [ + [ + -0.015, + 0.026, + 0 + ] + ], + "vicegun": [ + [ + 1.324, + 1.074, + 0 + ] + ] + }, + "desc": "The fact that you're asking your own maid to be your partner at the ball shows a concerning lack of gumption as a human being... However, if you go and make a fool of yourself, it will reflect poorly upon my standing as a maid. Therefore, I have no choice but to accompany you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 202083, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Black Crow's Finery", + "painting": "xiefeierde_4", + "prefab": "xiefeierde_4", + "rarity_bg": "", + "ship_group": 20208, + "ship_l2d_id": "", + "shop_id": 70428, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 88, + "voice_actor_2": -1 + }, + "202084": { + "bg": "156", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.021, + 1.293, + 0 + ] + ], + "cannon": [ + [ + 1.095, + 1.123, + 0 + ] + ], + "torpedo": [ + [ + 0.058, + 0.026, + 0 + ] + ], + "vicegun": [ + [ + 0.882, + 1.022, + 0 + ] + ] + }, + "desc": "Allow me to warn you ahead of time, Master. I will not come to your rescue if you spring another trap, so please mind your step henceforth... Just kidding. It is a maid's duty to aid her master, after all.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 202084, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bulletborne", + "painting": "xiefeierde_5", + "prefab": "xiefeierde_5", + "rarity_bg": "", + "ship_group": 20208, + "ship_l2d_id": "", + "shop_id": 70689, + "shop_type_id": 18, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.548, + 2.238, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 88, + "voice_actor_2": -1 + }, + "202090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 0.72, + 0 + ] + ], + "cannon": [ + [ + 1.12, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.18, + 0.91, + 0 + ] + ] + }, + "desc": "Gloucester-class light cruiser – Manchester.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Manchester", + "painting": "manchesite", + "prefab": "manchesite", + "rarity_bg": "", + "ship_group": 20209, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.07, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 347, + "voice_actor_2": -1 + }, + "202091": { + "bg": "156", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 0.72, + 0 + ] + ], + "cannon": [ + [ + 1.12, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.18, + 0.91, + 0 + ] + ] + }, + "desc": "Master, it's time for your injection! Hmm... Nowhere to be seen, eh... Then I guess I'll keep the sickbed warm until Master comes ba– Eep! M-M-Master?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 202091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Midnight Devil in White", + "painting": "manchesite_3", + "prefab": "manchesite_3", + "rarity_bg": "", + "ship_group": 20209, + "ship_l2d_id": "", + "shop_id": 70765, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.16, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 347, + "voice_actor_2": -1 + }, + "202092": { + "bg": "168", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 0.72, + 0 + ] + ], + "cannon": [ + [ + 1.12, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.18, + 0.91, + 0 + ] + ] + }, + "desc": "Welcome to the beach, Master! Pretty hot today, innit. If you'll have me, I'm right okay with spending the day together.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 202092, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Moment in the Shade", + "painting": "manchesite_2", + "prefab": "manchesite_2", + "rarity_bg": "", + "ship_group": 20209, + "ship_l2d_id": "", + "shop_id": 70852, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.16, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 347, + "voice_actor_2": -1 + }, + "202100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 0.72, + 0 + ] + ], + "cannon": [ + [ + 1.12, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.18, + 0.91, + 0 + ] + ] + }, + "desc": "Gloucester-class light cruiser – Gloucester (HMS Gloucester.)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202100, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gloucester", + "painting": "geluosite", + "prefab": "geluosite", + "rarity_bg": "", + "ship_group": 20210, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.71, + 1.92, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 108, + "voice_actor_2": -1 + }, + "202101": { + "bg": "127", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.187, + 0.665, + 0 + ] + ], + "cannon": [ + [ + 1.182, + 0.685, + 0 + ] + ], + "torpedo": [ + [ + 0.018, + 0.033, + 0 + ] + ], + "vicegun": [ + [ + 1.224, + 0.635, + 0 + ] + ] + }, + "desc": "Gloucester, light cruiser of the Royal Maids, at your service for the Spring Festival... You say I look displeased? I beg your pardon, it's just... Such holidays are in fact quite busy for the Maids. We have much on our minds. It is none of your concern.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 202101, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Brilliance in Purple", + "painting": "geluosite_2", + "prefab": "geluosite_2", + "rarity_bg": "", + "ship_group": 20210, + "ship_l2d_id": "", + "shop_id": 70311, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.571, + 2.1, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 108, + "voice_actor_2": -1 + }, + "202110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.817, + 0.552, + 0 + ] + ], + "cannon": [ + [ + -0.401, + 1.006, + 0 + ] + ], + "torpedo": [ + [ + 0.325, + 0.196, + 0 + ] + ], + "vicegun": [ + [ + 0.817, + 0.552, + 0 + ] + ] + }, + "desc": "Edinburgh-Class light cruiser ー Edinburgh, Hull number 16!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202110, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Edinburgh", + "painting": "aidingbao", + "prefab": "aidingbao", + "rarity_bg": "", + "ship_group": 20211, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.521, + 0.29, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.431, + 0.392, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 75, + "voice_actor_2": -1 + }, + "202111": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.87, + 1.2, + 0 + ] + ], + "cannon": [ + [ + 0.91, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 0.817, + 1.32, + 0 + ] + ] + }, + "desc": "Why doesn't she have to go to school with me...she says she’s a maid for the Queen? Well, me too! You can be a maid and school girl at the same time...tsk tsk---", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 202111, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Library Fairy", + "painting": "aidingbao_2", + "prefab": "aidingbao_2", + "rarity_bg": "", + "ship_group": 20211, + "ship_l2d_id": "", + "shop_id": 70051, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.4, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 75, + "voice_actor_2": -1 + }, + "202112": { + "bg": "119", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.454, + 0.433, + 0 + ] + ], + "cannon": [ + [ + 1.279, + 0.463, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.319, + 0.484, + 0 + ] + ] + }, + "desc": "Ahem! I made this special candy just for Halloween! Here, Commander, take some! Wooaaooah! Wh-who put this pumpkin here? It, it was me?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 202112, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Candy Maid", + "painting": "aidingbao_3", + "prefab": "aidingbao_3", + "rarity_bg": "", + "ship_group": 20211, + "ship_l2d_id": "", + "shop_id": 70254, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 75, + "voice_actor_2": -1 + }, + "202120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.04, + 1.02, + 0 + ] + ], + "cannon": [ + [ + 1.04, + 1.02, + 0 + ] + ], + "torpedo": [ + [ + -0.02, + 0.12, + 0 + ] + ], + "vicegun": [ + [ + 1.04, + 1.02, + 0 + ] + ] + }, + "desc": "Edinburgh-Class light cruiser ー Belfast, Hull number C35!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202120, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Belfast", + "painting": "beierfasite", + "prefab": "beierfasite", + "rarity_bg": "", + "ship_group": 20212, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.521, + 0.29, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.431, + 0.392, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 39, + "voice_actor_2": -1 + }, + "202121": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.621, + 0.932, + 0 + ] + ], + "cannon": [ + [ + -0.552, + 0.942, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + -0.592, + 0.942, + 0 + ] + ] + }, + "desc": "Hehe... Master, why are you so stunned from seeing me? I thought you perhaps wanted to see me in a qipao... was I mistaken?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 202121, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "expedition": 1.96, + "home": 1.43, + "login": 1.43, + "mail": 1.96, + "main_1": 1.27, + "main_2": 1.27, + "main_3": 1.5, + "mission": 1.96, + "mission_complete": 1.96, + "propose": 1.27, + "touch1": 1.6, + "touch2": 1.47 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -11, + -170, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Iridescent Rosa", + "painting": "beierfasite_2", + "prefab": "beierfasite_2", + "rarity_bg": "", + "ship_group": 20212, + "ship_l2d_id": "", + "shop_id": 70146, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.527, + 2.327, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 39, + "voice_actor_2": -1 + }, + "202122": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.688, + 1.171, + 0 + ] + ], + "cannon": [ + [ + 1.73, + 1.24, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.66, + 1.177, + 0 + ] + ] + }, + "desc": "This is special cold-weather equipment inspired by Eagle Union designs. It was made for practical purposes such as special operations in frigid climates, and as such, was not designed with appearances in mind. Please do forgive me, Master.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 202122, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -11, + -170, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Serene Steel", + "painting": "beierfasite_5", + "prefab": "beierfasite_5", + "rarity_bg": "", + "ship_group": 20212, + "ship_l2d_id": "", + "shop_id": 70146, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 4, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.527, + 2.327, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 39, + "voice_actor_2": -1 + }, + "202123": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.677, + 1.423, + 0 + ] + ], + "cannon": [ + [ + 1.684, + 1.423, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.007, + 0 + ] + ], + "vicegun": [ + [ + 1.684, + 1.423, + 0 + ] + ] + }, + "desc": "Good evening. The Royal Maids will be chaperoning this event. It is my hope to prevent any inappropriate behaviour that might interfere with the enjoyment of the attendees. Please pardon any inconveniences this may cause.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 202123, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -11, + -170, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Noble Attendant", + "painting": "beierfasite_3", + "prefab": "beierfasite_3", + "rarity_bg": "", + "ship_group": 20212, + "ship_l2d_id": "", + "shop_id": 70242, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.423, + 2.327, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 39, + "voice_actor_2": -1 + }, + "202124": { + "bg": "104", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.148, + 1.146, + 0 + ] + ], + "cannon": [ + [ + 1.15, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + -0.009, + 0.007, + 0 + ] + ], + "vicegun": [ + [ + 1.15, + 1.22, + 0 + ] + ] + }, + "desc": "Hehe~ Judging from your expression, Master, my outfit has not fallen short of your expectations. As time is precious, allow me to serve you to the utmost on this \"date.\"", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 202124, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -11, + -170, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shopping with the Head Maid", + "painting": "beierfasite_4", + "prefab": "beierfasite_4", + "rarity_bg": "", + "ship_group": 20212, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.423, + 2.327, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 39, + "voice_actor_2": -1 + }, + "202125": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.148, + 1.146, + 0 + ] + ], + "cannon": [ + [ + 1.119, + 1.106, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.15, + 1.104, + 0 + ] + ] + }, + "desc": "Welcome, table for one? Of course, right this way. Oh? What is it? Ah... I'm filling in for the manager at the moment, so that makes you my customer rather than my master, no?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 1, + "id": 202125, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -11, + -170, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Piping-Hot Perfection", + "painting": "beierfasite_7", + "prefab": "beierfasite_7", + "rarity_bg": "", + "ship_group": 20212, + "ship_l2d_id": "", + "shop_id": 70364, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.423, + 2.327, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 39, + "voice_actor_2": -1 + }, + "202126": { + "bg": "136", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.148, + 1.04, + 0 + ] + ], + "cannon": [ + [ + 1.147, + 1.013, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.15, + 1.012, + 0 + ] + ] + }, + "desc": "It took me quite some time to prepare a suitable traditional Sakura Empire outfit. Terribly sorry. Master, won't you please allow this Belfast to serve you for another year?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 1, + "id": 202126, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -11, + -170, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Folded Fascination", + "painting": "beierfasite_8", + "prefab": "beierfasite_8", + "rarity_bg": "", + "ship_group": 20212, + "ship_l2d_id": "", + "shop_id": 70465, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.423, + 2.576, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 39, + "voice_actor_2": -1 + }, + "202128": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.47, + 1.388, + 0 + ] + ], + "cannon": [ + [ + 1.531, + 1.406, + 0 + ] + ], + "torpedo": [ + [ + 0.088, + -0.009, + 0 + ] + ], + "vicegun": [ + [ + 1.487, + 1.441, + 0 + ] + ] + }, + "desc": "Are you destined for me? Greetings Belfast, from this moment onwards, I will always be with you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 202128, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Pledge of Claddagh", + "painting": "beierfasite_h", + "prefab": "beierfasite_h", + "rarity_bg": "", + "ship_group": 20212, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.53, + 2.185, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 39, + "voice_actor_2": -1 + }, + "202130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.567, + 0.265, + 0 + ] + ], + "cannon": [ + [ + 0.567, + 0.265, + 0 + ] + ], + "torpedo": [ + [ + 0.567, + 0.265, + 0 + ] + ], + "vicegun": [ + [ + 0.567, + 0.265, + 0 + ] + ] + }, + "desc": "Arethusa-class light cruiser – Arethusa, Hull Number 26!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 202130, + "illustrator": 6, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arethusa", + "painting": "aruituosha", + "prefab": "aruituosha", + "rarity_bg": "", + "ship_group": 20213, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.271, + 0.412, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.165, + 0.925, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 86, + "voice_actor_2": -1 + }, + "202140": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.121, + 0.56, + 0 + ] + ], + "cannon": [ + [ + 0.121, + 0.56, + 0 + ] + ], + "torpedo": [ + [ + -0.431, + 0.53, + 0 + ] + ], + "vicegun": [ + [ + 0.121, + 0.56, + 0 + ] + ] + }, + "desc": "Arethusa-class light cruiser – Galatea, Hull Number 71!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 202140, + "illustrator": 6, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Galatea", + "painting": "jialadiya", + "prefab": "jialadiya", + "rarity_bg": "", + "ship_group": 20214, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.227, + 0.997, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.271, + 0.371, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 86, + "voice_actor_2": -1 + }, + "202150": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.01, + 0.77, + 0 + ] + ], + "cannon": [ + [ + 0.03, + 0.874, + 0 + ] + ], + "torpedo": [ + [ + 0.157, + 0.069, + 0 + ] + ], + "vicegun": [ + [ + 0.014, + 0.844, + 0 + ] + ] + }, + "desc": "Arethusa-class light cruiser - Aurora, pennant number 12", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202150, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Aurora", + "painting": "ouruola", + "prefab": "ouruola", + "rarity_bg": "", + "ship_group": 20215, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 90, + "voice_actor_2": -1 + }, + "202151": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.077, + 0.825, + 0 + ] + ], + "cannon": [ + [ + 0.112, + 0.896, + 0 + ] + ], + "torpedo": [ + [ + 0.168, + 0.071, + 0 + ] + ], + "vicegun": [ + [ + 0.103, + 0.869, + 0 + ] + ] + }, + "desc": "I've been preparing for this day for quite some time... Commander, would you like to hear the book I wrote for you?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 202151, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Tale of Spring", + "painting": "ouruola_2", + "prefab": "ouruola_2", + "rarity_bg": "", + "ship_group": 20215, + "ship_l2d_id": "", + "shop_id": 70043, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 90, + "voice_actor_2": -1 + }, + "202152": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.8, + 1.31, + 0 + ] + ], + "cannon": [ + [ + 0.93, + 1.33, + 0 + ] + ], + "torpedo": [ + [ + 0.168, + 0.071, + 0 + ] + ], + "vicegun": [ + [ + 0.73, + 1.34, + 0 + ] + ] + }, + "desc": "I've always believed that music is unique in its power to touch one's heart, so I decided to learn the violin. Commander, please enjoy my performance.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 202152, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dawn's Paean", + "painting": "ouruola_3", + "prefab": "ouruola_3", + "rarity_bg": "", + "ship_group": 20215, + "ship_l2d_id": "", + "shop_id": 70097, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 90, + "voice_actor_2": -1 + }, + "202153": { + "bg": "128", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.09, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.11, + 1.08, + 0 + ] + ] + }, + "desc": "\"Next, Aurora will perform something you've never seen before - traditional Sichuan mask-changing opera!\" Hehe... Commander, I look like the real deal, right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 202153, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -30, + 30 + ], + "ParamBodyAngleX": [ + -5, + 5 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "expedition": 1.67, + "home": 3.68, + "login": 12.58, + "mail": 1.78, + "main_1": 0.73, + "main_2": 0.5, + "main_3": 0.58, + "mission": 1.77, + "mission_complete": 1.58, + "propose": 2.5, + "touch": 0, + "touch2": 6 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 48, + -169, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Heritage of Yu City", + "painting": "ouruola_4", + "prefab": "ouruola_4", + "rarity_bg": "", + "ship_group": 20215, + "ship_l2d_id": "", + "shop_id": 70314, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 90, + "voice_actor_2": -1 + }, + "202158": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.179, + 0.995, + 0 + ] + ], + "cannon": [ + [ + 1.123, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.194, + 1.001, + 0 + ] + ] + }, + "desc": "Commander, please relax and take a seat. This is a special place for just the two of us... Just kidding, did I get your heart racing just now? Ehehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 202158, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 48, + -169, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Garb of Eternal Prosperity", + "painting": "ouruola_h", + "prefab": "ouruola_h", + "rarity_bg": "", + "ship_group": 20215, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.353, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 90, + "voice_actor_2": -1 + }, + "202160": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.18, + 0.7, + 0 + ] + ], + "cannon": [ + [ + 0.13, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.14, + 0 + ] + ], + "vicegun": [ + [ + 0.13, + 0.78, + 0 + ] + ] + }, + "desc": "Fiji-class light cruiser – Fiji.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202160, + "illustrator": 6, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fiji", + "painting": "feiji", + "prefab": "feiji", + "rarity_bg": "", + "ship_group": 20216, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 97, + "voice_actor_2": -1 + }, + "202161": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.93, + 1.024, + 0 + ] + ], + "cannon": [ + [ + 1.014, + 1.013, + 0 + ] + ], + "torpedo": [ + [ + 0.026, + 0.077, + 0 + ] + ], + "vicegun": [ + [ + 0.935, + 1.009, + 0 + ] + ] + }, + "desc": "Did I keep you waiting, Commander? Ahaha... A girl's gotta take her time before stepping out onto the streets, remember? Come on, take my hand, and let's get going! Hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 202161, + "illustrator": 6, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Trendy and Vogue?", + "painting": "feiji_2", + "prefab": "feiji_2", + "rarity_bg": "", + "ship_group": 20216, + "ship_l2d_id": "", + "shop_id": 70195, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 97, + "voice_actor_2": -1 + }, + "202170": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.1, + 0.76, + 0 + ] + ], + "cannon": [ + [ + 0.07, + 0.68, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.15, + 0 + ] + ], + "vicegun": [ + [ + 0.06, + 0.66, + 0 + ] + ] + }, + "desc": "Fiji-class light cruiser – Jamaica.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 16, + "id": 202170, + "illustrator": 6, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jamaica", + "painting": "yamaijia", + "prefab": "yamaijia", + "rarity_bg": "", + "ship_group": 20217, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.22, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 93, + "voice_actor_2": -1 + }, + "202171": { + "bg": "105", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.26, + 1.46, + 0 + ] + ], + "cannon": [ + [ + 0.26, + 1.42, + 0 + ] + ], + "torpedo": [ + [ + -0.2, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.23, + 1.53, + 0 + ] + ] + }, + "desc": "Hey Boss, you talkin' about my sweet bike? Heh, I made it myself by scrounging up parts from Akashi's place. Pretty cool, huh?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 16, + "id": 202171, + "illustrator": 6, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dark Bolt", + "painting": "yamaijia_2", + "prefab": "yamaijia_2", + "rarity_bg": "", + "ship_group": 20217, + "ship_l2d_id": "", + "shop_id": 70144, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.71, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 93, + "voice_actor_2": -1 + }, + "202172": { + "bg": "118", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.798, + 1.188, + 0 + ] + ], + "cannon": [ + [ + 0.816, + 1.118, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.021, + 0 + ] + ], + "vicegun": [ + [ + 0.822, + 1.139, + 0 + ] + ] + }, + "desc": "Look, Boss, this is the new bike that Akashi sent me. She said she wanted me to be her brand ambassador... Doesn't that job sound badass?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 16, + "id": 202172, + "illustrator": 6, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Highway Star", + "painting": "yamaijia_3", + "prefab": "yamaijia_3", + "rarity_bg": "", + "ship_group": 20217, + "ship_l2d_id": "", + "shop_id": 70247, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.468, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 93, + "voice_actor_2": -1 + }, + "202180": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.04, + 1.02, + 0 + ] + ], + "cannon": [ + [ + 1.04, + 1.02, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 1.04, + 1.02, + 0 + ] + ] + }, + "desc": "Edinburgh-class light cruiser – Belfast.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 202180, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Bel", + "painting": "beierfasite_younv", + "prefab": "beierfasite_younv", + "rarity_bg": "", + "ship_group": 20218, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.56, + 2.06, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 39, + "voice_actor_2": -1 + }, + "202190": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.23, + 0.94, + 0 + ] + ], + "cannon": [ + [ + -0.22, + 0.91, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + -0.3, + 0.92, + 0 + ] + ] + }, + "desc": "Southampton-class light cruiser – Newcastle (HMS Newcastle.)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202190, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Newcastle", + "painting": "niukasier", + "prefab": "niukasier", + "rarity_bg": "", + "ship_group": 20219, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 150, + "voice_actor_2": -1 + }, + "202191": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.21, + 0.51, + 0 + ] + ], + "cannon": [ + [ + 1.2, + 0.52, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 1.2, + 0.53, + 0 + ] + ] + }, + "desc": "This outfit makes me stand out a bit too much... But, as long as it makes you happy, I'm just as pleased.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 202191, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hibiscus Garments", + "painting": "niukasier_2", + "prefab": "niukasier_2", + "rarity_bg": "", + "ship_group": 20219, + "ship_l2d_id": "", + "shop_id": 70107, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.22, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 150, + "voice_actor_2": -1 + }, + "202199": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.264, + 0.914, + 0 + ] + ], + "cannon": [ + [ + -0.256, + 0.914, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + -0.238, + 0.887, + 0 + ] + ] + }, + "desc": "I've got an all new outfit here. Does it please you...? Hehe, seeing you all giddy like that is going to rub off on me as well.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 202199, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Newcastle (Retrofit)", + "painting": "niukasier_g", + "prefab": "niukasier_g", + "rarity_bg": "", + "ship_group": 20219, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.383, + 2.486, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 150, + "voice_actor_2": -1 + }, + "202200": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.07, + 1.26, + 0 + ] + ], + "cannon": [ + [ + 0.97, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.19, + 1.2, + 0 + ] + ] + }, + "desc": "Dido-class light cruiser – Sirius.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202200, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sirius", + "painting": "tianlangxing", + "prefab": "tianlangxing", + "rarity_bg": "", + "ship_group": 20220, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.46, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 169, + "voice_actor_2": -1 + }, + "202201": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.25, + 0.73, + 0 + ] + ], + "cannon": [ + [ + 1.2, + 0.71, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.34, + 0 + ] + ], + "vicegun": [ + [ + 1.24, + 0.87, + 0 + ] + ] + }, + "desc": "My dear, I changed into the new outfit as per your request. I would be most grateful were you to offer me words of praise, Master.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 202201, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "White Rose", + "painting": "tianlangxing_2", + "prefab": "tianlangxing_2", + "rarity_bg": "", + "ship_group": 20220, + "ship_l2d_id": "", + "shop_id": 70145, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.42, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 169, + "voice_actor_2": -1 + }, + "202202": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.25, + 0.73, + 0 + ] + ], + "cannon": [ + [ + 1.37, + 1.05, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.24, + 0.87, + 0 + ] + ] + }, + "desc": "I've received ample advice from my colleagues in the Maid Team regarding swimwear etiquette. My honourable Master, are you pleased with my appearance?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 202202, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Scorching-Hot Seirios", + "painting": "tianlangxing_3", + "prefab": "tianlangxing_3", + "rarity_bg": "", + "ship_group": 20220, + "ship_l2d_id": "", + "shop_id": 70193, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 2.474, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 169, + "voice_actor_2": -1 + }, + "202203": { + "bg": "128", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.09, + 0.74, + 0 + ] + ], + "cannon": [ + [ + 1.07, + 0.75, + 0 + ] + ], + "torpedo": [ + [ + 0.06, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.07, + 0.67, + 0 + ] + ] + }, + "desc": "I have heard it is part of a maid's duties to dress to her honourable Master's liking over the holidays. Would this outfit happen to... satisfy the honourable Master's wishes?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 202203, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Azure Horizons", + "painting": "tianlangxing_4", + "prefab": "tianlangxing_4", + "rarity_bg": "", + "ship_group": 20220, + "ship_l2d_id": "", + "shop_id": 70303, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 2.22, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 169, + "voice_actor_2": -1 + }, + "202210": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.962, + 0.746, + 0 + ] + ], + "cannon": [ + [ + 0.972, + 0.746, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.972, + 0.756, + 0 + ] + ] + }, + "desc": "Ceres-class light cruiser - Curacoa (D41)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202210, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Curacoa", + "painting": "kulasuo", + "prefab": "kulasuo", + "rarity_bg": "", + "ship_group": 20221, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.492, + 2.245, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 171, + "voice_actor_2": -1 + }, + "202211": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.074, + 0.483, + 0 + ] + ], + "cannon": [ + [ + -0.064, + 0.444, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + -0.074, + 0.444, + 0 + ] + ] + }, + "desc": "As I am but a maid, it is a great honor to be able to wear such a gorgeous outfit… How do I look, Commander? \"Not sure where to start feasting your eyes?\" Oh my... Commander...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 202211, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Eastern Grace", + "painting": "kulasuo_2", + "prefab": "kulasuo_2", + "rarity_bg": "", + "ship_group": 20221, + "ship_l2d_id": "", + "shop_id": 70157, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.595, + 2.336, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 171, + "voice_actor_2": -1 + }, + "202219": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.83, + 0 + ] + ], + "cannon": [ + [ + 1.073, + 1.187, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.093, + 0.816, + 0 + ] + ] + }, + "desc": "It is my honour to be of everyone's service. Light cruiser Curacoa takes it upon herself to continue serving you, Master.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 202219, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Curacoa (Retrofit)", + "painting": "kulasuo_g", + "prefab": "kulasuo_g", + "rarity_bg": "", + "ship_group": 20221, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 171, + "voice_actor_2": -1 + }, + "202220": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.85, + 1.007, + 0 + ] + ], + "cannon": [ + [ + 0.841, + 1.036, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.792, + 1.046, + 0 + ] + ] + }, + "desc": "Ceres-class light cruiser - Curlew (D42)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202220, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Curlew", + "painting": "biaoyu", + "prefab": "biaoyu", + "rarity_bg": "", + "ship_group": 20222, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 171, + "voice_actor_2": -1 + }, + "202221": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.177, + 0.522, + 0 + ] + ], + "cannon": [ + [ + 1.147, + 0.571, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.128, + 0.483, + 0 + ] + ] + }, + "desc": "You can feel the profound heritage and culture of the Dragon Empery from all these customs and outfits for the Lunar New Year's Festival… It seems to be ever more necessary to study the traditions and etiquette of this wondrous culture.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 202221, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rhythm of the Dragon Empery", + "painting": "biaoyu_2", + "prefab": "biaoyu_2", + "rarity_bg": "", + "ship_group": 20222, + "ship_l2d_id": "", + "shop_id": 70158, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.726, + 2.44, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 171, + "voice_actor_2": -1 + }, + "202229": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.006, + 0.751, + 0 + ] + ], + "cannon": [ + [ + 1.261, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.014, + 0.74, + 0 + ] + ] + }, + "desc": "I am now more capable than ever of demonstrating the Royal Maids' style. Though I am not as talented as my sister, Curacoa, I sincerely hope you will find my service satisfactory. It is a great honour to work for you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 202229, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Curlew (Retrofit)", + "painting": "biaoyu_g", + "prefab": "biaoyu_g", + "rarity_bg": "", + "ship_group": 20222, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.554, + 2.507, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 171, + "voice_actor_2": -1 + }, + "202230": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.003, + 0.892, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 0.937, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.993, + 0.876, + 0 + ] + ] + }, + "desc": "I am Swiftsure, a light cruiser of the Royal Navy... If it is not too much for one such as myself to ask, I would like to support your fleet in whatever way I can.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202230, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Swiftsure", + "painting": "quejie", + "prefab": "quejie", + "rarity_bg": "", + "ship_group": 20223, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.526, + 2.455, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 188, + "voice_actor_2": -1 + }, + "202231": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.25, + 0.73, + 0 + ] + ], + "cannon": [ + [ + 1.2, + 0.71, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.34, + 0 + ] + ], + "vicegun": [ + [ + 1.24, + 0.87, + 0 + ] + ] + }, + "desc": "Commander, why are you here...? Me? Yes, as you can see, I'm still studying... I figured that acquiring knowledge would be the best way to make up for my lack of experience on the actual battlefield.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 202231, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Study Hall Cyclamen", + "painting": "quejie_2", + "prefab": "quejie_2", + "rarity_bg": "", + "ship_group": 20223, + "ship_l2d_id": "", + "shop_id": 70196, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.42, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 188, + "voice_actor_2": -1 + }, + "202232": { + "bg": "128", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.03, + 0 + ] + ], + "cannon": [ + [ + 1.04, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.07, + 0.99, + 0 + ] + ] + }, + "desc": "I agreed to try on this outfit, but... I know these fancy outfits don't suit me... H-huh, I look gorgeous?! ...Thank you very much. Even if you're just trying to make me feel better, I appreciate it...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 202232, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beauty of White Jade", + "painting": "quejie_3", + "prefab": "quejie_3", + "rarity_bg": "", + "ship_group": 20223, + "ship_l2d_id": "", + "shop_id": 70304, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.29, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 188, + "voice_actor_2": -1 + }, + "202233": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.085, + 1.152, + 0 + ] + ], + "cannon": [ + [ + 1.209, + 1.15, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.145, + 1.122, + 0 + ] + ] + }, + "desc": "W-welcome! ...Ugh, I'm still way too nervous... Ah, um! H-how may I serve you today, Commander...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 202233, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Midsummer Special Service", + "painting": "quejie_4", + "prefab": "quejie_4", + "rarity_bg": "", + "ship_group": 20223, + "ship_l2d_id": "", + "shop_id": 70411, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.29, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 188, + "voice_actor_2": -1 + }, + "202240": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 0.756, + 0 + ] + ], + "cannon": [ + [ + 1.188, + 1.067, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.188, + 0.818, + 0 + ] + ] + }, + "desc": "Err, you're... the Commander, yes? You don't know who I am? Ah, right, I've yet to introduce myself... I'm Black Prince of the Royal Navy... Will that suffice?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 202240, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Black Prince", + "painting": "heitaizi", + "prefab": "heitaizi", + "rarity_bg": "", + "ship_group": 20224, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.39, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "202241": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 0.968, + 0 + ] + ], + "cannon": [ + [ + 1.188, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.188, + 0.989, + 0 + ] + ] + }, + "desc": "Sorry to keep you waiting, Commander. Thank you very much for taking me on vacation. Standing in front of you like this... is a little embarrassing... Nevertheless, what do you think of... my swimsuit?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 202241, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 7 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -130, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "White Princess", + "painting": "heitaizi_2", + "prefab": "heitaizi_2", + "rarity_bg": "", + "ship_group": 20224, + "ship_l2d_id": "", + "shop_id": 70226, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.39, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "202242": { + "bg": "128", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 1.12, + 0 + ] + ], + "cannon": [ + [ + 1.15, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.188, + 1.05, + 0 + ] + ] + }, + "desc": "A \"qipao,\" is it? So this legendary dress from the Dragon Empery... Putting it on and enjoying some nostalgic music, makes me... Ahhh... Commander, might we relax like this a bit longer...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 202242, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -130, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fair Maid Spring", + "painting": "heitaizi_3", + "prefab": "heitaizi_3", + "rarity_bg": "", + "ship_group": 20224, + "ship_l2d_id": "", + "shop_id": 70308, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.2, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "202243": { + "bg": "146", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.139, + 1.105, + 0 + ] + ], + "cannon": [ + [ + 1.06, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 1.11, + 0 + ] + ] + }, + "desc": "You can't have a party without champagne, right? Now, if I remember right, you're meant to give it a good shake before popping the cork... Oh no! Look out, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 202243, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pop the Cork", + "painting": "heitaizi_4", + "prefab": "heitaizi_4", + "rarity_bg": "", + "ship_group": 20224, + "ship_l2d_id": "", + "shop_id": 70558, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.672, + 2.419, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "202244": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.139, + 1.105, + 0 + ] + ], + "cannon": [ + [ + 1.06, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 1.11, + 0 + ] + ] + }, + "desc": "Oh... Welcome, Commander. Can I take your order...? Or maybe, you just wanted to kick back and relax? ...Either way is fine with me.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 202244, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Addled Attendant?", + "painting": "heitaizi_5", + "prefab": "heitaizi_5", + "rarity_bg": "", + "ship_group": 20224, + "ship_l2d_id": "", + "shop_id": 70597, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.672, + 2.419, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "202250": { + "bg": "121", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.173, + 1.311, + 0 + ] + ], + "cannon": [ + [ + 1.163, + 1.256, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.176, + 1.324, + 0 + ] + ] + }, + "desc": "I am Sheffield, from the Royal Maids. I will explain how this transpired to you, so please stop looking like the world has turned upside down.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 202250, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sheffield μ", + "painting": "xiefeierde_idol", + "prefab": "xiefeierde_idol", + "rarity_bg": "", + "ship_group": 20225, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 88, + "voice_actor_2": -1 + }, + "202260": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.149, + 1.335, + 0 + ] + ], + "cannon": [ + [ + 1.163, + 1.195, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.176, + 1.263, + 0 + ] + ] + }, + "desc": "Southampton-class light cruiser - Glasgow (C-21)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 202260, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Glasgow", + "painting": "gelasige", + "prefab": "gelasige", + "rarity_bg": "", + "ship_group": 20226, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.376, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 129, + "voice_actor_2": -1 + }, + "202261": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.343, + 1.335, + 0 + ] + ], + "cannon": [ + [ + 1.35, + 1.266, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.355, + 1.32, + 0 + ] + ] + }, + "desc": "Y-ye said ye wanted ta see me wear something different, so... But this is not \"cosplay\" or somesuch! I do actually go to school...! D-do ye like it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 202261, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Maid in Class", + "painting": "gelasige_2", + "prefab": "gelasige_2", + "rarity_bg": "", + "ship_group": 20226, + "ship_l2d_id": "", + "shop_id": 70274, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.376, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 129, + "voice_actor_2": -1 + }, + "202270": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.575, + 1.289, + 0 + ] + ], + "cannon": [ + [ + 1.506, + 1.264, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.579, + 1.263, + 0 + ] + ] + }, + "desc": "Dido-class light cruiser – Hermione (HMS Hermione.) ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202270, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hermione ", + "painting": "hemin", + "prefab": "hemin", + "rarity_bg": "", + "ship_group": 20227, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.376, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 242, + "voice_actor_2": -1 + }, + "202271": { + "bg": "138", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.149, + 1.236, + 0 + ] + ], + "cannon": [ + [ + 1.171, + 1.195, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.176, + 1.149, + 0 + ] + ] + }, + "desc": "My, what brings you here, Commander? Are you feeling unwell? That's no good... Why don't you come sit over here first? I'll start by taking your temperature...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 202271, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 2.13 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -50, + -85, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pure White Angel", + "painting": "hemin_3", + "prefab": "hemin_3", + "rarity_bg": "", + "ship_group": 20227, + "ship_l2d_id": "", + "shop_id": 70394, + "shop_type_id": 15, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.376, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 242, + "voice_actor_2": -1 + }, + "202272": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.149, + 1.236, + 0 + ] + ], + "cannon": [ + [ + 1.171, + 1.195, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.176, + 1.149, + 0 + ] + ] + }, + "desc": "Commander, I've brought the chair. If you don't want to get in the water, feel free to sit here. ...Hm, me? Of course, I will remain by your side.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 202272, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "expedition": 0.26, + "login": 2.13, + "mail": 0.76, + "main_1": 1.13, + "main_2": 0.2, + "main_3": 0.5, + "mission": 0.5, + "mission_complete": 1.1, + "propose": 0.9, + "touch": 1.86, + "touch2": 0.3 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 30, + 36, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pure White Holiday", + "painting": "hemin_2", + "prefab": "hemin_2", + "rarity_bg": "", + "ship_group": 20227, + "ship_l2d_id": "", + "shop_id": 70413, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.376, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 242, + "voice_actor_2": -1 + }, + "202273": { + "bg": "146", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.149, + 1.236, + 0 + ] + ], + "cannon": [ + [ + 1.151, + 1.175, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.156, + 1.189, + 0 + ] + ] + }, + "desc": "Would you care for some afternoon tea, Commander? Heehee~ This is one of my little hobbies when I'm not performing my maid duties.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 202273, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Graceful Afternoon Tea", + "painting": "hemin_4", + "prefab": "hemin_4", + "rarity_bg": "", + "ship_group": 20227, + "ship_l2d_id": "", + "shop_id": 70555, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 242, + "voice_actor_2": -1 + }, + "202274": { + "bg": "152", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.149, + 1.236, + 0 + ] + ], + "cannon": [ + [ + 1.098, + 1.113, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.085, + 1.198, + 0 + ] + ] + }, + "desc": "How are you feeling, Commander? Hehe, I'm not wearing my usual nurse's gown right now, but I suppose this isn't much different~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 202274, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pristine Herbalist", + "painting": "hemin_5", + "prefab": "hemin_5", + "rarity_bg": "", + "ship_group": 20227, + "ship_l2d_id": "", + "shop_id": 70664, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.406, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 242, + "voice_actor_2": -1 + }, + "202275": { + "bg": "108", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.149, + 1.236, + 0 + ] + ], + "cannon": [ + [ + 1.098, + 1.092, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.085, + 1.177, + 0 + ] + ] + }, + "desc": "Commander, umm... Happy Valentine's Day! What do you think of my outfit? Hehe, it's perfect for a date, isn't it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 1, + "id": 202275, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Winter Dearest", + "painting": "hemin_6", + "prefab": "hemin_6", + "rarity_bg": "", + "ship_group": 20227, + "ship_l2d_id": "", + "shop_id": 70971, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.464, + 2.399, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 242, + "voice_actor_2": -1 + }, + "202278": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.47, + 1.388, + 0 + ] + ], + "cannon": [ + [ + 1.531, + 1.406, + 0 + ] + ], + "torpedo": [ + [ + 0.088, + -0.009, + 0 + ] + ], + "vicegun": [ + [ + 1.487, + 1.441, + 0 + ] + ] + }, + "desc": "I'm so happy to have come this far with you, Commander. May this gorgeous sunrise watch over us for all time... I love you, Commander.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 202278, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dawn's Oath", + "painting": "hemin_h", + "prefab": "hemin_h", + "rarity_bg": "", + "ship_group": 20227, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.53, + 2.185, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 242, + "voice_actor_2": -1 + }, + "202280": { + "bg": "140", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.194, + 1.204, + 0 + ] + ], + "cannon": [ + [ + 1.244, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.244, + 1.138, + 0 + ] + ] + }, + "desc": "I am the light cruiser, Dido, currently taking part in idol activities as part of the experimental Muse System. I learned more or less what idols are supposed to do from the others, so p-please... keep a close eye on me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202280, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dido µ", + "painting": "daiduo_idol", + "prefab": "daiduo_idol", + "rarity_bg": "", + "ship_group": 20228, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.376, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 169, + "voice_actor_2": -1 + }, + "202290": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.001, + 1.013, + 0 + ] + ], + "cannon": [ + [ + 1.011, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + -0.005, + -0.012, + 0 + ] + ], + "vicegun": [ + [ + 1.019, + 1.013, + 0 + ] + ] + }, + "desc": "Arethusa-class light cruiser – Penelope.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202290, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Penelope", + "painting": "peineiluopo", + "prefab": "peineiluopo", + "rarity_bg": "", + "ship_group": 20229, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.441, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 55, + "voice_actor_2": -1 + }, + "202291": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.999, + 0.991, + 0 + ] + ], + "cannon": [ + [ + 0.99, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + -0.008, + -0.003, + 0 + ] + ], + "vicegun": [ + [ + 0.988, + 1.002, + 0 + ] + ] + }, + "desc": "Aurora chose this outfit for me because... the Spring Festival represents a time of celebration in the Dragon Empery, and red is the color that best symbolizes that. What do you think? Does this outfit... make you feel more festive?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 202291, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ruby-Red Boudoir", + "painting": "peineiluopo_2", + "prefab": "peineiluopo_2", + "rarity_bg": "", + "ship_group": 20229, + "ship_l2d_id": "", + "shop_id": 70500, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.512, + 2.406, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 55, + "voice_actor_2": -1 + }, + "202292": { + "bg": "150", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.03, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.17, + 0.87, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.08, + 0.85, + 0 + ] + ] + }, + "desc": "Welcome, welcome. I've been working here as a maid, just as you told me to. Umm... Call for me only when you're ready to order.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 202292, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Salty Maid", + "painting": "peineiluopo_3", + "prefab": "peineiluopo_3", + "rarity_bg": "", + "ship_group": 20229, + "ship_l2d_id": "", + "shop_id": 70642, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.406, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 55, + "voice_actor_2": -1 + }, + "202300": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.022, + 0 + ] + ], + "cannon": [ + [ + 1.108, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.063, + 1.013, + 0 + ] + ] + }, + "desc": "Dido-class light cruiser – Charybdis.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 202300, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Charybdis", + "painting": "kalvbudisi", + "prefab": "kalvbudisi", + "rarity_bg": "", + "ship_group": 20230, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.413, + 2.335, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 303, + "voice_actor_2": -1 + }, + "202301": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.045, + 1.111, + 0 + ] + ], + "cannon": [ + [ + 1.117, + 0.971, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.019, + 1.013, + 0 + ] + ] + }, + "desc": "*Pats thighs* Master, you poor thing~ Look how hard you've been working~ Hehe, hurry and come here so that I can pamper you~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 202301, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 47, + 20, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Red Chamber of Healing", + "painting": "kalvbudisi_2", + "prefab": "kalvbudisi_2", + "rarity_bg": "", + "ship_group": 20230, + "ship_l2d_id": "", + "shop_id": 70651, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.405, + 2.441, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 303, + "voice_actor_2": -1 + }, + "202302": { + "bg": "155", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.108, + 1.161, + 0 + ] + ], + "cannon": [ + [ + 0.929, + 0.94, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.896, + 0.921, + 0 + ] + ] + }, + "desc": "Tis a pleasure to see you, Master. I am delighted to be your partner for today. ...Oh, I was just trying to sound prim and proper! You don't need to look at me with such pity in your eyes!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 202302, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Brilliant Belle", + "painting": "kalvbudisi_3", + "prefab": "kalvbudisi_3", + "rarity_bg": "", + "ship_group": 20230, + "ship_l2d_id": "", + "shop_id": 70750, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.8, + 1.752, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 303, + "voice_actor_2": -1 + }, + "202303": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.022, + 0 + ] + ], + "cannon": [ + [ + 1.108, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.063, + 1.013, + 0 + ] + ] + }, + "desc": "As you can see, today's theme... is a seaside pampering, or something like that~ Heehee. I know you're no stranger to the sea, Commander, but today, we're here to play, not work. Just take it easy, and unwind~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 202303, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prim Sea Breeze", + "painting": "kalvbudisi_4", + "prefab": "kalvbudisi_4", + "rarity_bg": "", + "ship_group": 20230, + "ship_l2d_id": "", + "shop_id": 70786, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.413, + 2.335, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 303, + "voice_actor_2": -1 + }, + "202310": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.29, + 1.022, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.28, + 1.013, + 0 + ] + ] + }, + "desc": "Bellona-class light cruiser – Bellona.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 202310, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bellona", + "painting": "sizhannvshen", + "prefab": "sizhannvshen", + "rarity_bg": "", + "ship_group": 20231, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.413, + 2.335, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 319, + "voice_actor_2": -1 + }, + "202311": { + "bg": "150", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.34, + 1.022, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.26, + 1.013, + 0 + ] + ] + }, + "desc": "My liege... No, excuse me, I should be calling you Master, right? Bellona of the Royal Maids, reporting in. My, you seem quite lost for words... I'll explain the situation to you later, so don't worry about it.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 202311, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Armed to Clean", + "painting": "sizhannvshen_2", + "prefab": "sizhannvshen_2", + "rarity_bg": "", + "ship_group": 20231, + "ship_l2d_id": "", + "shop_id": 70698, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.405, + 2.441, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 319, + "voice_actor_2": -1 + }, + "202320": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.033, + 1.042, + 0 + ] + ], + "cannon": [ + [ + 1.182, + 0.802, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.928, + 0.864, + 0 + ] + ] + }, + "desc": "Emerald-class light cruiser –Enterprise.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 202320, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Enterprise", + "painting": "jinqu", + "prefab": "jinqu", + "rarity_bg": "", + "ship_group": 20232, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.501, + 2.294, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 326, + "voice_actor_2": -1 + }, + "202330": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.29, + 1.022, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.28, + 1.013, + 0 + ] + ] + }, + "desc": "Dido-class light cruiser – Scylla.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 202330, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Scylla", + "painting": "sikula", + "prefab": "sikula", + "rarity_bg": "", + "ship_group": 20233, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.413, + 2.335, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 357, + "voice_actor_2": -1 + }, + "202331": { + "bg": "", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.34, + 1.022, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.26, + 1.013, + 0 + ] + ] + }, + "desc": "Did you come all this way just because I asked you to, Master? Or... would you prefer I call you \"Senpai\" here? If we're at school, then there's no reason for me to act maidly, now is there? Heeheehee♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 202331, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Femme Fatale Fresher", + "painting": "sikula_2", + "prefab": "sikula_2", + "rarity_bg": "", + "ship_group": 20233, + "ship_l2d_id": "", + "shop_id": 70823, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.405, + 2.441, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 357, + "voice_actor_2": -1 + }, + "203010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.34, + 0.742, + 0 + ], + [ + 0.681, + 0.402, + 0 + ] + ], + "cannon": [ + [ + -0.643, + 0.591, + 0 + ] + ], + "torpedo": [ + [ + 0.212, + 0.152, + 0 + ] + ], + "vicegun": [ + [ + -0.34, + 0.742, + 0 + ], + [ + 0.681, + 0.402, + 0 + ] + ] + }, + "desc": "London-class heavy cruiser – London, Hull Number 69!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 203010, + "illustrator": 15, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "London", + "painting": "lundun", + "prefab": "lundun", + "rarity_bg": "", + "ship_group": 20301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.671, + 0.361, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.538, + 0.382, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 16, + "voice_actor_2": -1 + }, + "203011": { + "bg": "169", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.03, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.03, + 1.16, + 0 + ] + ] + }, + "desc": "Splendid work today, Your Excellency. Here are your documents for the next mission. It has everything you need to know, so please give it a read. Heehee, I'm happy to assist so that you may focus solely on achieving your goals.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 203011, + "illustrator": 15, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Sterling Secretary", + "painting": "lundun_3", + "prefab": "lundun_3", + "rarity_bg": "", + "ship_group": 20301, + "ship_l2d_id": "", + "shop_id": 70863, + "shop_type_id": 23, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.47, + 0.91, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.5, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + 17, + -706, + 0 + ], + [ + 0.6 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 16, + "voice_actor_2": -1 + }, + "203018": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.35, + 1.13, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 1.19, + 0 + ] + ], + "torpedo": [ + [ + 0.08, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.11, + 0.89, + 0 + ] + ] + }, + "desc": "Why are you so astounded, Your Excellency? You expressly requested an unforgettable and elaborate ceremony. Heehee, you'll make it weird if you keep staring so much, so won't you please take my hand now?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 203018, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Platinum Ceremony", + "painting": "lundun_h", + "prefab": "lundun_h", + "rarity_bg": "", + "ship_group": 20301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 16, + "voice_actor_2": -1 + }, + "203019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.056, + 0.834, + 0 + ] + ], + "cannon": [ + [ + 1.272, + 0.355, + 0 + ] + ], + "torpedo": [ + [ + 0.212, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.11, + 1.095, + 0 + ] + ] + }, + "desc": "Um... Your Excellency, could you please stop staring at me like you don't recognise me? I didn't think that I'd get a new look for my retrofit, either... But, don't you think it's rather cute?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 203019, + "illustrator": 15, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "London (Retrofit)", + "painting": "lundun_g", + "prefab": "lundun_g", + "rarity_bg": "", + "ship_group": 20301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.671, + 2.082, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 16, + "voice_actor_2": -1 + }, + "203020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.96, + 0.66, + 0 + ] + ], + "cannon": [ + [ + 0.96, + 0.66, + 0 + ] + ], + "torpedo": [ + [ + 0.47, + 0.24, + 0 + ] + ], + "vicegun": [ + [ + 0.96, + 0.66, + 0 + ] + ] + }, + "desc": "London-class heavy cruiser – Shropshire, Hull Number 73!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 203020, + "illustrator": 15, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shropshire", + "painting": "shiluopujun", + "prefab": "shiluopujun", + "rarity_bg": "", + "ship_group": 20302, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 0.272, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 2.52, + -0.98 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 66, + "voice_actor_2": -1 + }, + "203029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.146, + 1.353, + 0 + ] + ], + "cannon": [ + [ + 1, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1, + 1, + 0 + ] + ] + }, + "desc": "As you know, I'm the youngest of London class, Shropshire~ I'm excited to work with you! Heheh, I look pretty capable now, don't I? Maybe I'll cause a little less trouble for you now, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 203029, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shropshire (Retrofit)", + "painting": "shiluopujun_g", + "prefab": "shiluopujun_g", + "rarity_bg": "", + "ship_group": 20302, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 66, + "voice_actor_2": -1 + }, + "203030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.281, + 1.004, + 0 + ] + ], + "torpedo": [ + [ + 0.212, + 0.311, + 0 + ] + ], + "vicegun": [ + [ + 1.281, + 1.004, + 0 + ] + ] + }, + "desc": "Kent-class heavy cruiser - Kent, Hull Number 54!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 203030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kent", + "painting": "kente", + "prefab": "kente", + "rarity_bg": "", + "ship_group": 20303, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.25, + 0.89, + -0.34 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.47, + 2.68, + -0.09 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "203040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.027, + 0.936, + 0 + ] + ], + "cannon": [ + [ + 1.088, + 0.776, + 0 + ] + ], + "torpedo": [ + [ + 0.251, + 0.487, + 0 + ] + ], + "vicegun": [ + [ + 1.088, + 0.776, + 0 + ] + ] + }, + "desc": "Kent-class heavy cruiser - Suffolk, Hull Number 55!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 203040, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Suffolk", + "painting": "safuke", + "prefab": "safuke", + "rarity_bg": "", + "ship_group": 20304, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.29, + 0.95, + -0.16 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.71, + 2.52, + 0.07 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 69, + "voice_actor_2": -1 + }, + "203049": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.14, + 0.81, + 0 + ] + ], + "cannon": [ + [ + 1.14, + 0.81, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.16, + 0 + ] + ], + "vicegun": [ + [ + 1.14, + 0.81, + 0 + ] + ] + }, + "desc": "Whew... At long last, after all that hard work, I get to wear this uniform as well. Even though all I did was... Huh? Lead by example? Be a role model? I don't get it...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 203049, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Suffolk (Retrofit)", + "painting": "safuke_g", + "prefab": "safuke_g", + "rarity_bg": "", + "ship_group": 20304, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.29, + 0.95, + -0.16 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.71, + 2.52, + 0.07 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 69, + "voice_actor_2": -1 + }, + "203050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.333, + 0.635, + 0 + ] + ], + "cannon": [ + [ + 0.606, + 0.501, + 0 + ] + ], + "torpedo": [ + [ + -0.333, + 0.635, + 0 + ] + ], + "vicegun": [ + [ + -0.333, + 0.635, + 0 + ] + ] + }, + "desc": "Norfolk-class heavy cruiser - Norfolk, Hull Number 78!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 203050, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Norfolk", + "painting": "nuofuke", + "prefab": "nuofuke", + "rarity_bg": "", + "ship_group": 20305, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.82, + 2.19, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 20, + "voice_actor_2": -1 + }, + "203060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.57, + 1.03, + 0 + ] + ], + "cannon": [ + [ + -0.57, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0.33, + 0.29, + 0 + ] + ], + "vicegun": [ + [ + -0.57, + 1.03, + 0 + ] + ] + }, + "desc": "Norfolk-class heavy cruiser, Dorsetshire, Hull Number 40\nUnlock build after receiving", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 203060, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dorsetshire", + "painting": "duosaitejun", + "prefab": "duosaitejun", + "rarity_bg": "", + "ship_group": 20306, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.63, + 0.61, + 0.13 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.559, + 1.16, + -0.52 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 85, + "voice_actor_2": -1 + }, + "203070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.923, + 0.167, + 0 + ] + ], + "cannon": [ + [ + 0.008, + 0.53, + 0 + ] + ], + "torpedo": [ + [ + 0.386, + 0.273, + 0 + ] + ], + "vicegun": [ + [ + 0.923, + 0.167, + 0 + ] + ] + }, + "desc": "York-class heavy cruiser - York, Hull Number 90!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 203070, + "illustrator": 18, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "York", + "painting": "yueke", + "prefab": "yueke", + "rarity_bg": "", + "ship_group": 20307, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.565, + 0.392, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.502, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "203071": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.614, + 0.999, + 0 + ] + ], + "cannon": [ + [ + 0.666, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + 0.011, + 0 + ] + ], + "vicegun": [ + [ + 0.638, + 1, + 0 + ] + ] + }, + "desc": "The school has recently been consumed by a series of Mysteries... there must be some Mastermind lurking behind the scenes. Yes, another Tribulation awaits me! I shall part the veil and reveal all Truths!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 203071, + "illustrator": 18, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Truth Seeker", + "painting": "yueke_2", + "prefab": "yueke_2", + "rarity_bg": "", + "ship_group": 20307, + "ship_l2d_id": "", + "shop_id": 70250, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.414, + 2.501, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "203072": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.806, + 0.835, + 0 + ] + ], + "cannon": [ + [ + 0.829, + 0.877, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.823, + 0.865, + 0 + ] + ] + }, + "desc": "O Unfathomable King of the slumbering depths, hear the call of my Force and step into this world through the Azur Gate! ...Huh, Commander? Why did you show up? ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 203072, + "illustrator": 18, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summoner from the Azure Depths ", + "painting": "yueke_3", + "prefab": "yueke_3", + "rarity_bg": "", + "ship_group": 20307, + "ship_l2d_id": "", + "shop_id": 70401, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.414, + 2.501, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "203078": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.888, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 0.781, + 0.877, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.619, + 0.865, + 0 + ] + ] + }, + "desc": "Whoa... Is this my Uniform for the ceremony known as the Oath of Purity? Hohoho... This must be fate. Join me, Commander, and we shall make the world right once more!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 203078, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Oath of Purity", + "painting": "yueke_h", + "prefab": "yueke_h", + "rarity_bg": "", + "ship_group": 20307, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.639, + 2.501, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "203079": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.14, + 0.96, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 0.9, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.18, + 0 + ] + ], + "vicegun": [ + [ + 1.03, + 0.96, + 0 + ] + ] + }, + "desc": "This is no mere Upgrade, this is an Awakening! I will alter the course of fate itself!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 203079, + "illustrator": 18, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "York (Retrofit)", + "painting": "yueke_g", + "prefab": "yueke_g", + "rarity_bg": "", + "ship_group": 20307, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "203080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.082, + 0.144, + 0 + ] + ], + "cannon": [ + [ + -0.212, + 0.847, + 0 + ] + ], + "torpedo": [ + [ + 0.5, + 0.281, + 0 + ] + ], + "vicegun": [ + [ + 1.082, + 0.144, + 0 + ] + ] + }, + "desc": "York-class heavy cruiser - Exeter, Hull Number 68!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 203080, + "illustrator": 18, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Exeter", + "painting": "aikesaite", + "prefab": "aikesaite", + "rarity_bg": "", + "ship_group": 20308, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.556, + 0.649, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.644, + 0.505, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "203081": { + "bg": "146", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.14, + 1.353, + 0 + ] + ], + "cannon": [ + [ + 0.963, + 1.036, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.93, + 0.948, + 0 + ] + ] + }, + "desc": "Cheers, Commander. I'm glad that the party is a success. Well, I should take care as well to not sully the honour of the royal family with my actions.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 203081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Glorious Toast", + "painting": "aikesaite_2", + "prefab": "aikesaite_2", + "rarity_bg": "", + "ship_group": 20308, + "ship_l2d_id": "", + "shop_id": 70605, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "203089": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.41, + 1.38, + 0 + ] + ], + "cannon": [ + [ + 1.41, + 1.38, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.41, + 1.38, + 0 + ] + ] + }, + "desc": "Commander, what do you think? I look more mature than I did before... right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 203089, + "illustrator": 18, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Exeter (Retrofit)", + "painting": "aikesaite_g", + "prefab": "aikesaite_g", + "rarity_bg": "", + "ship_group": 20308, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "203090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.05, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 1.21, + 0.73, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 0.05, + 0.86, + 0 + ] + ] + }, + "desc": "London-class heavy cruiser, Sussex. Hull Number 96.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 203090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sussex", + "painting": "susaikesi", + "prefab": "susaikesi", + "rarity_bg": "", + "ship_group": 20309, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.49, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 135, + "voice_actor_2": -1 + }, + "203091": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.523, + 0.181, + 0 + ] + ], + "cannon": [ + [ + 0.573, + 0.155, + 0 + ] + ], + "torpedo": [ + [ + 0.043, + -0.013, + 0 + ] + ], + "vicegun": [ + [ + 0.515, + 0.15, + 0 + ] + ] + }, + "desc": "What are you spacing out for? Have you not gotten tired of staring at all the swimsuits yet? Good grief... Are you able to help set up the parasol or the beach chairs at least?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 203091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sunlit Tulips", + "painting": "susaikesi_2", + "prefab": "susaikesi_2", + "rarity_bg": "", + "ship_group": 20309, + "ship_l2d_id": "", + "shop_id": 70215, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 135, + "voice_actor_2": -1 + }, + "203092": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.44, + 1.177, + 0 + ] + ], + "cannon": [ + [ + 1.443, + 1.079, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.346, + 1.106, + 0 + ] + ] + }, + "desc": "What are you staring at me for? I'm just the same as any of the others... Y-you have a few more hands to shake? Of course...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 203092, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Wine and Red Roses", + "painting": "susaikesi_3", + "prefab": "susaikesi_3", + "rarity_bg": "", + "ship_group": 20309, + "ship_l2d_id": "", + "shop_id": 70379, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.523, + 2.313, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 135, + "voice_actor_2": -1 + }, + "203100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.74, + 1.177, + 0 + ] + ], + "cannon": [ + [ + 1.64, + 1.079, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.73, + 1.106, + 0 + ] + ] + }, + "desc": "Heavy cruiser – Cheshire.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 203100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Cheshire", + "painting": "chaijun_younv", + "prefab": "chaijun_younv", + "rarity_bg": "", + "ship_group": 20310, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.13, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 30, + "voice_actor_2": -1 + }, + "204010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.407, + 0.613, + 0 + ] + ], + "cannon": [ + [ + 0.015, + 1.165, + 0 + ] + ], + "vicegun": [ + [ + 1.407, + 0.613, + 0 + ] + ] + }, + "desc": "Renown-class battlecruiser - Renown", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 204010, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Renown", + "painting": "shengwang", + "prefab": "shengwang", + "rarity_bg": "", + "ship_group": 20401, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.832, + 0.566, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.608, + 0.741, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": 183 + }, + "204011": { + "bg": "175", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.407, + 0.613, + 0 + ] + ], + "cannon": [ + [ + 0.015, + 1.165, + 0 + ] + ], + "vicegun": [ + [ + 1.908, + 0.867, + 0 + ] + ] + }, + "desc": "This Dragon Empery dress is lovely and graceful, but the slit... Commander? I'm sorry if this is sudden, but... how do you like my dress?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 204011, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Graceful Royal Pride", + "painting": "shengwang_2", + "prefab": "shengwang_2", + "rarity_bg": "", + "ship_group": 20401, + "ship_l2d_id": "", + "shop_id": 70974, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.982, + 0.728, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.613, + 2.259, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 9, + "voice_actor_2": 183 + }, + "204020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.415, + 0.583, + 0 + ] + ], + "cannon": [ + [ + -0.023, + 1.188, + 0 + ] + ], + "vicegun": [ + [ + 1.415, + 0.583, + 0 + ] + ] + }, + "desc": "Renown-class battlecruiser - Repulse", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 204020, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Repulse", + "painting": "fanji", + "prefab": "fanji", + "rarity_bg": "", + "ship_group": 20402, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.019, + 0.597, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.608, + 0.72, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 41, + "voice_actor_2": -1 + }, + "204030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 0.823, + 0 + ] + ], + "cannon": [ + [ + -0.25, + 1.291, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0.585, + 0 + ] + ] + }, + "desc": "Admiral-class battlecruiser - Hood, Hull Number 51!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 204030, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hood", + "painting": "hude", + "prefab": "hude", + "rarity_bg": "", + "ship_group": 20403, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "204031": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 0.823, + 0 + ] + ], + "cannon": [ + [ + -0.25, + 1.291, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0.585, + 0 + ] + ] + }, + "desc": "What a feast for sore eyes. I feel great~! Vacations really should be at the beach! Let's show Sara your beach ball, Cygnet!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 204031, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lady of the Shining Sun", + "painting": "hude_2", + "prefab": "hude_2", + "rarity_bg": "", + "ship_group": 20403, + "ship_l2d_id": "", + "shop_id": 70005, + "shop_type_id": 6, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.27, + 0.14, + -0.08 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.45, + 2.29, + -1.31 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "204032": { + "bg": "142", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.995, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 0.996, + 0.996, + 0 + ] + ], + "vicegun": [ + [ + 0.985, + 1.018, + 0 + ] + ] + }, + "desc": "Thank you for inviting me on this wonderful trip. Now that I have donned this beautiful outfit, shall we partake of a Sakura Empire tea party– leisurely and elegantly?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 204032, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Porcelain Grace", + "painting": "hude_3", + "prefab": "hude_3", + "rarity_bg": "", + "ship_group": 20403, + "ship_l2d_id": "", + "shop_id": 70533, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.526, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "204033": { + "bg": "146", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.05, + 1.04, + 0 + ] + ], + "cannon": [ + [ + 1.07, + 1.05, + 0 + ] + ], + "vicegun": [ + [ + 1.08, + 1.08, + 0 + ] + ] + }, + "desc": "Beauty is not always over the rainbow. Sometimes it is right in your backyard. Commander, how would you like to spend this quiet, lovely day right here with me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 204033, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dawnlight's Dame", + "painting": "hude_4", + "prefab": "hude_4", + "rarity_bg": "", + "ship_group": 20403, + "ship_l2d_id": "", + "shop_id": 70557, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.71, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "204034": { + "bg": "155", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.05, + 1.04, + 0 + ] + ], + "cannon": [ + [ + 1.07, + 1.05, + 0 + ] + ], + "vicegun": [ + [ + 1.08, + 1.08, + 0 + ] + ] + }, + "desc": "Whoa, there... There you are, Commander. You could have waited at the clubhouse... Why yes, the view is just beautiful, isn't it? Hahaha, thank you for bringing me here today.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 204034, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gentlewoman and Stallion", + "painting": "hude_5", + "prefab": "hude_5", + "rarity_bg": "", + "ship_group": 20403, + "ship_l2d_id": "", + "shop_id": 70865, + "shop_type_id": 23, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.71, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "204038": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.55, + 1.21, + 0 + ] + ], + "cannon": [ + [ + 2.59, + 1.27, + 0 + ] + ], + "vicegun": [ + [ + 2.61, + 1.25, + 0 + ] + ] + }, + "desc": "If the smooth path only allows one person to travel at a time, then I’ll gladly walk the path not taken with you hand-in-hand.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 204038, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rosey Love Poem", + "painting": "hude_h", + "prefab": "hude_h", + "rarity_bg": "", + "ship_group": 20403, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand2", + "skin_type": 1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.33, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "204040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.407, + 0.613, + 0 + ] + ], + "cannon": [ + [ + 0.015, + 1.165, + 0 + ] + ], + "vicegun": [ + [ + 1.407, + 0.613, + 0 + ] + ] + }, + "desc": "Renown-Class Battlecruiser - HMS Renown", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 204040, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Renown", + "painting": "shengwang_younv", + "prefab": "shengwang_younv", + "rarity_bg": "", + "ship_group": 20404, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.832, + 0.566, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.608, + 0.741, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": 183 + }, + "205010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.591, + 1.589, + 0 + ], + [ + 0.688, + 1.12, + 0 + ] + ], + "cannon": [ + [ + -0.106, + 1.3, + 0 + ] + ], + "vicegun": [ + [ + -0.591, + 1.589, + 0 + ], + [ + 0.688, + 1.12, + 0 + ] + ] + }, + "desc": "Queen Elizabeth-class battleship - Queen Elizabeth, Hull Number 00!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 205010, + "illustrator": 19, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Queen Elizabeth", + "painting": "yilishabai", + "prefab": "yilishabai", + "rarity_bg": "", + "ship_group": 20501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.824, + 0.443, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.581, + 0.535, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "205011": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.12, + 0.98, + 0 + ] + ], + "cannon": [ + [ + 0.08, + 0.99, + 0 + ] + ], + "vicegun": [ + [ + 0.12, + 1.01, + 0 + ] + ] + }, + "desc": "Hah haah! You're a lucky servant this evening! We shall allow you to accompany us to the party! ... B-but it's not like I chose you because I like you! I just... Yes! I just sort of chose randomly! Got it?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 205011, + "illustrator": 19, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Queen's Ball", + "painting": "yilishabai_2", + "prefab": "yilishabai_2", + "rarity_bg": "", + "ship_group": 20501, + "ship_l2d_id": "", + "shop_id": 70098, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "205012": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.218, + 1.014, + 0 + ] + ], + "cannon": [ + [ + 1.133, + 0.99, + 0 + ] + ], + "vicegun": [ + [ + 1.173, + 1.01, + 0 + ] + ] + }, + "desc": "Now this is a stage worthy of our majesty! You are not to leave our sight, servant! Let your passions burn for me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 205012, + "illustrator": 19, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "One Night of the Queen", + "painting": "yilishabai_3", + "prefab": "yilishabai_3", + "rarity_bg": "", + "ship_group": 20501, + "ship_l2d_id": "", + "shop_id": 70439, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "205013": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 1.135, + 0 + ] + ], + "cannon": [ + [ + 1.133, + 1.142, + 0 + ] + ], + "vicegun": [ + [ + 1.173, + 1.154, + 0 + ] + ] + }, + "desc": "Hehe, behold the new outfit that I had Akashi make for me! Impressive, no? Prostrate yourself before the elegant charm of my school uniform, servant~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 205013, + "illustrator": 19, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Queen of the Campus", + "painting": "yilishabai_4", + "prefab": "yilishabai_4", + "rarity_bg": "", + "ship_group": 20501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "205014": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.999, + 0.999, + 0 + ] + ], + "cannon": [ + [ + 1.989, + 1, + 0 + ] + ], + "vicegun": [ + [ + 2.002, + 0.984, + 0 + ] + ] + }, + "desc": "Did I hear that you're supposed to give out red envelopes during the Dragon Empery's New Year? This is a fine chance to display the magnanimity of the Queen of the Royal Navy! ...Don't just run off with your gift! Spread the word of my glory, my servant!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 205014, + "illustrator": 19, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Crown Jewel of the Royal Navy", + "painting": "yilishabai_5", + "prefab": "yilishabai_5", + "rarity_bg": "", + "ship_group": 20501, + "ship_l2d_id": "", + "shop_id": 70495, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.478, + 2.421, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "205015": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.53, + 1.33, + 0 + ] + ], + "cannon": [ + [ + 1.98, + 1, + 0 + ] + ], + "vicegun": [ + [ + 2.002, + 0.984, + 0 + ] + ] + }, + "desc": "Warspite, what in the world is all this... The Maid Team has to sift through all this paperwork?! I'm tired already... I wish I never mentioned wanting to experience what it's like to be a maid... And you, stop staring and help me already, servant!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 1, + "hand_id": 13, + "id": 205015, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 1, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 180, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yes, Your Maidness!", + "painting": "yilishabai_6", + "prefab": "yilishabai_6", + "rarity_bg": "", + "ship_group": 20501, + "ship_l2d_id": [ + 204, + 205 + ], + "shop_id": 70641, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "205016": { + "bg": "117", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.688, + 1.12, + 0 + ] + ], + "cannon": [ + [ + 1.17, + 1.08, + 0 + ] + ], + "vicegun": [ + [ + 0.688, + 1.12, + 0 + ] + ] + }, + "desc": "Servant, what do you think you're doing?! Instead of wasting your life working, go have some fun in the sea for once! We went out of our way to come to the beach, so do not disappoint me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 13, + "id": 205016, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Seaside Orders", + "painting": "yilishabai_7", + "prefab": "yilishabai_7", + "rarity_bg": "", + "ship_group": 20501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 4, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "205020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.696, + 0.779, + 0 + ], + [ + 0.893, + 0.242, + 0 + ] + ], + "cannon": [ + [ + -0.061, + 1.339, + 0 + ] + ], + "vicegun": [ + [ + -0.696, + 0.779, + 0 + ], + [ + 0.893, + 0.242, + 0 + ] + ] + }, + "desc": "Queen Elizabeth-class battleship - Warspite, Hull Number 03!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 205020, + "illustrator": 19, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Warspite", + "painting": "yanzhan", + "prefab": "yanzhan", + "rarity_bg": "", + "ship_group": 20502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.082, + 0.566, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.919, + 0.617, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "205021": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.82, + 1.75, + 0 + ] + ], + "cannon": [ + [ + 1.8, + 1.7, + 0 + ] + ], + "vicegun": [ + [ + 1.82, + 1.67, + 0 + ] + ] + }, + "desc": "This year, I am in charge of delivering presents to the children of the Royal Navy. Let's get going once I finish decorating this Christmas tree!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 205021, + "illustrator": 19, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Christmas Warrior", + "painting": "yanzhan_2", + "prefab": "yanzhan_2", + "rarity_bg": "", + "ship_group": 20502, + "ship_l2d_id": "", + "shop_id": 70127, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "205022": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.644, + 1.067, + 0 + ] + ], + "cannon": [ + [ + 1.657, + 1.113, + 0 + ] + ], + "vicegun": [ + [ + 1.683, + 1.084, + 0 + ] + ] + }, + "desc": "We have the finest equipment. Now to turn in a performance worthy of Her Majesty's beauty... Behold, the Royal Stage!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 205022, + "illustrator": 19, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Under Pleasure", + "painting": "yanzhan_3", + "prefab": "yanzhan_3", + "rarity_bg": "", + "ship_group": 20502, + "ship_l2d_id": "", + "shop_id": 70438, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "205029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.243, + 1.164, + 0 + ] + ], + "cannon": [ + [ + 1.292, + 1.094, + 0 + ] + ], + "vicegun": [ + [ + 1.204, + 1.064, + 0 + ] + ] + }, + "desc": "Warspite, retrofitting complete. Mm, I rather like this feeling of being rejuvenated... Now, Commander, let us make our way towards new battlegrounds!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 205029, + "illustrator": 19, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Warspite (Retrofit)", + "painting": "yanzhan_g", + "prefab": "yanzhan_g", + "rarity_bg": "", + "ship_group": 20502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.654, + 2.41, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "yanzhan", + [ + 37, + 138, + 0 + ], + [ + 1.6 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 37, + -473, + 0 + ], + [ + 0.85 + ] + ], + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "205030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.95, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.48, + 0.33, + 0 + ] + ], + "vicegun": [ + [ + -0.33, + 0.8, + 0 + ] + ] + }, + "desc": "Nelson-class battleship – Nelson, Hull Number 28!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 205030, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nelson", + "painting": "naerxun", + "prefab": "naerxun", + "rarity_bg": "", + "ship_group": 20503, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.43, + 0.69, + -0.09 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.66, + 2.54, + -0.41 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 13, + "voice_actor_2": -1 + }, + "205031": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2, + 0.88, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.58, + 0 + ] + ], + "vicegun": [ + [ + 1.98, + 0.89, + 0 + ] + ] + }, + "desc": "This is such a weird costume… oh well, it’s Halloween after all. It cannot be so bad, this is a fun activity after all. First things first, I didn’t say that I would join from the very beginning!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 205031, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Luna Witch", + "painting": "naerxun_2", + "prefab": "naerxun_2", + "rarity_bg": "", + "ship_group": 20503, + "ship_l2d_id": "", + "shop_id": 70116, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.44, + -0.09 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 13, + "voice_actor_2": -1 + }, + "205032": { + "bg": "114", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.684, + 1.128, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.657, + 1.048, + 0 + ] + ] + }, + "desc": "Hey, are you even enjoying yourself? At least pretend to have fun when I went out of my way to invite you, or else I'm going to lose sleep over this! ...Look behind me? What are you– Oh...!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 205032, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Azure & Gold Summer Night", + "painting": "naerxun_3", + "prefab": "naerxun_3", + "rarity_bg": "", + "ship_group": 20503, + "ship_l2d_id": "", + "shop_id": 70691, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.447, + 2.357, + -0.09 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 13, + "voice_actor_2": -1 + }, + "205039": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.83, + 1.34, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.94, + 1.02, + 0 + ] + ] + }, + "desc": "H-hey, are you sleeping all day, or what? My retrofit is all done. Hmph, you might've widened the gap between us, but... I'm gonna keep on pushing my limits! Got it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 205039, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nelson (Retrofit)", + "painting": "naerxun_g", + "prefab": "naerxun_g", + "rarity_bg": "", + "ship_group": 20503, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.21, + -0.09 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 13, + "voice_actor_2": -1 + }, + "205040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.126, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.465, + 0.245, + 0 + ] + ], + "vicegun": [ + [ + -0.327, + 0.824, + 0 + ] + ] + }, + "desc": "Nelson-class battleship – Rodney, Hull Number 29!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 205040, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rodney", + "painting": "luodeni", + "prefab": "luodeni", + "rarity_bg": "", + "ship_group": 20504, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.71, + 0.72, + -0.12 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.96, + 0.84, + -0.32 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "205041": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.126, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.465, + 0.245, + 0 + ] + ], + "vicegun": [ + [ + -0.327, + 0.824, + 0 + ] + ] + }, + "desc": "Although it's a gift from the Commander, it's still embarrassing to wear this....Commander, do you think you could teach me how to swim?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 205041, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Future Seaside Admiral", + "painting": "luodeni_2", + "prefab": "luodeni_2", + "rarity_bg": "", + "ship_group": 20504, + "ship_l2d_id": "", + "shop_id": 70008, + "shop_type_id": 6, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.3, + -0.17, + 0.4 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.23, + 2.32, + -1.03 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "205043": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.144, + 1.158, + 0 + ] + ], + "torpedo": [ + [ + 0.11, + 0.121, + 0 + ] + ], + "vicegun": [ + [ + 1.038, + 1.224, + 0 + ] + ] + }, + "desc": "Miss Akashi, shall I look at the camera next? Understood. Oh, Commander, I did not expect you to grace us with your presence here as well! Yes, the photoshoot is proceeding smoothly. By the way, is there a favorite pose you'd like to see?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 205043, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Immaculate Beauty", + "painting": "luodeni_4", + "prefab": "luodeni_4", + "rarity_bg": "", + "ship_group": 20504, + "ship_l2d_id": "", + "shop_id": 70658, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.399, + 2.396, + -0.12 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "205048": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.126, + 1.018, + 0 + ] + ], + "torpedo": [ + [ + 0.004, + -0.096, + 0 + ] + ], + "vicegun": [ + [ + 1.161, + 1.002, + 0 + ] + ] + }, + "desc": "I never imagined that this dreamlike situation would come to pass... Commander, have you also been looking forward to sharing this moment with me? Hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 205048, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Palace of Blessings", + "painting": "luodeni_h", + "prefab": "luodeni_h", + "rarity_bg": "", + "ship_group": 20504, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.437, + 2.454, + 0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "205050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2.07, + 1.4, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.99, + 1.39, + 0 + ] + ] + }, + "desc": "King George V-class battleship – King George V.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 205050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "King George V", + "painting": "qiaozhiwushi", + "prefab": "qiaozhiwushi", + "rarity_bg": "", + "ship_group": 20505, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand2", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.3, + 0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 183, + "voice_actor_2": -1 + }, + "205051": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.005, + 1.158, + 0 + ] + ], + "torpedo": [ + [ + 0.004, + 0.046, + 0 + ] + ], + "vicegun": [ + [ + 1.001, + 1.006, + 0 + ] + ] + }, + "desc": "Sorry to keep you waiting, Commander... I don't get to wear a dress very often, so it took me a bit longer. Let's get going, then. Remember, you'll be the lead tonight. Haha~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 205051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rose's Regalia", + "painting": "qiaozhiwushi_2", + "prefab": "qiaozhiwushi_2", + "rarity_bg": "", + "ship_group": 20505, + "ship_l2d_id": "", + "shop_id": 70186, + "shop_type_id": 7, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.405, + 0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 183, + "voice_actor_2": -1 + }, + "205060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.16, + 1.44, + 0 + ] + ], + "cannon": [ + [ + -0.16, + 1.44, + 0 + ] + ], + "torpedo": [ + [ + 0.47, + 0.26, + 0 + ] + ], + "vicegun": [ + [ + -0.16, + 1.44, + 0 + ] + ] + }, + "desc": "King George V-class battleship – Prince of Wales, Hull Number 53!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 205060, + "illustrator": 14, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prince of Wales", + "painting": "weiershiqinwang", + "prefab": "weiershiqinwang", + "rarity_bg": "", + "ship_group": 20506, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.79, + 0.88, + 0.53 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -1.13, + 1.52, + -0.73 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 12, + "voice_actor_2": -1 + }, + "205061": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.56, + 0.61, + 0 + ] + ], + "cannon": [ + [ + 1.56, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.24, + 0.03, + 0 + ] + ], + "vicegun": [ + [ + 1.56, + 0.61, + 0 + ] + ] + }, + "desc": "I'm not a big fan of beach volleyball, but Hood begged me... I swear, that girl! She just can't get enough of the sun! You've got to cheer for me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 205061, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sun Shining Upon Windsor", + "painting": "weiershiqinwang_2", + "prefab": "weiershiqinwang_2", + "rarity_bg": "", + "ship_group": 20506, + "ship_l2d_id": "", + "shop_id": 70011, + "shop_type_id": 6, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 12, + "voice_actor_2": -1 + }, + "205062": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.459, + 0.742, + 0 + ] + ], + "cannon": [ + [ + 1.002, + 0.734, + 0 + ] + ], + "torpedo": [ + [ + 0.24, + 0.03, + 0 + ] + ], + "vicegun": [ + [ + 1.219, + 0.773, + 0 + ] + ] + }, + "desc": "I've been wearing Royal attire my whole life, so a change in pace doesn't seem bad. Oh, Commander, good timing. Can you explain to me how to celebrate the New Year here?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 205062, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sakura Elegance", + "painting": "weiershiqinwang_4", + "prefab": "weiershiqinwang_4", + "rarity_bg": "", + "ship_group": 20506, + "ship_l2d_id": "", + "shop_id": 70133, + "shop_type_id": 2, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 12, + "voice_actor_2": -1 + }, + "205064": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.987, + 1.047, + 0 + ] + ], + "cannon": [ + [ + 1.951, + 1.039, + 0 + ] + ], + "torpedo": [ + [ + 0.009, + -0.019, + 0 + ] + ], + "vicegun": [ + [ + 2.011, + 1.111, + 0 + ] + ] + }, + "desc": "Oh, Commander. Worry not. Since I've been given this job, I will see through it until the end. Besides, it's been a while since I've gotten this fired up. Haha!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 205064, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Laureate's Victory Lap", + "painting": "weiershiqinwang_3", + "prefab": "weiershiqinwang_3", + "rarity_bg": "", + "ship_group": 20506, + "ship_l2d_id": "", + "shop_id": 70387, + "shop_type_id": 14, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.721, + 2.307, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 12, + "voice_actor_2": -1 + }, + "205065": { + "bg": "161", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.987, + 1.047, + 0 + ] + ], + "cannon": [ + [ + 1.951, + 1.039, + 0 + ] + ], + "torpedo": [ + [ + 0.009, + -0.019, + 0 + ] + ], + "vicegun": [ + [ + 2.011, + 1.111, + 0 + ] + ] + }, + "desc": "I expected you sooner, Commander. I decided to practice the saxophone while I had some time alone... You shouldn't keep a lady waiting in the future. Heehee. Anyway, I suppose we could listen to a song before we set off, no?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 1, + "id": 205065, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Knight's Song, a Lady's Night", + "painting": "weiershiqinwang_5", + "prefab": "weiershiqinwang_5", + "rarity_bg": "", + "ship_group": 20506, + "ship_l2d_id": "", + "shop_id": 70909, + "shop_type_id": 7, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.721, + 2.307, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 12, + "voice_actor_2": -1 + }, + "205070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.83, + 1.38, + 0 + ] + ], + "cannon": [ + [ + 1.9, + 1.55, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + -0.21, + 1.4, + 0 + ] + ] + }, + "desc": "King George V-class battleship - HMS Duke of York.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 205070, + "illustrator": 14, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Duke of York", + "painting": "yuekegongjue", + "prefab": "yuekegongjue", + "rarity_bg": "", + "ship_group": 20507, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.26, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 79, + "voice_actor_2": -1 + }, + "205072": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.17, + 1.3, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.34, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + 1.23, + 1.3, + 0 + ] + ] + }, + "desc": "Ahh, this luscious scent... comes from thee. What dost thee feel when gazing upon my new dress? Hehe... your lips may lie but your eyes do not...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 205072, + "illustrator": 14, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Eternal Night's Carola", + "painting": "yuekegongjue_3", + "prefab": "yuekegongjue_3", + "rarity_bg": "", + "ship_group": 20507, + "ship_l2d_id": "", + "shop_id": 70143, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.26, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 79, + "voice_actor_2": -1 + }, + "205073": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.987, + 1.061, + 0 + ] + ], + "cannon": [ + [ + 1.977, + 1.101, + 0 + ] + ], + "torpedo": [ + [ + -0.008, + -0.018, + 0 + ] + ], + "vicegun": [ + [ + 1.997, + 1.102, + 0 + ] + ] + }, + "desc": "My beautiful Adonis, why dost thou refuseth to take refuge in the trove of everlasting love... Perhaps my outfit can finally pierce thy heart? Hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 205073, + "illustrator": 14, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prestige of the Glorious Formula", + "painting": "yuekegongjue_2", + "prefab": "yuekegongjue_2", + "rarity_bg": "", + "ship_group": 20507, + "ship_l2d_id": "", + "shop_id": 70386, + "shop_type_id": 14, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.458, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 79, + "voice_actor_2": -1 + }, + "205090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.118, + 1.193, + 0 + ] + ], + "cannon": [ + [ + 1.063, + 1.184, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + -0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.112, + 1.175, + 0 + ] + ] + }, + "desc": "King George V-class battleship – Howe (HMS Howe.) ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 205090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Howe ", + "painting": "hao", + "prefab": "hao", + "rarity_bg": "", + "ship_group": 20509, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.315, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "205091": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.136, + 1.144, + 0 + ] + ], + "cannon": [ + [ + 1.172, + 1.213, + 0 + ] + ], + "torpedo": [ + [ + -0.006, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.153, + 1.214, + 0 + ] + ] + }, + "desc": "Sorry to keep you waiting, but now I'm ready to– Commander? What's the matter? It'll get dark soon if you keep standing around like that.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 205091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Noble Rouge", + "painting": "hao_2", + "prefab": "hao_2", + "rarity_bg": "", + "ship_group": 20509, + "ship_l2d_id": "", + "shop_id": 70393, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.26, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "205092": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.2, + 0 + ] + ], + "cannon": [ + [ + 1.54, + 1.13, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.32, + 0.83, + 0 + ] + ] + }, + "desc": "\"Please, Master, save meee.\" ...Ugh, I can't get into the role. What sort of tone should I be aiming for, love?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 205092, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pastry Princess", + "painting": "hao_4", + "prefab": "hao_4", + "rarity_bg": "", + "ship_group": 20509, + "ship_l2d_id": "", + "shop_id": 70643, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.26, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "205093": { + "bg": "157", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.05, + 1.24, + 0 + ] + ], + "cannon": [ + [ + 1.38, + 1.1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.92, + 0 + ] + ] + }, + "desc": "Thanks for your patience, love. I've looked forward to this evening's party for a long, long time. Hopefully George, York, and company won't laugh at me after how much effort I've put into this ensemble... What do you think of it, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 205093, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Evening Marvels", + "painting": "hao_5", + "prefab": "hao_5", + "rarity_bg": "", + "ship_group": 20509, + "ship_l2d_id": "", + "shop_id": 70703, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.4, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "205100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.59, + 1.288, + 0 + ] + ], + "cannon": [ + [ + 1.605, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + -0.014, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.607, + 1.255, + 0 + ] + ] + }, + "desc": "Queen Elizabeth-class battleship – Valiant (HMS Valiant.) ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 205100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Valiant ", + "painting": "yingyong", + "prefab": "yingyong", + "rarity_bg": "", + "ship_group": 20510, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.415, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 240, + "voice_actor_2": -1 + }, + "205101": { + "bg": "138", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.548, + 1.239, + 0 + ] + ], + "cannon": [ + [ + 1.512, + 1.19, + 0 + ] + ], + "torpedo": [ + [ + -0.007, + -0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.502, + 1.248, + 0 + ] + ] + }, + "desc": "Hehe~ As this medical facility training is crucially important, a charismatic leader such as myself would be best suited to instruct everyone on– Wait a moment, what's with this outfit?! You there, explain the meaning of this at once!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 205101, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mischievous Little Nurse", + "painting": "yingyong_2", + "prefab": "yingyong_2", + "rarity_bg": "", + "ship_group": 20510, + "ship_l2d_id": "", + "shop_id": 70397, + "shop_type_id": 15, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.366, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 240, + "voice_actor_2": -1 + }, + "205102": { + "bg": "146", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.38, + 1.36, + 0 + ] + ], + "cannon": [ + [ + 1.37, + 1.39, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.32, + 1.41, + 0 + ] + ] + }, + "desc": "Why the astonished look on your face? You heard me correctly! On this day, I am not merely Valiant, I am the regal and royal Queen Valiant!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 205102, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Queen Valiant I", + "painting": "yingyong_3", + "prefab": "yingyong_3", + "rarity_bg": "", + "ship_group": 20510, + "ship_l2d_id": "", + "shop_id": 70559, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.39, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 240, + "voice_actor_2": -1 + }, + "205110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.23, + 1.288, + 0 + ] + ], + "cannon": [ + [ + 1.17, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.2, + 1.255, + 0 + ] + ] + }, + "desc": "R-class battleship – Revenge.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 205110, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Revenge", + "painting": "fuchou", + "prefab": "fuchou", + "rarity_bg": "", + "ship_group": 20511, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 318, + "voice_actor_2": -1 + }, + "205111": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 1.288, + 0 + ] + ], + "cannon": [ + [ + 1.2, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.2, + 1.255, + 0 + ] + ] + }, + "desc": "Hrmm... *sigh*... Looks like I bungled this one too... I sure hope the Commander doesn't see me like th– Hwuh?! C-Commander? P-please give me a moment! I'll straighten this out right away... Waaah!!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 205111, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Maid-Knight Charges Forth!", + "painting": "fuchou_2", + "prefab": "fuchou_2", + "rarity_bg": "", + "ship_group": 20511, + "ship_l2d_id": "", + "shop_id": 70697, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 318, + "voice_actor_2": -1 + }, + "205130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.23, + 1.288, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.17, + 1.255, + 0 + ] + ] + }, + "desc": "Battleship – Vanguard.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 205130, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vanguard", + "painting": "qianwei", + "prefab": "qianwei", + "rarity_bg": "", + "ship_group": 20513, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_qianwei", + [ + 11, + 32, + 0 + ], + [ + 2.1 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -25, + -710, + 0 + ], + [ + 0.75 + ] + ], + "tag": [], + "time": "", + "voice_actor": 315, + "voice_actor_2": -1 + }, + "205131": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.18, + 1.288, + 0 + ] + ], + "cannon": [ + [ + 1.14, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.17, + 1.255, + 0 + ] + ] + }, + "desc": "\"Please let me know if you need anything, Master\"... I'm starting to think you're making me wear this as a sick joke. The reason being, I am obviously NOT fit to be a Royal Maid... Even if I do adore their uniforms...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 1, + "hand_id": 13, + "id": 205131, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "main_5", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 110, + 25, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Half-Hearted Masquerade", + "painting": "qianwei_2", + "prefab": "qianwei_2", + "rarity_bg": "", + "ship_group": 20513, + "ship_l2d_id": [ + 201, + 202, + 203 + ], + "shop_id": 70694, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 315, + "voice_actor_2": -1 + }, + "205140": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.94, + 1.86, + 0 + ] + ], + "cannon": [ + [ + 2.11, + 1.32, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.24, + 1.24, + 0 + ] + ] + }, + "desc": "R-class battleship – Royal Oak.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 205140, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Royal Oak", + "painting": "huangjiaxiangshu", + "prefab": "huangjiaxiangshu", + "rarity_bg": "", + "ship_group": 20514, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 358, + "voice_actor_2": -1 + }, + "205141": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.1, + 1.39, + 0 + ] + ], + "cannon": [ + [ + 2.15, + 1.31, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.11, + 1.33, + 0 + ] + ] + }, + "desc": "Commander? Oh, what a coincidence... Were you slacking– err, I mean, taking a break, too? I can make some room for you if you'd like?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 205141, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bashful Oak", + "painting": "huangjiaxiangshu_2", + "prefab": "huangjiaxiangshu_2", + "rarity_bg": "", + "ship_group": 20514, + "ship_l2d_id": "", + "shop_id": 70824, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 358, + "voice_actor_2": -1 + }, + "206010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.105, + 1.021, + 0 + ] + ], + "plane": [ + [ + 1.105, + 1.021, + 0 + ] + ] + }, + "desc": "Hermes-class aircraft carrier – Hermes, Hull Number 95!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 206010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hermes", + "painting": "jingjishen", + "prefab": "jingjishen", + "rarity_bg": "", + "ship_group": 20601, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.22, + 0.566, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.153, + 1.018, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 122, + "voice_actor_2": -1 + }, + "206019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.96, + 1.06, + 0 + ] + ], + "plane": [ + [ + 0.96, + 1.06, + 0 + ] + ] + }, + "desc": "Our glory coalesces into the bonds that forge a bright new future! Let's rev it up! Hermes, retrofit complete!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 206019, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hermes (Retrofit)", + "painting": "jingjishen_g", + "prefab": "jingjishen_g", + "rarity_bg": "", + "ship_group": 20601, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.22, + 0.566, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.153, + 1.018, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 122, + "voice_actor_2": -1 + }, + "206020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.7, + 1.44, + 0 + ] + ], + "cannon": [ + [ + 1.56, + 1.09, + 0 + ] + ], + "plane": [ + [ + 1.7, + 1.44, + 0 + ] + ], + "torpedo": [ + [ + 0.31, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.56, + 1.09, + 0 + ] + ] + }, + "desc": "Light aircraft carrier – Argus.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 206020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Argus", + "painting": "baiyanjuren", + "prefab": "baiyanjuren", + "rarity_bg": "", + "ship_group": 20602, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.72, + 1.32, + -0.61 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.52, + 2.59, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 350, + "voice_actor_2": -1 + }, + "206021": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.59, + 1.71, + 0 + ] + ], + "cannon": [ + [ + 1.62, + 1.17, + 0 + ] + ], + "plane": [ + [ + 1.59, + 1.71, + 0 + ] + ], + "torpedo": [ + [ + 0.31, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.62, + 1.17, + 0 + ] + ] + }, + "desc": "Yaaawn... Umm, did I doze off again? Oh no... Organising school events gets so hectic I always end up working right up until curfew... Just give me one more minute, please...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 206021, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Hundred Sleepless Eyes", + "painting": "baiyanjuren_2", + "prefab": "baiyanjuren_2", + "rarity_bg": "", + "ship_group": 20602, + "ship_l2d_id": "", + "shop_id": 70825, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.72, + 1.32, + -0.61 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.52, + 2.59, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 350, + "voice_actor_2": -1 + }, + "206022": { + "bg": "146", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.59, + 1.71, + 0 + ] + ], + "cannon": [ + [ + 1.62, + 1.17, + 0 + ] + ], + "plane": [ + [ + 1.59, + 1.71, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.006, + 0 + ] + ], + "vicegun": [ + [ + 1.62, + 1.17, + 0 + ] + ] + }, + "desc": "\"Gaze upon this glorious dress. Admire its brilliance, tremble, and...\" If you don't mind, would you please take Argus' hand?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 206022, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cerulean Enthrallment", + "painting": "baiyanjuren_3", + "prefab": "baiyanjuren_3", + "rarity_bg": "", + "ship_group": 20602, + "ship_l2d_id": "", + "shop_id": 70907, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.723, + 2.347, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 350, + "voice_actor_2": -1 + }, + "206030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.55, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 0.55, + 1.08, + 0 + ] + ], + "plane": [ + [ + 0.55, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + 0.31, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 0.55, + 1.08, + 0 + ] + ] + }, + "desc": "Aircraft carrier – Unicorn, Hull Number I72!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 206030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Unicorn", + "painting": "dujiaoshou", + "prefab": "dujiaoshou", + "rarity_bg": "", + "ship_group": 20603, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.72, + 1.32, + -0.61 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.52, + 2.59, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "206031": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.032, + 1.24, + 0 + ] + ], + "cannon": [ + [ + 1.032, + 1.24, + 0 + ] + ], + "plane": [ + [ + 1.032, + 1.24, + 0 + ] + ], + "torpedo": [ + [ + 0.085, + 0.028, + 0 + ] + ], + "vicegun": [ + [ + 1.032, + 1.24, + 0 + ] + ] + }, + "desc": "Unicorn... is now a songstress... *giggles* Unicorn's song has reached Onii-chan's heart.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 206031, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Star Songstress", + "painting": "dujiaoshou_2", + "prefab": "dujiaoshou_2", + "rarity_bg": "", + "ship_group": 20603, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.19, + 2.262, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "206032": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.76, + 1.35, + 0 + ] + ], + "cannon": [ + [ + 0.78, + 1.32, + 0 + ] + ], + "plane": [ + [ + 0.75, + 1.31, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.78, + 1.31, + 0 + ] + ] + }, + "desc": "This... present... is for you... I hope you like it... What? Me wearing this outfit is the best gift I can give you? Co... Commander!...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 15, + "id": 206032, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Gift of Spring", + "painting": "dujiaoshou_3", + "prefab": "dujiaoshou_3", + "rarity_bg": "", + "ship_group": 20603, + "ship_l2d_id": "", + "shop_id": 70045, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "206033": { + "bg": "108", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.092, + 1.438, + 0 + ] + ], + "cannon": [ + [ + 1.239, + 1.476, + 0 + ] + ], + "plane": [ + [ + 1.102, + 1.486, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 1.063, + 1.427, + 0 + ] + ] + }, + "desc": "Ah, big brother, you're here... Ehehe, I only just got here as well. Um... shall we go then? I kind of... want to go to the amusement park...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 206033, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 2, + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -20, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Long-Awaited Date", + "painting": "dujiaoshou_4", + "prefab": "dujiaoshou_4", + "rarity_bg": "", + "ship_group": 20603, + "ship_l2d_id": "", + "shop_id": 70161, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "206034": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.092, + 1.438, + 0 + ] + ], + "cannon": [ + [ + 1.239, + 1.476, + 0 + ] + ], + "plane": [ + [ + 1.102, + 1.486, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 1.063, + 1.427, + 0 + ] + ] + }, + "desc": "So this is a \"kimono\" from the Sakura Empire... Changing into it is difficult but... if you like it, then Unicorn is happy!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 206034, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -20, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prayer of Plum and Snow", + "painting": "dujiaoshou_5", + "prefab": "dujiaoshou_5", + "rarity_bg": "", + "ship_group": 20603, + "ship_l2d_id": "", + "shop_id": 70291, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "206035": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.286, + 1.199, + 0 + ] + ], + "cannon": [ + [ + 1.37, + 1.176, + 0 + ] + ], + "plane": [ + [ + 1.199, + 1.145, + 0 + ] + ], + "torpedo": [ + [ + -0.006, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.313, + 1.221, + 0 + ] + ] + }, + "desc": "So I'm... an \"idol\" now... I'm not sure how well I'll do... But I'll give it my all...!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 13, + "id": 206035, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "headtouch": 3, + "mission_complete": 0.7 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 50, + 15, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Angelic Night", + "painting": "dujiaoshou_6", + "prefab": "dujiaoshou_6", + "rarity_bg": "", + "ship_group": 20603, + "ship_l2d_id": "", + "shop_id": 70437, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.472, + 2.435, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "206036": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 1.26, + 0 + ] + ], + "cannon": [ + [ + 1.27, + 1.44, + 0 + ] + ], + "plane": [ + [ + 1.21, + 1.17, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.3, + 1.31, + 0 + ] + ] + }, + "desc": "Oh, big brother... Unicorn is reading right now. Mm, yeah, while eating ice cream... Big brother, want to have a bite?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 13, + "id": 206036, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Icy-Sweet Storytime", + "painting": "dujiaoshou_7", + "prefab": "dujiaoshou_7", + "rarity_bg": "", + "ship_group": 20603, + "ship_l2d_id": "", + "shop_id": 70552, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "206037": { + "bg": "138", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 1.26, + 0 + ] + ], + "cannon": [ + [ + 1.27, + 1.44, + 0 + ] + ], + "plane": [ + [ + 1.21, + 1.17, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.3, + 1.31, + 0 + ] + ] + }, + "desc": "Unicorn... is now serving as a nurse. Umm... Big brother, would you mind being Unicorn's patient...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 7, + "gyro": 0, + "hand_id": 13, + "id": 206037, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Angelic Nurse", + "painting": "dujiaoshou_8", + "prefab": "dujiaoshou_8", + "rarity_bg": "", + "ship_group": 20603, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 15, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "206038": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.361, + 1.323, + 0 + ] + ], + "cannon": [ + [ + 1.313, + 1.301, + 0 + ] + ], + "plane": [ + [ + 1.318, + 1.297, + 0 + ] + ], + "torpedo": [ + [ + -0.012, + 0.016, + 0 + ] + ], + "vicegun": [ + [ + 1.272, + 1.279, + 0 + ] + ] + }, + "desc": "This is... an important outfit for an important ceremony... yes! Unicorn and Yuni are both ready for this! Big brother... how do I look?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 206038, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -20, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Dream of Pure Vows", + "painting": "dujiaoshou_h", + "prefab": "dujiaoshou_h", + "rarity_bg": "", + "ship_group": 20603, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "206039": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.361, + 1.323, + 0 + ] + ], + "cannon": [ + [ + 1.313, + 1.301, + 0 + ] + ], + "plane": [ + [ + 1.318, + 1.297, + 0 + ] + ], + "torpedo": [ + [ + -0.012, + 0.016, + 0 + ] + ], + "vicegun": [ + [ + 1.272, + 1.279, + 0 + ] + ] + }, + "desc": "Unicorn has finished her retrofit... Now she can do more for you and her friends!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 206039, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -20, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Unicorn (Retrofit)", + "painting": "dujiaoshou_g", + "prefab": "dujiaoshou_g", + "rarity_bg": "", + "ship_group": 20603, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "206040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.96, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 1.13, + 0 + ] + ], + "plane": [ + [ + 1.03, + 1.19, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 1.04, + 1.13, + 0 + ] + ] + }, + "desc": "Centaur-class light aircraft carrier – Centaur.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 206040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Centaur", + "painting": "banrenma", + "prefab": "banrenma", + "rarity_bg": "", + "ship_group": 20604, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.11, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 164, + "voice_actor_2": -1 + }, + "206041": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.739, + 1.269, + 0 + ] + ], + "cannon": [ + [ + 0.758, + 1.146, + 0 + ] + ], + "plane": [ + [ + 0.767, + 1.231, + 0 + ] + ], + "torpedo": [ + [ + 0.159, + 0.053, + 0 + ] + ], + "vicegun": [ + [ + 0.758, + 1.146, + 0 + ] + ] + }, + "desc": "Even though I see the ocean every day, changing into this swimsuit gives me a totally new outlook on it. How about you, Commander? Don't you feel at ease?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 206041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + -120, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beachside Undine", + "painting": "banrenma_2", + "prefab": "banrenma_2", + "rarity_bg": "", + "ship_group": 20604, + "ship_l2d_id": "", + "shop_id": 70093, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.481, + 2.325, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 164, + "voice_actor_2": -1 + }, + "206042": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.96, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 1.13, + 0 + ] + ], + "plane": [ + [ + 1.03, + 1.19, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 1.04, + 1.13, + 0 + ] + ] + }, + "desc": "I never imagined you would give me such a splendid dress, Commander... I think it's called a \"qipao...\" is it? I'll try it, revealing though it is. Wh- what do you think...? Do I look... nice?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 206042, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sprightly Spring Wind", + "painting": "banrenma_3", + "prefab": "banrenma_3", + "rarity_bg": "", + "ship_group": 20604, + "ship_l2d_id": "", + "shop_id": 70150, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.11, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 164, + "voice_actor_2": -1 + }, + "206050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.837, + 1.279, + 0 + ] + ], + "cannon": [ + [ + 0.69, + 0.745, + 0 + ] + ], + "plane": [ + [ + 0.767, + 1.231, + 0 + ] + ], + "torpedo": [ + [ + 0.159, + 0.053, + 0 + ] + ], + "vicegun": [ + [ + 0.641, + 0.726, + 0 + ] + ] + }, + "desc": "Attacker-class escort carrier - Chaser (D32)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 206050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + -120, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chaser", + "painting": "zhuiganzhe", + "prefab": "zhuiganzhe", + "rarity_bg": "", + "ship_group": 20605, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.481, + 2.325, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 165, + "voice_actor_2": -1 + }, + "206051": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.739, + 1.269, + 0 + ] + ], + "cannon": [ + [ + 0.758, + 1.146, + 0 + ] + ], + "plane": [ + [ + 0.767, + 1.231, + 0 + ] + ], + "torpedo": [ + [ + 0.159, + 0.053, + 0 + ] + ], + "vicegun": [ + [ + 0.758, + 1.146, + 0 + ] + ] + }, + "desc": "Does this dress from the Dragon Empery not suit me well? Though I was born in the Eagle Union and raised by the Royal Navy, my time in the Dragon Empery also left a deep impression upon me. Why don't we have a chat about their profound culture and tea? Hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 206051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + -120, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Way of the Dragon Empery", + "painting": "zhuiganzhe_2", + "prefab": "zhuiganzhe_2", + "rarity_bg": "", + "ship_group": 20605, + "ship_l2d_id": "", + "shop_id": 70159, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.481, + 2.325, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 165, + "voice_actor_2": -1 + }, + "206052": { + "bg": "105", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.014, + 1.166, + 0 + ] + ], + "cannon": [ + [ + 1.28, + 1.19, + 0 + ] + ], + "torpedo": [ + [ + 0.022, + 0.046, + 0 + ] + ], + "vicegun": [ + [ + 1.012, + 1.146, + 0 + ] + ] + }, + "desc": "Heck yeah! Another achievement down! ...Huh? Good day, Commander. Is there something wrong with my appearance? Hehe, I'm from the Eagle Union after all, of course I'd know a thing or two about entertainment~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 206052, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + -120, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gamer Style", + "painting": "zhuiganzhe_3", + "prefab": "zhuiganzhe_3", + "rarity_bg": "", + "ship_group": 20605, + "ship_l2d_id": "", + "shop_id": 70197, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.498, + 2.586, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 165, + "voice_actor_2": -1 + }, + "206060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.785, + 1.358, + 0 + ] + ], + "cannon": [ + [ + 2.789, + 1.258, + 0 + ] + ], + "plane": [ + [ + 2.785, + 1.301, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.747, + 1.311, + 0 + ] + ] + }, + "desc": "Colossus-class light aircraft carrier – Perseus (HMS Perseus.) ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 206060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + -120, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Perseus ", + "painting": "yingxianzuo", + "prefab": "yingxianzuo", + "rarity_bg": "", + "ship_group": 20606, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.481, + 2.325, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 241, + "voice_actor_2": -1 + }, + "206061": { + "bg": "138", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.339, + 1.165, + 0 + ] + ], + "cannon": [ + [ + 1.367, + 1.065, + 0 + ] + ], + "plane": [ + [ + 1.353, + 1.147, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + -0.008, + 0 + ] + ], + "vicegun": [ + [ + 1.349, + 1.122, + 0 + ] + ] + }, + "desc": "I'm Perseus, I will be your nurse today. Use this button to call for me if you need anything... Yes? Did you need something?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 206061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + -120, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Unfamiliar Duties", + "painting": "yingxianzuo_2", + "prefab": "yingxianzuo_2", + "rarity_bg": "", + "ship_group": 20606, + "ship_l2d_id": "", + "shop_id": 70395, + "shop_type_id": 15, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.481, + 2.325, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 241, + "voice_actor_2": -1 + }, + "206062": { + "bg": "175", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.339, + 1.165, + 0 + ] + ], + "cannon": [ + [ + 1.367, + 1.037, + 0 + ] + ], + "plane": [ + [ + 1.353, + 1.147, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.342, + 1.115, + 0 + ] + ] + }, + "desc": "Whew. Lunar New Year... Easy to grasp in various ways. Both the holiday and your tastes, I mean. Heehee.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 206062, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": [ + 0.5, + 0.5, + 0.5 + ], + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamAngleY": [ + -15, + 15 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -40, + 40, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Spring's Lackadaisical Leisure", + "painting": "yingxianzuo_3", + "prefab": "yingxianzuo_3", + "rarity_bg": "", + "ship_group": 20606, + "ship_l2d_id": [ + 20606201, + 20606202, + 20606203, + 20606204, + 20606205, + 20606206, + 20606207, + 20606208, + 20606209, + 20606210, + 20606211, + 20606212, + 20606213, + 20606214, + 20606215, + 20606216 + ], + "shop_id": 70975, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.439, + 2.304, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 241, + "voice_actor_2": -1 + }, + "206070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.06, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 1.13, + 0 + ] + ], + "plane": [ + [ + 1.27, + 1.19, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 1.04, + 1.13, + 0 + ] + ] + }, + "desc": "Centaur-class light aircraft carrier – Albion.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 206070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Albion", + "painting": "aerbien", + "prefab": "aerbien", + "rarity_bg": "", + "ship_group": 20607, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.12, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 344, + "voice_actor_2": -1 + }, + "206071": { + "bg": "156", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.39, + 1.35, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 1.13, + 0 + ] + ], + "plane": [ + [ + 1.42, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 1.04, + 1.13, + 0 + ] + ] + }, + "desc": "Ah, umm... If you keep staring at me like that... Oh, um, Commander, this is supposed to be a Royalty of the Night costume, right? In that case... Would you mind kneeling for me first?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 206071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Silvermoon Faerie Princess", + "painting": "aerbien_2", + "prefab": "aerbien_2", + "rarity_bg": "", + "ship_group": 20607, + "ship_l2d_id": "", + "shop_id": 70764, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.21, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 344, + "voice_actor_2": -1 + }, + "206072": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.39, + 1.35, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 1.13, + 0 + ] + ], + "plane": [ + [ + 1.42, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 1.04, + 1.13, + 0 + ] + ] + }, + "desc": "Hand brushing my hair behind my ear, eyes toward the camera... Mm, filming promotional material isn't easy... Commander, will this do?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 206072, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 92, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Scent of Spring in the Red Pavilion", + "painting": "aerbien_3", + "prefab": "aerbien_3", + "rarity_bg": "", + "ship_group": 20607, + "ship_l2d_id": [ + 20607201, + 20607202, + 20607203, + 20607204, + 20607205, + 20607206, + 20607207, + 20607208, + 20607209, + 20607210, + 20607211, + 20607212, + 20607213, + 20607214, + 20607215, + 20607216, + 20607217, + 20607218, + 20607219, + 20607220, + 20607221, + 20607222, + 20607223, + 20607224, + 20607225, + 20607226, + 20607227, + 20607228, + 20607229, + 20607230 + ], + "shop_id": 70969, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.21, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 344, + "voice_actor_2": -1 + }, + "206080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.43, + 1.22, + 0 + ] + ], + "cannon": [ + [ + 1.4, + 1.22, + 0 + ] + ], + "plane": [ + [ + 1.35, + 1.28, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.23, + 1.21, + 0 + ] + ] + }, + "desc": "Colossus-class light carrier – Theseus.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 206080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Theseus", + "painting": "texiusi", + "prefab": "texiusi", + "rarity_bg": "", + "ship_group": 20608, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.481, + 2.325, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 352, + "voice_actor_2": -1 + }, + "206081": { + "bg": "165", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.3, + 1.11, + 0 + ] + ], + "cannon": [ + [ + 1.39, + 1.03, + 0 + ] + ], + "plane": [ + [ + 1.47, + 1.33, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.37, + 1.17, + 0 + ] + ] + }, + "desc": "Steaming hot manjuu buns, ready to be served! Let us have a big feast then gather rosebuds, Commander. Oh, a \"holiday gathering\" doesn't involve literal gathering?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 206081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's White Plumage", + "painting": "texiusi_2", + "prefab": "texiusi_2", + "rarity_bg": "", + "ship_group": 20608, + "ship_l2d_id": "", + "shop_id": 70806, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.481, + 2.325, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 352, + "voice_actor_2": -1 + }, + "207010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.466, + 1.186, + 0 + ] + ], + "cannon": [ + [ + 1.462, + 1.16, + 0 + ] + ], + "plane": [ + [ + 1.446, + 1.124, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + -0.018, + 0 + ] + ], + "vicegun": [ + [ + 1.463, + 1.198, + 0 + ] + ] + }, + "desc": "Eagle-class light aircraft carrier – Eagle (HMS Eagle.) ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 207010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + -120, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Eagle ", + "painting": "ying", + "prefab": "ying", + "rarity_bg": "", + "ship_group": 20701, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.481, + 2.325, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 239, + "voice_actor_2": -1 + }, + "207011": { + "bg": "138", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.216, + 0.916, + 0 + ] + ], + "cannon": [ + [ + 1.165, + 0.858, + 0 + ] + ], + "plane": [ + [ + 1.236, + 0.937, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + -0.015, + 0 + ] + ], + "vicegun": [ + [ + 1.201, + 0.822, + 0 + ] + ] + }, + "desc": "This may be an exercise, but even so I will give it my all. Right now, I am not just a Royal Navy warrior, but a medical resident as well. If you ever feel ill, come see me, Commander.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 207011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + -120, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Eagle's Clinic", + "painting": "ying_2", + "prefab": "ying_2", + "rarity_bg": "", + "ship_group": 20701, + "ship_l2d_id": "", + "shop_id": 70399, + "shop_type_id": 15, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.481, + 2.325, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 239, + "voice_actor_2": -1 + }, + "207020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.333, + 1.037, + 0 + ] + ], + "plane": [ + [ + -0.81, + 0.757, + 0 + ] + ] + }, + "desc": "Aircraft carrier – Ark Royal, Hull Number 91!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 207020, + "illustrator": 18, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ark Royal", + "painting": "huangjiafangzhou", + "prefab": "huangjiafangzhou", + "rarity_bg": "", + "ship_group": 20702, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.469, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.34, + 0.854, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "207021": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.93, + 1.3, + 0 + ] + ], + "plane": [ + [ + 0.83, + 1.22, + 0 + ] + ] + }, + "desc": "Nothing says summer like the sun, the beach, and destroyers... Ahem! Th-that's right! Even though we're relaxing, we still have to keep an eye out for enemy destroyers! Commander, I may be in a swimsuit, but I'm ready to sortie at any time!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 207021, + "illustrator": 18, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Coast Watcher", + "painting": "huangjiafangzhou_2", + "prefab": "huangjiafangzhou_2", + "rarity_bg": "", + "ship_group": 20702, + "ship_l2d_id": "", + "shop_id": 70089, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "207022": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.93, + 1.3, + 0 + ] + ], + "plane": [ + [ + 0.83, + 1.22, + 0 + ] + ] + }, + "desc": "One tends to let her guard down at a party like this, but worry not! Put the ball in my hands and let Ark Royal keep you safe!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 207022, + "illustrator": 18, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "expedition": 0.5, + "home": 0.67, + "login": 2.47, + "mail": 0.5, + "main_1": 0.5, + "main_2": 0.5, + "main_3": 0.67, + "mission_complte": 0.5, + "propose": 3, + "task": 0.5, + "touch_1": 1.23, + "touch_2": 0 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 20, + -119, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Guardian of the Ball", + "painting": "huangjiafangzhou_3", + "prefab": "huangjiafangzhou_3", + "rarity_bg": "", + "ship_group": 20702, + "ship_l2d_id": "", + "shop_id": 70184, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "207023": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.793, + 1.144, + 0 + ] + ], + "plane": [ + [ + 1.656, + 1.131, + 0 + ] + ] + }, + "desc": "Commander, Happy New Year. Oh no, I'm not going hunting. I'm patrolling the port during the New Year's celebrations. Naturally, I volunteered for the job.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 207023, + "illustrator": 18, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's Protectress", + "painting": "huangjiafangzhou_4", + "prefab": "huangjiafangzhou_4", + "rarity_bg": "", + "ship_group": 20702, + "ship_l2d_id": "", + "shop_id": 70298, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "207024": { + "bg": "155", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.96, + 1.144, + 0 + ] + ], + "plane": [ + [ + 0.94, + 1.131, + 0 + ] + ] + }, + "desc": "This is the place, Commander. What are you going to order? Me, I think I'll have the same as you... Yeah, so what? I just felt like grabbing a coffee with you for once.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 207024, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Café Lookout", + "painting": "huangjiafangzhou_5", + "prefab": "huangjiafangzhou_5", + "rarity_bg": "", + "ship_group": 20702, + "ship_l2d_id": "", + "shop_id": 70699, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "207028": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.162, + 0.996, + 0 + ] + ], + "plane": [ + [ + 1.155, + 0.989, + 0 + ] + ] + }, + "desc": "I never thought a day would come when even I don such attire... Ahem. Your Excellency, I shall protect your happiness, as well as that of my destroyer sisters!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 207028, + "illustrator": 18, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pure-White Protector", + "painting": "huangjiafangzhou_h", + "prefab": "huangjiafangzhou_h", + "rarity_bg": "", + "ship_group": 20702, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.462, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "207029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.162, + 0.996, + 0 + ] + ], + "plane": [ + [ + 1.155, + 0.989, + 0 + ] + ] + }, + "desc": "Ark Royal retrofitting complete! Now I can protect you, my friends, and of course, the little destroyers, to the very end!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 207029, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ark Royal (Retrofit)", + "painting": "huangjiafangzhou_g", + "prefab": "huangjiafangzhou_g", + "rarity_bg": "", + "ship_group": 20702, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.462, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "207030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.804, + 0.561, + 0 + ] + ], + "plane": [ + [ + -0.205, + 1.344, + 0 + ] + ] + }, + "desc": "Illustrious-class aircraft carrier – Illustrious, Hull Number 87!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 207030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Illustrious", + "painting": "guanghui", + "prefab": "guanghui", + "rarity_bg": "", + "ship_group": 20703, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.38, + 1.09, + -0.39 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.6, + 3.04, + -1.47 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 6, + "voice_actor_2": -1 + }, + "207031": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.35, + 0 + ] + ], + "plane": [ + [ + 1.01, + 1.35, + 0 + ] + ] + }, + "desc": "Sun kissed skin, scrumptious snacks and delicious black tea. It’s as if both my mind and body have been rejuvenated— Commander, care to join me for some leisurely chit-chat?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 207031, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Never-Ending Tea Party", + "painting": "guanghui_2", + "prefab": "guanghui_2", + "rarity_bg": "", + "ship_group": 20703, + "ship_l2d_id": "", + "shop_id": 70021, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + 0.21, + 2.7, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 6, + "voice_actor_2": -1 + }, + "207032": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.35, + 0 + ] + ], + "plane": [ + [ + 1.01, + 1.35, + 0 + ] + ] + }, + "desc": "An invitation to the ball? Hehe, I would be honored to go... as long as you don't decline, Commander~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 207032, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Illustrious Ball", + "painting": "guanghui_3", + "prefab": "guanghui_3", + "rarity_bg": "", + "ship_group": 20703, + "ship_l2d_id": "", + "shop_id": 70106, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 6, + "voice_actor_2": -1 + }, + "207033": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.07, + 1.1, + 0 + ] + ], + "plane": [ + [ + 1.11, + 1.15, + 0 + ] + ] + }, + "desc": "This is my first time wearing such exotic fashion, hehe~. Commander, if you like how I look, how about showing me off a little~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 207033, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Resplendent Hibiscus", + "painting": "guanghui_4", + "prefab": "guanghui_4", + "rarity_bg": "", + "ship_group": 20703, + "ship_l2d_id": "", + "shop_id": 70170, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 6, + "voice_actor_2": -1 + }, + "207035": { + "bg": "128", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.07, + 1.1, + 0 + ] + ], + "plane": [ + [ + 1.11, + 1.15, + 0 + ] + ] + }, + "desc": "It is my honour to get to wear another faction's garments. However... this traditional Dragon Empery dress feels rather tight around the chest area...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 1, + "id": 207035, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Maiden Lily's Radiance", + "painting": "guanghui_5", + "prefab": "guanghui_5", + "rarity_bg": "", + "ship_group": 20703, + "ship_l2d_id": "", + "shop_id": 70306, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 6, + "voice_actor_2": -1 + }, + "207036": { + "bg": "159", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.07, + 1.1, + 0 + ] + ], + "plane": [ + [ + 1.11, + 1.15, + 0 + ] + ] + }, + "desc": "A gentle melody for a peaceful celebration. Today, Commander, I offer this tune to you and the people of the port. May my melody please your ears♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 1, + "id": 207036, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lambent Melody", + "painting": "guanghui_6", + "prefab": "guanghui_6", + "rarity_bg": "", + "ship_group": 20703, + "ship_l2d_id": "", + "shop_id": 70854, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": "", + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 6, + "voice_actor_2": -1 + }, + "207038": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.353, + 0.888, + 0 + ] + ], + "plane": [ + [ + 0.353, + 0.888, + 0 + ] + ] + }, + "desc": "The end of sorrow, the beginning of happiness, and the desire for eternity.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 207038, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Morning Star of Love and Hope", + "painting": "guanghui_h", + "prefab": "guanghui_h", + "rarity_bg": "", + "ship_group": 20703, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.06, + 0.76, + -0.44 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.56, + 2.15, + -1.24 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 6, + "voice_actor_2": -1 + }, + "207040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1, + 1.39, + 0 + ] + ], + "plane": [ + [ + 1.12, + 1.44, + 0 + ] + ] + }, + "desc": "Illustrious-class aircraft carrier – Victorious.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 207040, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Victorious", + "painting": "shengli", + "prefab": "shengli", + "rarity_bg": "", + "ship_group": 20704, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.27, + -1.47 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 94, + "voice_actor_2": -1 + }, + "207041": { + "bg": "105", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1, + 1.39, + 0 + ] + ], + "plane": [ + [ + 1.12, + 1.44, + 0 + ] + ] + }, + "desc": "Hum~ dee dum♪~ I'm all dressed up, and my hair is perfect! Commander, I'm ready to go! Don't keep me waiting on a holiday!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 207041, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Goddess' Day Off", + "painting": "shengli_2", + "prefab": "shengli_2", + "rarity_bg": "", + "ship_group": 20704, + "ship_l2d_id": "", + "shop_id": 70141, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.27, + -1.47 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 94, + "voice_actor_2": -1 + }, + "207042": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.322, + 1.002, + 0 + ] + ], + "plane": [ + [ + 1.318, + 1.008, + 0 + ] + ] + }, + "desc": "Are you preparing to hold an event for the port? Hehe, sounds like you could use my help. Don't worry, with someone as beautiful as me around, anything you do will surely be blessed with success!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 207042, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Guidance of the Spring Goddess", + "painting": "shengli_3", + "prefab": "shengli_3", + "rarity_bg": "", + "ship_group": 20704, + "ship_l2d_id": "", + "shop_id": 70486, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.366, + 2.461, + -1.47 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 94, + "voice_actor_2": -1 + }, + "207043": { + "bg": "172", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.322, + 1.002, + 0 + ] + ], + "plane": [ + [ + 1.318, + 1.008, + 0 + ] + ] + }, + "desc": "*Yaaawn*... Basking in the autumnal night's wind while gazing at the moon is the very definition of elegance, is it not? Heehee. Right now, I am not acting as a Lady of the Royal Navy, but rather as an \"ojou\" of the Sakura Empire elegantly enjoying her tea... Hyeep! Hot?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 207043, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Upon Nights Brisk and Beautiful", + "painting": "shengli_4", + "prefab": "shengli_4", + "rarity_bg": "", + "ship_group": 20704, + "ship_l2d_id": "", + "shop_id": 70927, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.366, + 2.461, + -1.47 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 94, + "voice_actor_2": -1 + }, + "207050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1, + 0.88, + 0 + ] + ], + "plane": [ + [ + 0.85, + 0.77, + 0 + ] + ] + }, + "desc": "Illustrious-class aircraft carrier – Formidable.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 207050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Formidable", + "painting": "kewei", + "prefab": "kewei", + "rarity_bg": "", + "ship_group": 20705, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.19, + -1.47 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "207051": { + "bg": "106", + "bg_sp": "1103", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1, + 0.72, + 0 + ] + ], + "plane": [ + [ + 0.84, + 0.73, + 0 + ] + ] + }, + "desc": "Good day, Commander. I am Formidable, third ship of the Illustrious class. Pleased to make your acquaintance.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 207051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Lady of the Beach", + "painting": "kewei_2", + "prefab": "kewei_2", + "rarity_bg": "", + "ship_group": 20705, + "ship_l2d_id": "", + "shop_id": 70230, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.27, + -1.47 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "207052": { + "bg": "146", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.21, + 1.21, + 0 + ] + ], + "plane": [ + [ + 1.2, + 1.21, + 0 + ] + ] + }, + "desc": "Yes, this will do wonderfully! Thank you, ladies. Phew... Getting dressed is so dreadfully time-consuming... Ahem! How silly of me. I must not whine in the presence of others.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 207052, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Timeless Classics", + "painting": "kewei_3", + "prefab": "kewei_3", + "rarity_bg": "", + "ship_group": 20705, + "ship_l2d_id": "", + "shop_id": 70554, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.24, + -1.47 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "207060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.18, + 0.7, + 0 + ] + ], + "plane": [ + [ + 1.12, + 1.44, + 0 + ] + ] + }, + "desc": "Courageous-class aircraft carrier – Glorious, Hull Number 77.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 207060, + "illustrator": 39, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Glorious", + "painting": "guangrong", + "prefab": "guangrong", + "rarity_bg": "", + "ship_group": 20706, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.28, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 113, + "voice_actor_2": -1 + }, + "207061": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.11, + 0.77, + 0 + ] + ], + "plane": [ + [ + 1.12, + 1.44, + 0 + ] + ] + }, + "desc": "Being able to occasionally have a peaceful school life... is something I could get used to. Commander, look at the markings on this butterfly - aren't they lovely?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 207061, + "illustrator": 39, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Glorious School Life", + "painting": "Guangrong_2", + "prefab": "Guangrong_2", + "rarity_bg": "", + "ship_group": 20706, + "ship_l2d_id": "", + "shop_id": 70065, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.51, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 113, + "voice_actor_2": -1 + }, + "207062": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.003, + 0.995, + 0 + ] + ], + "plane": [ + [ + 0.991, + 0.996, + 0 + ] + ] + }, + "desc": "I heard that the Sakura Empire's traditional attire was really hard to put on... but the Dragon's Empery's outfits are even more... Huh?! Commander, p-please look away!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 207062, + "illustrator": 39, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamBodyAngleX": [ + -15, + 15 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "home": 2, + "login": 2.87, + "main_1": 0.5, + "mission": 0.33, + "touch2": 2.33 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pungent Plum", + "painting": "guangrong_3", + "prefab": "guangrong_3", + "rarity_bg": "", + "ship_group": 20706, + "ship_l2d_id": "", + "shop_id": 70490, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.494, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 113, + "voice_actor_2": -1 + }, + "207070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.37, + 1.16, + 0 + ] + ], + "plane": [ + [ + 1.29, + 1.12, + 0 + ] + ] + }, + "desc": "Implacable-class aircraft carrier – Implacable.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 207070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Implacable", + "painting": "yuanchou", + "prefab": "yuanchou", + "rarity_bg": "", + "ship_group": 20707, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.19, + -1.47 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_yuanchou", + [ + 1074, + 1737, + 0 + ], + [ + 2.4 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -47, + -373, + 0 + ], + [ + 1.05 + ] + ], + "tag": [], + "time": "", + "voice_actor": 356, + "voice_actor_2": -1 + }, + "207071": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1, + 0.88, + 0 + ] + ], + "plane": [ + [ + 0.85, + 0.77, + 0 + ] + ] + }, + "desc": "Oh my... It seems I've shown you a rather unseemly side of me. Would you help me clean up here, Commander? You know... before any of the other girls find out. Heehee~♥", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 207071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shepherd of the \"Lost\"", + "painting": "yuanchou_2", + "prefab": "yuanchou_2", + "rarity_bg": "", + "ship_group": 20707, + "ship_l2d_id": "", + "shop_id": 70822, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.19, + -1.47 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_yuanchou_2", + [ + 456, + 822, + 0 + ], + [ + 1.1 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -76, + -710, + 0 + ], + [ + 1.4 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 356, + "voice_actor_2": -1 + }, + "207090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.529, + 0.93, + 0 + ] + ], + "plane": [ + [ + 1.443, + 1.09, + 0 + ] + ] + }, + "desc": "Illustrious-class aircraft carrier – Illustrious, Hull Number 87.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 207090, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Illustrious", + "painting": "guanghui_younv", + "prefab": "guanghui_younv", + "rarity_bg": "", + "ship_group": 20709, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.15, + -0.39 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 6, + "voice_actor_2": -1 + }, + "207110": { + "bg": "140", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.296, + 0.992, + 0 + ] + ], + "plane": [ + [ + 1.257, + 0.989, + 0 + ] + ] + }, + "desc": "I am the newest addition to the Muse System, Illustrious. Through my songs, I shall spread the light of love and peace— Don't you think that's a wonderful thing?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 207110, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Illustrious μ", + "painting": "guanghui_idol", + "prefab": "guanghui_idol", + "rarity_bg": "", + "ship_group": 20711, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.406, + -0.39 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 6, + "voice_actor_2": -1 + }, + "207120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.296, + 0.992, + 0 + ] + ], + "plane": [ + [ + 1.257, + 0.989, + 0 + ] + ] + }, + "desc": "Illustrious-class aircraft carrier – Indomitable.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 207120, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Indomitable", + "painting": "bunao", + "prefab": "bunao", + "rarity_bg": "", + "ship_group": 20712, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.406, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 317, + "voice_actor_2": -1 + }, + "207121": { + "bg": "150", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.296, + 0.992, + 0 + ] + ], + "plane": [ + [ + 1.257, + 0.989, + 0 + ] + ] + }, + "desc": "*Sigh*... I thought changing into maid attire would break up the monotony, but just getting into these clothes has tired me out... Oh, Commander? You came at a good time. Shall we slack off together?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 207121, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ms. Motivationless Maid", + "painting": "bunao_2", + "prefab": "bunao_2", + "rarity_bg": "", + "ship_group": 20712, + "ship_l2d_id": "", + "shop_id": 70696, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 317, + "voice_actor_2": -1 + }, + "207130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.296, + 0.992, + 0 + ] + ], + "plane": [ + [ + 1.257, + 0.989, + 0 + ] + ] + }, + "desc": "Illustrious-class aircraft carrier – Formidable.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 207130, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Formidable", + "painting": "kewei_younv", + "prefab": "kewei_younv", + "rarity_bg": "", + "ship_group": 20713, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.406, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "213010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.84, + 0.445, + 0 + ] + ], + "cannon": [ + [ + 1.226, + 1.3, + 0 + ] + ], + "vicegun": [ + [ + 2.52, + 0.954, + 0 + ] + ] + }, + "desc": "Erebus-class monitor – Erebus, Hull Number I02!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 213010, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Erebus", + "painting": "heianjie", + "prefab": "heianjie", + "rarity_bg": "", + "ship_group": 21301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.06, + -0.173, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.162, + 0.936, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "213011": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.9, + 0.66, + 0 + ] + ], + "cannon": [ + [ + 0.9, + 1.3, + 0 + ] + ], + "vicegun": [ + [ + 0.9, + 0.66, + 0 + ] + ] + }, + "desc": "Those who embrace the shadows will find only an illusory happiness... But for me, that much is sufficient.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 213011, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Illusory Happiness", + "painting": "heianjie_2", + "prefab": "heianjie_2", + "rarity_bg": "", + "ship_group": 21301, + "ship_l2d_id": "", + "shop_id": 70001, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "213012": { + "bg": "119", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.402, + 0.772, + 0 + ] + ], + "cannon": [ + [ + 1.346, + 0.811, + 0 + ] + ], + "vicegun": [ + [ + 1.352, + 0.753, + 0 + ] + ] + }, + "desc": "\"I am the witch of Hallow's Eve, here to guide your soul into the ever darkness\"... that's what the concept of the Halloween witch is about, right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 213012, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Wardrobe Witchery", + "painting": "heianjie_3", + "prefab": "heianjie_3", + "rarity_bg": "", + "ship_group": 21301, + "ship_l2d_id": "", + "shop_id": 70255, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.264, + 2.121, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "213020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.5, + 0.8, + 0 + ], + [ + -0.5, + 0.8, + 0 + ] + ], + "cannon": [ + [ + 1.115, + 1.3, + 0 + ] + ], + "plane": [ + [ + -0.5, + 0.5, + 0 + ] + ], + "torpedo": [ + [ + 0.181, + -0.188, + 0 + ] + ], + "vicegun": [ + [ + 0.5, + 0.8, + 0 + ] + ] + }, + "desc": "Erebus-class monitor – Terror, Hull Number I03!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 213020, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Terror", + "painting": "kongbu", + "prefab": "kongbu", + "rarity_bg": "", + "ship_group": 21302, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 1, + "voice_actor_2": -1 + }, + "213021": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.864, + 0.968, + 0 + ] + ], + "cannon": [ + [ + 1.329, + 1.057, + 0 + ] + ], + "plane": [ + [ + 1.11, + 1.157, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.246, + 1.033, + 0 + ] + ] + }, + "desc": "I have to dress up as a ghost for Halloween, but I'm not very good at making complicated costumes... Is something like this okay?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 213021, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Halloween Terror", + "painting": "kongbu_2", + "prefab": "kongbu_2", + "rarity_bg": "", + "ship_group": 21302, + "ship_l2d_id": "", + "shop_id": 70115, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.528, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 1, + "voice_actor_2": -1 + }, + "213040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.09, + 0.51, + 0 + ] + ], + "cannon": [ + [ + 1.65, + 3.46, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + -0.09, + 0.55, + 0 + ] + ] + }, + "desc": "Roberts-class monitor - Abercrombie. Hull Number F109.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 213040, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Abercrombie", + "painting": "abeikelongbi", + "prefab": "abeikelongbi", + "rarity_bg": "", + "ship_group": 21304, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.5, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 105, + "voice_actor_2": -1 + }, + "213041": { + "bg": "119", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.795, + 3.137, + 0 + ] + ], + "cannon": [ + [ + 1.868, + 3.337, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + -0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.723, + 3.272, + 0 + ] + ] + }, + "desc": "Kabooom! You thought it was a pumpkin, but it was me, Abercrombie, with my Mark I! Commander, did I scare you senseless? Muahaha!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 213041, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pumpkin Blast!", + "painting": "abeikelongbi_2", + "prefab": "abeikelongbi_2", + "rarity_bg": "", + "ship_group": 21304, + "ship_l2d_id": "", + "shop_id": 70256, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.346, + 2.301, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 105, + "voice_actor_2": -1 + }, + "213042": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.267, + 1.567, + 0 + ] + ], + "cannon": [ + [ + 1.383, + 3.526, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.311, + 1.612, + 0 + ] + ] + }, + "desc": "Now for a ghost pepper while nobody's looking... Tee hee! Perfect! I wonder who'll be the lucky one to sip– C-Commander?! You didn't see anything suspicious... Right? Tee hee~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 213042, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mischief on the Rocks", + "painting": "abeikelongbi_3", + "prefab": "abeikelongbi_3", + "rarity_bg": "", + "ship_group": 21304, + "ship_l2d_id": "", + "shop_id": 70585, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.535, + 2.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 105, + "voice_actor_2": -1 + }, + "231210": { + "bg": "161", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.188, + 0.988, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0.016, + 0 + ] + ] + }, + "desc": "Tadah! I've got a banquet dress! Heehee~ I decided to go with something refined and voguish this time, as opposed to cute! I mean, it's a dress fit for a banquet, so I think it makes me look pretty grown-up.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 10, + "gyro": 0, + "hand_id": 13, + "id": 231210, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Different Dance", + "painting": "biaoqiang_9", + "prefab": "biaoqiang_9", + "rarity_bg": "", + "ship_group": 20121, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "236030": { + "bg": "159", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 1.26, + 0 + ] + ], + "cannon": [ + [ + 1.27, + 1.44, + 0 + ] + ], + "plane": [ + [ + 1.21, + 1.17, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.3, + 1.31, + 0 + ] + ] + }, + "desc": "Big brother...? I was just practicing my trumpet, if you were wondering... Umm, what do you think? I hope you like my trumpeting...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 10, + "gyro": 0, + "hand_id": 13, + "id": 236030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blissful Movement", + "painting": "dujiaoshou_9", + "prefab": "dujiaoshou_9", + "rarity_bg": "", + "ship_group": 20603, + "ship_l2d_id": "", + "shop_id": 70859, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": "", + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "299010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.48, + 1.33, + 0 + ] + ], + "cannon": [ + [ + -0.45, + 1.33, + 0 + ] + ], + "torpedo": [ + [ + 0.22, + 0.1, + 0 + ] + ] + }, + "desc": "Light cruiser – Neptune.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 299010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Neptune", + "painting": "haiwangxing", + "prefab": "haiwangxing", + "rarity_bg": "", + "ship_group": 29901, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.43, + 2.22, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 103, + "voice_actor_2": -1 + }, + "299011": { + "bg": "125", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.472, + 1.399, + 0 + ] + ], + "cannon": [ + [ + 1.607, + 1.385, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + 0, + 0 + ] + ] + }, + "desc": "Hehe~ I usually let the other girls have all the glory, but even I must sometimes give you something to remember me by. Merry Christmas, Commander~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 299011, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Princess of the Reindeers", + "painting": "haiwangxing_2", + "prefab": "haiwangxing_2", + "rarity_bg": "", + "ship_group": 29901, + "ship_l2d_id": "", + "shop_id": 70276, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.22, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 103, + "voice_actor_2": -1 + }, + "299012": { + "bg": "161", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.149, + 1.278, + 0 + ] + ], + "cannon": [ + [ + 1.174, + 0.479, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + 0, + 0 + ] + ] + }, + "desc": "Welcome to our celebration, Commander. At this breathtaking venue, I, Neptune, shall be the one to show you around, rather than the Royal Maids. Heehee~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 299012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nereid's Invitation", + "painting": "haiwangxing_3", + "prefab": "haiwangxing_3", + "rarity_bg": "", + "ship_group": 29901, + "ship_l2d_id": "", + "shop_id": 70751, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.805, + 1.672, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 103, + "voice_actor_2": -1 + }, + "299020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.2, + 1.31, + 0 + ] + ], + "cannon": [ + [ + -0.17, + 1.35, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.12, + 0 + ] + ] + }, + "desc": "Battleship – Monarch.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 299020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Monarch", + "painting": "junzhu", + "prefab": "junzhu", + "rarity_bg": "", + "ship_group": 29902, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.52, + 2.13, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 104, + "voice_actor_2": -1 + }, + "299021": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.895, + 0.93, + 0 + ] + ], + "cannon": [ + [ + 1.912, + 0.956, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.12, + 0 + ] + ] + }, + "desc": "Hmph. One's outfit is merely superficial. True nobility must come from within. Don't you agree, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 299021, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "White Warrick", + "painting": "junzhu_2", + "prefab": "junzhu_2", + "rarity_bg": "", + "ship_group": 29902, + "ship_l2d_id": "", + "shop_id": 70071, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.52, + 2.13, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 104, + "voice_actor_2": -1 + }, + "299022": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.208, + 0.842, + 0 + ] + ], + "cannon": [ + [ + 2.235, + 0.829, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.12, + 0 + ] + ] + }, + "desc": "So, an Eastern outfit this time... Hmph. My nobility is evident regardless of what I wear. However, since you prepared this outfit especially for me, it would be unbecoming of me to not express my gratitude. Thank you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 299022, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Black Gerard", + "painting": "junzhu_3", + "prefab": "junzhu_3", + "rarity_bg": "", + "ship_group": 29902, + "ship_l2d_id": "", + "shop_id": 70151, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.608, + 2.316, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 104, + "voice_actor_2": -1 + }, + "299030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.409, + 1.21, + 0 + ] + ], + "cannon": [ + [ + 1.43, + 1.114, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0.009, + 0 + ] + ], + "vicegun": [ + [ + 1.485, + 1.196, + 0 + ] + ] + }, + "desc": "Heavy cruiser – Cheshire.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 299030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cheshire", + "painting": "chaijun", + "prefab": "chaijun", + "rarity_bg": "", + "ship_group": 29903, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.378, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 30, + "voice_actor_2": -1 + }, + "299031": { + "bg": "133", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.409, + 1.167, + 0 + ] + ], + "cannon": [ + [ + 1.43, + 1.078, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0.009, + 0 + ] + ], + "vicegun": [ + [ + 1.485, + 1.082, + 0 + ] + ] + }, + "desc": "Cheer up, Owner! Jeez, why are you so bummed out when we're at the beach... Because it's just a normal playdate instead of a romantic date? What's the difference anyway? C'mon, let's go head down to where the others are~! ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 299031, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summery Date! ", + "painting": "chaijun_2", + "prefab": "chaijun_2", + "rarity_bg": "", + "ship_group": 29903, + "ship_l2d_id": "", + "shop_id": 70403, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.378, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 30, + "voice_actor_2": -1 + }, + "299032": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.517, + 0.992, + 0 + ] + ], + "cannon": [ + [ + 1.498, + 1.004, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + -0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.485, + 1.008, + 0 + ] + ] + }, + "desc": "I'll sing a song for you, Owner~ Ahem... Wait, I'm not sure I know any Dragon Empery songs, actually...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 299032, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "touch2": 1 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -110, + -80, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cait Sith Crooner", + "painting": "chaijun_3", + "prefab": "chaijun_3", + "rarity_bg": "", + "ship_group": 29903, + "ship_l2d_id": "", + "shop_id": 70481, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.488, + 2.587, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 30, + "voice_actor_2": -1 + }, + "299033": { + "bg": "", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 1.26, + 0 + ] + ], + "cannon": [ + [ + 1.29, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0.009, + 0 + ] + ], + "vicegun": [ + [ + 1.22, + 0.94, + 0 + ] + ] + }, + "desc": "\"Owner~ I've come to take you to the ball~\" ...That's exactly what you were going to do? Eh, doesn't matter who does it~ All that matters is we'll be there together~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 299033, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -6, + 30 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + 50, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Cat and the White Steed", + "painting": "chaijun_4", + "prefab": "chaijun_4", + "rarity_bg": "", + "ship_group": 29903, + "ship_l2d_id": "", + "shop_id": 70599, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.73, + 2.41, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1 + ], + "time": "", + "voice_actor": 30, + "voice_actor_2": -1 + }, + "299040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.393, + 1.115, + 0 + ] + ], + "cannon": [ + [ + 1.389, + 1.027, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.384, + 1.02, + 0 + ] + ] + }, + "desc": "Heavy cruiser – Drake.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 299040, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Drake", + "painting": "deleike", + "prefab": "deleike", + "rarity_bg": "", + "ship_group": 29904, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.602, + 2.308, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_deleike", + [ + 28.6, + -35.8, + 0 + ], + [ + 1 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 58, + -456, + 0 + ], + [ + 0.65 + ] + ], + "tag": [], + "time": "", + "voice_actor": 80, + "voice_actor_2": -1 + }, + "299041": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.393, + 1.115, + 0 + ] + ], + "cannon": [ + [ + 1.389, + 1.027, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.384, + 1.02, + 0 + ] + ] + }, + "desc": "Phew... Swimming like this doesn't feel all that refreshing... Hey, how about you stop staring and come join me? ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 299041, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Golden Hind's Respite ", + "painting": "deleike_2", + "prefab": "deleike_2", + "rarity_bg": "", + "ship_group": 29904, + "ship_l2d_id": "", + "shop_id": 70402, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.602, + 2.308, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 80, + "voice_actor_2": -1 + }, + "299050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Light Cruiser—Plymouth", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 299050, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Plymouth", + "painting": "pulimaosi", + "prefab": "pulimaosi", + "rarity_bg": "", + "ship_group": 29905, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.507, + -0.16 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_pulimaosi", + [ + -114, + 236, + 0 + ], + [ + 1.9 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -113, + -775, + 0 + ], + [ + 0.86 + ] + ], + "tag": [], + "time": "", + "voice_actor": 327, + "voice_actor_2": -1 + }, + "299051": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Rejoice, Commander. I have no doubt that this refreshing sensation will bring you the utmost satisfaction. Come, let us enjoy this experience together.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 299051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Heart-Throbbing Refreshment", + "painting": "pulimaosi_2", + "prefab": "pulimaosi_2", + "rarity_bg": "", + "ship_group": 29905, + "ship_l2d_id": "", + "shop_id": 70781, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.44, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 327, + "voice_actor_2": -1 + }, + "301010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.98, + 1.05, + 0 + ] + ], + "cannon": [ + [ + 0.98, + 1.05, + 0 + ] + ], + "torpedo": [ + [ + 0.25, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.98, + 1.05, + 0 + ] + ] + }, + "desc": "Special type I {namecode:2} Destroyer Class— {namecode:2}", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301010, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fubuki", + "painting": "chuixue", + "prefab": "chuixue", + "rarity_bg": "", + "ship_group": 30101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "301011": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0.83, + 0 + ] + ], + "cannon": [ + [ + 0.03, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + -0.02, + 0.78, + 0 + ] + ] + }, + "desc": "Oh no! I-I'm gonna be late for school! Y-you need to speed up too, doggy! *Pant*... *pant*... Why'd none of my sisters wake me up before they left?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301011, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "5 Minutes Till I'm Late", + "painting": "chuixue_2", + "prefab": "chuixue_2", + "rarity_bg": "", + "ship_group": 30101, + "ship_l2d_id": "", + "shop_id": 70055, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "301012": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0.83, + 0 + ] + ], + "cannon": [ + [ + 0.03, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + -0.02, + 0.78, + 0 + ] + ] + }, + "desc": "\"C-come on in! We've got special offers for you!\" ... W-wait, is this really what a \"sexy mascot\" would wear? It feels pretty different from what I was expecting... And boy, is it stuffy in this thing...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301012, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mascot Bucky", + "painting": "chuixue_4", + "prefab": "chuixue_4", + "rarity_bg": "", + "ship_group": 30101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "301013": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -1.17, + 3, + 0 + ] + ], + "cannon": [ + [ + 1.39, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 1.39, + 0.88, + 0 + ] + ] + }, + "desc": "Check it out, Commander! What do you think? ... No, not my dress! I'm talking about the tuba! Want me to play a tune for you~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301013, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 15, + -95, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Music Pixy", + "painting": "chuixue_3", + "prefab": "chuixue_3", + "rarity_bg": "", + "ship_group": 30101, + "ship_l2d_id": "", + "shop_id": 70096, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "301014": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.996, + 0.997, + 0 + ] + ], + "cannon": [ + [ + 0.992, + 0.992, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 0.996, + 0.987, + 0 + ] + ] + }, + "desc": "The whole world's going to feel the tremors from my debut! I'm Fubuki, the Special-type idol!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 14, + "id": 301014, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fubuki Halation!", + "painting": "chuixue_5", + "prefab": "chuixue_5", + "rarity_bg": "", + "ship_group": 30101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "301015": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.283, + 1.129, + 0 + ] + ], + "cannon": [ + [ + 1.317, + 1.201, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.244, + 1.157, + 0 + ] + ] + }, + "desc": "Welcome, welcome! Oh, Commander! I've actually started working here part-time, but I'm still learning— Wooah?! Phew... Th-that was a close one...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 14, + "id": 301015, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Stormy Waitress-in-Training!", + "painting": "chuixue_6", + "prefab": "chuixue_6", + "rarity_bg": "", + "ship_group": 30101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "301020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.211, + 1.025, + 0 + ] + ], + "cannon": [ + [ + 1.154, + 1.014, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.229, + 1.007, + 0 + ] + ] + }, + "desc": "Special Type I-class destroyer number two – Shirayuki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301020, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shirayuki", + "painting": "baixue", + "prefab": "baixue", + "rarity_bg": "", + "ship_group": 30102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.479, + 2.515, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 278, + "voice_actor_2": -1 + }, + "301021": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.995, + 1.413, + 0 + ] + ], + "cannon": [ + [ + 2.012, + 1.356, + 0 + ] + ], + "torpedo": [ + [ + 0.015, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.999, + 1.371, + 0 + ] + ] + }, + "desc": "Whoa now! There's enough food for everyone, so don't fight over it! ...Commander? Don't just stand there, give me a hand, please!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301021, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bunny Breeder", + "painting": "baixue_2", + "prefab": "baixue_2", + "rarity_bg": "", + "ship_group": 30102, + "ship_l2d_id": "", + "shop_id": 70562, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.442, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 278, + "voice_actor_2": -1 + }, + "301040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.491, + 1.043, + 0 + ] + ], + "cannon": [ + [ + 1.628, + 1.241, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.482, + 1.155, + 0 + ] + ] + }, + "desc": "Special Type I Fubuki-class destroyer number four – Miyuki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Miyuki", + "painting": "shenxue", + "prefab": "shenxue", + "rarity_bg": "", + "ship_group": 30104, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 342, + "voice_actor_2": -1 + }, + "301041": { + "bg": "160", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.353, + 0.897, + 0 + ] + ], + "cannon": [ + [ + 1.629, + 1.327, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.482, + 1.189, + 0 + ] + ] + }, + "desc": "Commander, I think the goods over here are a bit cheaper... Umm, I'm doing fine on my budget still, so we can pick out some more things to buy. A-also, I'll get to spend more time shopping with you... Ah, d-disregard that please... *blushes*", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shopping Rendezvous", + "painting": "shenxue_2", + "prefab": "shenxue_2", + "rarity_bg": "", + "ship_group": 30104, + "ship_l2d_id": "", + "shop_id": 70743, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.391, + 2.297, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 342, + "voice_actor_2": -1 + }, + "301042": { + "bg": "529", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.45, + 1.46, + 0 + ] + ], + "cannon": [ + [ + 1.53, + 1.24, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.56, + 1.26, + 0 + ] + ] + }, + "desc": "C-Commander, I'm ready any time... You think my outfit's cute...? Th-thank you... Heheh, I got it just for our date... Umm, I figured hiding my bandages might help ward off my bad luck...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301042, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Clear Skies and Crepes", + "painting": "shenxue_3", + "prefab": "shenxue_3", + "rarity_bg": "", + "ship_group": 30104, + "ship_l2d_id": "", + "shop_id": 70963, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.391, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 342, + "voice_actor_2": -1 + }, + "301050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.98, + 1.05, + 0 + ] + ], + "cannon": [ + [ + 0.98, + 1.05, + 0 + ] + ], + "torpedo": [ + [ + 0.25, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.98, + 1.05, + 0 + ] + ] + }, + "desc": "First ship of special Type II {namecode:6} class destroyers, {namecode:6}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301050, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ayanami", + "painting": "lingbo", + "prefab": "lingbo", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "301051": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.34, + 0.74, + 0 + ] + ], + "cannon": [ + [ + 1.34, + 0.74, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 1.34, + 0.74, + 0 + ] + ] + }, + "desc": "I heard that... I need to wear a costume like this to participate in Halloween festivities. Commander... do I look cute?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301051, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Witch in Ambush", + "painting": "lingbo_2", + "prefab": "lingbo_2", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 70019, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.65, + 2.74, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "301053": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.55, + 0.41, + 0 + ] + ], + "cannon": [ + [ + 1.57, + 0.46, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.54, + 0.43, + 0 + ] + ] + }, + "desc": "Commander, want to listen to music together? Do you like... this non-combat-oriented Ayanami?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301053, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rock 'n' Demon", + "painting": "Lingbo_4", + "prefab": "Lingbo_4", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 70061, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.63, + 2.53, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "301054": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.286, + 1.026, + 0 + ] + ], + "cannon": [ + [ + 1.286, + 1.007, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.228, + 0.977, + 0 + ] + ] + }, + "desc": "Compared to the way we celebrate New Year in the Sakura Empire, the festivities of the Dragon Empery have a completely different atmosphere... But, I don't really mind the liveliness... Commander, do you like festivals?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 14, + "id": 301054, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lunar Demon", + "painting": "lingbo_5", + "prefab": "lingbo_5", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 70153, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.63, + 2.53, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "301055": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.99, + 1.01, + 0 + ] + ], + "cannon": [ + [ + 1, + 1.007, + 0 + ] + ], + "torpedo": [ + [ + -0.03, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 1.05, + 0.977, + 0 + ] + ] + }, + "desc": "\"Welcome, Commander...\" I should greet customers like this... yes?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 14, + "id": 301055, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Grade A Sailor Uniform", + "painting": "lingbo_6", + "prefab": "lingbo_6", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 70177, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.55, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "301056": { + "bg": "", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.99, + 1.01, + 0 + ] + ], + "cannon": [ + [ + 1, + 1.007, + 0 + ] + ], + "torpedo": [ + [ + -0.03, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 1.05, + 0.977, + 0 + ] + ] + }, + "desc": "Ayanami here. Successfully infiltrated Commander's office. Oh... Commander saw me. Operation failed...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 14, + "id": 301056, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Covert Ops Cloak", + "painting": "lingbo_9", + "prefab": "lingbo_9", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 4, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.55, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "301057": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.127, + 1.026, + 0 + ] + ], + "cannon": [ + [ + 1.152, + 1.049, + 0 + ] + ], + "torpedo": [ + [ + -0.007, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.119, + 1.069, + 0 + ] + ] + }, + "desc": "I guess I'm making my idol debut? Um, Javelin and the others are making their debuts, so, I also had to... Commander, what are idols supposed to do normally?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 7, + "gyro": 0, + "hand_id": 14, + "id": 301057, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Low-Key Idol @Confused", + "painting": "lingbo_7", + "prefab": "lingbo_7", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 70263, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.63, + 2.53, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "301058": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 0.97, + 0 + ] + ], + "cannon": [ + [ + 1.21, + 0.95, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.36, + 0.96, + 0 + ] + ] + }, + "desc": "This dress is... {namecode:6}’s. I'm not used to this dress yet... Commander, do you think it fits me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 14, + "id": 301058, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Demon's Finest Dress", + "painting": "lingbo_h", + "prefab": "lingbo_h", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.63, + 2.53, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "301059": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.1, + 1.25, + 0 + ] + ], + "cannon": [ + [ + 0.1, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 0.1, + 1.25, + 0 + ] + ] + }, + "desc": "Ayanami, retrofit complete. I feel stronger, yes... Having that said, Commander, can you pat my head? I want to be spoiled a bit...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 301059, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ayanami (Retrofit)", + "painting": "lingbo_g", + "prefab": "lingbo_g", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.26, + 2.54, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "301090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.886, + 1.158, + 0 + ] + ], + "cannon": [ + [ + 0.886, + 1.158, + 0 + ] + ], + "torpedo": [ + [ + 0.103, + 0.017 + ] + ], + "vicegun": [ + [ + 0.886, + 1.158, + 0 + ] + ] + }, + "desc": "Type III {namecode:11}-class destroyer number one - {namecode:11}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301090, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Akatsuki", + "painting": "xiao", + "prefab": "xiao", + "rarity_bg": "", + "ship_group": 30109, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.416, + 2.325, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "301091": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.94, + 0.95, + 0 + ] + ], + "cannon": [ + [ + 0.97, + 0.88, + 0 + ] + ], + "torpedo": [ + [ + 0.103, + 0.017, + 0 + ] + ], + "vicegun": [ + [ + 0.9, + 0.99, + 0 + ] + ] + }, + "desc": "Is this the place called the Northern Parliament?! It is colder than I thought... Th-thank goodness I brought gear for extreme environments! Hibiki, please wait a bit longer! Your sister is coming to see you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301091, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Akatsuki Goes North", + "painting": "xiao_2", + "prefab": "xiao_2", + "rarity_bg": "", + "ship_group": 30109, + "ship_l2d_id": "", + "shop_id": 70108, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "301092": { + "bg": "118", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.731, + 0.95, + 0 + ] + ], + "cannon": [ + [ + 0.685, + 0.982, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + 0.017, + 0 + ] + ], + "vicegun": [ + [ + 0.723, + 0.99, + 0 + ] + ] + }, + "desc": "What do you think, Commander? I have a brand new outfit and a brand new companion! I am no longer a plain old ninja... I am now a motoninja!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301092, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Motoninja Akatsuki", + "painting": "xiao_3", + "prefab": "xiao_3", + "rarity_bg": "", + "ship_group": 30109, + "ship_l2d_id": "", + "shop_id": 70248, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "301093": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.85, + 1.04, + 0 + ] + ], + "cannon": [ + [ + 0.78, + 0.982, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + 0.017, + 0 + ] + ], + "vicegun": [ + [ + 0.88, + 0.94, + 0 + ] + ] + }, + "desc": "Look out! Move, Commander! ...Phew. To explain, I am helping Santa give out Christmas presents! Now excuse me, I cannot tarry here or I'll be late... Wait, have I come to the wrong place? WHAT?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301093, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Santa's Lost Helper!", + "painting": "xiao_4", + "prefab": "xiao_4", + "rarity_bg": "", + "ship_group": 30109, + "ship_l2d_id": "", + "shop_id": 70627, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "301094": { + "bg": "108", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.08, + 1.24, + 0 + ] + ], + "cannon": [ + [ + 1.02, + 1.158, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.02, + 1.22, + 0 + ] + ] + }, + "desc": "Welcome, Commander, to DesDiv 6's tent of entertainment! For our first act, I shall perform for you my most stunning ninjutsu! ...\"Circus\"? I've never heard of this word before!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 14, + "id": 301094, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cirque de Ninjutsu!", + "painting": "xiao_5", + "prefab": "xiao_5", + "rarity_bg": "", + "ship_group": 30109, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.416, + 2.325, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "301100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.886, + 1.158, + 0 + ] + ], + "cannon": [ + [ + 0.886, + 1.158, + 0 + ] + ], + "torpedo": [ + [ + 0.103, + 0.017 + ] + ], + "vicegun": [ + [ + 0.886, + 1.158, + 0 + ] + ] + }, + "desc": "Type III Akatsuki-class destroyer number two – Hibiki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hibiki", + "painting": "xiang", + "prefab": "xiang", + "rarity_bg": "", + "ship_group": 30110, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.416, + 2.325, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 182, + "voice_actor_2": -1 + }, + "301101": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.886, + 1.158, + 0 + ] + ], + "cannon": [ + [ + 0.886, + 1.158, + 0 + ] + ], + "torpedo": [ + [ + 0.103, + 0.017 + ] + ], + "vicegun": [ + [ + 0.886, + 1.158, + 0 + ] + ] + }, + "desc": "New Year's finally comes to port! I, Hibiki of the 6th DesDiv, will be marking my new arrival in my New Year's attire! Commander, don't you dare change the channel - you've gotta watch my every move~!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301101, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's Little Imp", + "painting": "xiang_2", + "prefab": "xiang_2", + "rarity_bg": "", + "ship_group": 30110, + "ship_l2d_id": "", + "shop_id": 70290, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.416, + 2.325, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 182, + "voice_actor_2": -1 + }, + "301110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.5, + 0.8, + 0 + ], + [ + -0.5, + 0.8, + 0 + ] + ], + "cannon": [ + [ + -0.058, + 0.761, + 0 + ] + ], + "plane": [ + [ + -0.5, + 0.5, + 0 + ] + ], + "torpedo": [ + [ + 0.472, + 0.337, + 0 + ] + ], + "vicegun": [ + [ + 0.5, + 0.8, + 0 + ] + ] + }, + "desc": "Type III Akatsuki-class destroyer number three - Ikazuchi.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301110, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ikazuchi", + "painting": "lei", + "prefab": "lei", + "rarity_bg": "", + "ship_group": 30111, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.12, + 0.82, + -0.47 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0, + 2.76, + -1.59 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 55, + "voice_actor_2": -1 + }, + "301111": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.77, + 0.69, + 0 + ] + ], + "cannon": [ + [ + 0.77, + 0.69, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.05, + 0 + ] + ], + "vicegun": [ + [ + 0.77, + 0.69, + 0 + ] + ] + }, + "desc": "{namecode:13}, {namecode:13} has been transformed into tea! What should we do! {namecode:14} and {namecode:13} will get slurped up by the Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301111, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sakura Tea", + "painting": "lei_2", + "prefab": "lei_2", + "rarity_bg": "", + "ship_group": 30111, + "ship_l2d_id": "", + "shop_id": 70022, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.37, + 2.54, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 55, + "voice_actor_2": -1 + }, + "301112": { + "bg": "114", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.77, + 0.69, + 0 + ] + ], + "cannon": [ + [ + 0.77, + 0.69, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.05, + 0 + ] + ], + "vicegun": [ + [ + 0.77, + 0.69, + 0 + ] + ] + }, + "desc": "Inazuma and I have been to a lot of festivals together, but this would be the first time that I've gone with you, Commander. Isn't this totally like a date?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301112, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Thunderous Festival", + "painting": "lei_3", + "prefab": "lei_3", + "rarity_bg": "", + "ship_group": 30111, + "ship_l2d_id": "", + "shop_id": 70220, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.405, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 55, + "voice_actor_2": -1 + }, + "301113": { + "bg": "135", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.479, + 1.2, + 0 + ] + ], + "cannon": [ + [ + 1.492, + 1.157, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.507, + 1.15, + 0 + ] + ] + }, + "desc": "I'm the fairy of thunder that shatters the night to herald the dawn! I see, I see! That is a good backstory! Commander, want to head to the party together?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301113, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dawn's Thunder", + "painting": "lei_4", + "prefab": "lei_4", + "rarity_bg": "", + "ship_group": 30111, + "ship_l2d_id": "", + "shop_id": 70431, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.575, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 55, + "voice_actor_2": -1 + }, + "301114": { + "bg": "142", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.479, + 1.2, + 0 + ] + ], + "cannon": [ + [ + 1.407, + 1.136, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.422, + 1.129, + 0 + ] + ] + }, + "desc": "Commander, I've worn what you asked me to– Oh, I see, I see. So this is what they call a \"maid kink,\" right? Is that what you're into now, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 14, + "id": 301114, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Courtyard Maid Ikazuchi", + "painting": "lei_5", + "prefab": "lei_5", + "rarity_bg": "", + "ship_group": 30111, + "ship_l2d_id": "", + "shop_id": 70972, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.473, + 2.511, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 55, + "voice_actor_2": -1 + }, + "301120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.96, + 0.74, + 0 + ] + ], + "cannon": [ + [ + 0.96, + 0.74, + 0 + ] + ], + "torpedo": [ + [ + 0.472, + 0.337, + 0 + ] + ], + "vicegun": [ + [ + 0.96, + 0.74, + 0 + ] + ] + }, + "desc": "Type III Akatsuki-class destroyer number four - Inazuma.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301120, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Inazuma", + "painting": "dian", + "prefab": "dian", + "rarity_bg": "", + "ship_group": 30112, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.29, + 0.78, + -0.45 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0, + 2.67, + -1.54 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 70, + "voice_actor_2": -1 + }, + "301121": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.77, + 0.69, + 0 + ] + ], + "cannon": [ + [ + 0.77, + 0.69, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.05, + 0 + ] + ], + "vicegun": [ + [ + 0.77, + 0.69, + 0 + ] + ] + }, + "desc": "It doesn’t matter if {namecode:14} becomes Mr. Commander's dessert… but if {namecode:14} cannot be found, Mr. Commander will feel so devastated, perhaps he won’t be able to command the fleet… so… please! Please convey {namecode:14}'s heartfelt wish to Mr. Commander——", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301121, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vanilla Pudding", + "painting": "dian_2", + "prefab": "dian_2", + "rarity_bg": "", + "ship_group": 30112, + "ship_l2d_id": "", + "shop_id": 70023, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.37, + 2.54, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 70, + "voice_actor_2": -1 + }, + "301122": { + "bg": "114", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.77, + 0.69, + 0 + ] + ], + "cannon": [ + [ + 0.77, + 0.69, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.007, + 0 + ] + ], + "vicegun": [ + [ + 0.77, + 0.69, + 0 + ] + ] + }, + "desc": "I usually go to festivals with Ikazuchi, but this would be my first time going with you. Hmm? Where should we visit first?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301122, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Flash of Fireworks", + "painting": "dian_3", + "prefab": "dian_3", + "rarity_bg": "", + "ship_group": 30112, + "ship_l2d_id": "", + "shop_id": 70221, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.37, + 2.54, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 70, + "voice_actor_2": -1 + }, + "301123": { + "bg": "135", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.089, + 0.874, + 0 + ] + ], + "cannon": [ + [ + 1.068, + 0.888, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.007, + 0 + ] + ], + "vicegun": [ + [ + 1.117, + 0.91, + 0 + ] + ] + }, + "desc": "I'm the fairy of lightning that illuminates the stars in the night sky... So that's what we're going with, huh. Commander, will you accompany me to the party?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301123, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dusk's Lightning", + "painting": "dian_4", + "prefab": "dian_4", + "rarity_bg": "", + "ship_group": 30112, + "ship_l2d_id": "", + "shop_id": 70432, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.497, + 2.54, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 70, + "voice_actor_2": -1 + }, + "301130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.5, + 0.8, + 0 + ], + [ + -0.5, + 0.8, + 0 + ] + ], + "cannon": [ + [ + -0.058, + 0.761, + 0 + ] + ], + "plane": [ + [ + -0.5, + 0.5, + 0 + ] + ], + "torpedo": [ + [ + 0.472, + 0.337, + 0 + ] + ], + "vicegun": [ + [ + 0.5, + 0.8, + 0 + ] + ] + }, + "desc": "{namecode:15}-class destroyer number one - {namecode:15}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301130, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shiratsuyu", + "painting": "bailu", + "prefab": "bailu", + "rarity_bg": "", + "ship_group": 30113, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 25, + "voice_actor_2": -1 + }, + "301131": { + "bg": "104", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.77, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 0.8, + 0.82, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.14, + 0 + ] + ], + "vicegun": [ + [ + 0.65, + 0.8, + 0 + ] + ] + }, + "desc": "H-here they come... Your order, and your cutesy dutesy maid... Whoaahh! I'm sorry! Look out!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301131, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Is The Order A Torpedo?", + "painting": "Bailu_2", + "prefab": "Bailu_2", + "rarity_bg": "", + "ship_group": 30113, + "ship_l2d_id": "", + "shop_id": 70062, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.45, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 25, + "voice_actor_2": -1 + }, + "301140": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.553, + 0.9, + 0 + ] + ], + "cannon": [ + [ + -0.129, + 0.484, + 0 + ] + ], + "torpedo": [ + [ + 0.537, + 0.371, + 0 + ] + ] + }, + "desc": "{namecode:15}-class destroyer number four - {namecode:16}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301140, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yuudachi", + "painting": "xili", + "prefab": "xili", + "rarity_bg": "", + "ship_group": 30114, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.505, + 0.392, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.429, + 0.371, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 17, + "voice_actor_2": -1 + }, + "301141": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.62, + 1.06, + 0 + ] + ], + "cannon": [ + [ + 0.62, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0.05, + 0.1, + 0 + ] + ] + }, + "desc": "Come out of your office, Commander! You'll become lazy if you huddle up next to the heater all day! Let's go out and play in the snow!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301141, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shogun of Snowballs", + "painting": "xili_2", + "prefab": "xili_2", + "rarity_bg": "", + "ship_group": 30114, + "ship_l2d_id": "", + "shop_id": 70037, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 17, + "voice_actor_2": -1 + }, + "301143": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.347, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 0.339, + 0 + ] + ], + "torpedo": [ + [ + 0.05, + 0.051, + 0 + ] + ] + }, + "desc": "Commander, look at me, look at me! What do you think of my new outfit? If you like it, wanna give it a feel?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301143, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Carnivore Carnival!", + "painting": "xili_4", + "prefab": "xili_4", + "rarity_bg": "", + "ship_group": 30114, + "ship_l2d_id": "", + "shop_id": 70241, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 17, + "voice_actor_2": -1 + }, + "301144": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.309, + 1.038, + 0 + ] + ], + "cannon": [ + [ + 1.301, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + 0.008, + -0.003, + 0 + ] + ] + }, + "desc": "Christmas! The day Santa Claus drops by and leaves presents, right? Hell yeah, I'm pumped! Aren't you pumped too, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 14, + "id": 301144, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Woofy Floofy Christmas Night", + "painting": "xili_5", + "prefab": "xili_5", + "rarity_bg": "", + "ship_group": 30114, + "ship_l2d_id": "", + "shop_id": 70452, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.521, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 17, + "voice_actor_2": -1 + }, + "301148": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.62, + 1.06, + 0 + ] + ], + "cannon": [ + [ + 0.62, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0.05, + 0.1, + 0 + ] + ] + }, + "desc": " Commander, look! Look at this new dress. Red and white, I really really like it! But what's the occasion?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 14, + "id": 301148, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Bride of Solomon", + "painting": "xili_h", + "prefab": "xili_h", + "rarity_bg": "", + "ship_group": 30114, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 17, + "voice_actor_2": -1 + }, + "301149": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.99, + 1.24, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0.05, + 0.1, + 0 + ] + ] + }, + "desc": "Woof...? Am I imagining it, or did you get shorter, Commander? Unless... it's me who's gotten bigger? Seriously?! Nobody told me retrofitting makes you taller!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 301149, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yuudachi (Retrofit)", + "painting": "xili_g", + "prefab": "xili_g", + "rarity_bg": "", + "ship_group": 30114, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_xiligai", + [ + -146, + 35, + 0 + ], + [ + 1 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -78, + -529, + 0 + ], + [ + 0.8 + ] + ], + "tag": [], + "time": "", + "voice_actor": 17, + "voice_actor_2": -1 + }, + "301150": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.106, + 0.832, + 0 + ] + ], + "cannon": [ + [ + -0.106, + 0.832, + 0 + ] + ], + "torpedo": [ + [ + 0.439, + 0.416, + 0 + ] + ] + }, + "desc": "{namecode:15}-class destroyer number two - {namecode:17}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301150, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shigure", + "painting": "shiyu", + "prefab": "shiyu", + "rarity_bg": "", + "ship_group": 30115, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.438, + 0.495, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.327, + 0.978, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 13, + "voice_actor_2": -1 + }, + "301151": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.106, + 0.832, + 0 + ] + ], + "cannon": [ + [ + -0.106, + 0.832, + 0 + ] + ], + "torpedo": [ + [ + 0.439, + 0.416, + 0 + ] + ] + }, + "desc": "Stupid Commander, I'm not a damn submarine! Do you wanna get hit in the face with an oxygen torpedo?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301151, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Attack, I-490!", + "painting": "shiyu_2", + "prefab": "shiyu_2", + "rarity_bg": "", + "ship_group": 30115, + "ship_l2d_id": "", + "shop_id": 70006, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.438, + 0.495, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.327, + 0.978, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 13, + "voice_actor_2": -1 + }, + "301152": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.96, + 0.76, + 0 + ] + ], + "cannon": [ + [ + 1.01, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + -0.02, + 0.09, + 0 + ] + ] + }, + "desc": "Oh my. Commander, you must be pretty lucky to bump into me here, hehe~ Since you're here, you can have the privilege of being my escort tonight. Now, be grateful~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301152, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Ballroom's Lucky Star", + "painting": "shiyu_3", + "prefab": "shiyu_3", + "rarity_bg": "", + "ship_group": 30115, + "ship_l2d_id": "", + "shop_id": 70192, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.327, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 13, + "voice_actor_2": -1 + }, + "301153": { + "bg": "104", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.989, + 1.025, + 0 + ] + ], + "cannon": [ + [ + 1.01, + 0.972, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "All right, that should be good... Hey, stupid Commander standing around aimlessly. Yeah, you. Stick your hand out. You're gonna be the first person to get MY chocolate, so I'd better see some tears of gratitude.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301153, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lucky Chocolate", + "painting": "shiyu_4", + "prefab": "shiyu_4", + "rarity_bg": "", + "ship_group": 30115, + "ship_l2d_id": "", + "shop_id": 70666, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 13, + "voice_actor_2": -1 + }, + "301159": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.069, + 1.196, + 0 + ] + ], + "cannon": [ + [ + 1.065, + 1.181, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Heheh~ Retrofitting the mighty Shigure proves that you are quite perceptive! Aren't you glad that you get to rely on me more, you lucky idiot of a commander~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 301159, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shigure (Retrofit)", + "painting": "shiyu_g", + "prefab": "shiyu_g", + "rarity_bg": "", + "ship_group": 30115, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.327, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 13, + "voice_actor_2": -1 + }, + "301160": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.39, + 0.71, + 0 + ] + ], + "cannon": [ + [ + 1.31, + 0.62, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.08, + 0 + ] + ] + }, + "desc": "Kagerou-class Destroyer no. 8 - Yukikaze", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301160, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yukikaze", + "painting": "xuefeng", + "prefab": "xuefeng", + "rarity_bg": "", + "ship_group": 30116, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.36, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "301161": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.02, + 0.6, + 0 + ] + ], + "cannon": [ + [ + -0.02, + 0.6, + 0 + ] + ], + "torpedo": [ + [ + -0.02, + 0.6, + 0 + ] + ] + }, + "desc": "Wa ha ha! My \"universal-as-long-as-there-is-a-ceiling\" swing set is finally complete! Commander, are you jealous? Want to give it a try? Too~ bad~! This seat is reserved only for the noble and elegant Yukikaze!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301161, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sovereign of the Swing", + "painting": "xuefeng_2", + "prefab": "xuefeng_2", + "rarity_bg": "", + "ship_group": 30116, + "ship_l2d_id": "", + "shop_id": 70057, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.266, + 0.329, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "301162": { + "bg": "127", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.17, + 1.34, + 0 + ] + ], + "cannon": [ + [ + 1.12, + 1.18, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + 0.049, + 0 + ] + ] + }, + "desc": "Wa ha ha~! Did your heart skip a beat from seeing the charming Yukikaze? Hmph... Well, looks like the Dragon Empery girls are setting off firecrackers... let's go join them! Here, make sure to hold on to my hand!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301162, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "expedition": 0.3, + "mail": 0.3, + "mission_complete": 0.26, + "touch2": 0.33 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -19.9, + -52.5, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Winter's Snowy Wind", + "painting": "xuefeng_3", + "prefab": "xuefeng_3", + "rarity_bg": "", + "ship_group": 30116, + "ship_l2d_id": "", + "shop_id": 70301, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.29, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "301168": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.459, + 0.997, + 0 + ] + ], + "cannon": [ + [ + 0.44, + 0.967, + 0 + ] + ], + "torpedo": [ + [ + 0.147, + 0.049, + 0 + ] + ] + }, + "desc": "This outfit is sooo cute~ ehehe... Ack!! *cough* *cough*! Ahem! From now on, you are the faithful companion of Yukikaze the Great! As such, you will not be permitted to leave my side, understood?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 14, + "id": 301168, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Warmth of Spring", + "painting": "xuefeng_h", + "prefab": "xuefeng_h", + "rarity_bg": "", + "ship_group": 30116, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "301170": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.325, + 3.238, + 0 + ] + ], + "cannon": [ + [ + 1.763, + 1.074, + 0 + ] + ], + "torpedo": [ + [ + 0.113, + 0.355, + 0 + ] + ] + }, + "desc": "{namecode:19}-class destroyer number one - {namecode:19}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301170, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kagerou", + "painting": "yangyan", + "prefab": "yangyan", + "rarity_bg": "", + "ship_group": 30117, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.345, + 0.855, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 1.238, + 0.352, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 141, + "voice_actor_2": -1 + }, + "301171": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.24, + 1.25, + 0 + ] + ], + "cannon": [ + [ + 1.24, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0.09, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 1.24, + 1.25, + 0 + ] + ] + }, + "desc": "Commander, trick or treat! I expect you to give some candy to my sisters as well! These will-o'-wisps? Hahaha~ I tried imitating that gloomy sister of mine!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301171, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pumpkins and Festivities!", + "painting": "yangyan_2", + "prefab": "yangyan_2", + "rarity_bg": "", + "ship_group": 30117, + "ship_l2d_id": "", + "shop_id": 70020, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.32, + 2.53, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 141, + "voice_actor_2": -1 + }, + "301179": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.14, + 3.2, + 0 + ] + ], + "cannon": [ + [ + 1.73, + 1.27, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.15, + 0 + ] + ] + }, + "desc": "The newly-retrofitted Kagerou has arrived~ I won't let that sister of mine pass me up anymore! Commander, lead us forward towards distant shores!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 301179, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kagerou (Retrofit)", + "painting": "yangyan_g", + "prefab": "yangyan_g", + "rarity_bg": "", + "ship_group": 30117, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.58, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 141, + "voice_actor_2": -1 + }, + "301180": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.061, + 3.147, + 0 + ] + ], + "cannon": [ + [ + 0.076, + 0.9, + 0 + ] + ], + "torpedo": [ + [ + 0.47, + 0.355, + 0 + ] + ] + }, + "desc": "{namecode:19}-class destroyer number two - {namecode:20}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301180, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shiranui", + "painting": "buzhihuo", + "prefab": "buzhihuo", + "rarity_bg": "", + "ship_group": 30118, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.78, + 0.455, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.367, + 0.65, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 133, + "voice_actor_2": -1 + }, + "301181": { + "bg": "115", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.47, + 1.09, + 0 + ] + ], + "cannon": [ + [ + 1.46, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.2, + 0 + ] + ] + }, + "desc": "I see a chance... to capitalize on the Dragon Empery's famous mooncakes... Commander, would you like to have a taste of the Moon Palace's delicacies? If you buy them in bulk, I'll give you a special discount.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301181, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mooncake Merchant", + "painting": "buzhihuo_2", + "prefab": "buzhihuo_2", + "rarity_bg": "", + "ship_group": 30118, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.16, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 133, + "voice_actor_2": -1 + }, + "301189": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.18, + 3.26, + 0 + ] + ], + "cannon": [ + [ + -0.27, + 0.57, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.09, + 0 + ] + ] + }, + "desc": "If you have this much money remaining... then you may visit me and spend it with confidence... A discount, you say...? Of course... Someday, I shall give you one...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 301189, + "illustrator": 13, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shiranui (Retrofit)", + "painting": "buzhihuo_g", + "prefab": "buzhihuo_g", + "rarity_bg": "", + "ship_group": 30118, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.58, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 133, + "voice_actor_2": -1 + }, + "301200": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.38, + 0.95, + 0 + ] + ], + "cannon": [ + [ + 0.38, + 0.95, + 0 + ] + ], + "torpedo": [ + [ + 0.1, + -0.02, + 0 + ] + ] + }, + "desc": "{namecode:19}-class destroyer number fifteen - {namecode:24}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301200, + "illustrator": 37, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nowaki", + "painting": "yefen", + "prefab": "yefen", + "rarity_bg": "", + "ship_group": 30120, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.24, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 70, + "voice_actor_2": -1 + }, + "301210": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.14, + 0 + ] + ], + "torpedo": [ + [ + 0.4, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 1.16, + 1.14, + 0 + ] + ] + }, + "desc": "{namecode:30}-class destroyer number one – {namecode:30}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301210, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hatsuharu", + "painting": "chuchun", + "prefab": "chuchun", + "rarity_bg": "", + "ship_group": 30121, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.19, + 0.62, + -0.31 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.49, + 1.8, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 52, + "voice_actor_2": -1 + }, + "301211": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 1.13, + 0 + ] + ], + "cannon": [ + [ + 0.9, + 1.41, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 1.05, + 1.32, + 0 + ] + ] + }, + "desc": "Everyone's playing together...? I-I think I'll pass... Y-you want me to join them? Ugh, well, if you say so, then I-I-I'll try to socialize with them...!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301211, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Snow Day Hatsuharu", + "painting": "chuchun_2", + "prefab": "chuchun_2", + "rarity_bg": "", + "ship_group": 30121, + "ship_l2d_id": "", + "shop_id": 70139, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.25, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 52, + "voice_actor_2": -1 + }, + "301212": { + "bg": "146", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 1.169, + 0 + ] + ], + "cannon": [ + [ + 1.048, + 1.262, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.05, + 1.29, + 0 + ] + ] + }, + "desc": "C-Commander, I will be your partner for the party tonight. Let's see, umm... I believe this is proper Royal Navy etiquette... D-did I do it correctly?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301212, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hatsuharu in the Limelight", + "painting": "chuchun_3", + "prefab": "chuchun_3", + "rarity_bg": "", + "ship_group": 30121, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.577, + 2.436, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 52, + "voice_actor_2": -1 + }, + "301213": { + "bg": "160", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 1.169, + 0 + ] + ], + "cannon": [ + [ + 1.048, + 1.262, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.05, + 1.29, + 0 + ] + ] + }, + "desc": "U-umm... In order to conquer shyness, umm, I've come to serve you... I just hope I don't get in everyone's way... Y-yeah! Thank you for your encouraging words! I'll do my best...!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301213, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hatsuharu's Cat Café Caper", + "painting": "chuchun_4", + "prefab": "chuchun_4", + "rarity_bg": "", + "ship_group": 30121, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.577, + 2.436, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 52, + "voice_actor_2": -1 + }, + "301219": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 1.13, + 0 + ] + ], + "cannon": [ + [ + 0.9, + 1.41, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 1.05, + 1.32, + 0 + ] + ] + }, + "desc": "Hatsuharu, retrofit complete... H-hopefully I'm a little bit stronger now...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 301219, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hatsuharu (Retrofit)", + "painting": "chuchun_g", + "prefab": "chuchun_g", + "rarity_bg": "", + "ship_group": 30121, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.25, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 52, + "voice_actor_2": -1 + }, + "301230": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.83, + 0.59, + 0 + ] + ], + "cannon": [ + [ + 0.83, + 0.59, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.83, + 0.59, + 0 + ] + ] + }, + "desc": "Hatsuharu-class destroyer number three – Wakaba.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301230, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Wakaba", + "painting": "ruoye", + "prefab": "ruoye", + "rarity_bg": "", + "ship_group": 30123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 115, + "voice_actor_2": -1 + }, + "301231": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.205, + 1.193, + 0 + ] + ], + "cannon": [ + [ + 1.165, + 1.126, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.172, + 1.199, + 0 + ] + ] + }, + "desc": "Yaho~ Good morning, Commander! For a limited time only, Wakaba Claus will be delivering Christmas presents! Huh? My bag? Aaahhh! C-Commander, help me pick everything up!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301231, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Holiday Special Wakaba!", + "painting": "ruoye_2", + "prefab": "ruoye_2", + "rarity_bg": "", + "ship_group": 30123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 115, + "voice_actor_2": -1 + }, + "301232": { + "bg": "103", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.97, + 1.01, + 0 + ] + ], + "cannon": [ + [ + 1.05, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.91, + 1.07, + 0 + ] + ] + }, + "desc": "Hmmgh! Oh yeah... Ah, there you are, Commander! Care to join me? Come bask in the afternoon sunshine, it feels great!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301232, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Healthy Dose of Sunshine!", + "painting": "ruoye_3", + "prefab": "ruoye_3", + "rarity_bg": "", + "ship_group": 30123, + "ship_l2d_id": "", + "shop_id": 70681, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 115, + "voice_actor_2": -1 + }, + "301240": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.1, + 0.72, + 0 + ] + ], + "cannon": [ + [ + 0.02, + 0.7, + 0 + ] + ], + "torpedo": [ + [ + 0.25, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 0.04, + 0.72, + 0 + ] + ] + }, + "desc": "Hatsuharu-class Destroyer, number 4 - Hatsushimo", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301240, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hatsushimo", + "painting": "chushuang", + "prefab": "chushuang", + "rarity_bg": "", + "ship_group": 30124, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 180, + "voice_actor_2": -1 + }, + "301242": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.231, + 0.912, + 0 + ] + ], + "cannon": [ + [ + 1.258, + 0.862, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.217, + 0.889, + 0 + ] + ] + }, + "desc": "Cheers, Commander~ C'mere, you've got to enjoy the party too! If you're thinking of doing something tactless like running off to go back to work, people are going to get upset with you~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301242, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Perennial Joy", + "painting": "chushuang_2", + "prefab": "chushuang_2", + "rarity_bg": "", + "ship_group": 30124, + "ship_l2d_id": "", + "shop_id": 70429, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 180, + "voice_actor_2": -1 + }, + "301249": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.575, + 1.256, + 0 + ] + ], + "cannon": [ + [ + 1.502, + 1.151, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.505, + 1.124, + 0 + ] + ] + }, + "desc": "Hatsushimo's retrofitting is complete. You don't think I look all that different? Oh, Commander, you're still as simple as ever~ I've changed in tons of ways beyond what's just on the surface. Heheheh~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 301249, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hatsushimo (Retrofit)", + "painting": "chushuang_g", + "prefab": "chushuang_g", + "rarity_bg": "", + "ship_group": 30124, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.25, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 180, + "voice_actor_2": -1 + }, + "301250": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.94, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 1.04, + 0.89, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.99, + 0.91, + 0 + ] + ] + }, + "desc": "Hatsuharu-class destroyer no. 5 - Ariake", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301250, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ariake", + "painting": "youming", + "prefab": "youming", + "rarity_bg": "", + "ship_group": 30125, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 155, + "voice_actor_2": -1 + }, + "301251": { + "bg": "135", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.209, + 0.984, + 0 + ] + ], + "cannon": [ + [ + 1.187, + 1.006, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + -0.006, + 0 + ] + ], + "vicegun": [ + [ + 1.216, + 1.008, + 0 + ] + ] + }, + "desc": "Hope everyone enjoys the oodles of balloons I made for this party! Yeah, I'm sure the little girls will love 'em!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301251, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Unending Friendship", + "painting": "youming_2", + "prefab": "youming_2", + "rarity_bg": "", + "ship_group": 30125, + "ship_l2d_id": "", + "shop_id": 70430, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 155, + "voice_actor_2": -1 + }, + "301259": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.151, + 1.129, + 0 + ] + ], + "cannon": [ + [ + 1.146, + 1.107, + 0 + ] + ], + "torpedo": [ + [ + -0.012, + 0.006, + 0 + ] + ], + "vicegun": [ + [ + 1.095, + 1.108, + 0 + ] + ] + }, + "desc": "Ah... So this is what it feels like to be retrofitted. I'll work harder for your sake, and for everyone in the 27th Destroyer Division~ ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 301259, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ariake (Retrofit) ", + "painting": "youming_g", + "prefab": "youming_g", + "rarity_bg": "", + "ship_group": 30125, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 155, + "voice_actor_2": -1 + }, + "301260": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.14, + 0 + ] + ], + "torpedo": [ + [ + 0.4, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 1.16, + 1.14, + 0 + ] + ] + }, + "desc": "Sixth ship of {namecode:30} class Destroyer— {namecode:32}", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301260, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yuugure", + "painting": "ximu", + "prefab": "ximu", + "rarity_bg": "", + "ship_group": 30126, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.19, + 0.62, + -0.31 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.49, + 1.8, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 51, + "voice_actor_2": -1 + }, + "301261": { + "bg": "104", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.571, + 1.13, + 0 + ] + ], + "cannon": [ + [ + 1.599, + 1.178, + 0 + ] + ], + "torpedo": [ + [ + 0.753, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 1.561, + 1.13, + 0 + ] + ] + }, + "desc": "\"I, Yuugure the maid, shall dedicate myself to Ariake, my sister, and you, Commander!\"... Eek?! M-my skirt...!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301261, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Maid-In-Training!", + "painting": "Ximu_2", + "prefab": "Ximu_2", + "rarity_bg": "", + "ship_group": 30126, + "ship_l2d_id": "", + "shop_id": 70063, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.47, + 2.29, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 51, + "voice_actor_2": -1 + }, + "301262": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.014, + 0.768, + 0 + ] + ], + "cannon": [ + [ + 1.013, + 0.807, + 0 + ] + ], + "torpedo": [ + [ + 0.147, + 0.021, + 0 + ] + ], + "vicegun": [ + [ + 1.014, + 0.739, + 0 + ] + ] + }, + "desc": "The Dragon Empery's New Year celebrations and new outfits are sure to lift everyone's spirits~ My sister will probably love this new dress as well. Commander, what do you think?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301262, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Twilight Blossom", + "painting": "ximu_3", + "prefab": "ximu_3", + "rarity_bg": "", + "ship_group": 30126, + "ship_l2d_id": "", + "shop_id": 70152, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.47, + 2.29, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 51, + "voice_actor_2": -1 + }, + "301263": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.014, + 0.768, + 0 + ] + ], + "cannon": [ + [ + 1.013, + 0.807, + 0 + ] + ], + "torpedo": [ + [ + 0.147, + 0.021, + 0 + ] + ], + "vicegun": [ + [ + 1.014, + 0.739, + 0 + ] + ] + }, + "desc": "I finished changing, Commander. This dress is very pretty, but... isn't it missing something up top?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301263, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Evening Flower", + "painting": "ximu_4", + "prefab": "ximu_4", + "rarity_bg": "", + "ship_group": 30126, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.29, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 51, + "voice_actor_2": -1 + }, + "301264": { + "bg": "114", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.478, + 1.013, + 0 + ] + ], + "cannon": [ + [ + 1.477, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + -0.009, + 0 + ] + ], + "vicegun": [ + [ + 1.488, + 1.014, + 0 + ] + ] + }, + "desc": "Woah... These stalls have all sorts of amazing things~ Commander, will you help me pick a gift out for Ariake? Hm, let's see... How about this Daruma doll?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 14, + "id": 301264, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Festival Shopping", + "painting": "ximu_6", + "prefab": "ximu_6", + "rarity_bg": "", + "ship_group": 30126, + "ship_l2d_id": "", + "shop_id": 70580, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.31, + 2.615, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 51, + "voice_actor_2": -1 + }, + "301265": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.478, + 1.013, + 0 + ] + ], + "cannon": [ + [ + 1.477, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + -0.009, + 0 + ] + ], + "vicegun": [ + [ + 1.488, + 1.014, + 0 + ] + ] + }, + "desc": "I was really looking forward to playing with you at the beach, Commander, so I changed into this swimsuit. Umm... Ariake told me that I had to choose something that was easy to move around in, and cute enough to make you lose your mind... Was she pulling my leg?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 14, + "id": 301265, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fun in the Sun", + "painting": "ximu_5", + "prefab": "ximu_5", + "rarity_bg": "", + "ship_group": 30126, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.31, + 2.615, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 51, + "voice_actor_2": -1 + }, + "301269": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.577, + 0.804, + 0 + ] + ], + "cannon": [ + [ + 1.512, + 0.78, + 0 + ] + ], + "torpedo": [ + [ + 0.038, + -0.043, + 0 + ] + ], + "vicegun": [ + [ + 1.513, + 0.83, + 0 + ] + ] + }, + "desc": "Ariake-class destroyer, Yuugure, has completed retrofitting. Ehehe, from now on... Ariake and I will be in your care once more, Commander.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 301269, + "illustrator": 27, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yuugure (Retrofit)", + "painting": "ximu_g", + "prefab": "ximu_g", + "rarity_bg": "", + "ship_group": 30126, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.29, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 51, + "voice_actor_2": -1 + }, + "301270": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.08, + 0.94, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 0.94, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.08, + 0.94, + 0 + ] + ] + }, + "desc": "Kagerou-class destroyer number three – Kuroshio.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301270, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kuroshio", + "painting": "heichao", + "prefab": "heichao", + "rarity_bg": "", + "ship_group": 30127, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 118, + "voice_actor_2": -1 + }, + "301280": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.08, + 0.97, + 0 + ] + ], + "cannon": [ + [ + 0.08, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.11, + 0.14, + 0 + ] + ], + "vicegun": [ + [ + 0.08, + 0.97, + 0 + ] + ] + }, + "desc": "Kagerou-class destroyer number four – Oyashio.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301280, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Oyashio", + "painting": "qinchao", + "prefab": "qinchao", + "rarity_bg": "", + "ship_group": 30128, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 118, + "voice_actor_2": -1 + }, + "301290": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.188, + 0.97, + 0 + ] + ], + "cannon": [ + [ + 1.188, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.11, + 0.14, + 0 + ] + ], + "vicegun": [ + [ + 1.188, + 0.97, + 0 + ] + ] + }, + "desc": "Shimakaze-class destroyer – Shimakaze.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301290, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shimakaze", + "painting": "daofeng", + "prefab": "daofeng", + "rarity_bg": "", + "ship_group": 30129, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_daofeng", + [ + -27, + -22, + 0 + ], + [ + 1.2 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 10, + -518, + 0 + ], + [ + 0.82 + ] + ], + "tag": [], + "time": "", + "voice_actor": 284, + "voice_actor_2": -1 + }, + "301291": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.188, + 0.97, + 0 + ] + ], + "cannon": [ + [ + 1.188, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.014, + 0.024, + 0 + ] + ], + "vicegun": [ + [ + 1.188, + 0.97, + 0 + ] + ] + }, + "desc": "Hippity hoppity! Grab a glass and have a sippity! Whew, I must say, this outfit was tricky to get into. Still, you made an exquisite pick, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301291, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 30 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -20, + -90, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "World's Speediest Bunny Waitress", + "painting": "daofeng_4", + "prefab": "daofeng_4", + "rarity_bg": "", + "ship_group": 30129, + "ship_l2d_id": "", + "shop_id": 70589, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 284, + "voice_actor_2": -1 + }, + "301292": { + "bg": "158", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.026, + 1.031, + 0 + ] + ], + "cannon": [ + [ + 1.235, + 0.977, + 0 + ] + ], + "torpedo": [ + [ + 0.117, + 0.093, + 0 + ] + ], + "vicegun": [ + [ + 1.12, + 0.909, + 0 + ] + ] + }, + "desc": "Whoa-whoa-whoa! Why'd I end up here again?! Even though I've been running for a whole hour! ...Commander?! Waaaah, I'm so glad to see you! Please, help me get out of heeeeeeere!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301292, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -20, + 15 + ], + "ParamAngleY": [ + -20, + 20 + ], + "ParamBodyAngleY": [ + -5, + 5 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The White Rabbit of Wonderland", + "painting": "daofeng_5", + "prefab": "daofeng_5", + "rarity_bg": "", + "ship_group": 30129, + "ship_l2d_id": [ + 3012921, + 3012922, + 3012923, + 3012924 + ], + "shop_id": 70713, + "shop_type_id": 19, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.504, + 2.311, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 284, + "voice_actor_2": -1 + }, + "301293": { + "bg": "164", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.188, + 1.35, + 0 + ] + ], + "cannon": [ + [ + 1.188, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.188, + 0.97, + 0 + ] + ] + }, + "desc": "You can't keep sprinting across the sea forever. Sometimes, you need to rest and recover your strength. Speaking of, you may use my parasol if you like, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301293, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Island Wind Rests", + "painting": "daofeng_3", + "prefab": "daofeng_3", + "rarity_bg": "", + "ship_group": 30129, + "ship_l2d_id": "", + "shop_id": 70785, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.79, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 284, + "voice_actor_2": -1 + }, + "301294": { + "bg": "165", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.188, + 1.35, + 0 + ] + ], + "cannon": [ + [ + 1.188, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.188, + 0.97, + 0 + ] + ] + }, + "desc": "Oh no! Commander, look out! ...Phew. That was really close. Apologies for my clear lack of attentiveness! I shouldn't have been in such a rush to deliver all these mooncakes...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 14, + "id": 301294, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Clumsy Moon Rabbit", + "painting": "daofeng_6", + "prefab": "daofeng_6", + "rarity_bg": "", + "ship_group": 30129, + "ship_l2d_id": "", + "shop_id": 70915, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.77, + 2.58, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 284, + "voice_actor_2": -1 + }, + "301300": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.2, + 1.19, + 0 + ] + ], + "cannon": [ + [ + -0.2, + 1.19, + 0 + ] + ], + "torpedo": [ + [ + 0.159, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + -0.2, + 1.19, + 0 + ] + ] + }, + "desc": "{namecode:124}-class destroyer number one – {namecode:124}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301300, + "illustrator": 33, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kamikaze", + "painting": "shenfeng", + "prefab": "shenfeng", + "rarity_bg": "", + "ship_group": 30130, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 51, + "voice_actor_2": -1 + }, + "301309": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.38, + 1.12, + 0 + ] + ], + "cannon": [ + [ + 0.38, + 1.12, + 0 + ] + ], + "torpedo": [ + [ + 0.159, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + 0.38, + 1.12, + 0 + ] + ] + }, + "desc": "Ohohoho, you must have a sharp eye if you've decided to retrofit me~ Now that I've been chosen, I cannot afford to embarrass you. Now, take a good and thorough look at this veteran's aspirations~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 301309, + "illustrator": 33, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kamikaze (Retrofit)", + "painting": "shenfeng_g", + "prefab": "shenfeng_g", + "rarity_bg": "", + "ship_group": 30130, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.26, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 51, + "voice_actor_2": -1 + }, + "301310": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.87, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 0.87, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.87, + 1.07, + 0 + ] + ] + }, + "desc": "Kamikaze-class destroyer number four – Matsukaze.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301310, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Matsukaze", + "painting": "songfeng", + "prefab": "songfeng", + "rarity_bg": "", + "ship_group": 30131, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.59, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 51, + "voice_actor_2": -1 + }, + "301319": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.31, + 1.09, + 0 + ] + ], + "cannon": [ + [ + 0.27, + 1.12, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + 0.31, + 1.14, + 0 + ] + ] + }, + "desc": "There we go... My fan is too big, and I'm not used to carrying it around yet... Ah, right, come here for a sec, Commander~ I'll fan you with some cool air~ Come on now, no need to be shy~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 301319, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Matsukaze (Retrofit)", + "painting": "songfeng_g", + "prefab": "songfeng_g", + "rarity_bg": "", + "ship_group": 30131, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.59, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 51, + "voice_actor_2": -1 + }, + "301320": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.641, + 0.614, + 0 + ] + ], + "cannon": [ + [ + 0.641, + 0.614, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 0.641, + 0.614, + 0 + ] + ] + }, + "desc": "{namecode:33}-class destroyer number one – {namecode:33}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301320, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mutsuki", + "painting": "muyue", + "prefab": "muyue", + "rarity_bg": "", + "ship_group": 30132, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 49, + "voice_actor_2": -1 + }, + "301321": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.68, + 1.26, + 0 + ] + ], + "cannon": [ + [ + 0.68, + 1.26, + 0 + ] + ], + "torpedo": [ + [ + -0.02, + 0.17, + 0 + ] + ], + "vicegun": [ + [ + 0.68, + 1.26, + 0 + ] + ] + }, + "desc": "Commander, Merry Christmas~! I am on my best behavior today as well! Uuu... when is Santa Claus going to come? I'm sleepy...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301321, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mr. Reindeer, Depart!", + "painting": "muyue_2", + "prefab": "muyue_2", + "rarity_bg": "", + "ship_group": 30132, + "ship_l2d_id": "", + "shop_id": 70029, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.97, + 2.41, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 49, + "voice_actor_2": -1 + }, + "301322": { + "bg": "114", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 0.881, + 0 + ] + ], + "cannon": [ + [ + 1.202, + 0.948, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.194, + 0.915, + 0 + ] + ] + }, + "desc": "Comainder, I put on my yukata just like you said! Ehehe, you should take me to the festival so I can get lots and lots of candy!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 6, + "id": 301322, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Candy Festival!", + "painting": "muyue_3", + "prefab": "muyue_3", + "rarity_bg": "", + "ship_group": 30132, + "ship_l2d_id": "", + "shop_id": 70224, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.667, + 2.351, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 49, + "voice_actor_2": -1 + }, + "301323": { + "bg": "127", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.19, + 0.97, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.194, + 0.99, + 0 + ] + ] + }, + "desc": "I heard that if I go around telling people \"Happy New Year,\" I can get lots of goodies! Ehehe, I hope they'll give me a bunch of candy!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 6, + "id": 301323, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Spring Festival Sweets", + "painting": "muyue_4", + "prefab": "muyue_4", + "rarity_bg": "", + "ship_group": 30132, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.667, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 49, + "voice_actor_2": -1 + }, + "301329": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.641, + 0.614, + 0 + ] + ], + "cannon": [ + [ + 0.711, + 0.658, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 0.641, + 0.614, + 0 + ] + ] + }, + "desc": "Comainder, I'm done retrofitting! Have some candy! Hm? You're always nice to me, so I'm giving you some candy!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 6, + "id": 301329, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mutsuki (Retrofit)", + "painting": "muyue_g", + "prefab": "muyue_g", + "rarity_bg": "", + "ship_group": 30132, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.665, + 2.175, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 49, + "voice_actor_2": -1 + }, + "301330": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.27, + 0.57, + 0 + ] + ], + "cannon": [ + [ + 0.27, + 0.57, + 0 + ] + ], + "torpedo": [ + [ + 0.09, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.27, + 0.57, + 0 + ] + ] + }, + "desc": "{namecode:33}-class destroyer number two – {namecode:34}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301330, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kisaragi", + "painting": "ruyue", + "prefab": "ruyue", + "rarity_bg": "", + "ship_group": 30133, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.53, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 49, + "voice_actor_2": -1 + }, + "301331": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.67, + 0.3, + 0 + ] + ], + "cannon": [ + [ + 1.67, + 0.3, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + -0.04, + 0 + ] + ], + "vicegun": [ + [ + 1.67, + 0.3, + 0 + ] + ] + }, + "desc": "Co... commander, {namecode:34}'s new outfit... How does it look? It's a new year... {namecode:34} wants to keep improving...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301331, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's Wish", + "painting": "ruyue_2", + "prefab": "ruyue_2", + "rarity_bg": "", + "ship_group": 30133, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 2, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.76, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 49, + "voice_actor_2": -1 + }, + "301339": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.69, + 0.65, + 0 + ] + ], + "cannon": [ + [ + 0.77, + 0.64, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.79, + 0.65, + 0 + ] + ] + }, + "desc": "Kisaragi... retrofitting complete... I want to be able to help everyone out more...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 6, + "id": 301339, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kisaragi (Retrofit)", + "painting": "ruyue_g", + "prefab": "ruyue_g", + "rarity_bg": "", + "ship_group": 30133, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand2", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.53, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 49, + "voice_actor_2": -1 + }, + "301350": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.33, + 0.67, + 0 + ] + ], + "cannon": [ + [ + 0.33, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.33, + 0.67, + 0 + ] + ] + }, + "desc": "The fourth ship of {namecode:33} class destroyer — {namecode:137}", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301350, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Uzuki", + "painting": "maoyue", + "prefab": "maoyue", + "rarity_bg": "", + "ship_group": 30135, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 119, + "voice_actor_2": -1 + }, + "301351": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.42, + 0.44, + 0 + ] + ], + "cannon": [ + [ + 1.4, + 0.51, + 0 + ] + ], + "torpedo": [ + [ + 0.48, + -0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.48, + 0.47, + 0 + ] + ] + }, + "desc": "Ah... Big sis {namecode:34}, big sis {namecode:33}, let's sleep together... Commander? You want to come too?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301351, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sleepy Uzuki", + "painting": "Maoyue_2", + "prefab": "Maoyue_2", + "rarity_bg": "", + "ship_group": 30135, + "ship_l2d_id": "", + "shop_id": 70064, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.59, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 119, + "voice_actor_2": -1 + }, + "301370": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.33, + 0.67, + 0 + ] + ], + "cannon": [ + [ + 0.33, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.33, + 0.67, + 0 + ] + ] + }, + "desc": "Mutsuki-class destroyer number six – Minazuki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301370, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Minazuki", + "painting": "shuiwuyue", + "prefab": "shuiwuyue", + "rarity_bg": "", + "ship_group": 30137, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 119, + "voice_actor_2": -1 + }, + "301380": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.16, + 0.611, + 0 + ] + ], + "cannon": [ + [ + 0.169, + 0.582, + 0 + ] + ], + "torpedo": [ + [ + 0.179, + 0.085, + 0 + ] + ] + }, + "desc": "Mutsuki-class Destroyer number seven – Fumizuki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301380, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fumizuki", + "painting": "wenyue", + "prefab": "wenyue", + "rarity_bg": "", + "ship_group": 30138, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.601, + 2.161, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 125, + "voice_actor_2": -1 + }, + "301381": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.671, + 0.91, + 0 + ] + ], + "cannon": [ + [ + 0.724, + 0.83, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.088, + 0 + ] + ] + }, + "desc": "Huh...? Where am I...? What time is it...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301381, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sleepy Fairy", + "painting": "Wenyue_2", + "prefab": "Wenyue_2", + "rarity_bg": "", + "ship_group": 30138, + "ship_l2d_id": "", + "shop_id": 70070, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 125, + "voice_actor_2": -1 + }, + "301390": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.115, + 0.544, + 0 + ] + ], + "cannon": [ + [ + 0.087, + 0.567, + 0 + ] + ], + "torpedo": [ + [ + 0.179, + 0.085, + 0 + ] + ] + }, + "desc": "Mutsuki-class destroyer number eight – Nagatsuki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301390, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nagatsuki", + "painting": "changyue", + "prefab": "changyue", + "rarity_bg": "", + "ship_group": 30139, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.601, + 2.161, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 125, + "voice_actor_2": -1 + }, + "301391": { + "bg": "104", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.91, + 1.02, + 0 + ] + ], + "cannon": [ + [ + 0.88, + 1.02, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.01, + 0 + ] + ] + }, + "desc": "Nagatsuki the kitty maid is at your service~ Do your best to not fall madly in love with my cute looks~! Hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301391, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dangerous Kitty Maid?", + "painting": "changyue_2", + "prefab": "changyue_2", + "rarity_bg": "", + "ship_group": 30139, + "ship_l2d_id": "", + "shop_id": 70316, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 125, + "voice_actor_2": -1 + }, + "301410": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.88, + 0.61, + 0 + ] + ], + "cannon": [ + [ + 0.88, + 0.61, + 0 + ] + ], + "torpedo": [ + [ + 0.26, + 0.12, + 0 + ] + ], + "vicegun": [ + [ + 0.88, + 0.61, + 0 + ] + ] + }, + "desc": "Mutsuki-class destroyer number ten – Mikazuki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301410, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mikazuki", + "painting": "sanriyue", + "prefab": "sanriyue", + "rarity_bg": "", + "ship_group": 30141, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 119, + "voice_actor_2": -1 + }, + "301411": { + "bg": "119", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.505, + 1.458, + 0 + ] + ], + "cannon": [ + [ + 1.505, + 1.415, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.009, + 0 + ] + ], + "vicegun": [ + [ + 1.468, + 1.427, + 0 + ] + ] + }, + "desc": "Mikazuki is supposed to be... a jiangshi? Um... hip... hop... Commander, trick or treaaaaat~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301411, + "illustrator": 34, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sweet Zombie", + "painting": "sanriyue_2", + "prefab": "sanriyue_2", + "rarity_bg": "", + "ship_group": 30141, + "ship_l2d_id": "", + "shop_id": 70258, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 119, + "voice_actor_2": -1 + }, + "301470": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.464, + 0.992, + 0 + ] + ], + "cannon": [ + [ + 0.838, + 0.857, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0.021, + 0 + ] + ] + }, + "desc": "Shiratsuyu-class destroyer number seven – Umikaze.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301470, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Umikaze", + "painting": "haifeng", + "prefab": "haifeng", + "rarity_bg": "", + "ship_group": 30147, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.438, + 0.495, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.327, + 0.978, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 285, + "voice_actor_2": -1 + }, + "301471": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.146, + 0.906, + 0 + ] + ], + "cannon": [ + [ + 1.156, + 0.954, + 0 + ] + ], + "torpedo": [ + [ + 0.005, + 0.002, + 0 + ] + ] + }, + "desc": "What's the matter, Commander? Oh, this outfit? ...Um, I heard that this outfit would bring you therapeutic benefits and hoped to try it on... Wh-what do you think? Does it feel therapeutic to you?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301471, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Soft and Fluffy Therapy", + "painting": "haifeng_2", + "prefab": "haifeng_2", + "rarity_bg": "", + "ship_group": 30147, + "ship_l2d_id": "", + "shop_id": 70595, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.438, + 0.495, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.327, + 0.978, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 285, + "voice_actor_2": -1 + }, + "301472": { + "bg": "155", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.146, + 0.906, + 0 + ] + ], + "cannon": [ + [ + 1.156, + 0.954, + 0 + ] + ], + "torpedo": [ + [ + 0.005, + 0.002, + 0 + ] + ] + }, + "desc": "Commander, it is my pleasure to accompany you today. Umm... What do you think? I decided to go for a different outfit this time... D-do you think it's cute?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 6, + "id": 301472, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Baby Steps", + "painting": "haifeng_3", + "prefab": "haifeng_3", + "rarity_bg": "", + "ship_group": 30147, + "ship_l2d_id": "", + "shop_id": 70827, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.438, + 0.495, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.327, + 0.978, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 285, + "voice_actor_2": -1 + }, + "301480": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.195, + 1.021, + 0 + ] + ], + "cannon": [ + [ + 1.243, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0.015, + 0.011, + 0 + ] + ] + }, + "desc": "Shiratsuyu-class destroyer number eight – Yamakaze.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301480, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yamakaze", + "painting": "shanfeng", + "prefab": "shanfeng", + "rarity_bg": "", + "ship_group": 30148, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.438, + 0.495, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.327, + 0.978, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 285, + "voice_actor_2": -1 + }, + "301481": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.22, + 1.012, + 0 + ] + ], + "cannon": [ + [ + 1.166, + 0.992, + 0 + ] + ], + "torpedo": [ + [ + 0.015, + 0.011, + 0 + ] + ] + }, + "desc": "Voilà! Don't go anywhere, Commander! My magic show will start in just a sec! To start with, let's hear a roar! Roooaar!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301481, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Now for a Magic Trick!", + "painting": "shanfeng_2", + "prefab": "shanfeng_2", + "rarity_bg": "", + "ship_group": 30148, + "ship_l2d_id": "", + "shop_id": 70596, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.438, + 0.495, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.327, + 0.978, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 285, + "voice_actor_2": -1 + }, + "301490": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.682, + 0.764, + 0 + ] + ], + "cannon": [ + [ + 0.7, + 0.792, + 0 + ] + ], + "torpedo": [ + [ + 0.164, + 0.073, + 0 + ] + ] + }, + "desc": "Shiratsuyu-class destroyer number nine – Kawakaze.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301490, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kawakaze", + "painting": "jiangfeng", + "prefab": "jiangfeng", + "rarity_bg": "", + "ship_group": 30149, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 137, + "voice_actor_2": -1 + }, + "301491": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.02, + 0.6, + 0 + ] + ], + "cannon": [ + [ + -0.02, + 0.6, + 0 + ] + ], + "torpedo": [ + [ + -0.02, + 0.6, + 0 + ] + ] + }, + "desc": "Mhm. Lightweight clothing makes it easier to fight. Thanks, Commander... \"It looks cute on me\"? W-well, thanks...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301491, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Monochromatic Interlude", + "painting": "Jiangfeng_2", + "prefab": "Jiangfeng_2", + "rarity_bg": "", + "ship_group": 30149, + "ship_l2d_id": "", + "shop_id": 70069, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.266, + 0.329, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 137, + "voice_actor_2": -1 + }, + "301498": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.172, + 1.128, + 0 + ] + ], + "cannon": [ + [ + 1.062, + 1.158, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "This must be the dream you've awaited so eagerly... Of course, I vowed to be with you until the end of our days. I shall take my rightful place beside you and your ideals. We are... together.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 14, + "id": 301498, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Unsullied White Fox", + "painting": "jiangfeng_h", + "prefab": "jiangfeng_h", + "rarity_bg": "", + "ship_group": 30149, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.393, + 2.344, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 137, + "voice_actor_2": -1 + }, + "301540": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.185, + 0.59, + 0 + ] + ], + "cannon": [ + [ + 0.202, + 0.657, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Yuugumo-class destroyer – Kiyonami.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301540, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kiyonami", + "painting": "qingbo", + "prefab": "qingbo", + "rarity_bg": "", + "ship_group": 30154, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.374, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 213, + "voice_actor_2": -1 + }, + "301541": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.296, + 1.138, + 0 + ] + ], + "cannon": [ + [ + 1.333, + 1.192, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "S-sorry to keep you waiting... Yuugure and I picked out this outfit together. She said it \"looked very Christmassy,\" but it doesn't look weird, right? ... Ugh...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301541, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Festive Riding Hood?", + "painting": "qingbo_3", + "prefab": "qingbo_3", + "rarity_bg": "", + "ship_group": 30154, + "ship_l2d_id": "", + "shop_id": 70278, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.374, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 213, + "voice_actor_2": -1 + }, + "301560": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.88, + 0.93, + 0 + ] + ], + "cannon": [ + [ + 0.88, + 0.93, + 0 + ] + ], + "torpedo": [ + [ + 0.22, + 0.07, + 0 + ] + ] + }, + "desc": "{namecode:26}-class destroyer number five – {namecode:125}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301560, + "illustrator": 36, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Niizuki", + "painting": "xinyue_jp", + "prefab": "xinyue_jp", + "rarity_bg": "", + "ship_group": 30156, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 49, + "voice_actor_2": -1 + }, + "301570": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.334, + 1.074, + 0 + ] + ], + "cannon": [ + [ + -0.352, + 1.425, + 0 + ] + ], + "torpedo": [ + [ + 0.135, + 0.036, + 0 + ] + ] + }, + "desc": "Akizuki-class destroyer number nine – Harutsuki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301570, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Harutsuki", + "painting": "chunyue", + "prefab": "chunyue", + "rarity_bg": "", + "ship_group": 30157, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 126, + "voice_actor_2": -1 + }, + "301571": { + "bg": "126", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.995, + 1.119, + 0 + ] + ], + "cannon": [ + [ + 1.983, + 1.097, + 0 + ] + ], + "torpedo": [ + [ + 0.016, + -0.01, + 0 + ] + ] + }, + "desc": "Happy New Year, Commander! I am currently on my way to give a Kagura dance at the shrine. If you have time... would you like to come see it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301571, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Dance for the Coming Spring", + "painting": "chunyue_2", + "prefab": "chunyue_2", + "rarity_bg": "", + "ship_group": 30157, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.667, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 126, + "voice_actor_2": -1 + }, + "301580": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.759, + 1.219, + 0 + ] + ], + "cannon": [ + [ + 0.812, + 1.325, + 0 + ] + ], + "torpedo": [ + [ + 0.141, + 0.053, + 0 + ] + ] + }, + "desc": "Akizuki-class destroyer number ten – Yoizuki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301580, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yoizuki", + "painting": "xiaoyue", + "prefab": "xiaoyue", + "rarity_bg": "", + "ship_group": 30158, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 126, + "voice_actor_2": -1 + }, + "301581": { + "bg": "112", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.49, + 1.27, + 0 + ] + ], + "cannon": [ + [ + 1.53, + 1.325, + 0 + ] + ], + "torpedo": [ + [ + 0.141, + 0.053, + 0 + ] + ] + }, + "desc": "It's my turn? Hold on... Umm, could you please not stare at me like that? It's... making me feel uncomfortable.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301581, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sports Festival Preparations", + "painting": "xiaoyue_2", + "prefab": "xiaoyue_2", + "rarity_bg": "", + "ship_group": 30158, + "ship_l2d_id": "", + "shop_id": 70168, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 126, + "voice_actor_2": -1 + }, + "301582": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.931, + 0.906, + 0 + ] + ], + "cannon": [ + [ + 1.565, + 1.157, + 0 + ] + ], + "torpedo": [ + [ + 0.061, + 0.026, + 0 + ] + ] + }, + "desc": "Mmh... Happy New Year. I'm working on hooking my friends up with these firecrackers... The bun I'm eating? I received it as a thank-you for my efforts.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301582, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Firecrackers and Steamed Buns", + "painting": "xiaoyue_3", + "prefab": "xiaoyue_3", + "rarity_bg": "", + "ship_group": 30158, + "ship_l2d_id": "", + "shop_id": 70653, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.398, + 2.427, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 126, + "voice_actor_2": -1 + }, + "301590": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.41, + 3.33, + 0 + ] + ], + "cannon": [ + [ + 0.23, + 1.22, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.16, + 1.21, + 0 + ] + ] + }, + "desc": "The 11th Destroyer of {namecode:19} class — {namecode:142}", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301590, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Urakaze", + "painting": "pufeng", + "prefab": "pufeng", + "rarity_bg": "", + "ship_group": 30159, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 115, + "voice_actor_2": -1 + }, + "301591": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.45, + 1.48, + 0 + ] + ], + "cannon": [ + [ + 1.74, + 1.75, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 1.7, + 1.67, + 0 + ] + ] + }, + "desc": "Before you raise a fuss about it, let me just tell you this - the concept of \"Christmas\" already existed during the Sengoku period, so there's nothing weird about putting on a Christmas outfit!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301591, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Seasonal Shogun", + "painting": "pufeng_2", + "prefab": "pufeng_2", + "rarity_bg": "", + "ship_group": 30159, + "ship_l2d_id": "", + "shop_id": 70128, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 115, + "voice_actor_2": -1 + }, + "301592": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.364, + 0.995, + 0 + ] + ], + "cannon": [ + [ + 1.355, + 1.009, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.035, + 0 + ] + ], + "vicegun": [ + [ + 1.365, + 1.007, + 0 + ] + ] + }, + "desc": "Ugh... Even though we finally got all our gear, we still need more band members... Commander! Stop complaining and come hither! From now on, you're a member of the Sengoku Shredders!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 6, + "id": 301592, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sengoku☆Shredder!", + "painting": "pufeng_3", + "prefab": "pufeng_3", + "rarity_bg": "", + "ship_group": 30159, + "ship_l2d_id": "", + "shop_id": 70565, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.322, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 115, + "voice_actor_2": -1 + }, + "301600": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.41, + 3.33, + 0 + ] + ], + "cannon": [ + [ + 0.23, + 1.14, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.16, + 1.21, + 0 + ] + ] + }, + "desc": "Kagerou-class destroyer number twelve – Isokaze.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301600, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Isokaze", + "painting": "jifeng", + "prefab": "jifeng", + "rarity_bg": "", + "ship_group": 30160, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 147, + "voice_actor_2": -1 + }, + "301601": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.868, + 0.988, + 0 + ] + ], + "cannon": [ + [ + 0.92, + 0.954, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.897, + 0.977, + 0 + ] + ] + }, + "desc": "General, General, look! It's my New Year's outfit! Urakaze made it for me! Let's play a bunch of Sengoku wargames this year as well!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301601, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's Campaign", + "painting": "jifeng_2", + "prefab": "jifeng_2", + "rarity_bg": "", + "ship_group": 30160, + "ship_l2d_id": "", + "shop_id": 70135, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 147, + "voice_actor_2": -1 + }, + "301602": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.868, + 0.988, + 0 + ] + ], + "cannon": [ + [ + 0.92, + 0.954, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.897, + 0.977, + 0 + ] + ] + }, + "desc": "General! I, Isokaze, have done my utmost to prepare the equipment! Now, with Lord Urakaze's presence, our Sengoku☆War-Band is complete! Of course, you are more than welcome to join our ranks, General!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 6, + "id": 301602, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sengoku☆Smasher!", + "painting": "jifeng_3", + "prefab": "jifeng_3", + "rarity_bg": "", + "ship_group": 30160, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 147, + "voice_actor_2": -1 + }, + "301610": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.42, + 3.31, + 0 + ] + ], + "cannon": [ + [ + -0.06, + 1.12, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + -0.06, + 1.12, + 0 + ] + ] + }, + "desc": "Tenth ship of {namecode:19} class destroyers, {namecode:128}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301610, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:128}", + "painting": "bangfeng", + "prefab": "bangfeng", + "rarity_bg": "", + "ship_group": 30161, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.22, + 2.61, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 112, + "voice_actor_2": -1 + }, + "301611": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.19, + 0.61, + 0 + ] + ], + "cannon": [ + [ + -0.17, + 0.62, + 0 + ] + ], + "torpedo": [ + [ + -0.2, + 0.64, + 0 + ] + ], + "vicegun": [ + [ + -0.19, + 0.61, + 0 + ] + ] + }, + "desc": "Learning is exciting. The joy of acquiring new knowledge, the sense of achievement from solving difficult problems... you'll understand once you try it. So, shall we study together, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301611, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Honors Student", + "painting": "bangfeng_2", + "prefab": "bangfeng_2", + "rarity_bg": "", + "ship_group": 30161, + "ship_l2d_id": "", + "shop_id": 70092, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 112, + "voice_actor_2": -1 + }, + "301612": { + "bg": "160", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.129, + 1.292, + 0 + ] + ], + "cannon": [ + [ + 0.948, + 0.862, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.742, + 0.897, + 0 + ] + ] + }, + "desc": "I'm experimenting with different flavors since we're running a pop-up café... Alright! I think I'll go with this one! Strap in, Commander, because you're about to do a lot of taste-testing!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 6, + "id": 301612, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Secret Ingredient is Love?!", + "painting": "bangfeng_4", + "prefab": "bangfeng_4", + "rarity_bg": "", + "ship_group": 30161, + "ship_l2d_id": "", + "shop_id": 70747, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.409, + 2.254, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 112, + "voice_actor_2": -1 + }, + "301619": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.28, + 0.99, + 0 + ] + ], + "cannon": [ + [ + -0.28, + 0.99, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + -0.28, + 0.99, + 0 + ] + ] + }, + "desc": "Commander, have you been having more fun since I arrived? ... I see, that's great! Ehehe... Hamakaze, getting hyped!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 6, + "id": 301619, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hamakaze (Retrofit)", + "painting": "bangfeng_g", + "prefab": "bangfeng_g", + "rarity_bg": "", + "ship_group": 30161, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 112, + "voice_actor_2": -1 + }, + "301620": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.02, + 1.03, + 0 + ] + ], + "cannon": [ + [ + 0.02, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0.08, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 0.02, + 1.03, + 0 + ] + ] + }, + "desc": "Kagerou-class destroyer number fourteen – Tanikaze.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301620, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tanikaze", + "painting": "gufeng", + "prefab": "gufeng", + "rarity_bg": "", + "ship_group": 30162, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.22, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 112, + "voice_actor_2": -1 + }, + "301621": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.35, + 1.13, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.23, + 1.11, + 0 + ] + ] + }, + "desc": "Little butterfly, little butterfly... Ya! It flew away... {namecode:128}~ {namecode:128}~ Where are you? {namecode:142}? {namecode:143}? We said we were going to play at the seaside. Where is everyone?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301621, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lost Girl and Labyrinth Butterfly", + "painting": "gufeng_2", + "prefab": "gufeng_2", + "rarity_bg": "", + "ship_group": 30162, + "ship_l2d_id": "", + "shop_id": 70058, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.44, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 112, + "voice_actor_2": -1 + }, + "301622": { + "bg": "160", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.086, + 1.276, + 0 + ] + ], + "cannon": [ + [ + 0.931, + 0.862, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1, + 1, + 0 + ] + ] + }, + "desc": "Commander, I'm mopping the floor right now. Please watch your step, as it's quite slippery over there... Eek! Owch... I suppose I should've watched my own step... Ahaha...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 6, + "id": 301622, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sparkly-Clean", + "painting": "gufeng_4", + "prefab": "gufeng_4", + "rarity_bg": "", + "ship_group": 30162, + "ship_l2d_id": "", + "shop_id": 70746, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.391, + 2.279, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 112, + "voice_actor_2": -1 + }, + "301629": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.02, + 1.03, + 0 + ] + ], + "cannon": [ + [ + 0.02, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0.08, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 0.02, + 1.03, + 0 + ] + ] + }, + "desc": "I'm {namecode:127}, blowing and blustering from the mountaintop! Whoa! Butterflies? Butterflies?! Look, butterflies! For me? Thanks, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 6, + "id": 301629, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:127} (Retrofit)", + "painting": "gufeng_g", + "prefab": "gufeng_g", + "rarity_bg": "", + "ship_group": 30162, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.22, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 112, + "voice_actor_2": -1 + }, + "301630": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.565, + 1.254, + 0 + ] + ], + "cannon": [ + [ + 0.645, + 1.263, + 0 + ] + ], + "torpedo": [ + [ + 0.168, + 0.053, + 0 + ] + ] + }, + "desc": "Asashio-class destroyer number one – Asashio.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301630, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Asashio", + "painting": "zhaochao", + "prefab": "zhaochao", + "rarity_bg": "", + "ship_group": 30163, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.522, + 2.374, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 134, + "voice_actor_2": -1 + }, + "301631": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.768, + 0.927, + 0 + ] + ], + "cannon": [ + [ + 0.804, + 0.918, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.035, + 0 + ] + ] + }, + "desc": "My name is Asashio, and I just transferred here today. Pleased to meet you... Even though I might not be able to get caught up with the course work, Mr. Kitty and I will do our best.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301631, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Transfer Student Underneath the Dancing Petals", + "painting": "zhaochao_2", + "prefab": "zhaochao_2", + "rarity_bg": "", + "ship_group": 30163, + "ship_l2d_id": "", + "shop_id": 70067, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.654, + 2.286, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 134, + "voice_actor_2": -1 + }, + "301632": { + "bg": "143", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.218, + 1.013, + 0 + ] + ], + "cannon": [ + [ + 1.193, + 1.004, + 0 + ] + ], + "torpedo": [ + [ + -0.006, + 0.001, + 0 + ] + ] + }, + "desc": "Happy New Year, Commander. I am here to spend the New Year with you. Would you be so kind as to first help me down from here?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301632, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Snow-Dusted Lynx Tips", + "painting": "zhaochao_4", + "prefab": "zhaochao_4", + "rarity_bg": "", + "ship_group": 30163, + "ship_l2d_id": "", + "shop_id": 70475, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.386, + 2.546, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 134, + "voice_actor_2": -1 + }, + "301633": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.008, + 1.219, + 0 + ] + ], + "cannon": [ + [ + 1.106, + 1.068, + 0 + ] + ], + "torpedo": [ + [ + 0.168, + 0.053, + 0 + ] + ] + }, + "desc": "Commander, thank you for coming to see me. I'm currently rehearsing my program for the Spring Festival performance. I do hope it is to your liking.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301633, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Robes of Dancing Clouds", + "painting": "zhaochao_5", + "prefab": "zhaochao_5", + "rarity_bg": "", + "ship_group": 30163, + "ship_l2d_id": "", + "shop_id": 70657, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.327, + 2.392, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 134, + "voice_actor_2": -1 + }, + "301640": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.773, + 1.1, + 0 + ] + ], + "cannon": [ + [ + 0.819, + 1.2, + 0 + ] + ], + "torpedo": [ + [ + 0.173, + 0.109, + 0 + ] + ] + }, + "desc": "Asashio-class destroyer number two – Ooshio.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301640, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ooshio", + "painting": "dachao", + "prefab": "dachao", + "rarity_bg": "", + "ship_group": 30164, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.533, + 2.416, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 135, + "voice_actor_2": -1 + }, + "301641": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.773, + 1.1, + 0 + ] + ], + "cannon": [ + [ + 0.819, + 1.2, + 0 + ] + ], + "torpedo": [ + [ + 0.173, + 0.109, + 0 + ] + ] + }, + "desc": "Merry Christmas~ Commander, we gotta go hand out presents to them destroyers~ You be Santa, I'll be yer reindeer~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301641, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Reindeer's Present", + "painting": "dachao_2", + "prefab": "dachao_2", + "rarity_bg": "", + "ship_group": 30164, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.533, + 2.416, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 135, + "voice_actor_2": -1 + }, + "301642": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.684, + 0.519, + 0 + ] + ], + "cannon": [ + [ + 0.683, + 0.476, + 0 + ] + ], + "torpedo": [ + [ + 0.678, + 0.498, + 0 + ] + ] + }, + "desc": "Happy anniversary~ Today's a day to enjoy to yer heart's content, ya know? I'm just havin' fun in my own way, checkin' out cute girls from afar~ I appreciate yer concern though, Commander~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301642, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Woozy Party", + "painting": "dachao_3", + "prefab": "dachao_3", + "rarity_bg": "", + "ship_group": 30164, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.533, + 2.416, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 135, + "voice_actor_2": -1 + }, + "301643": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.254, + 1.026, + 0 + ] + ], + "cannon": [ + [ + 1.224, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.002, + 0 + ] + ] + }, + "desc": "Should I hang this \"fortune\" poster here...? Oh, Commander, did ya also want a Spring Festival present from Ooshio here? Just kiddin'~ Hehe, anyway, happy Lunar New Year~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301643, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bringer of Fortunes", + "painting": "dachao_4", + "prefab": "dachao_4", + "rarity_bg": "", + "ship_group": 30164, + "ship_l2d_id": "", + "shop_id": 70491, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.409, + 2.568, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 135, + "voice_actor_2": -1 + }, + "301644": { + "bg": "147", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.18, + 1.04, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 0.88, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.002, + 0 + ] + ] + }, + "desc": "Finally we're through with them mornin' classes~ Commander, would ya fancy havin' lunch with me? Heheh, yer wonderin' what I done made? You'll see for yerself soon 'nuff~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 14, + "id": 301644, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Let's 'ave Lunch", + "painting": "dachao_5", + "prefab": "dachao_5", + "rarity_bg": "", + "ship_group": 30164, + "ship_l2d_id": "", + "shop_id": 70682, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.29, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 135, + "voice_actor_2": -1 + }, + "301650": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.02, + 1.03, + 0 + ] + ], + "cannon": [ + [ + 0.02, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0.08, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 0.02, + 1.03, + 0 + ] + ] + }, + "desc": "Third ship of {namecode:145} class destroyers, {namecode:147}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301650, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Michishio", + "painting": "manchao", + "prefab": "manchao", + "rarity_bg": "", + "ship_group": 30165, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.22, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 139, + "voice_actor_2": -1 + }, + "301651": { + "bg": "146", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 1.21, + 0 + ] + ], + "cannon": [ + [ + 1.19, + 0.99, + 0 + ] + ], + "torpedo": [ + [ + 0.08, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 1.03, + 0 + ] + ] + }, + "desc": "Hello, Commander. Oh, you think I look good in this fluttery dress~? Thank you very much!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301651, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fluttering Fanfare", + "painting": "manchao_2", + "prefab": "manchao_2", + "rarity_bg": "", + "ship_group": 30165, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.61, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 139, + "voice_actor_2": -1 + }, + "301660": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.02, + 1.03, + 0 + ] + ], + "cannon": [ + [ + 0.02, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0.08, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 0.02, + 1.03, + 0 + ] + ] + }, + "desc": "Asashio-class destroyer number four – Arashio.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301660, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arashio", + "painting": "huangchao", + "prefab": "huangchao", + "rarity_bg": "", + "ship_group": 30166, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.22, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 135, + "voice_actor_2": -1 + }, + "301661": { + "bg": "114", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.296, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.297, + 1.006, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + -0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.303, + 0.994, + 0 + ] + ] + }, + "desc": "Looks like you found me, Commander. Hehe, want to light some fireworks with me? Spending time together should be more fun than being alone, right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301661, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Gentlest Firework", + "painting": "huangchao_3", + "prefab": "huangchao_3", + "rarity_bg": "", + "ship_group": 30166, + "ship_l2d_id": "", + "shop_id": 70581, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.294, + 2.613, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 135, + "voice_actor_2": -1 + }, + "301720": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 0.76, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 0.78, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0.04, + 0 + ] + ], + "vicegun": [ + [ + 1.19, + 0.79, + 0 + ] + ] + }, + "desc": "Special Type I-class destroyer number 10 – Uranami.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301720, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Uranami", + "painting": "pubo", + "prefab": "pubo", + "rarity_bg": "", + "ship_group": 30172, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.53, + 1.99, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 217, + "voice_actor_2": -1 + }, + "301721": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.35, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.42, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.04, + 0 + ] + ], + "vicegun": [ + [ + 1.31, + 1.09, + 0 + ] + ] + }, + "desc": "It's snowing...! I've finished rallying the forces... so let us advance!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301721, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Snow Vanguard", + "painting": "pubo_2", + "prefab": "pubo_2", + "rarity_bg": "", + "ship_group": 30172, + "ship_l2d_id": "", + "shop_id": 70317, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.53, + 2.02, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 217, + "voice_actor_2": -1 + }, + "301790": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.27, + 1.32, + 0 + ] + ], + "cannon": [ + [ + 1.33, + 1.28, + 0 + ] + ], + "torpedo": [ + [ + 0.08, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.31, + 1.32, + 0 + ] + ] + }, + "desc": "Kamikaze-class destroyer number five – Hatakaze.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301790, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hatakaze", + "painting": "qifeng", + "prefab": "qifeng", + "rarity_bg": "", + "ship_group": 30179, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 51, + "voice_actor_2": -1 + }, + "301800": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.7, + 0.58, + 0 + ] + ], + "cannon": [ + [ + 0.66, + 0.66, + 0 + ] + ], + "torpedo": [ + [ + 0.08, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 0.69, + 0.64, + 0 + ] + ] + }, + "desc": "Yuugumo-class destroyer number five – Makinami.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301800, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Makinami", + "painting": "juanbo", + "prefab": "juanbo", + "rarity_bg": "", + "ship_group": 30180, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 165, + "voice_actor_2": -1 + }, + "301801": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.156, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 1.122, + 1.134, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0.018, + 0 + ] + ], + "vicegun": [ + [ + 1.128, + 1.15, + 0 + ] + ] + }, + "desc": "All right, everything looks good! I'm super excited and my batteries are fully charged! I'm heading out~!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301801, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Time for School!", + "painting": "juanbo_2", + "prefab": "juanbo_2", + "rarity_bg": "", + "ship_group": 30180, + "ship_l2d_id": "", + "shop_id": 70347, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 165, + "voice_actor_2": -1 + }, + "301810": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.7, + 0.58, + 0 + ] + ], + "cannon": [ + [ + 0.66, + 0.66, + 0 + ] + ], + "torpedo": [ + [ + 0.08, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 0.69, + 0.64, + 0 + ] + ] + }, + "desc": "Asashio-class destroyer number 10 – Kasumi.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301810, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kasumi", + "painting": "xia", + "prefab": "xia", + "rarity_bg": "", + "ship_group": 30181, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 216, + "voice_actor_2": -1 + }, + "301811": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.433, + 0.933, + 0 + ] + ], + "cannon": [ + [ + 1.446, + 0.96, + 0 + ] + ], + "torpedo": [ + [ + -0.007, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.449, + 0.973, + 0 + ] + ] + }, + "desc": "Warm and comforting clothes... Warm and comforting red bean soup... Ahh, I love New Year's.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301811, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's Comfort", + "painting": "xia_2", + "prefab": "xia_2", + "rarity_bg": "", + "ship_group": 30181, + "ship_l2d_id": "", + "shop_id": 70297, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 216, + "voice_actor_2": -1 + }, + "301812": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.298, + 0.99, + 0 + ] + ], + "cannon": [ + [ + 1.203, + 0.996, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.264, + 0.994, + 0 + ] + ] + }, + "desc": "Kasumi and Foo are excited about the new semester. Are you too, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 6, + "id": 301812, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "At School with Foo", + "painting": "xia_3", + "prefab": "xia_3", + "rarity_bg": "", + "ship_group": 30181, + "ship_l2d_id": "", + "shop_id": 70563, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.417, + 2.504, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 216, + "voice_actor_2": -1 + }, + "301819": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.338, + 1.001, + 0 + ] + ], + "cannon": [ + [ + 1.346, + 1.001, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + -0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.367, + 1.001, + 0 + ] + ] + }, + "desc": "Kasumi thinks that her outfit has gotten a bit breezier. Foo said the same thing.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 6, + "id": 301819, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kasumi (Retrofit)", + "painting": "xia_g", + "prefab": "xia_g", + "rarity_bg": "", + "ship_group": 30181, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.341, + 2.547, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 216, + "voice_actor_2": -1 + }, + "301820": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.215, + 1.193, + 0 + ] + ], + "cannon": [ + [ + 1.338, + 1.155, + 0 + ] + ], + "torpedo": [ + [ + -0.005, + -0.025, + 0 + ] + ], + "vicegun": [ + [ + 1.238, + 1.188, + 0 + ] + ] + }, + "desc": "Akizuki-class destroyer number thirteen – Hanazuki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301820, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hanazuki", + "painting": "huayue", + "prefab": "huayue", + "rarity_bg": "", + "ship_group": 30182, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 232, + "voice_actor_2": -1 + }, + "301821": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.228, + 1.349, + 0 + ] + ], + "cannon": [ + [ + 1.24, + 1.182, + 0 + ] + ], + "torpedo": [ + [ + -0.005, + 0.008, + 0 + ] + ], + "vicegun": [ + [ + 1.179, + 1.246, + 0 + ] + ] + }, + "desc": "I've heard some say that summer is the season of cherry blossoms, lotus petals, and sunflowers, but... If you ask me, being able to leisurely enjoy the breeze with you feels pretty good too. Hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301821, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Morning Moon, Beachside Flower", + "painting": "huayue_3", + "prefab": "huayue_3", + "rarity_bg": "", + "ship_group": 30182, + "ship_l2d_id": "", + "shop_id": 70346, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 232, + "voice_actor_2": -1 + }, + "301822": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.166, + 1.349, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.049, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.046, + 1.175, + 0 + ] + ] + }, + "desc": "What kinds of flowers should I decorate the office with for the Lunar New Year...? Ugh, I just can't decide! Um, Commander, will you be inspecting the interior? I'll show you around! Phew...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301822, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blossoming Spring, Resplendent Moon", + "painting": "huayue_4", + "prefab": "huayue_4", + "rarity_bg": "", + "ship_group": 30182, + "ship_l2d_id": "", + "shop_id": 70661, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 232, + "voice_actor_2": -1 + }, + "301830": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 1.233, + 0 + ] + ], + "cannon": [ + [ + 1.158, + 1.235, + 0 + ] + ], + "torpedo": [ + [ + -0.006, + 0.013, + 0 + ] + ], + "vicegun": [ + [ + 1.195, + 1.262, + 0 + ] + ] + }, + "desc": "Yuugumo-class destroyer number four – Naganami.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301830, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Naganami", + "painting": "changbo", + "prefab": "changbo", + "rarity_bg": "", + "ship_group": 30183, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 233, + "voice_actor_2": -1 + }, + "301831": { + "bg": "104", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.213, + 1.217, + 0 + ] + ], + "cannon": [ + [ + 1.165, + 1.204, + 0 + ] + ], + "torpedo": [ + [ + -0.021, + 0.006, + 0 + ] + ], + "vicegun": [ + [ + 1.242, + 1.231, + 0 + ] + ] + }, + "desc": "Akashi pushed me into getting this outfit, saying that it would surely make you happy, but... What do you think...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301831, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Long Waves of Happiness", + "painting": "changbo_2", + "prefab": "changbo_2", + "rarity_bg": "", + "ship_group": 30183, + "ship_l2d_id": "", + "shop_id": 70348, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 233, + "voice_actor_2": -1 + }, + "301832": { + "bg": "146", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 1.243, + 0 + ] + ], + "cannon": [ + [ + 1.148, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.182, + 1.231, + 0 + ] + ] + }, + "desc": "There's still some time before the banquet begins, and I'm afraid I'm feeling a little sleepy... W-would you mind if I took a nap? Thank you...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301832, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Long-Awaited Warmth", + "painting": "changbo_3", + "prefab": "changbo_3", + "rarity_bg": "", + "ship_group": 30183, + "ship_l2d_id": "", + "shop_id": 70560, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.604, + 2.457, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 233, + "voice_actor_2": -1 + }, + "301833": { + "bg": "152", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 1.233, + 0 + ] + ], + "cannon": [ + [ + 1.158, + 1.235, + 0 + ] + ], + "torpedo": [ + [ + -0.006, + 0.013, + 0 + ] + ], + "vicegun": [ + [ + 1.195, + 1.262, + 0 + ] + ] + }, + "desc": "I wanted to help you relieve some stress, so I thought I would read some folk tales to you... When I mentioned that, Akashi suggested these clothes to me... Wh-what do you think?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 301833, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nestling Up for the Long Nights", + "painting": "changbo_4", + "prefab": "changbo_4", + "rarity_bg": "", + "ship_group": 30183, + "ship_l2d_id": "", + "shop_id": 70654, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.407, + 2.408, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 233, + "voice_actor_2": -1 + }, + "301838": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.35, + 1.31, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 1.12, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.14, + 1.15, + 0 + ] + ] + }, + "desc": "Now that the big day is here, I'm awfully nervous... I-I'll be in your care now and forever, okay?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 14, + "id": 301838, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Waves of Eternal Love", + "painting": "changbo_h", + "prefab": "changbo_h", + "rarity_bg": "", + "ship_group": 30183, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.37, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 233, + "voice_actor_2": -1 + }, + "301840": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.419, + 1.196, + 0 + ] + ], + "cannon": [ + [ + 1.378, + 1.111, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.504, + 1.122, + 0 + ] + ] + }, + "desc": "Akizuki-class destroyer number three – Suzutsuki. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301840, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Suzutsuki ", + "painting": "liangyue", + "prefab": "liangyue", + "rarity_bg": "", + "ship_group": 30184, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 245, + "voice_actor_2": -1 + }, + "301841": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.129, + 1.117, + 0 + ] + ], + "cannon": [ + [ + 1.158, + 1.14, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.195, + 1.123, + 0 + ] + ] + }, + "desc": "Commander, over here! We're about to start without you! Ahaha, what would you like to do, Commander? Beach volleyball? Sandcastle building? We can also go relax in the water if you'd like! ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301841, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Suzutsuki, Beachside Attendant! ", + "painting": "liangyue_2", + "prefab": "liangyue_2", + "rarity_bg": "", + "ship_group": 30184, + "ship_l2d_id": "", + "shop_id": 70415, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 245, + "voice_actor_2": -1 + }, + "301842": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.499, + 1.004, + 0 + ] + ], + "cannon": [ + [ + 1.505, + 0.997, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.475, + 0.995, + 0 + ] + ] + }, + "desc": "I, Akizuki-class destroyer, Suzutsuki, shall not allow you to pass through these arches! Hwuh?! I missed the return again...!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301842, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Suzutsuki, Hanetsuki Adept!", + "painting": "liangyue_3", + "prefab": "liangyue_3", + "rarity_bg": "", + "ship_group": 30184, + "ship_l2d_id": "", + "shop_id": 70467, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.586, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 245, + "voice_actor_2": -1 + }, + "301850": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.419, + 1.181, + 0 + ] + ], + "cannon": [ + [ + 1.378, + 1.162, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.416, + 1.159, + 0 + ] + ] + }, + "desc": "Kamikaze-class destroyer number six – Oite.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301850, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Oite", + "painting": "zhuifeng", + "prefab": "zhuifeng", + "rarity_bg": "", + "ship_group": 30185, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.585, + 2.463, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 271, + "voice_actor_2": -1 + }, + "301851": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.46, + 1.13, + 0 + ] + ], + "cannon": [ + [ + 1.402, + 1.159, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.431, + 1.16, + 0 + ] + ] + }, + "desc": "Commander, have you also come to play on the beach? You're telling me to be careful? Hmph, what misfortune could possibly befall me from a game of watermelon splitting... Gwaah?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301851, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Dedication", + "painting": "zhuifeng_3", + "prefab": "zhuifeng_3", + "rarity_bg": "", + "ship_group": 30185, + "ship_l2d_id": "", + "shop_id": 70540, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.656, + 2.818, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 271, + "voice_actor_2": -1 + }, + "301852": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.176, + 1.236, + 0 + ] + ], + "cannon": [ + [ + 1.287, + 1.159, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.165, + 1.142, + 0 + ] + ] + }, + "desc": "Happy New Year to you, Commander. To celebrate the season, I had these garments tailor-made for me, using traditional Dragon Empery clothes as a basis. I don't look... childish, do I?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 301852, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jet Ink, Silver Quills", + "painting": "zhuifeng_2", + "prefab": "zhuifeng_2", + "rarity_bg": "", + "ship_group": 30185, + "ship_l2d_id": "", + "shop_id": 70662, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.425, + 2.535, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 271, + "voice_actor_2": -1 + }, + "301860": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.375, + 1.016, + 0 + ] + ], + "cannon": [ + [ + 1.379, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.38, + 1.009, + 0 + ] + ] + }, + "desc": "Yuugumo-class destroyer number three – Kazagumo.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301860, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kazagumo", + "painting": "fengyun", + "prefab": "fengyun", + "rarity_bg": "", + "ship_group": 30186, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.499, + 2.417, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 279, + "voice_actor_2": -1 + }, + "301861": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.46, + 1.022, + 0 + ] + ], + "cannon": [ + [ + 1.402, + 1.008, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.431, + 1.023, + 0 + ] + ] + }, + "desc": "Toot~♪ Oh, Commander, did you hear me practicing my recorder? Umm, I'd appreciate it if you didn't tell the others.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301861, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "After-School Melody", + "painting": "fengyun_3", + "prefab": "fengyun_3", + "rarity_bg": "", + "ship_group": 30186, + "ship_l2d_id": "", + "shop_id": 70561, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.512, + 2.459, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 279, + "voice_actor_2": -1 + }, + "301862": { + "bg": "164", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.375, + 1.016, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 0.96, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.11, + 0.89, + 0 + ] + ] + }, + "desc": "*lick*... Oh, Commander, y-you're here for the fireworks? ...Want to watch them with me, then? I've got drinks. My ice cream? Umm... You can't have it.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 6, + "id": 301862, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Placid Waves, Passionate Heart", + "painting": "fengyun_2", + "prefab": "fengyun_2", + "rarity_bg": "", + "ship_group": 30186, + "ship_l2d_id": "", + "shop_id": 70789, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.499, + 2.417, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_fengyun_2", + [ + 1808, + 203, + 0 + ], + [ + 1.6 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -82, + -897, + 0 + ], + [ + 0.82 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 279, + "voice_actor_2": -1 + }, + "301863": { + "bg": "142", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.375, + 1.016, + 0 + ] + ], + "cannon": [ + [ + 1.171, + 0.71, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.11, + 0.89, + 0 + ] + ] + }, + "desc": "I'm doing lots of training. Gardening, making tea, stuff like that. Here's an example... Umm, do you want dinner, or a bath, or... Hm? I shouldn't practice that one?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 6, + "id": 301863, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": [ + 0.5, + 0.5, + 0.5 + ], + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -20, + 20 + ], + "ParamBodyAngleX": [ + -10, + 10 + ], + "ParamBodyAngleY": [ + -5, + 5 + ], + "ParamEyeBallX": [ + -0.3, + 0.3 + ], + "ParamEyeBallY": [ + -0.5, + 0.5 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -60, + 70, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Diligent Domestic Discipline", + "painting": "fengyun_4", + "prefab": "fengyun_4", + "rarity_bg": "", + "ship_group": 30186, + "ship_l2d_id": [ + 30186301, + 30186302, + 30186303, + 30186304, + 30186305, + 30186306, + 30186307 + ], + "shop_id": 70955, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.499, + 2.417, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_fengyun_2", + [ + 1808, + 203, + 0 + ], + [ + 1.6 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -82, + -897, + 0 + ], + [ + 0.82 + ] + ], + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 279, + "voice_actor_2": -1 + }, + "301880": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.095, + 1.207, + 0 + ] + ], + "cannon": [ + [ + 1.009, + 0.914, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1, + 1, + 0 + ] + ] + }, + "desc": "Akizuki-class destroyer number six – Wakatsuki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301880, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Wakatsuki", + "painting": "ruoyue", + "prefab": "ruoyue", + "rarity_bg": "", + "ship_group": 30188, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 339, + "voice_actor_2": -1 + }, + "301881": { + "bg": "160", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.301, + 1.336, + 0 + ] + ], + "cannon": [ + [ + 1.207, + 0.905, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1, + 1, + 0 + ] + ] + }, + "desc": "Oh nooo! Look out, Commander! ...Oh, phew... I'm glad I didn't mess up your clothes because of my carelessness! Please forgive me for my blunder! I'll clean the floor up right away!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301881, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Slapdash Blue Sparrow", + "painting": "ruoyue_2", + "prefab": "ruoyue_2", + "rarity_bg": "", + "ship_group": 30188, + "ship_l2d_id": "", + "shop_id": 70740, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 339, + "voice_actor_2": -1 + }, + "301882": { + "bg": "175", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.301, + 1.336, + 0 + ] + ], + "cannon": [ + [ + 1.186, + 0.926, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.979, + 1.021, + 0 + ] + ] + }, + "desc": "Blue Sparrow Wakatsuki is here! ...Commander, why are you just staring—Oh, no! I'm caught on the curtain... Aaaah!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 6, + "id": 301882, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blue Sparrow Heralding Spring", + "painting": "ruoyue_3", + "prefab": "ruoyue_3", + "rarity_bg": "", + "ship_group": 30188, + "ship_l2d_id": "", + "shop_id": 70740, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.421, + 2.421, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 339, + "voice_actor_2": -1 + }, + "301890": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.763, + 1.155, + 0 + ] + ], + "cannon": [ + [ + 1.774, + 1.185, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.716, + 1.144, + 0 + ] + ] + }, + "desc": "Akizuki-class destroyer – Hatsuzuki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 301890, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hatsuzuki", + "painting": "chuyue", + "prefab": "chuyue", + "rarity_bg": "", + "ship_group": 30189, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 376, + "voice_actor_2": -1 + }, + "301891": { + "bg": "117", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.763, + 1.155, + 0 + ] + ], + "cannon": [ + [ + 1.774, + 1.185, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.716, + 1.144, + 0 + ] + ] + }, + "desc": "Peace~♪ Do I look good in the pic? Don't I look so adorable you'll never wanna delete the photo, and have to stare at it every day to feel at ease? Heehee♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 301891, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 28, + 0 + ], + "live2d_offset_profile": [ + 0, + 50, + 0 + ], + "main_UI_FX": "", + "name": "August's First Romance", + "painting": "chuyue_2", + "prefab": "chuyue_2", + "rarity_bg": "", + "ship_group": 30189, + "ship_l2d_id": [ + 3018911, + 3018912, + 3018913, + 3018914, + 3018915 + ], + "shop_id": 70902, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 376, + "voice_actor_2": -1 + }, + "301900": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.915, + 1.719, + 0 + ] + ], + "cannon": [ + [ + 2.089, + 1.656, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.987, + 1.305, + 0 + ] + ] + }, + "desc": "Kamikaze-class destroyer – Asanagi.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 301900, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Asanagi", + "painting": "zhaozhi", + "prefab": "zhaozhi", + "rarity_bg": "", + "ship_group": 30190, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.546, + 2.491, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 382, + "voice_actor_2": -1 + }, + "301901": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.915, + 1.719, + 0 + ] + ], + "cannon": [ + [ + 2.089, + 1.656, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.987, + 1.305, + 0 + ] + ] + }, + "desc": "*yaaawn*... Goodness me, there I go falling asleep. You understand how pleasant the sea breeze is, don't you? YOU calling ME a slacker!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 301901, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lulled by Rough Seas", + "painting": "zhaozhi_2", + "prefab": "zhaozhi_2", + "rarity_bg": "", + "ship_group": 30190, + "ship_l2d_id": "", + "shop_id": 70904, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.546, + 2.491, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 382, + "voice_actor_2": -1 + }, + "302010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.2, + 0.75, + 0 + ] + ], + "cannon": [ + [ + 0.2, + 0.75, + 0 + ] + ], + "torpedo": [ + [ + 0.47, + 0.14, + 0 + ] + ], + "vicegun": [ + [ + 0.2, + 0.75, + 0 + ] + ] + }, + "desc": "Yuubari-class light cruiser – Yuubari.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 302010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yuubari", + "painting": "xizhang", + "prefab": "xizhang", + "rarity_bg": "", + "ship_group": 30201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.39, + 0.58, + -0.16 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.56, + 2.57, + -0.58 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 83, + "voice_actor_2": -1 + }, + "302019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.34, + 0.75, + 0 + ] + ], + "cannon": [ + [ + 1.27, + 0.78, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 1.3, + 0.79, + 0 + ] + ] + }, + "desc": "I've finally finished developing my new equipment! Since we still have time, let's go and try it out in live combat right now, Master!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 302019, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yuubari (Retrofit)", + "painting": "xizhang_g", + "prefab": "xizhang_g", + "rarity_bg": "", + "ship_group": 30201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.15, + -0.58 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 83, + "voice_actor_2": -1 + }, + "302040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.09, + 0.8, + 0 + ] + ], + "cannon": [ + [ + 0.09, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 0.09, + 0.8, + 0 + ] + ] + }, + "desc": "First ship of the {namecode:46}-class light cruisers, {namecode:46}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 302040, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nagara", + "painting": "changliang", + "prefab": "changliang", + "rarity_bg": "", + "ship_group": 30204, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.25, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 82, + "voice_actor_2": -1 + }, + "302041": { + "bg": "128", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.043, + 0 + ] + ], + "cannon": [ + [ + 1.09, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.03, + 0 + ] + ], + "vicegun": [ + [ + 1.17, + 1.094, + 0 + ] + ] + }, + "desc": "Good evening, Commander. This room...? Ah, it's a special Dragon Empery-themed set I bought from Akashi's. It looks pretty snazzy and was on sale, so I picked it up. Ehehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 302041, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Spring Breeze Leisure", + "painting": "changliang_2", + "prefab": "changliang_2", + "rarity_bg": "", + "ship_group": 30204, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.202, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 82, + "voice_actor_2": -1 + }, + "302050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.2, + 0.75, + 0 + ] + ], + "cannon": [ + [ + 0.2, + 0.75, + 0 + ] + ], + "torpedo": [ + [ + 0.47, + 0.14, + 0 + ] + ], + "vicegun": [ + [ + 0.2, + 0.75, + 0 + ] + ] + }, + "desc": "Second ship of the {namecode:46}-class light cruisers, {namecode:48}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 302050, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Isuzu", + "painting": "wushiling", + "prefab": "wushiling", + "rarity_bg": "", + "ship_group": 30205, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.39, + 0.58, + -0.16 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.56, + 2.57, + -0.58 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 82, + "voice_actor_2": -1 + }, + "302051": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.77, + 1.22, + 0 + ] + ], + "cannon": [ + [ + -0.85, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + -0.72, + 1.14, + 0 + ] + ] + }, + "desc": "There will be lots and lots of ghosts and spirits during Halloween... I, I’m not afraid!... say, can, can you hold my hand?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 302051, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Night of Fairy Tale", + "painting": "wushiling_2", + "prefab": "wushiling_2", + "rarity_bg": "", + "ship_group": 30205, + "ship_l2d_id": "", + "shop_id": 70114, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.32, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 82, + "voice_actor_2": -1 + }, + "302052": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.004, + 1.232, + 0 + ] + ], + "cannon": [ + [ + 1.018, + 1.165, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.004, + 1.218, + 0 + ] + ] + }, + "desc": "Commander? I only came here to help wrap up all the presents for tomorrow, n-not because the fireplace is too cozy and I don't want to get up...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 6, + "id": 302052, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cozy Christmas Eve", + "painting": "wushiling_3", + "prefab": "wushiling_3", + "rarity_bg": "", + "ship_group": 30205, + "ship_l2d_id": "", + "shop_id": 70281, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.32, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 82, + "voice_actor_2": -1 + }, + "302053": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.004, + 1.232, + 0 + ] + ], + "cannon": [ + [ + 1.018, + 1.165, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.004, + 1.218, + 0 + ] + ] + }, + "desc": "Wooah! ...I fell down again... But at least it's cooler now... Huh? A photoshoot? Noo, don't take a picture of me~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 6, + "id": 302053, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Accidental Overheat?", + "painting": "wushiling_5", + "prefab": "wushiling_5", + "rarity_bg": "", + "ship_group": 30205, + "ship_l2d_id": "", + "shop_id": 70598, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.32, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 82, + "voice_actor_2": -1 + }, + "302054": { + "bg": "112", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.52, + 3.23, + 0 + ] + ], + "cannon": [ + [ + 1.75, + 1.94, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.78, + 1.99, + 0 + ] + ] + }, + "desc": "W-w-woah! W-wait up! You guys are going too fast! I'm gonna fall! I'm gonna faaaaall! You're supposed to carry me in a way that doesn't give me a heart attack!! Commander, something crazy seems to have happened with my cavalry~!!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 6, + "id": 302054, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Charge, My Trusty Steeds!", + "painting": "wushiling_6", + "prefab": "wushiling_6", + "rarity_bg": "", + "ship_group": 30205, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.709, + 1.885, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 82, + "voice_actor_2": -1 + }, + "302059": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.112, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.082, + 1.122, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.052, + 1.08, + 0 + ] + ] + }, + "desc": "Retrofit complete! ...Umm, Commander? ...Wh-what's the matter? Do I really look that different...?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 302059, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Isuzu (Retrofit)", + "painting": "wushiling_g", + "prefab": "wushiling_g", + "rarity_bg": "", + "ship_group": 30205, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.39, + 0.58, + -0.16 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.56, + 2.57, + -0.58 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 82, + "voice_actor_2": -1 + }, + "302060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.59, + 1.557, + 0 + ] + ], + "cannon": [ + [ + 1.618, + 1.599, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.593, + 1.546, + 0 + ] + ] + }, + "desc": "Nagara-class light cruiser – Natori.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 302060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Natori", + "painting": "mingqu", + "prefab": "mingqu", + "rarity_bg": "", + "ship_group": 30206, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.661, + 2.484, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 381, + "voice_actor_2": -1 + }, + "302061": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.59, + 1.557, + 0 + ] + ], + "cannon": [ + [ + 1.618, + 1.599, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.593, + 1.546, + 0 + ] + ] + }, + "desc": "Mmfhuhu~♡ What's the matter, Commander? Enraptured by my charms? Heehee, you're frozen in place! You can't begin to think of how to compliment me, can you? \"Enough staring, out with the compliments!\"", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 302061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beach Paradise", + "painting": "mingqu_2", + "prefab": "mingqu_2", + "rarity_bg": "", + "ship_group": 30206, + "ship_l2d_id": "", + "shop_id": 70903, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.661, + 2.484, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 381, + "voice_actor_2": -1 + }, + "302070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.441, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.328, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.261, + 1.019, + 0 + ] + ] + }, + "desc": "Nagara-class light cruiser number four – Yura.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 302070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yura", + "painting": "youliang", + "prefab": "youliang", + "rarity_bg": "", + "ship_group": 30207, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.25, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 287, + "voice_actor_2": -1 + }, + "302071": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.48, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.48, + 0.981, + 0 + ] + ], + "torpedo": [ + [ + 0.009, + 0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.47, + 1.009, + 0 + ] + ] + }, + "desc": "Uh... I think these clothes are a bit too much... Commander, I... don't look out of place in these, do I...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 302071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "We are Succubi?", + "painting": "youliang_2", + "prefab": "youliang_2", + "rarity_bg": "", + "ship_group": 30207, + "ship_l2d_id": "", + "shop_id": 70594, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.25, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 287, + "voice_actor_2": -1 + }, + "302080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.09, + 0.8, + 0 + ] + ], + "cannon": [ + [ + 0.09, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 0.09, + 0.8, + 0 + ] + ] + }, + "desc": "I'm Kinu. If you want this demon to do your bidding, then you'd better show me what you're capable of!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 302080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kinu", + "painting": "guinu", + "prefab": "guinu", + "rarity_bg": "", + "ship_group": 30208, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.25, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 214, + "voice_actor_2": -1 + }, + "302081": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.09, + 0.8, + 0 + ] + ], + "cannon": [ + [ + 0.09, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 0.09, + 0.8, + 0 + ] + ] + }, + "desc": "Grr! What are you here for? Speak up. ...Oh, you just wanted to take a tour of the club activities? Sorry 'bout that, I don't like getting disturbed in the middle of this kind of training.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 302081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's Blade Demon", + "painting": "guinu_2", + "prefab": "guinu_2", + "rarity_bg": "", + "ship_group": 30208, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.25, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 214, + "voice_actor_2": -1 + }, + "302082": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.956, + 1.028, + 0 + ] + ], + "cannon": [ + [ + 1.004, + 1.178, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + 0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.027, + 1.068, + 0 + ] + ] + }, + "desc": "Well? I've still got one card in my hand. If you want to win, then show me everything you've got! I will not have you disrespect me just for wearing a silly costume!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 302082, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Token and Ghost", + "painting": "guinu_3", + "prefab": "guinu_3", + "rarity_bg": "", + "ship_group": 30208, + "ship_l2d_id": "", + "shop_id": 70550, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 214, + "voice_actor_2": -1 + }, + "302089": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.09, + 0.8, + 0 + ] + ], + "cannon": [ + [ + 0.09, + 0.8, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 0.09, + 0.8, + 0 + ] + ] + }, + "desc": "Retrofit complete... Look forward to commanding the might of the demon ascended. I shall not disappoint you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 2, + "id": 302089, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kinu (Retrofit)", + "painting": "guinu_g", + "prefab": "guinu_g", + "rarity_bg": "", + "ship_group": 30208, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.25, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 214, + "voice_actor_2": -1 + }, + "302090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.961, + 0.476, + 0 + ] + ], + "cannon": [ + [ + 0.961, + 0.476, + 0 + ] + ], + "torpedo": [ + [ + 0.26, + 0.251, + 0 + ] + ], + "vicegun": [ + [ + 0.961, + 0.476, + 0 + ] + ] + }, + "desc": "Sixth ship of the {namecode:46}-class light cruisers, {namecode:47}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 302090, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Abukuma", + "painting": "awuwei", + "prefab": "awuwei", + "rarity_bg": "", + "ship_group": 30209, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.498, + 0.298, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.44, + 2.15, + -0.34 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 82, + "voice_actor_2": -1 + }, + "302099": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.76, + 0.79, + 0 + ] + ], + "cannon": [ + [ + 0.76, + 0.79, + 0 + ] + ], + "torpedo": [ + [ + 0.28, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.76, + 0.79, + 0 + ] + ] + }, + "desc": "Combat retrofit complete! First Torpedo Squadron flagship, Abukuma, ready to sortie any time!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 302099, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Abukuma (Retrofit)", + "painting": "awuwei_g", + "prefab": "awuwei_g", + "rarity_bg": "", + "ship_group": 30209, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.18, + 0.82, + -0.3 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.18, + 2.39, + -1.2 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 82, + "voice_actor_2": -1 + }, + "302100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.37, + 0.96, + 0 + ] + ], + "cannon": [ + [ + -0.01, + 0.95, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 1.36, + 0.91, + 0 + ] + ] + }, + "desc": "Mogami-class Heavy Cruiser no. 1 - Mogami", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 302100, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mogami", + "painting": "zuishang", + "prefab": "zuishang", + "rarity_bg": "", + "ship_group": 30210, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.35, + 2.34, + -0.34 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 142, + "voice_actor_2": -1 + }, + "302109": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.29, + 1.02, + 0 + ] + ], + "cannon": [ + [ + -0.3, + 0.96, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + -0.31, + 1.11, + 0 + ] + ] + }, + "desc": "Are you sure this is a retrofit and not some weird hazing ritual? I look... Well, I suppose I do feel stronger. Guess I'll try to work a bit harder. Wouldn't hurt for you to look forward to it a little.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 2, + "id": 302109, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mogami (Retrofit)", + "painting": "zuishang_g", + "prefab": "zuishang_g", + "rarity_bg": "", + "ship_group": 30210, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.44, + 2.15, + -0.34 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 142, + "voice_actor_2": -1 + }, + "302110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.09, + 1.29, + 0 + ] + ], + "cannon": [ + [ + 0.01, + 1.28, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.06, + 1.26, + 0 + ] + ] + }, + "desc": "Mogami-class heavy cruiser number two – Mikuma.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 302110, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mikuma", + "painting": "sanwei", + "prefab": "sanwei", + "rarity_bg": "", + "ship_group": 30211, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.43, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 140, + "voice_actor_2": -1 + }, + "302111": { + "bg": "142", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.989, + 1.303, + 0 + ] + ], + "cannon": [ + [ + 1.127, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0.009, + -0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.142, + 1.103, + 0 + ] + ] + }, + "desc": "Commander, may you and all our friends enjoy peace and good health... Alright, what did you think? That was a ceremonial dance I'd like to offer to everyone at the main event.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 302111, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Offerings of Floral Grace", + "painting": "sanwei_2", + "prefab": "sanwei_2", + "rarity_bg": "", + "ship_group": 30211, + "ship_l2d_id": "", + "shop_id": 70722, + "shop_type_id": 21, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.668, + 1.941, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 140, + "voice_actor_2": -1 + }, + "302120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.284, + 0.862, + 0 + ] + ], + "cannon": [ + [ + 1.319, + 0.862, + 0 + ] + ], + "torpedo": [ + [ + 0.168, + 0.093, + 0 + ] + ], + "vicegun": [ + [ + 1.31, + 0.898, + 0 + ] + ] + }, + "desc": "Sendai-class light cruiser number one – Sendai.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 302120, + "illustrator": 41, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sendai", + "painting": "chuannei", + "prefab": "chuannei", + "rarity_bg": "", + "ship_group": 30212, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.464, + 2.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "302129": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.02, + 0.83, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 0.86, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.04, + 0.9, + 0 + ] + ] + }, + "desc": "Hmh. Guess I won't be needin' these bandages anymore. Commander, how about we find out how strong I've gotten... by having you take one of my punches?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 2, + "id": 302129, + "illustrator": 41, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sendai (Retrofit)", + "painting": "chuannei_g", + "prefab": "chuannei_g", + "rarity_bg": "", + "ship_group": 30212, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.24, + 2.65, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "302130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 0.66, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 0.66, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.16, + 0.66, + 0 + ] + ] + }, + "desc": "Sendai-class No. 2 light cruiser, Jintsuu.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 302130, + "illustrator": 41, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jintsuu", + "painting": "shentong", + "prefab": "shentong", + "rarity_bg": "", + "ship_group": 30213, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "302131": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.34, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.3, + 1.13, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.32, + 1.11, + 0 + ] + ] + }, + "desc": "Hmm? Is it unusual? Hah. Even I require a change of pace to clear my mind every so often. Commander, why don’t you come out and get some fresh air as well?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 302131, + "illustrator": 41, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Tactician's Vacation", + "painting": "shentong_2", + "prefab": "shentong_2", + "rarity_bg": "", + "ship_group": 30213, + "ship_l2d_id": "", + "shop_id": 70110, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "302132": { + "bg": "158", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.13, + 1.138, + 0 + ] + ], + "cannon": [ + [ + 1.151, + 0.995, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 0.941, + 0.995, + 0 + ] + ] + }, + "desc": "\"Where do you think you're going so early in the morning, Little Red Riding Hood?\" ...Oh, if it isn't the Commander. This might be my own little whim, but I often find myself thinking the same way as this character... If you don't mind, I'd like to hear your feedback about my acting.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 302132, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Gray Wolf's Ploy", + "painting": "shentong_4", + "prefab": "shentong_4", + "rarity_bg": "", + "ship_group": 30213, + "ship_l2d_id": "", + "shop_id": 70710, + "shop_type_id": 19, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.456, + 2.395, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "302139": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.07, + 0.81, + 0 + ] + ], + "cannon": [ + [ + 1.07, + 0.81, + 0 + ] + ], + "torpedo": [ + [ + 0.22, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 1.07, + 0.81, + 0 + ] + ] + }, + "desc": "Since I've gotten used to living with you, Commander, I've decided to be more laid-back after receiving my remodel. My dance? Hehe... I can't show that to just anyone so easily.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 2, + "id": 302139, + "illustrator": 41, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jintsuu (Retrofit)", + "painting": "shentong_g", + "prefab": "shentong_g", + "rarity_bg": "", + "ship_group": 30213, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "302140": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.97, + 0.78, + 0 + ] + ], + "cannon": [ + [ + 0.99, + 0.75, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 0.96, + 0.75, + 0 + ] + ] + }, + "desc": "Sendai-class light cruiser number three – Naka.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 302140, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Naka", + "painting": "nake", + "prefab": "nake", + "rarity_bg": "", + "ship_group": 30214, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 167, + "voice_actor_2": -1 + }, + "302141": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.958, + 1.086, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 1.068, + 0 + ] + ], + "torpedo": [ + [ + -0.012, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.14, + 1.092, + 0 + ] + ] + }, + "desc": "Ahaha! Another big one's coming~! Phew~ that felt amazing~! Ah, Commander, let's hit the waves together, shall we?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 302141, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Foxy Summer Surfer", + "painting": "nake_2", + "prefab": "nake_2", + "rarity_bg": "", + "ship_group": 30214, + "ship_l2d_id": "", + "shop_id": 70345, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 167, + "voice_actor_2": -1 + }, + "302200": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.13, + 0.7, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 0.7, + 0 + ] + ], + "torpedo": [ + [ + 0.164, + 0.102, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 0.7, + 0 + ] + ] + }, + "desc": "Agano-class light cruiser number one – Agano.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 302200, + "illustrator": 41, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Agano", + "painting": "aheye", + "prefab": "aheye", + "rarity_bg": "", + "ship_group": 30220, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 132, + "voice_actor_2": -1 + }, + "302201": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.13, + 1.195, + 0 + ] + ], + "cannon": [ + [ + 1.2, + 1.108, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.161, + 1.107, + 0 + ] + ] + }, + "desc": "Even though I'm not really into this whole \"Christmas\" thing, if it means I get to toy around with your heart by wearing this cute outfit of mine, then I suppose I would be interested. Hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 302201, + "illustrator": 41, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Christmas Eve Tease", + "painting": "aheye_3", + "prefab": "aheye_3", + "rarity_bg": "", + "ship_group": 30220, + "ship_l2d_id": "", + "shop_id": 70279, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 132, + "voice_actor_2": -1 + }, + "302202": { + "bg": "113", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.99, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.2, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.14, + 0.97, + 0 + ] + ] + }, + "desc": "\"Oh my, you're also out for a stroll? Hehe, my name's Agano. And what might yours be?\" ...Jeez, Commander, take this more seriously. According to the setting, we just met for the first time.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 302202, + "illustrator": 41, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dating Game?", + "painting": "aheye_2", + "prefab": "aheye_2", + "rarity_bg": "", + "ship_group": 30220, + "ship_l2d_id": "", + "shop_id": 70299, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 132, + "voice_actor_2": -1 + }, + "302203": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.082, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.134, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.14, + 1.115, + 0 + ] + ] + }, + "desc": "The blunt approach is not my style, but I cannot have Noshiro think I only inch my way to success... Oh, I was just talking to myself, Commander. Hehe, so anyway, would you mind being my partner for tonight's party?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 302203, + "illustrator": 41, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blue Butterfly's Confession", + "painting": "aheye_4", + "prefab": "aheye_4", + "rarity_bg": "", + "ship_group": 30220, + "ship_l2d_id": "", + "shop_id": 70377, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 132, + "voice_actor_2": -1 + }, + "302210": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.13, + 0.7, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 0.7, + 0 + ] + ], + "torpedo": [ + [ + 0.164, + 0.102, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 0.7, + 0 + ] + ] + }, + "desc": "Agano-class light cruiser number two – Noshiro.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 302210, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Noshiro", + "painting": "nengdai", + "prefab": "nengdai", + "rarity_bg": "", + "ship_group": 30221, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 147, + "voice_actor_2": -1 + }, + "302211": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.13, + 0.7, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 0.7, + 0 + ] + ], + "torpedo": [ + [ + 0.164, + 0.102, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 0.7, + 0 + ] + ] + }, + "desc": "Just as I thought, this is the perfect place for watching fireworks. You came here thinking that too, didn't you?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 302211, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "home": 8, + "login": 8, + "touch2": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 20, + 50, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Uncharted Festival Grounds?", + "painting": "nengdai_2", + "prefab": "nengdai_2", + "rarity_bg": "", + "ship_group": 30221, + "ship_l2d_id": "", + "shop_id": 70283, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 147, + "voice_actor_2": -1 + }, + "302212": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.336, + 0.931, + 0 + ] + ], + "cannon": [ + [ + 1.236, + 0.978, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + 0.007, + 0 + ] + ], + "vicegun": [ + [ + 1.276, + 0.938, + 0 + ] + ] + }, + "desc": "Commander, what are you standing around for? Did you also need a change of pace? That makes two of us— Come, there's nothing to be afraid of here.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 302212, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Xanadu's Eventide", + "painting": "nengdai_4", + "prefab": "nengdai_4", + "rarity_bg": "", + "ship_group": 30221, + "ship_l2d_id": "", + "shop_id": 70422, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 147, + "voice_actor_2": -1 + }, + "302213": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.303, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 1.28, + 0.993, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.277, + 0.99, + 0 + ] + ] + }, + "desc": "Whew... Oh, are you cold by any chance? I have some hot tea for you if you'd like. If you want someone to chat with, I'd be glad to keep you company.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 302213, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 20, + 50, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fragrance of the Eastern Snow", + "painting": "nengdai_6", + "prefab": "nengdai_6", + "rarity_bg": "", + "ship_group": 30221, + "ship_l2d_id": "", + "shop_id": 70488, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.524, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 147, + "voice_actor_2": -1 + }, + "302214": { + "bg": "109", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.137, + 1.118, + 0 + ] + ], + "cannon": [ + [ + 1.22, + 0.993, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.157, + 0.85, + 0 + ] + ] + }, + "desc": "Why don't you unwind for a bit before you start reflecting on the day's happenings? I'm sure it'll be far more efficient that way.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 2, + "id": 302214, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 20, + 50, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cozy Enclave", + "painting": "nengdai_5", + "prefab": "nengdai_5", + "rarity_bg": "", + "ship_group": 30221, + "ship_l2d_id": "", + "shop_id": 70519, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.633, + 2.477, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 147, + "voice_actor_2": -1 + }, + "302215": { + "bg": "150", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.02, + 1.21, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.12, + 0.91, + 0 + ] + ] + }, + "desc": "Welcom...?! What are you doing here? Wait, don't leave—I was just surprised, that's all... Well, what would you like to order?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 2, + "id": 302215, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hold the Ice", + "painting": "nengdai_7", + "prefab": "nengdai_7", + "rarity_bg": "", + "ship_group": 30221, + "ship_l2d_id": "", + "shop_id": 70645, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 147, + "voice_actor_2": -1 + }, + "302216": { + "bg": "133", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.13, + 0.7, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 0.7, + 0 + ] + ], + "torpedo": [ + [ + 0.164, + 0.102, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 0.7, + 0 + ] + ] + }, + "desc": "...Take that! Heehee... Ahaha! Phew... I know you don't like admitting defeat, but I got you pretty good there. I might have tried a bit too hard, but I'm pretty sure you were the one who told me to give it my all.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 2, + "id": 302216, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamAngleY": [ + -15, + 15 + ], + "ParamEyeBallX": [ + -0.7, + 0.7 + ], + "ParamEyeBallY": [ + -0.7, + 0.7 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Unwinding in the Sunshine", + "painting": "nengdai_3", + "prefab": "nengdai_3", + "rarity_bg": "", + "ship_group": 30221, + "ship_l2d_id": [ + 3022161, + 3022162 + ], + "shop_id": 70790, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 147, + "voice_actor_2": -1 + }, + "302218": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.208, + 1.162, + 0 + ] + ], + "cannon": [ + [ + 1.143, + 1.034, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.134, + 0.935, + 0 + ] + ] + }, + "desc": "Receiving everyone's blessings is truly a deeply moving experience. But for now, let's set everything else aside and partake of our sweet bliss. After all, you're not just a spectator anymore– we're in this ride together, hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 2, + "id": 302218, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Tale of Two Lovers", + "painting": "nengdai_h", + "prefab": "nengdai_h", + "rarity_bg": "", + "ship_group": 30221, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.575, + 2.633, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 147, + "voice_actor_2": -1 + }, + "302230": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.396, + 1.353, + 0 + ] + ], + "cannon": [ + [ + 1.198, + 0.923, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.172, + 0.879, + 0 + ] + ] + }, + "desc": "Agano-class light cruiser number four – Sakawa.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 302230, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sakawa", + "painting": "jiuyun", + "prefab": "jiuyun", + "rarity_bg": "", + "ship_group": 30223, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.503, + 2.288, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 340, + "voice_actor_2": -1 + }, + "302231": { + "bg": "160", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.293, + 1.422, + 0 + ] + ], + "cannon": [ + [ + 1.224, + 0.905, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.181, + 0.897, + 0 + ] + ] + }, + "desc": "Welcome! Heehee, you came because you were just so keen to see me, am I right? Then I've got to make you feel real welcome♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 302231, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamAngleY": [ + -15, + 15 + ] + }, + "l2d_se": { + "home": [ + "bell", + 0.3 + ] + }, + "l2d_voice_calibrate": { + "expedition": 0.63, + "headtouch": 0.66, + "home": 0.6, + "mail": 0.5, + "main_1": 0.5, + "main_2": 0.66, + "main_3": 0.5, + "mission": 0.66, + "mission_complete": 0.5, + "propose": 0.83, + "touch": 0.6, + "touch2": 0.63 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + 90, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Colors of Love", + "painting": "jiuyun_2", + "prefab": "jiuyun_2", + "rarity_bg": "", + "ship_group": 30223, + "ship_l2d_id": "", + "shop_id": 70741, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.521, + 2.305, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 340, + "voice_actor_2": -1 + }, + "302232": { + "bg": "168", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.396, + 1.353, + 0 + ] + ], + "cannon": [ + [ + 1.198, + 0.923, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.172, + 0.879, + 0 + ] + ] + }, + "desc": "Wow, look how far you pursued me. You must have really, reeeally wanted to see me, huh, Commander~? Heheh, want a popsicle?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 302232, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Icy Indulgence", + "painting": "jiuyun_3", + "prefab": "jiuyun_3", + "rarity_bg": "", + "ship_group": 30223, + "ship_l2d_id": "", + "shop_id": 70850, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.503, + 2.288, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 340, + "voice_actor_2": -1 + }, + "302233": { + "bg": "161", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.396, + 1.353, + 0 + ] + ], + "cannon": [ + [ + 1.198, + 0.923, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.172, + 0.879, + 0 + ] + ] + }, + "desc": "Laaa la-laaa♪ Oh, Commander. Here to see me again? I know you're madly in love and want to watch me practice, but people will think you're weird if you keep coming and going constantly. Heehee♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 302233, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Keys of Love", + "painting": "jiuyun_4", + "prefab": "jiuyun_4", + "rarity_bg": "", + "ship_group": 30223, + "ship_l2d_id": "", + "shop_id": 70908, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.503, + 2.288, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 340, + "voice_actor_2": -1 + }, + "303010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.304, + 0.803, + 0 + ] + ], + "cannon": [ + [ + 0.571, + 0.481, + 0 + ] + ], + "torpedo": [ + [ + 0.188, + 0.274, + 0 + ] + ], + "vicegun": [ + [ + -0.304, + 0.803, + 0 + ] + ] + }, + "desc": "First ship of the {namecode:53}-class heavy cruisers, {namecode:53}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303010, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Furutaka", + "painting": "guying", + "prefab": "guying", + "rarity_bg": "", + "ship_group": 30301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.498, + 0.298, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.44, + 2.15, + -0.34 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 48, + "voice_actor_2": -1 + }, + "303019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.97, + 0.7, + 0 + ] + ], + "cannon": [ + [ + 0.97, + 0.7, + 0 + ] + ], + "torpedo": [ + [ + 0.06, + 0.16, + 0 + ] + ], + "vicegun": [ + [ + 0.97, + 0.7, + 0 + ] + ] + }, + "desc": "What's wrong, Commander? Why are you staring at me like that? My body? Yes, some things seem to have gotten bigger... Want to take a look?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 2, + "id": 303019, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Furutaka (Retrofit)", + "painting": "guying_g", + "prefab": "guying_g", + "rarity_bg": "", + "ship_group": 30301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.19, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 48, + "voice_actor_2": -1 + }, + "303020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.628, + 0.505, + 0 + ] + ], + "cannon": [ + [ + -0.231, + 0.859, + 0 + ] + ], + "torpedo": [ + [ + 0.267, + 0.421, + 0 + ] + ], + "vicegun": [ + [ + -0.127, + 0.56, + 0 + ] + ] + }, + "desc": "Second ship of {namecode:53}-class heavy cruisers, {namecode:54}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303020, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kako", + "painting": "jiagu", + "prefab": "jiagu", + "rarity_bg": "", + "ship_group": 30302, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.498, + 0.349, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.25, + 2.64, + -0.58 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 48, + "voice_actor_2": -1 + }, + "303029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.09, + 0.57, + 0 + ] + ], + "cannon": [ + [ + 1.09, + 0.57, + 0 + ] + ], + "torpedo": [ + [ + 0.07, + 0.16, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 0.57, + 0 + ] + ] + }, + "desc": "Performance upgraded, improvements complete. This way I can finally... *cough* Oh, it's nothing, Commander. I must simply be more strict with you in the future. Are you ready for your psychological examination?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 2, + "id": 303029, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kako (Retrofit)", + "painting": "jiagu_g", + "prefab": "jiagu_g", + "rarity_bg": "", + "ship_group": 30302, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.41, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 48, + "voice_actor_2": -1 + }, + "303030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.628, + 0.505, + 0 + ] + ], + "cannon": [ + [ + -0.231, + 0.859, + 0 + ] + ], + "torpedo": [ + [ + 0.267, + 0.421, + 0 + ] + ], + "vicegun": [ + [ + -0.127, + 0.56, + 0 + ] + ] + }, + "desc": "First ship of the {namecode:55}-class heavy cruisers, {namecode:55}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303030, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Aoba", + "painting": "qingye", + "prefab": "qingye", + "rarity_bg": "", + "ship_group": 30303, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.498, + 0.349, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.25, + 2.64, + -0.58 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 48, + "voice_actor_2": -1 + }, + "303040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.628, + 0.505, + 0 + ] + ], + "cannon": [ + [ + -0.231, + 0.859, + 0 + ] + ], + "torpedo": [ + [ + 0.267, + 0.421, + 0 + ] + ], + "vicegun": [ + [ + -0.127, + 0.56, + 0 + ] + ] + }, + "desc": "Second ship of the {namecode:55}-class heavy cruisers, {namecode:56}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303040, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kinugasa", + "painting": "yili", + "prefab": "yili", + "rarity_bg": "", + "ship_group": 30304, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.498, + 0.349, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.25, + 2.64, + -0.58 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 48, + "voice_actor_2": -1 + }, + "303060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.862, + 1.076, + 0 + ] + ], + "cannon": [ + [ + 1.881, + 1.057, + 0 + ] + ], + "torpedo": [ + [ + 0.024, + 0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.881, + 1.057, + 0 + ] + ] + }, + "desc": "Tone-class heavy cruiser number two – Chikuma.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303060, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chikuma", + "painting": "zhumo", + "prefab": "zhumo", + "rarity_bg": "", + "ship_group": 30306, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.73, + 0.9, + -0.37 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.12, + 2.41, + -0.49 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 288, + "voice_actor_2": -1 + }, + "303070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.71, + 0.6, + 0 + ] + ], + "cannon": [ + [ + 0.71, + 0.6, + 0 + ] + ], + "torpedo": [ + [ + 0.1, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.71, + 0.6, + 0 + ] + ] + }, + "desc": "First ship of the {namecode:63}-class heavy cruisers, {namecode:63}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303070, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Myoukou", + "painting": "miaogao", + "prefab": "miaogao", + "rarity_bg": "", + "ship_group": 30307, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.73, + 0.9, + -0.37 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.12, + 2.41, + -0.49 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 63, + "voice_actor_2": -1 + }, + "303080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.781, + 0.548, + 0 + ] + ], + "cannon": [ + [ + 0.781, + 0.548, + 0 + ] + ], + "torpedo": [ + [ + 0.161, + 0.189, + 0 + ] + ], + "vicegun": [ + [ + 0.781, + 0.548, + 0 + ] + ] + }, + "desc": "Second ship of the {namecode:63}-class heavy cruisers, {namecode:64}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303080, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nachi", + "painting": "nazhi", + "prefab": "nazhi", + "rarity_bg": "", + "ship_group": 30308, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.498, + 0.298, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.44, + 2.15, + -0.34 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 63, + "voice_actor_2": -1 + }, + "303089": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.879, + 1.807, + 0 + ] + ], + "cannon": [ + [ + 2.021, + 1.622, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.951, + 1.604, + 0 + ] + ] + }, + "desc": "Howzit? Now that my retrofit's all done, don't I look even more perfect than before? Maybe now, our ever-so-reserved Commander here will be super impressed by my new abilities~ Wh-what do you mean I've been staying up too late training with my rigging? W-we're not gonna talk about that!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 2, + "id": 303089, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nachi (Retrofit)", + "painting": "nazhi_g", + "prefab": "nazhi_g", + "rarity_bg": "", + "ship_group": 30308, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.572, + 2.29, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 63, + "voice_actor_2": -1 + }, + "303090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.23, + 0.95, + 0 + ] + ], + "cannon": [ + [ + 1.21, + 0.93, + 0 + ] + ], + "torpedo": [ + [ + 0.161, + 0.189, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 0.98, + 0 + ] + ] + }, + "desc": "Myoukou-class heavy cruiser number three - Ashigara", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 303090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ashigara", + "painting": "zubing", + "prefab": "zubing", + "rarity_bg": "", + "ship_group": 30309, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.47, + -0.34 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 138, + "voice_actor_2": -1 + }, + "303091": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 0.79, + 0 + ] + ], + "cannon": [ + [ + 1.28, + 0.84, + 0 + ] + ], + "torpedo": [ + [ + 0.161, + 0.189, + 0 + ] + ], + "vicegun": [ + [ + 1.24, + 0.85, + 0 + ] + ] + }, + "desc": "Phew... I finally managed to fix my dress... but I just can't seem to get used to it. Commander, how does my dress look? It's not strange, is it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 303091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Brief Intermission", + "painting": "zubing_2", + "prefab": "zubing_2", + "rarity_bg": "", + "ship_group": 30309, + "ship_l2d_id": "", + "shop_id": 70138, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.44, + 2.15, + -0.34 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 138, + "voice_actor_2": -1 + }, + "303092": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 0.79, + 0 + ] + ], + "cannon": [ + [ + 1.28, + 0.84, + 0 + ] + ], + "torpedo": [ + [ + 0.161, + 0.189, + 0 + ] + ], + "vicegun": [ + [ + 1.24, + 0.85, + 0 + ] + ] + }, + "desc": "This whole \"fashion coordination\" concept is still a bit hard for me to wrap my head around, so I'm glad Nachi helped me pick out a swimsuit. Now, I just need to... Hey, Commander! Open your mouth! H-huh?! But this is what Nachi told me to do... is there some sort of problem?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 303092, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kaleidoscopic Summer", + "painting": "zubing_3", + "prefab": "zubing_3", + "rarity_bg": "", + "ship_group": 30309, + "ship_l2d_id": "", + "shop_id": 70343, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.44, + 2.15, + -0.34 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 138, + "voice_actor_2": -1 + }, + "303100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.189, + 1.387, + 0 + ] + ], + "cannon": [ + [ + 1.267, + 0.94, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.043, + 1.129, + 0 + ] + ] + }, + "desc": "Myoukou-class heavy cruiser number four – Haguro.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 303100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Haguro", + "painting": "yuhei", + "prefab": "yuhei", + "rarity_bg": "", + "ship_group": 30310, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 341, + "voice_actor_2": -1 + }, + "303101": { + "bg": "160", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.284, + 1.499, + 0 + ] + ], + "cannon": [ + [ + 1.344, + 0.888, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.991, + 1.129, + 0 + ] + ] + }, + "desc": "Ow! That freakin' stings... Can't believe I actually slipped on the stairs and hit my foot. Just how clumsy am I? ...Oh, Commander? Uh, welcome?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 303101, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Blessing in Disguise?", + "painting": "yuhei_2", + "prefab": "yuhei_2", + "rarity_bg": "", + "ship_group": 30310, + "ship_l2d_id": "", + "shop_id": 70742, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 341, + "voice_actor_2": -1 + }, + "303102": { + "bg": "108", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.284, + 1.499, + 0 + ] + ], + "cannon": [ + [ + 1.344, + 0.888, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.991, + 1.129, + 0 + ] + ] + }, + "desc": "H-hey, help me out! ...No, I didn't come in here for fun. When I finished my security duty last night, I got to thinking about how I was going to give you chocolate for Valentine's and fell asleep. When I woke up, I was stuffed in this thing...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 303102, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Caught By Nightfall", + "painting": "yuhei_3", + "prefab": "yuhei_3", + "rarity_bg": "", + "ship_group": 30310, + "ship_l2d_id": "", + "shop_id": 70820, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 341, + "voice_actor_2": -1 + }, + "303110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.89, + 0.44, + 0 + ] + ], + "cannon": [ + [ + 0.89, + 0.44, + 0 + ] + ], + "torpedo": [ + [ + 0.23, + 0.19, + 0 + ] + ], + "vicegun": [ + [ + 0.89, + 0.44, + 0 + ] + ] + }, + "desc": "First ship of the {namecode:66}-class heavy cruisers, {namecode:66}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303110, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Takao", + "painting": "gaoxiong", + "prefab": "gaoxiong", + "rarity_bg": "", + "ship_group": 30311, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.78, + 0.26 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.68, + 2.55, + -0.44 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "303112": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.36, + 0.18, + 0 + ] + ], + "cannon": [ + [ + 1.36, + 0.18, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + -0.23, + 0 + ] + ], + "vicegun": [ + [ + 1.36, + 0.18, + 0 + ] + ] + }, + "desc": "Commander, even I’ll get embarrassed if you keep staring at me like that... Eh? Why did I bring a volleyball? Did you not order me to bring it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 303112, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beach Rhapsody", + "painting": "gaoxiong_2", + "prefab": "gaoxiong_2", + "rarity_bg": "", + "ship_group": 30311, + "ship_l2d_id": "", + "shop_id": 70002, + "shop_type_id": 6, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.43, + -0.01, + -0.14 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.56, + 1.72, + -1.31 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "303113": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.59, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.6, + 0.45, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + -0.29, + 0 + ] + ], + "vicegun": [ + [ + 1.6, + 0.53, + 0 + ] + ] + }, + "desc": "Practicing writing is a type of training, isn't it? Commander... do you want to sit down and write with me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 9, + "id": 303113, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Lessons of Spring", + "painting": "gaoxiong_3", + "prefab": "gaoxiong_3", + "rarity_bg": "", + "ship_group": 30311, + "ship_l2d_id": "", + "shop_id": 70042, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "303114": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.84, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 0.82, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.85, + 1.13, + 0 + ] + ] + }, + "desc": "Hmm... school life, huh? It's a fairly fresh experience for me. Would it be fine to pin my hair up like this? What do you think, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 2, + "id": 303114, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "School Romanza", + "painting": "gaoxiong_4", + "prefab": "gaoxiong_4", + "rarity_bg": "", + "ship_group": 30311, + "ship_l2d_id": "", + "shop_id": 70072, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "303115": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.434, + 1.091, + 0 + ] + ], + "cannon": [ + [ + 1.571, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.527, + 1.097, + 0 + ] + ] + }, + "desc": "Ugh... S-such shameless attire... If not for Atago saying that it would benefit me to experience different things...! It looks good on me?! I, I see...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 2, + "id": 303115, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Full Throttle Charmer", + "painting": "gaoxiong_5", + "prefab": "gaoxiong_5", + "rarity_bg": "", + "ship_group": 30311, + "ship_l2d_id": "", + "shop_id": 70384, + "shop_type_id": 14, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "303116": { + "bg": "154", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.434, + 1.091, + 0 + ] + ], + "cannon": [ + [ + 1.44, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.34, + 1.04, + 0 + ] + ] + }, + "desc": "My five senses are sharper than ever, perhaps even TOO sharp. No matter what trap awaits, my only way forward is to pierce through and focus on overcoming this trial... Haaah!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 2, + "id": 303116, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Divine Exorcist's Blade", + "painting": "gaoxiong_6", + "prefab": "gaoxiong_6", + "rarity_bg": "", + "ship_group": 30311, + "ship_l2d_id": "", + "shop_id": 70935, + "shop_type_id": 23, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + -1651, + -1193, + 0 + ], + [ + 0.7 + ] + ], + "tag": [ + 2, + 7 + ], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "303118": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.4, + 0.72, + 0 + ] + ], + "cannon": [ + [ + 1.37, + 0.65, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.18, + 0 + ] + ], + "vicegun": [ + [ + 1.35, + 0.64, + 0 + ] + ] + }, + "desc": "Commander, I've been undertaking countless bride training sessions in order to prepare for this day. As your bride, I won't let you down.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 2, + "id": 303118, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sakura Hanami", + "painting": "gaoxiong_h", + "prefab": "gaoxiong_h", + "rarity_bg": "", + "ship_group": 30311, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "303120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.89, + 0.44, + 0 + ] + ], + "cannon": [ + [ + 0.89, + 0.44, + 0 + ] + ], + "torpedo": [ + [ + 0.23, + 0.19, + 0 + ] + ], + "vicegun": [ + [ + 0.89, + 0.44, + 0 + ] + ] + }, + "desc": "Second ship of the {namecode:66}-class heavy cruisers, {namecode:67}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303120, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Atago", + "painting": "aidang", + "prefab": "aidang", + "rarity_bg": "", + "ship_group": 30312, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.14, + 0.22, + 0.03 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.68, + 1.84, + -0.58 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": 338 + }, + "303121": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.68, + 0.51, + 0 + ] + ], + "cannon": [ + [ + 1.68, + 0.51, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + -0.25, + 0 + ] + ], + "vicegun": [ + [ + 1.68, + 0.51, + 0 + ] + ] + }, + "desc": "The warm breeze that gently wraps around your skin, and delicate footsteps across the white sand... isn’t this the essence of summer? Commander, what does summer mean to you?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 303121, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "expedition": 0.5, + "home": 0.5, + "login": 0.5, + "mail": 0.5, + "main_1": 0.83, + "main_3": 0.67, + "mission": 0.5, + "mission_complte": 0.5, + "propose": 0.57, + "touch": 0.3, + "touch2": 1.37 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 35, + -237, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer March", + "painting": "aidang_2", + "prefab": "aidang_2", + "rarity_bg": "", + "ship_group": 30312, + "ship_l2d_id": "", + "shop_id": 70009, + "shop_type_id": 6, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.29, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 9, + "voice_actor_2": 338 + }, + "303122": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.56, + 0.62, + 0 + ] + ], + "cannon": [ + [ + 1.56, + 0.62, + 0 + ] + ], + "torpedo": [ + [ + 1.56, + 0.62, + 0 + ] + ], + "vicegun": [ + [ + 1.56, + 0.62, + 0 + ] + ] + }, + "desc": "Oh my, it's begun to snow. Commander, should we find a nice, quiet place to enjoy the view?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 303122, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hallmarks of Winter", + "painting": "aidang_3", + "prefab": "aidang_3", + "rarity_bg": "", + "ship_group": 30312, + "ship_l2d_id": "", + "shop_id": 70030, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 9, + "voice_actor_2": 338 + }, + "303123": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.71, + 1.06, + 0 + ] + ], + "cannon": [ + [ + 0.74, + 1.14, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.18, + 0 + ] + ], + "vicegun": [ + [ + 0.76, + 1.15, + 0 + ] + ] + }, + "desc": "Student handbook, textbooks... twin guns, torpedoes... and what else... Huh? Commander, I'm just packing my bags for school... is there anything I'm missing?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 303123, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "School Traumerei", + "painting": "aidang_4", + "prefab": "aidang_4", + "rarity_bg": "", + "ship_group": 30312, + "ship_l2d_id": "", + "shop_id": 70073, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 9, + "voice_actor_2": 338 + }, + "303124": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.403, + 1.134, + 0 + ] + ], + "cannon": [ + [ + 1.705, + 1.066, + 0 + ] + ], + "torpedo": [ + [ + 0.013, + 0.007, + 0 + ] + ], + "vicegun": [ + [ + 1.651, + 1.076, + 0 + ] + ] + }, + "desc": "So, you want big sister to be your \"fleet queen\"? You got it. But you'd better give it your all out there, or else I'll be upset with you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 2, + "id": 303124, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Stunning Speedster", + "painting": "aidang_5", + "prefab": "aidang_5", + "rarity_bg": "", + "ship_group": 30312, + "ship_l2d_id": "", + "shop_id": 70385, + "shop_type_id": 14, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 9, + "voice_actor_2": 338 + }, + "303128": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.34, + 0.72, + 0 + ] + ], + "cannon": [ + [ + 1.33, + 0.71, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.33, + 0.66, + 0 + ] + ] + }, + "desc": "Commander... Ahh, from now on, shouldn't I call you \"darling?\" Come and hold my hand... Ah, at times like these, I just can't help but to want to eat you up, dar~ling~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 303128, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lily-White Vow", + "painting": "aidang_h", + "prefab": "aidang_h", + "rarity_bg": "", + "ship_group": 30312, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": 338 + }, + "303130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.186, + 0.593, + 0 + ] + ], + "cannon": [ + [ + 1.186, + 0.593, + 0 + ] + ], + "torpedo": [ + [ + 0.36, + 0.054, + 0 + ] + ], + "vicegun": [ + [ + 1.186, + 0.593, + 0 + ] + ] + }, + "desc": "Third ship of the {namecode:66}-class heavy cruisers, {namecode:68}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303130, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Maya", + "painting": "moye", + "prefab": "moye", + "rarity_bg": "", + "ship_group": 30313, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.498, + 0.298, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.44, + 2.15, + -0.34 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 87, + "voice_actor_2": -1 + }, + "303140": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.11, + 0.68, + 0 + ] + ], + "cannon": [ + [ + 0.28, + 0.68, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.11, + 0.66, + 0 + ] + ] + }, + "desc": "Takao-class heavy cruiser number four – Choukai.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303140, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Choukai", + "painting": "niaohai", + "prefab": "niaohai", + "rarity_bg": "", + "ship_group": 30314, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.45, + 2.15, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 123, + "voice_actor_2": -1 + }, + "303141": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.24, + 0.84, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.98, + 1.04, + 0 + ] + ] + }, + "desc": "There, that's it for the entrance... Oh welcome, Commander! I've been cleaning, so give me a moment... I'll be right with you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 303141, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tidy Store, Tidy Mind", + "painting": "niaohai_2", + "prefab": "niaohai_2", + "rarity_bg": "", + "ship_group": 30314, + "ship_l2d_id": "", + "shop_id": 70644, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.31, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 123, + "voice_actor_2": -1 + }, + "303170": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.95, + 0.99, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.05, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 1, + 0 + ] + ] + }, + "desc": "Mogami-class heavy cruiser number three – Suzuya.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303170, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Suzuya", + "painting": "linggu", + "prefab": "linggu", + "rarity_bg": "", + "ship_group": 30317, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.45, + 2.15, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 181, + "voice_actor_2": -1 + }, + "303180": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.11, + 1.103, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.05, + 0 + ] + ], + "torpedo": [ + [ + -0.007, + 0.006, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 1.15, + 0 + ] + ] + }, + "desc": "Mogami-class heavy cruiser number four – Kumano. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 303180, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kumano ", + "painting": "xiongye", + "prefab": "xiongye", + "rarity_bg": "", + "ship_group": 30318, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.329, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 181, + "voice_actor_2": -1 + }, + "303181": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.11, + 1.065, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.144, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + -0.013, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 1.188, + 0 + ] + ] + }, + "desc": "It's time for Kumano's sexy swimsuit debut~! Just kidding~☆ Hey Commander, just where~ are~ you~ staring~? Ahaha~♡ ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 303181, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fancy Waves ", + "painting": "xiongye_2", + "prefab": "xiongye_2", + "rarity_bg": "", + "ship_group": 30318, + "ship_l2d_id": "", + "shop_id": 70407, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.329, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 181, + "voice_actor_2": -1 + }, + "303182": { + "bg": "109", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.037, + 1.112, + 0 + ] + ], + "cannon": [ + [ + 1.127, + 1.144, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 1.128, + 0 + ] + ] + }, + "desc": "Now it's your turn, Commander! Which one's it gonna be~? You suuuure you wanna pick this card? ...I hear you, Suzuya! Stop tellin' the Commander what the cards are!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 303182, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "PJ Poker Party", + "painting": "xiongye_3", + "prefab": "xiongye_3", + "rarity_bg": "", + "ship_group": 30318, + "ship_l2d_id": "", + "shop_id": 70610, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.329, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 181, + "voice_actor_2": -1 + }, + "303183": { + "bg": "159", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.22, + 1.09, + 0 + ] + ], + "cannon": [ + [ + 1.28, + 0.72, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.28, + 0.72, + 0 + ] + ] + }, + "desc": "Tadah! Get a load of my... dancer outfit! So, whaddya think? Ahaha~♡ Hey, Commander, where are those eyes wandering? Did ya see something ya like?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 303183, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "One Thousand and One Nights' Wishes", + "painting": "xiongye_4", + "prefab": "xiongye_4", + "rarity_bg": "", + "ship_group": 30318, + "ship_l2d_id": "", + "shop_id": 70723, + "shop_type_id": 21, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.79, + 1.95, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 181, + "voice_actor_2": -1 + }, + "303190": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.453, + 1.237, + 0 + ] + ], + "cannon": [ + [ + 2.345, + 1.123, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.508, + 1.064, + 0 + ] + ] + }, + "desc": "Heavy cruiser – Unzen.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 303190, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Unzen", + "painting": "yunxian", + "prefab": "yunxian", + "rarity_bg": "", + "ship_group": 30319, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.615, + 2.505, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + 0, + -1529, + 0 + ], + [ + 1.07 + ] + ], + "tag": [], + "time": "", + "voice_actor": 294, + "voice_actor_2": -1 + }, + "303191": { + "bg": "168", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.22, + 1.09, + 0 + ] + ], + "cannon": [ + [ + 1.28, + 0.72, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.28, + 0.72, + 0 + ] + ] + }, + "desc": "Commander~ Come over here~♥ Heehee, you look surprised... I don't think I'm dressed strangely at all. Or... is this swimsuit not enough to satisfy you, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 303191, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": [ + 0.4, + 0.17, + 1 + ], + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 30 + ], + "ParamAngleY": [ + -5, + 5 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 40, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sojourn Through Clear Seas", + "painting": "yunxian_2", + "prefab": "yunxian_2", + "rarity_bg": "", + "ship_group": 30319, + "ship_l2d_id": [ + 30319101, + 30319102, + 30319103, + 30319104, + 30319105, + 30319106, + 30319107, + 30319108, + 30319109, + 30319110, + 30319111, + 30319112, + 30319113 + ], + "shop_id": 70911, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.79, + 1.95, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 294, + "voice_actor_2": -1 + }, + "304010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.02, + 0.6, + 0 + ] + ], + "cannon": [ + [ + -0.02, + 0.6, + 0 + ] + ], + "torpedo": [ + [ + -0.02, + 0.6, + 0 + ] + ] + }, + "desc": "Kongou-class fast battleship number one – Kongou.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 304010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kongou", + "painting": "jingang", + "prefab": "jingang", + "rarity_bg": "", + "ship_group": 30401, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.266, + 0.329, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 138, + "voice_actor_2": -1 + }, + "304011": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.45, + 0.59, + 0 + ] + ], + "cannon": [ + [ + 1.44, + 0.63, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0, + 0 + ] + ] + }, + "desc": "We must fully live in the present, whether during work or during leisure - this is my mantra. Commander, shall we go for an outing together?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 304011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Beauties of Nature", + "painting": "jingang_2", + "prefab": "jingang_2", + "rarity_bg": "", + "ship_group": 30401, + "ship_l2d_id": "", + "shop_id": 70167, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 138, + "voice_actor_2": -1 + }, + "304012": { + "bg": "138", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.612, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.687, + 1.13, + 0 + ] + ], + "torpedo": [ + [ + -0.011, + 0, + 0 + ] + ] + }, + "desc": "\"Celebrity Endorsement of the Port Medical Facilities\"... Hehehe, you've made a wise decision picking me. Commander, I can leave the ad shoot to you, right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 304012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hospital Talent", + "painting": "jingang_3", + "prefab": "jingang_3", + "rarity_bg": "", + "ship_group": 30401, + "ship_l2d_id": "", + "shop_id": 70398, + "shop_type_id": 15, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.26, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 138, + "voice_actor_2": -1 + }, + "304013": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.17, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 1.39, + 0.99, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "It would be a shame to pass on this lovely weather, Commander. Why have a dull commute by train when you can enjoy a leisurely bicycle ride in the sunlight, hm? Heehee♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 304013, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Breezy Commute", + "painting": "jingang_4", + "prefab": "jingang_4", + "rarity_bg": "", + "ship_group": 30401, + "ship_l2d_id": "", + "shop_id": 70680, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.14, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 138, + "voice_actor_2": -1 + }, + "304020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.087, + 1.221, + 0 + ] + ], + "cannon": [ + [ + -0.087, + 1.221, + 0 + ] + ], + "torpedo": [ + [ + 0.154, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + -0.087, + 1.221, + 0 + ] + ] + }, + "desc": "Kongou-class fast battleship number two – Hiei.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 304020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hiei", + "painting": "birui", + "prefab": "birui", + "rarity_bg": "", + "ship_group": 30402, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.202, + 2.461, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 76, + "voice_actor_2": -1 + }, + "304021": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.27, + 0.79, + 0 + ] + ], + "cannon": [ + [ + 1.36, + 0.83, + 0 + ] + ], + "torpedo": [ + [ + 0.11, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + 1.31, + 0.85, + 0 + ] + ] + }, + "desc": "Look how late it is... Commander, shall we embark on a dreamy voyage together?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 304021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Moonlit Cruise", + "painting": "birui_2", + "prefab": "birui_2", + "rarity_bg": "", + "ship_group": 30402, + "ship_l2d_id": "", + "shop_id": 70091, + "shop_type_id": 20, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 76, + "voice_actor_2": -1 + }, + "304022": { + "bg": "128", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 0.79, + 0 + ] + ], + "cannon": [ + [ + 1.36, + 0.83, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + 0.04, + 0 + ] + ], + "vicegun": [ + [ + 1.31, + 0.85, + 0 + ] + ] + }, + "desc": "I have to admit, these qipaos from the Dragon Empery are quite elegant... I might sound arrogant saying this, but I feel like this outfit really brings out my charm. Hehe, wouldn't you agree, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 304022, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fragrant Red Plum", + "painting": "birui_4", + "prefab": "birui_4", + "rarity_bg": "", + "ship_group": 30402, + "ship_l2d_id": "", + "shop_id": 70309, + "shop_type_id": 3, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 76, + "voice_actor_2": -1 + }, + "304023": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 1.198, + 0 + ] + ], + "cannon": [ + [ + 1.228, + 1.136, + 0 + ] + ], + "torpedo": [ + [ + -0.01, + -0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.202, + 1.168, + 0 + ] + ] + }, + "desc": "We're headed for the white sands of the beach today. We all could use a breather every now and then, so let's just enjoy the sea breeze today. Hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 304023, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beauty of the White Sands", + "painting": "birui_5", + "prefab": "birui_5", + "rarity_bg": "", + "ship_group": 30402, + "ship_l2d_id": "", + "shop_id": 70344, + "shop_type_id": 6, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 76, + "voice_actor_2": -1 + }, + "304030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.055, + 1.373, + 0 + ] + ], + "cannon": [ + [ + 0.009, + 1.346, + 0 + ] + ], + "torpedo": [ + [ + 0.191, + 0.055, + 0 + ] + ] + }, + "desc": "Kongou-class fast battleship number four – Haruna.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 304030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Haruna", + "painting": "zhenming", + "prefab": "zhenming", + "rarity_bg": "", + "ship_group": 30403, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.615, + 2.316, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 127, + "voice_actor_2": -1 + }, + "304031": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.555, + 1.073, + 0 + ] + ], + "cannon": [ + [ + 0.629, + 1.045, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "I think it's fine to enjoy school life once in a while... Hm? You wanna know what I'm listening to? Sure, if you're okay with just one earbud.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 304031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Free Time Before Class", + "painting": "Zhenming_2", + "prefab": "Zhenming_2", + "rarity_bg": "", + "ship_group": 30403, + "ship_l2d_id": "", + "shop_id": 70068, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 127, + "voice_actor_2": -1 + }, + "304032": { + "bg": "135", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.433, + 1.126, + 0 + ] + ], + "cannon": [ + [ + 1.389, + 1.151, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "I guess that looks right... Since Kongou chose this for me, I must trust her judgment... Um, C-Commander, would you mind helping me out? ...It's a bit hard to walk in this outfit...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 304032, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Scarlet Innocence", + "painting": "Zhenming_3", + "prefab": "Zhenming_3", + "rarity_bg": "", + "ship_group": 30403, + "ship_l2d_id": "", + "shop_id": 70426, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.312, + 2.416, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 127, + "voice_actor_2": -1 + }, + "304033": { + "bg": "143", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.121, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 1.129, + 1.004, + 0 + ] + ], + "torpedo": [ + [ + 0.035, + 0, + 0 + ] + ] + }, + "desc": "\"My dear Commander, is this dress that my sisters tailored for me to your liking?\" ...Okay, no, I can't do polite Hiei-speak like she can... So, anyway, h-how do I look?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 304033, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Elegant Lotus", + "painting": "Zhenming_4", + "prefab": "Zhenming_4", + "rarity_bg": "", + "ship_group": 30403, + "ship_l2d_id": "", + "shop_id": 70473, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.476, + 2.589, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 127, + "voice_actor_2": -1 + }, + "304040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.165, + 1.398, + 0 + ] + ], + "cannon": [ + [ + -0.234, + 1.485, + 0 + ] + ], + "torpedo": [ + [ + 0.154, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + -0.122, + 1.441, + 0 + ] + ] + }, + "desc": "Kongou-class fast battleship number four – Kirishima.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 304040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kirishima", + "painting": "wudao", + "prefab": "wudao", + "rarity_bg": "", + "ship_group": 30404, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.584, + 2.148, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 128, + "voice_actor_2": -1 + }, + "304041": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.72, + 1.05, + 0 + ] + ], + "cannon": [ + [ + 0.76, + 1.12, + 0 + ] + ], + "torpedo": [ + [ + 0.154, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + 0.72, + 1.06, + 0 + ] + ] + }, + "desc": "Commander, enjoying school life is all fine and well, but we must not forget our duty... That said, what missions are waiting for us today?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 304041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "After-School Cannon Time", + "painting": "Wudao_2", + "prefab": "Wudao_2", + "rarity_bg": "", + "ship_group": 30404, + "ship_l2d_id": "", + "shop_id": 70060, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.14, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 128, + "voice_actor_2": -1 + }, + "304042": { + "bg": "105", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.988, + 0.638, + 0 + ] + ], + "cannon": [ + [ + 0.969, + 0.682, + 0 + ] + ], + "torpedo": [ + [ + 0.035, + 0.033, + 0 + ] + ], + "vicegun": [ + [ + 0.991, + 0.724, + 0 + ] + ] + }, + "desc": "Being in front of my sisters in this outfit is one thing, but it really is embarrassing to be wearing it in front of you, Commander. Um... ahem! What do you think? Since you're here, want to walk down to the beach together?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 304042, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summery Audacity", + "painting": "wudao_3", + "prefab": "wudao_3", + "rarity_bg": "", + "ship_group": 30404, + "ship_l2d_id": "", + "shop_id": 70227, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.14, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 128, + "voice_actor_2": -1 + }, + "304043": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.988, + 0.638, + 0 + ] + ], + "cannon": [ + [ + 0.969, + 0.682, + 0 + ] + ], + "torpedo": [ + [ + 0.035, + 0.033, + 0 + ] + ], + "vicegun": [ + [ + 0.991, + 0.724, + 0 + ] + ] + }, + "desc": "\"Commander, bad luck for you, but you're just going to become another notch on my blade.\" Haha, just kidding, it's a joke! So, what do you think? My New Year's attire is pretty snazzy, isn't it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 304043, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Casual Dazzle", + "painting": "wudao_4", + "prefab": "wudao_4", + "rarity_bg": "", + "ship_group": 30404, + "ship_l2d_id": "", + "shop_id": 70293, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.14, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 128, + "voice_actor_2": -1 + }, + "304044": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.988, + 1.011, + 0 + ] + ], + "cannon": [ + [ + 0.996, + 1.001, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.991, + 1.003, + 0 + ] + ] + }, + "desc": "The Lunar New Year is known for its hustle and bustle, but it's nice to just sit down with a brush and take in the smell of ink. Hey Commander, got any words you want to see rendered in calligraphy?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 2, + "id": 304044, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Graceful Ink Incense", + "painting": "wudao_5", + "prefab": "wudao_5", + "rarity_bg": "", + "ship_group": 30404, + "ship_l2d_id": "", + "shop_id": 70497, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.474, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 128, + "voice_actor_2": -1 + }, + "304050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.24, + 1.69, + 0 + ] + ], + "cannon": [ + [ + 1.49, + 0.74, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.18, + 0 + ] + ], + "vicegun": [ + [ + 1.51, + 0.72, + 0 + ] + ] + }, + "desc": "1st Ship of the Amagi-class Battlecruisers, Amagi", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 304050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Amagi", + "painting": "tiancheng", + "prefab": "tiancheng", + "rarity_bg": "", + "ship_group": 30405, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 104, + "voice_actor_2": -1 + }, + "304051": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.24, + 1.145, + 0 + ] + ], + "cannon": [ + [ + 1.274, + 1.135, + 0 + ] + ], + "torpedo": [ + [ + -0.008, + -0.009, + 0 + ] + ], + "vicegun": [ + [ + 1.275, + 1.143, + 0 + ] + ] + }, + "desc": "Commander, are you here to pay me a visit? ...Ah, there is no need to be concerned about me. I made a promise to both you and Akagi that I would be mindful of my health.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 304051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Wending Waters, Serene Lotus", + "painting": "tiancheng_2", + "prefab": "tiancheng_2", + "rarity_bg": "", + "ship_group": 30405, + "ship_l2d_id": "", + "shop_id": 70341, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 104, + "voice_actor_2": -1 + }, + "304052": { + "bg": "146", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.24, + 1.145, + 0 + ] + ], + "cannon": [ + [ + 1.274, + 1.135, + 0 + ] + ], + "torpedo": [ + [ + -0.008, + -0.009, + 0 + ] + ], + "vicegun": [ + [ + 1.275, + 1.143, + 0 + ] + ] + }, + "desc": "*munch*... Ah. Commander, the banquet isn't over yet. What brings you here? When a host sneaks out, that causes trouble for the person cleaning up after them... Heehee, I didn't say NOT to, now, did I?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 1, + "hand_id": 2, + "id": 304052, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamAngleY": [ + -15, + 15 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80.5, + -72, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Red Kite Respite", + "painting": "tiancheng_3", + "prefab": "tiancheng_3", + "rarity_bg": "", + "ship_group": 30405, + "ship_l2d_id": [ + 3040521, + 3040522, + 3040523, + 3040524 + ], + "shop_id": 70858, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": "", + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 104, + "voice_actor_2": -1 + }, + "304060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.24, + 1.69, + 0 + ] + ], + "cannon": [ + [ + 1.49, + 0.74, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.18, + 0 + ] + ], + "vicegun": [ + [ + 1.51, + 0.72, + 0 + ] + ] + }, + "desc": "Fast Battleship, second ship of the Kongou-class Hiei.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 304060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hiei-chan", + "painting": "birui_younv", + "prefab": "birui_younv", + "rarity_bg": "", + "ship_group": 30406, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 76, + "voice_actor_2": -1 + }, + "304070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.485, + 1.001, + 0 + ] + ], + "cannon": [ + [ + 1.473, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + -0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.47, + 0.999, + 0 + ] + ] + }, + "desc": "1st Ship of the Amagi-class Battlecruisers, Amagi", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 304070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Amagi-chan", + "painting": "tiancheng_younv", + "prefab": "tiancheng_younv", + "rarity_bg": "", + "ship_group": 30407, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.426, + 2.297, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 104, + "voice_actor_2": -1 + }, + "305010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "First ship of the {namecode:78}-class battleships, {namecode:78}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 305010, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fusou", + "painting": "fusang", + "prefab": "fusang", + "rarity_bg": "", + "ship_group": 30501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305011": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.17, + 0.45, + 0 + ] + ], + "cannon": [ + [ + 0.16, + 0.53, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.18, + 0.49, + 0 + ] + ] + }, + "desc": "{namecode:79} said always dressing like a witch can be a bit old-fashioned, so she gave me a new outfit. That kid... Do you think it looks good on me, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 305011, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Celebration of Spring", + "painting": "Fusang_2", + "prefab": "Fusang_2", + "rarity_bg": "", + "ship_group": 30501, + "ship_l2d_id": "", + "shop_id": 70048, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.41, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305012": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.547, + 0.528, + 0 + ] + ], + "cannon": [ + [ + 1.498, + 0.501, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + -0.194, + 0 + ] + ], + "vicegun": [ + [ + 1.46, + 0.49, + 0 + ] + ] + }, + "desc": "Changing into leisure clothes, and waiting for the return of my beloved... Milord, I too have changed since meeting you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 305012, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Perfect Partner?", + "painting": "fusang_3", + "prefab": "fusang_3", + "rarity_bg": "", + "ship_group": 30501, + "ship_l2d_id": "", + "shop_id": 70160, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.41, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.29, + 1, + 0 + ] + ], + "cannon": [ + [ + -0.38, + 1.28, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.2, + 0 + ] + ], + "vicegun": [ + [ + -0.33, + 1.13, + 0 + ] + ] + }, + "desc": "Milord! Thank you~ Not just for the retrofit, but for many many things. Hehe, it was the greatest of fortune for me and {namecode:79} to meet you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 2, + "id": 305019, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fusou (Retrofit)", + "painting": "fusang_g", + "prefab": "fusang_g", + "rarity_bg": "", + "ship_group": 30501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.41, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "Second ship of the {namecode:78}-class battleships, {namecode:79}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 305020, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yamashiro", + "painting": "shancheng", + "prefab": "shancheng", + "rarity_bg": "", + "ship_group": 30502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305021": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.54, + 0.62, + 0 + ] + ], + "cannon": [ + [ + 1.54, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + -0.17, + 0 + ] + ], + "vicegun": [ + [ + 1.54, + 0.62, + 0 + ] + ] + }, + "desc": "It’s just not summer without beach volleyball! Ah... Milord, you’re not playing? But I went through all this effort to pick out a swimsuit...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 305021, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Offensive?", + "painting": "shancheng_2", + "prefab": "shancheng_2", + "rarity_bg": "", + "ship_group": 30502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 6, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.12, + 0.56, + -0.32 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.4, + 2.37, + -1.37 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305022": { + "bg": "100", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.26, + 2.09 + ] + ], + "cannon": [ + [ + 1.39, + 3.46, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.15, + 0 + ] + ], + "vicegun": [ + [ + -0.6, + 3.39, + 0 + ] + ] + }, + "desc": "Merry Christmas! Milord, milord, how do I look? Is my Christmas outfit pretty? Ehehe~ Big sis also praised me today!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 305022, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Holiday Offensive", + "painting": "shancheng_3", + "prefab": "shancheng_3", + "rarity_bg": "", + "ship_group": 30502, + "ship_l2d_id": "", + "shop_id": 70026, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305023": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.81, + 1.3, + 0 + ] + ], + "cannon": [ + [ + 0.92, + 1.31, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.15, + 0 + ] + ], + "vicegun": [ + [ + 0.83, + 1.36, + 0 + ] + ] + }, + "desc": "Fusou told me that I have to wear a Western-style dress to the banquet, so she got one for me! Milord, Milord, isn't this dress pretty?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 305023, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dressy Black Cat", + "painting": "shancheng_4", + "prefab": "shancheng_4", + "rarity_bg": "", + "ship_group": 30502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305024": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.279, + 0.909, + 0 + ] + ], + "cannon": [ + [ + 1.379, + 0.919, + 0 + ] + ], + "torpedo": [ + [ + 0.022, + -0.006, + 0 + ] + ], + "vicegun": [ + [ + 1.348, + 0.882, + 0 + ] + ] + }, + "desc": "Milord, Milord, welcome to the store! Yamashiro is a sales clerk today! Mhm, I'll do my best!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 14, + "id": 305024, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sales Clerk Offensive?!", + "painting": "shancheng_7", + "prefab": "shancheng_7", + "rarity_bg": "", + "ship_group": 30502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305025": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.279, + 0.995, + 0 + ] + ], + "cannon": [ + [ + 1.379, + 1.013, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.348, + 0.994, + 0 + ] + ] + }, + "desc": "Woah, even the air tastes totally different at this vacation spot! Milord, Milord, um, Akashi asked me to bottle up some of the air here for her! Want to give me a hand?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 14, + "id": 305025, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vacation Offensive!", + "painting": "shancheng_8", + "prefab": "shancheng_8", + "rarity_bg": "", + "ship_group": 30502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.496, + 2.291, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305026": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.675, + 0.832, + 0 + ] + ], + "cannon": [ + [ + 0.666, + 0.827, + 0 + ] + ], + "torpedo": [ + [ + -0.007, + -0.001, + 0 + ] + ], + "vicegun": [ + [ + 0.632, + 0.836, + 0 + ] + ] + }, + "desc": "Uwaah! M-Milord?! I'm so, so sorry... You didn't get hurt, did you? Um... This is my school uniform. Fusou tailored it for me, hehe~ ... Awawa! I should head off to class now! See you later!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 14, + "id": 305026, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Street Corner Offensive!", + "painting": "shancheng_6", + "prefab": "shancheng_6", + "rarity_bg": "", + "ship_group": 30502, + "ship_l2d_id": "", + "shop_id": 70251, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305028": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.494, + 0.44, + 0 + ] + ], + "cannon": [ + [ + 1.555, + 0.538, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.15, + 0 + ] + ], + "vicegun": [ + [ + 1.494, + 0.51, + 0 + ] + ] + }, + "desc": "Milord, Milord, I've finished changing! What do you think, what do you think? Milord, do you like Yamashiro's dress~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 14, + "id": 305028, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bridal Attack!", + "painting": "shancheng_h", + "prefab": "shancheng_h", + "rarity_bg": "", + "ship_group": 30502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.31, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 0.31, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.1, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.31, + 1.16, + 0 + ] + ] + }, + "desc": "Milord! I can do anything now~ bombardment or aerial strikes! So, the thing is, you can totally count on me, much much more, Milord! Milord~!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 305029, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yamashiro (Retrofit)", + "painting": "shancheng_g", + "prefab": "shancheng_g", + "rarity_bg": "", + "ship_group": 30502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "305030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.78, + 0.99, + 0 + ] + ], + "cannon": [ + [ + 0.78, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 0.78, + 0.99, + 0 + ] + ] + }, + "desc": "First ship of the {namecode:76}-class battleships, {namecode:76}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 305030, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ise", + "painting": "yishi", + "prefab": "yishi", + "rarity_bg": "", + "ship_group": 30503, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 67, + "voice_actor_2": -1 + }, + "305039": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.78, + 0.99, + 0 + ] + ], + "cannon": [ + [ + -0.19, + 1.15, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 0.78, + 0.99, + 0 + ] + ] + }, + "desc": "Planes: check! Main guns: check! Nobody can stop me now! Let's sortie right now, Commander! I'm fired up and wanna wreak some havoc on the battlefield!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 2, + "id": 305039, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ise (Retrofit)", + "painting": "yishi_g", + "prefab": "yishi_g", + "rarity_bg": "", + "ship_group": 30503, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 67, + "voice_actor_2": -1 + }, + "305040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.78, + 0.99, + 0 + ] + ], + "cannon": [ + [ + 0.78, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 0.78, + 0.99, + 0 + ] + ] + }, + "desc": "Second ship of the {namecode:76}-class battleships, {namecode:77}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 305040, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hyuuga", + "painting": "rixiang", + "prefab": "rixiang", + "rarity_bg": "", + "ship_group": 30504, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 68, + "voice_actor_2": -1 + }, + "305049": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.78, + 0.99, + 0 + ] + ], + "cannon": [ + [ + -0.26, + 1.21, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.12, + 0 + ] + ], + "vicegun": [ + [ + 0.78, + 0.99, + 0 + ] + ] + }, + "desc": "Aviation battleship Hyuuga, sporting new powers, reporting in! Rest easy, Commander, I'll show you my true post-retrofit power!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 2, + "id": 305049, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hyuuga (Retrofit)", + "painting": "rixiang_g", + "prefab": "rixiang_g", + "rarity_bg": "", + "ship_group": 30504, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 68, + "voice_actor_2": -1 + }, + "305050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.571, + 1.092, + 0 + ] + ], + "cannon": [ + [ + 1.593, + 0.988, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Nagato-class battleship number one – Nagato.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 305050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nagato", + "painting": "changmen", + "prefab": "changmen", + "rarity_bg": "", + "ship_group": 30505, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.394, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 11, + "voice_actor_2": -1 + }, + "305051": { + "bg": "111", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.571, + 0.711, + 0 + ] + ], + "cannon": [ + [ + 1.593, + 0.988, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "I shall be hosting the commander today. Manjuus, I beseech you to help me look my best. I am... *yawn* a bit sleepy... Urghh... what is that ruckus out there? C-Commander! When did you arrive?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 305051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Great Fox's Respite", + "painting": "changmen_2", + "prefab": "changmen_2", + "rarity_bg": "", + "ship_group": 30505, + "ship_l2d_id": "", + "shop_id": 70166, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.394, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 11, + "voice_actor_2": -1 + }, + "305052": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.571, + 0.711, + 0 + ] + ], + "cannon": [ + [ + 1.593, + 0.988, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Perfect, you have arrived. As long as you are here, the usual moon-watching will prove to be much more enjoyable... Why don't you stay here today and rest for a while?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 6, + "id": 305052, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Guardian Fox's Shining Furisode", + "painting": "changmen_3", + "prefab": "changmen_3", + "rarity_bg": "", + "ship_group": 30505, + "ship_l2d_id": "", + "shop_id": 70287, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.394, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 11, + "voice_actor_2": -1 + }, + "305053": { + "bg": "142", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.479, + 0.995, + 0 + ] + ], + "cannon": [ + [ + 1.479, + 0.988, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "I heard that it is custom to play a \"sport\" at this kind of event, involving throwing pillows at others. Heheh, then I shall put the might of the Big Seven on display!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 6, + "id": 305053, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Guardian Fox's Vacation", + "painting": "changmen_4", + "prefab": "changmen_4", + "rarity_bg": "", + "ship_group": 30505, + "ship_l2d_id": "", + "shop_id": 70523, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.394, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 11, + "voice_actor_2": -1 + }, + "305054": { + "bg": "155", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.237, + 1.312, + 0 + ] + ], + "cannon": [ + [ + 1.151, + 1.053, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Though this is a splendorous dress befitting the occasion, it is too different from my usual attire... Mutsu and Mikasa have nothing but praise for it? If you say so, then perhaps... I can take your word. Hehe.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 6, + "id": 305054, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Guardian Fox's Procession", + "painting": "changmen_5", + "prefab": "changmen_5", + "rarity_bg": "", + "ship_group": 30505, + "ship_l2d_id": "", + "shop_id": 70755, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.755, + 1.709, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 11, + "voice_actor_2": -1 + }, + "305058": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.535, + 1.375, + 0 + ] + ], + "cannon": [ + [ + -0.558, + 1.444, + 0 + ] + ], + "torpedo": [ + [ + 0.145, + 0.084, + 0 + ] + ] + }, + "desc": "It may be presumptuous of me, but please take care of me from now on... Is that acceptable? S-Somehow, it feels a little embarrassing... Ahaha...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 6, + "id": 305058, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Great Fox's White Gown", + "painting": "changmen_h", + "prefab": "changmen_h", + "rarity_bg": "", + "ship_group": 30505, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.394, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 11, + "voice_actor_2": -1 + }, + "305060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.78, + 1.419, + 0 + ] + ], + "cannon": [ + [ + -0.733, + 1.447, + 0 + ] + ], + "torpedo": [ + [ + 0.141, + 0.085, + 0 + ] + ] + }, + "desc": "Nagato-class battleship number two – Mutsu.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 305060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mutsu", + "painting": "luao", + "prefab": "luao", + "rarity_bg": "", + "ship_group": 30506, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 19, + "voice_actor_2": -1 + }, + "305061": { + "bg": "111", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.08, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 2.13, + 1.19, + 0 + ] + ], + "torpedo": [ + [ + 0.141, + 0.085, + 0 + ] + ] + }, + "desc": "Commander, check it out! \"Nothing can stop me!\" Urakaze made it for me! Now I can play warring states with her! Heheh, you should know I'm a force to be reckoned with! Can't you come play with us? Why?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 305061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Warring States Warship", + "painting": "luao_2", + "prefab": "luao_2", + "rarity_bg": "", + "ship_group": 30506, + "ship_l2d_id": "", + "shop_id": 70173, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 19, + "voice_actor_2": -1 + }, + "305062": { + "bg": "160", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.293, + 1.276, + 0 + ] + ], + "cannon": [ + [ + 1.456, + 0.888, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.164, + 1.25, + 0 + ] + ] + }, + "desc": "Hmh? If fah foo, Fummamuh? ...*gulp*. I'm not lazing around! I'm just checking on the pastries that just came in! What are you doing here anyway? To \"taste-test?\" Or is there something wrong with the pastries? Why?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 6, + "id": 305062, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Maid's Mis-service?", + "painting": "luao_3", + "prefab": "luao_3", + "rarity_bg": "", + "ship_group": 30506, + "ship_l2d_id": "", + "shop_id": 70744, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 19, + "voice_actor_2": -1 + }, + "305070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.06, + 1.02, + 0 + ] + ], + "cannon": [ + [ + 1.14, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.141, + 0.085, + 0 + ] + ] + }, + "desc": "Tosa-class battleship number two – Kaga.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 305070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kaga(BB)", + "painting": "jiahezhanlie", + "prefab": "jiahezhanlie", + "rarity_bg": "", + "ship_group": 30507, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": 137 + }, + "305080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.4, + 1.298, + 0 + ] + ], + "cannon": [ + [ + 1.39, + 1.254, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.39, + 1.254, + 0 + ] + ] + }, + "desc": "Tosa-class battleship number one – Tosa.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 305080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tosa", + "painting": "tuzuo", + "prefab": "tuzuo", + "rarity_bg": "", + "ship_group": 30508, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 104, + "voice_actor_2": -1 + }, + "305081": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.06, + 1.02, + 0 + ] + ], + "cannon": [ + [ + 1.14, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.141, + 0.085, + 0 + ] + ] + }, + "desc": "An inspection? ...You're awfully gung-ho about your work considering how hot it is outside... Surely you wouldn't have some sort of ulterior motive?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 305081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hometown Zest", + "painting": "tuzuo_2", + "prefab": "tuzuo_2", + "rarity_bg": "", + "ship_group": 30508, + "ship_l2d_id": "", + "shop_id": 70342, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 104, + "voice_actor_2": -1 + }, + "305100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.97, + 1.68, + 0 + ] + ], + "cannon": [ + [ + 2.01, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.85, + 1.22, + 0 + ] + ] + }, + "desc": "Yamato-class battleship number two – Musashi.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 305100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Musashi", + "painting": "wuzang", + "prefab": "wuzang", + "rarity_bg": "", + "ship_group": 30510, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_wuzang", + [ + 61, + -267, + 0 + ], + [ + 2.3 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 50, + -1965, + 0 + ], + [ + 0.8 + ] + ], + "tag": [], + "time": "", + "voice_actor": 64, + "voice_actor_2": -1 + }, + "305101": { + "bg": "", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.82, + 1.61, + 0 + ] + ], + "cannon": [ + [ + 1.9, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.85, + 1.09, + 0 + ] + ] + }, + "desc": "\"Welcome back, Master.\" Rather, that's what all the children at the café were saying to you when they greeted you at the door. Hehe, is this some new custom?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 305101, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Violet Moonglow", + "painting": "wuzang_2", + "prefab": "wuzang_2", + "rarity_bg": "", + "ship_group": 30510, + "ship_l2d_id": "", + "shop_id": 70739, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 64, + "voice_actor_2": -1 + }, + "305110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.029, + 1.278, + 0 + ] + ], + "cannon": [ + [ + 0.029, + 1.278, + 0 + ] + ], + "torpedo": [ + [ + 0.154, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + 0.029, + 1.278, + 0 + ] + ] + }, + "desc": "Shikishima-class battleship number four – Mikasa.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 305110, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mikasa", + "painting": "sanli", + "prefab": "sanli", + "rarity_bg": "", + "ship_group": 30511, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.221, + 2.345, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 47, + "voice_actor_2": -1 + }, + "305111": { + "bg": "105", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.53, + 0.62, + 0 + ] + ], + "cannon": [ + [ + 1.61, + 0.78, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + -0.33, + 0 + ] + ], + "vicegun": [ + [ + 1.5, + 0.74, + 0 + ] + ] + }, + "desc": "I found quite the nostalgic outfit when I was cleaning my wardrobe. Let's see... \"Prepare to come with me on a new journey!\" How do I look, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 305111, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Style of the Sakura Capital", + "painting": "sanli_2", + "prefab": "sanli_2", + "rarity_bg": "", + "ship_group": 30511, + "ship_l2d_id": "", + "shop_id": 70090, + "shop_type_id": 9999, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.38, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 47, + "voice_actor_2": -1 + }, + "305112": { + "bg": "113", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.53, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 1.52, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.48, + 1.14, + 0 + ] + ] + }, + "desc": "It's about time for the flowers to bloom once more. Alas, how the time flies by... Ahem, Commander, let's see, would you like to go blossom-viewing with me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 305112, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blossom-Viewing Season", + "painting": "sanli_4", + "prefab": "sanli_4", + "rarity_bg": "", + "ship_group": 30511, + "ship_l2d_id": "", + "shop_id": 70171, + "shop_type_id": 9999, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 47, + "voice_actor_2": -1 + }, + "305113": { + "bg": "109", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.409, + 1.065, + 0 + ] + ], + "cannon": [ + [ + 1.393, + 1.045, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.389, + 1.067, + 0 + ] + ] + }, + "desc": "Even I like to dress down and unwind from time to time. Oh? This is new and exciting for you? Well, you are welcome to come see more of it from now on! Hahaha!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 305113, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Reverence for Rest and Relaxation", + "painting": "sanli_5", + "prefab": "sanli_5", + "rarity_bg": "", + "ship_group": 30511, + "ship_l2d_id": "", + "shop_id": 70520, + "shop_type_id": 20, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.463, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 47, + "voice_actor_2": -1 + }, + "305114": { + "bg": "160", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.258, + 1.387, + 0 + ] + ], + "cannon": [ + [ + 1, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1, + 1, + 0 + ] + ] + }, + "desc": "Welcome to the Sakura Empire's pop-up café... Oh, Commander! Everyone's waiting for you. Now get your butt in here and experience the full extent of our fleet's hospitality! Don't be nervous, now! Hahaha!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 2, + "id": 305114, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Romantic Respite", + "painting": "sanli_3", + "prefab": "sanli_3", + "rarity_bg": "", + "ship_group": 30511, + "ship_l2d_id": "", + "shop_id": 70745, + "shop_type_id": 17, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.443, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 47, + "voice_actor_2": -1 + }, + "305115": { + "bg": "129", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.258, + 1.387, + 0 + ] + ], + "cannon": [ + [ + 1, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1, + 1, + 0 + ] + ] + }, + "desc": "I was worried when you said you wanted to go on a trip with me, but... I do like getting to go sight-seeing and try on new threads. Commander, let's enjoy this to the fullest! Hahaha!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 2, + "id": 305115, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beauty in Indigo", + "painting": "sanli_6", + "prefab": "sanli_6", + "rarity_bg": "", + "ship_group": 30511, + "ship_l2d_id": "", + "shop_id": 70842, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.443, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 47, + "voice_actor_2": -1 + }, + "305118": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.728, + 1.397, + 0 + ] + ], + "cannon": [ + [ + 1.842, + 1.358, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.025, + 0 + ] + ], + "vicegun": [ + [ + 1.809, + 1.332, + 0 + ] + ] + }, + "desc": "I, battleship Mikasa, from now until eternity, pledge to you my undying love and devotion. May we help each other, encourage each other, and walk side-by-side on the same path. I hope to meet your expectations, as unworthy as I may be. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 2, + "id": 305118, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Untarnished Splendor ", + "painting": "sanli_h", + "prefab": "sanli_h", + "rarity_bg": "", + "ship_group": 30511, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand2", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.417, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 47, + "voice_actor_2": -1 + }, + "305120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.526, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.534, + 1.096, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + -0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.561, + 1.088, + 0 + ] + ] + }, + "desc": "Kii-class battleship – Kii. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 305120, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kii", + "painting": "jiyi", + "prefab": "jiyi", + "rarity_bg": "", + "ship_group": 30512, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.385, + 2.345, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 204, + "voice_actor_2": -1 + }, + "305121": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.119, + 1.157, + 0 + ] + ], + "cannon": [ + [ + 1.006, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0.007, + 0.015, + 0 + ] + ], + "vicegun": [ + [ + 1.015, + 1.062, + 0 + ] + ] + }, + "desc": "Refreshing drinks, delicious food, warm sunshine... and a pool to beat the heat? Heh, isn't this the essence of summer? ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 305121, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Poolside Persuasion", + "painting": "jiyi_2", + "prefab": "jiyi_2", + "rarity_bg": "", + "ship_group": 30512, + "ship_l2d_id": "", + "shop_id": 70416, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.403, + 2.345, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 204, + "voice_actor_2": -1 + }, + "305130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.867, + 1.603, + 0 + ] + ], + "cannon": [ + [ + 1.905, + 1.601, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.89, + 1.613, + 0 + ] + ] + }, + "desc": "Kii-class battleship – Owari.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 4, + "id": 305130, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Owari", + "painting": "weizhang", + "prefab": "weizhang", + "rarity_bg": "", + "ship_group": 30513, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.549, + 2.436, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 295, + "voice_actor_2": -1 + }, + "305131": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.867, + 1.603, + 0 + ] + ], + "cannon": [ + [ + 1.905, + 1.601, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.89, + 1.613, + 0 + ] + ] + }, + "desc": "I love hammocks and water beds 'cause they make you feel like you're floating on waves. It's the most relaxing thing ever~♪ You oughta hop on and try for yourself, Commander~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 4, + "id": 305131, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shimmering Forsythia", + "painting": "weizhang_2", + "prefab": "weizhang_2", + "rarity_bg": "", + "ship_group": 30513, + "ship_l2d_id": "", + "shop_id": 70901, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.549, + 2.436, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + -43, + -1322, + 0 + ], + [ + 1 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 295, + "voice_actor_2": -1 + }, + "305140": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.029, + 1.278, + 0 + ] + ], + "cannon": [ + [ + 0.029, + 1.278, + 0 + ] + ], + "torpedo": [ + [ + 0.154, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + 0.029, + 1.278, + 0 + ] + ] + }, + "desc": "Battleship Suruga, reporting for duty. It would seem that some threads of fate connect me to this port... No, don't mind my rambling. Please disregard that.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 305140, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Suruga", + "painting": "junhe", + "prefab": "junhe", + "rarity_bg": "", + "ship_group": 30514, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.221, + 2.345, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 215, + "voice_actor_2": -1 + }, + "305141": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.351, + 1.278, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.278, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.195, + 1.278, + 0 + ] + ] + }, + "desc": "Good morning, Commander. Everyone else seems to be dressed up on this day of celebration, so this shouldn't be a problem, right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 305141, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "home": 2.56, + "login": 7.27, + "main_1": 0.33, + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -40, + -20, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hundred Flowers' Auspice", + "painting": "junhe_5", + "prefab": "junhe_5", + "rarity_bg": "", + "ship_group": 30514, + "ship_l2d_id": "", + "shop_id": 70284, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.221, + 2.345, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 215, + "voice_actor_2": -1 + }, + "305142": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.193, + 0.998, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.019, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.195, + 1.005, + 0 + ] + ] + }, + "desc": "Oh. Fancy meeting you here... Walk to school together? Uh, sure! I know the way, so please just follow me.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 305142, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Straightfaced Model Student", + "painting": "junhe_3", + "prefab": "junhe_3", + "rarity_bg": "", + "ship_group": 30514, + "ship_l2d_id": "", + "shop_id": 70571, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.422, + 2.417, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 215, + "voice_actor_2": -1 + }, + "305143": { + "bg": "151", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 1.21, + 0 + ] + ], + "cannon": [ + [ + 1.49, + 0.94, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.38, + 1.27, + 0 + ] + ] + }, + "desc": "This should do it. With how unremarkable my present is, I doubt it'll make any waves when the... Ack! Commander?! Why are you here?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 305143, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamEyeBallX": [ + -1, + 0 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -100, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Uneventful Holiday Greetings", + "painting": "junhe_4", + "prefab": "junhe_4", + "rarity_bg": "", + "ship_group": 30514, + "ship_l2d_id": "", + "shop_id": 70626, + "shop_type_id": 1, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.422, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 215, + "voice_actor_2": -1 + }, + "306010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.89, + 0.91, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 1.32, + 0 + ] + ], + "plane": [ + [ + 1.38, + 1.21, + 0 + ] + ] + }, + "desc": "Hiyou-class aircraft carrier number one – Hiyou.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 306010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hiyou", + "painting": "feiying", + "prefab": "feiying", + "rarity_bg": "", + "ship_group": 30601, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.34, + 2.23, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 136, + "voice_actor_2": -1 + }, + "306020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.22, + 1.4, + 0 + ] + ], + "cannon": [ + [ + 1.07, + 1.4, + 0 + ] + ], + "plane": [ + [ + 1.2, + 1.34, + 0 + ] + ] + }, + "desc": "Hiyou-class aircraft carrier number two – Junyou.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 306020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Junyou", + "painting": "sunying", + "prefab": "sunying", + "rarity_bg": "", + "ship_group": 30602, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.5, + 2.31, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 136, + "voice_actor_2": -1 + }, + "306030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.77, + 1.19, + 0 + ] + ], + "cannon": [ + [ + 0.77, + 1.19, + 0 + ] + ], + "plane": [ + [ + 0.77, + 1.19, + 0 + ] + ] + }, + "desc": "Aircraft carrier, {namecode:89}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 306030, + "illustrator": 23, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:89}", + "painting": "fengxiang", + "prefab": "fengxiang", + "rarity_bg": "", + "ship_group": 30603, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 0.97, + -0.4 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.67, + 2.52, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 58, + "voice_actor_2": -1 + }, + "306031": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.77, + 1.19, + 0 + ] + ], + "cannon": [ + [ + 0.77, + 1.19, + 0 + ] + ], + "plane": [ + [ + 0.77, + 1.19, + 0 + ] + ] + }, + "desc": "While everyone slips into sweet dreams from the night's festivities, the sound of gossamer sliding off of smooth skin reaches your ears... Hehe, would you like to spend this night under the stars with me, Master~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 306031, + "illustrator": 23, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Dream of the Autumn Pillow", + "painting": "fengxiang_2", + "prefab": "fengxiang_2", + "rarity_bg": "", + "ship_group": 30603, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.16, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 58, + "voice_actor_2": -1 + }, + "306050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.015, + 0.461, + 0 + ] + ], + "plane": [ + [ + 0.484, + 0.514, + 0 + ] + ] + }, + "desc": "First ship of the {namecode:87}-class aircraft carriers, {namecode:87}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 306050, + "illustrator": 24, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:87}", + "painting": "xiangfeng", + "prefab": "xiangfeng", + "rarity_bg": "", + "ship_group": 30605, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.505, + 0.432, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.713, + 0.514, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 2, + "voice_actor_2": -1 + }, + "306051": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.16, + 0.88, + 0 + ] + ], + "cannon": [ + [ + -0.16, + 0.88, + 0 + ] + ], + "plane": [ + [ + -0.16, + 0.88, + 0 + ] + ], + "vicegun": [ + [ + -0.16, + 0.88, + 0 + ] + ] + }, + "desc": "Waaaah! My candy! Candy is spillin’ everywhere! ...Wh-why are y’all chasin’ me? Commander, help me catch the pumpkin!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 306051, + "illustrator": 24, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Patrolling Witch", + "painting": "xiangfeng_2", + "prefab": "xiangfeng_2", + "rarity_bg": "", + "ship_group": 30605, + "ship_l2d_id": "", + "shop_id": 70017, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.21, + 2.7, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 2, + "voice_actor_2": -1 + }, + "306059": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.53, + 0.96, + 0 + ] + ], + "plane": [ + [ + 0.53, + 0.96, + 0 + ] + ] + }, + "desc": "Commander, how do I look now that I've grown up? Are ya fallin' in love with me already? Mhm, ye definitely are~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 306059, + "illustrator": 24, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shouhou (Retrofit)", + "painting": "xiangfeng_g", + "prefab": "xiangfeng_g", + "rarity_bg": "", + "ship_group": 30605, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 2, + "voice_actor_2": -1 + }, + "306060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.88, + 0.84, + 0 + ] + ], + "plane": [ + [ + 0.67, + 0.78, + 0 + ] + ] + }, + "desc": "Ryuujou-class Light Carrier - Ryuujou", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 306060, + "illustrator": 24, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ryuujou", + "painting": "longxiang", + "prefab": "longxiang", + "rarity_bg": "", + "ship_group": 30606, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 163, + "voice_actor_2": -1 + }, + "306061": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.241, + 1.062, + 0 + ] + ], + "plane": [ + [ + 1.194, + 1.109, + 0 + ] + ] + }, + "desc": "*yawn*... Finally, a good night's rest... Now, to pick up where I left off on that RPG... M-m-m-milord, why are you here?! I wasn't slacking off or anything, I w-w-was just... Ughh....", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 306061, + "illustrator": 24, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Slacking Samurai", + "painting": "longxiang_2", + "prefab": "longxiang_2", + "rarity_bg": "", + "ship_group": 30606, + "ship_l2d_id": "", + "shop_id": 70124, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.205, + 2.353, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 163, + "voice_actor_2": -1 + }, + "306062": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.241, + 1.005, + 0 + ] + ], + "plane": [ + [ + 1.237, + 1.009, + 0 + ] + ] + }, + "desc": "All right! Steady! Steadyyy! Gottem! Hahahah! Now I'll– M-Milord?! I-I'm just, umm... enjoying an after-school break!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 306062, + "illustrator": 24, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dragon Hunter: Ryuujou's Rise", + "painting": "longxiang_3", + "prefab": "longxiang_3", + "rarity_bg": "", + "ship_group": 30606, + "ship_l2d_id": "", + "shop_id": 70566, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.454, + 2.431, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 163, + "voice_actor_2": -1 + }, + "306070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.88, + 0.84, + 0 + ] + ], + "plane": [ + [ + 0.67, + 0.78, + 0 + ] + ] + }, + "desc": "Ryuuhou-class light aircraft carrier – Ryuuhou.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 306070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ryuuhou", + "painting": "longfeng", + "prefab": "longfeng", + "rarity_bg": "", + "ship_group": 30607, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 105, + "voice_actor_2": -1 + }, + "306071": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.88, + 0.84, + 0 + ] + ], + "plane": [ + [ + 0.67, + 0.78, + 0 + ] + ] + }, + "desc": "Commander, everyone seems to be busy with end-of-year preparations. If there is anything I can do to help, please let me know.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 306071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "expedition": 1.53, + "home": 6.93, + "login": 12, + "mail": 1.5, + "main_1": 0.63, + "main_2": 0.57, + "main_3": 0.57, + "mission": 1.13, + "mission_complete": 1.27, + "propose": 2.5, + "touch": 0.63, + "touch2": 1.3 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -26, + 26, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Firebird's New Year Dance", + "painting": "longfeng_2", + "prefab": "longfeng_2", + "rarity_bg": "", + "ship_group": 30607, + "ship_l2d_id": "", + "shop_id": 70286, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 105, + "voice_actor_2": -1 + }, + "306080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.745, + 1.131, + 0 + ] + ], + "plane": [ + [ + 1.723, + 1.184, + 0 + ] + ] + }, + "desc": "Zuihou-class aircraft carrier – Chitose. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 306080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chitose", + "painting": "qiansui", + "prefab": "qiansui", + "rarity_bg": "", + "ship_group": 30608, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 244, + "voice_actor_2": -1 + }, + "306081": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.764, + 1.113, + 0 + ] + ], + "plane": [ + [ + 1.723, + 1.147, + 0 + ] + ] + }, + "desc": "An order of coconut milk... and grilled sausage. Mm, that should do it. ...Hm? Commander? Are you here to place an order, or to get away from the heat? ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 306081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Shine", + "painting": "qiansui_2", + "prefab": "qiansui_2", + "rarity_bg": "", + "ship_group": 30608, + "ship_l2d_id": "", + "shop_id": 70408, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 244, + "voice_actor_2": -1 + }, + "306082": { + "bg": "157", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.52, + 1.17, + 0 + ] + ], + "plane": [ + [ + 1.5, + 1.12, + 0 + ] + ] + }, + "desc": "I had this outfit custom-made just for today... Do you like it, Commander? Um, that's good then... (*whispers*) Booyah.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 306082, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mosaic of Blending Colors", + "painting": "qiansui_3", + "prefab": "qiansui_3", + "rarity_bg": "", + "ship_group": 30608, + "ship_l2d_id": "", + "shop_id": 70707, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 244, + "voice_actor_2": -1 + }, + "306090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.513, + 1.148, + 0 + ] + ], + "plane": [ + [ + 1.572, + 1.175, + 0 + ] + ] + }, + "desc": "Zuihou-class aircraft carrier – Chiyoda. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 306090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chiyoda", + "painting": "qiandaitian", + "prefab": "qiandaitian", + "rarity_bg": "", + "ship_group": 30609, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 244, + "voice_actor_2": -1 + }, + "306091": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.679, + 1.103, + 0 + ] + ], + "plane": [ + [ + 1.488, + 1.128, + 0 + ] + ] + }, + "desc": "Hehe~ If you don't have any other plans, then your only task... is to enjoy a holiday by the sea! Commander, have you switched into vacation mode yet? ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 306091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shimmering Surf", + "painting": "qiandaitian_2", + "prefab": "qiandaitian_2", + "rarity_bg": "", + "ship_group": 30609, + "ship_l2d_id": "", + "shop_id": 70409, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 244, + "voice_actor_2": -1 + }, + "307010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.931, + 1.059, + 0 + ] + ], + "plane": [ + [ + 0.492, + 0.393, + 0 + ] + ] + }, + "desc": "Aircraft carrier, {namecode:91}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 307010, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Akagi", + "painting": "chicheng", + "prefab": "chicheng", + "rarity_bg": "", + "ship_group": 30701, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.478, + 0.432, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.384, + 0.853, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 44, + "voice_actor_2": -1 + }, + "307011": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.78, + 0.68, + 0 + ] + ], + "plane": [ + [ + 1.78, + 0.68, + 0 + ] + ] + }, + "desc": "\"When you gaze long into the abyss, the abyss also gazes into you.\" Commander, please do not forget that when you gaze at Akagi~ *giggles*", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 307011, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Paradise Amaryllis", + "painting": "Chicheng_2", + "prefab": "Chicheng_2", + "rarity_bg": "", + "ship_group": 30701, + "ship_l2d_id": "", + "shop_id": 70003, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.478, + 0.432, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.384, + 0.853, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 44, + "voice_actor_2": -1 + }, + "307012": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.3, + 1.22, + 0 + ] + ], + "plane": [ + [ + 1.3, + 1.22, + 0 + ] + ] + }, + "desc": "Commander will always remain by Akagi's side... Right, \"Gods?\" Of course... Akagi will deal with the pests.... Ahaha...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 307012, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Plum and Snow", + "painting": "Chicheng_3", + "prefab": "Chicheng_3", + "rarity_bg": "", + "ship_group": 30701, + "ship_l2d_id": "", + "shop_id": 70032, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.3, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 44, + "voice_actor_2": -1 + }, + "307013": { + "bg": "136", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.215, + 1.149, + 0 + ] + ], + "plane": [ + [ + 1.229, + 1.184, + 0 + ] + ] + }, + "desc": "Commander, I've been waiting for you~ What a sinful one you are, to tempt Akagi like this for so long... But at long last, nobody will ever get between us again...♡", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 307013, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ruby-Laced Beauty", + "painting": "Chicheng_4", + "prefab": "Chicheng_4", + "rarity_bg": "", + "ship_group": 30701, + "ship_l2d_id": "", + "shop_id": 70423, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.3, + 2.618, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 44, + "voice_actor_2": -1 + }, + "307014": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.135, + 1.344, + 0 + ] + ], + "plane": [ + [ + 1.167, + 1.184, + 0 + ] + ] + }, + "desc": "This banquet is my present to you... and your attendance is the greatest reward I could hope for~ Indeed, I shall not grant you leave tonight until you pass out. Ehehe... Ahahaha~♡", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 2, + "id": 307014, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 1, + "l2d_para_range": { + "ParamBodyAngleY": [ + 0, + 0 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 40, + 70, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dawn-Phoenix's Summons", + "painting": "chicheng_5", + "prefab": "chicheng_5", + "rarity_bg": "", + "ship_group": 30701, + "ship_l2d_id": "", + "shop_id": 70659, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.327, + 2.423, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 44, + "voice_actor_2": -1 + }, + "307015": { + "bg": "129", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.215, + 1.149, + 0 + ] + ], + "plane": [ + [ + 1.229, + 1.184, + 0 + ] + ] + }, + "desc": "Commander, open up. Say ahh... Heehee, heheheheh... You're like a little baby♪ Receiving a lovely new outfit and seeing a different side of you... How blessed am I?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 2, + "id": 307015, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Precipice of Sweetness", + "painting": "chicheng_6", + "prefab": "chicheng_6", + "rarity_bg": "", + "ship_group": 30701, + "ship_l2d_id": "", + "shop_id": 70841, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.3, + 2.618, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 44, + "voice_actor_2": -1 + }, + "307018": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.584, + 0.686, + 0 + ] + ], + "plane": [ + [ + 0.584, + 0.686, + 0 + ] + ] + }, + "desc": "We should send out even more invites... This is the best way to rid ourselves of those pesky vixens all at once!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 2, + "id": 307018, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Deep Crimson Poppy", + "painting": "chicheng_h", + "prefab": "chicheng_h", + "rarity_bg": "", + "ship_group": 30701, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.24, + 0.85, + 0.14 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.274, + 2.4, + -0.76 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 44, + "voice_actor_2": -1 + }, + "307020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -1.059, + 0.492, + 0 + ] + ], + "plane": [ + [ + 0.946, + 0.204, + 0 + ] + ] + }, + "desc": "Aircraft carrier, {namecode:92}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 307020, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kaga", + "painting": "jiahe", + "prefab": "jiahe", + "rarity_bg": "", + "ship_group": 30702, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.799, + 0.453, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.304, + 0.977, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": 137 + }, + "307021": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.78, + 0.68, + 0 + ] + ], + "plane": [ + [ + 1.78, + 0.68, + 0 + ] + ] + }, + "desc": "\"You only live once?\" Where have I heard that saying before... Commander, are you getting excited?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 307021, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Everlasting Killing Stone", + "painting": "Jiahe_2", + "prefab": "Jiahe_2", + "rarity_bg": "", + "ship_group": 30702, + "ship_l2d_id": "", + "shop_id": 70004, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.799, + 0.453, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.304, + 0.977, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 9, + "voice_actor_2": 137 + }, + "307022": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.91, + 1.14, + 0 + ] + ], + "plane": [ + [ + 0.91, + 1.14, + 0 + ] + ] + }, + "desc": "One must wear appropriate attire for the New Year. What do you think, Commander? Let me hear your opinion.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 307022, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "White Fox's New Year", + "painting": "Jiahe_3", + "prefab": "Jiahe_3", + "rarity_bg": "", + "ship_group": 30702, + "ship_l2d_id": "", + "shop_id": 70033, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 9, + "voice_actor_2": 137 + }, + "307023": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.254, + 1.12, + 0 + ] + ], + "plane": [ + [ + 1.214, + 1.114, + 0 + ] + ] + }, + "desc": "This statue seems to have been inspired by the teachings of the Iris Orthodoxy. Though I am unfamiliar with this kind of art, gazing upon such majesty... fills one with a sense of piety. Commander, can you feel it as well?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 307023, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Exalted White Wings", + "painting": "Jiahe_5", + "prefab": "Jiahe_5", + "rarity_bg": "", + "ship_group": 30702, + "ship_l2d_id": "", + "shop_id": 70424, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 9, + "voice_actor_2": 137 + }, + "307024": { + "bg": "142", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.088, + 1.003, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + -0.007, + -0.006, + 0 + ] + ] + }, + "desc": "I never thought you'd end up taking such a long trip with me just to pick up a dress... Though I'm worried about leaving my sister behind at port, I suppose I should take your advice and relax a bit.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 2, + "id": 307024, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gentle Blossom's Sigh", + "painting": "jiahe_4", + "prefab": "jiahe_4", + "rarity_bg": "", + "ship_group": 30702, + "ship_l2d_id": "", + "shop_id": 70532, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 9, + "voice_actor_2": 137 + }, + "307025": { + "bg": "152", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.035, + 0.994, + 0 + ] + ], + "plane": [ + [ + 1.07, + 1.1, + 0 + ] + ] + }, + "desc": "What are you doing up here?! Oh, it's you. I thought you went to see my sister? ...You needed a breath of fresh air? That's all fine, but you should return to my sister soon before she does something mad.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 2, + "id": 307025, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dusk-Simurgh's Vigil", + "painting": "jiahe_6", + "prefab": "jiahe_6", + "rarity_bg": "", + "ship_group": 30702, + "ship_l2d_id": "", + "shop_id": 70660, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.494, + 2.391, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 9, + "voice_actor_2": 137 + }, + "307026": { + "bg": "155", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.035, + 0.994, + 0 + ] + ], + "plane": [ + [ + 1.07, + 1.1, + 0 + ] + ] + }, + "desc": "I came in expecting to play an assassin, but instead I'm a dancer. Did Akashi come up with this setting? Well, whatever... As long as I get to fight, there's nothing worth complaining about. Commander, hide behind me if you ever encounter a monster.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 2, + "id": 307026, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Snowsilk Fox Dance", + "painting": "jiahe_7", + "prefab": "jiahe_7", + "rarity_bg": "", + "ship_group": 30702, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.494, + 2.391, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 9, + "voice_actor_2": 137 + }, + "307028": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.91, + 1.14, + 0 + ] + ], + "plane": [ + [ + 0.91, + 1.14, + 0 + ] + ] + }, + "desc": "\"To hold one's hand and grow old together with him\"... If it is to be with you, then it won't so bad.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 2, + "id": 307028, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sacred Blue Lily", + "painting": "jiahe_h", + "prefab": "jiahe_h", + "rarity_bg": "", + "ship_group": 30702, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": 137 + }, + "307030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.832, + 0.969, + 0 + ] + ], + "plane": [ + [ + -0.939, + 0.719, + 0 + ] + ] + }, + "desc": "Aircraft carrier, {namecode:93}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 307030, + "illustrator": 12, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Souryuu", + "painting": "canglong", + "prefab": "canglong", + "rarity_bg": "", + "ship_group": 30703, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.269, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.189, + 0.864, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 15, + "voice_actor_2": -1 + }, + "307031": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.76, + 1.36, + 0 + ] + ], + "plane": [ + [ + 0.76, + 1.36, + 0 + ] + ] + }, + "desc": "I tried wearing something a bit different from usual, but I'm not sure it suits me... Commander, what do you think?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 307031, + "illustrator": 12, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Crane Amidst the Pines", + "painting": "Canglong_2", + "prefab": "Canglong_2", + "rarity_bg": "", + "ship_group": 30703, + "ship_l2d_id": "", + "shop_id": 70031, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.44, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 15, + "voice_actor_2": -1 + }, + "307032": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.78, + 0.969, + 0 + ] + ], + "plane": [ + [ + 2.12, + 2.67, + 0 + ] + ] + }, + "desc": "Counselor girl {namecode:93}! Remedy the school atmosphere and correct your learning attitude, and...well, in short, I protect the discipline of the school.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 307032, + "illustrator": 12, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Counselor Girl", + "painting": "canglong_3", + "prefab": "canglong_3", + "rarity_bg": "", + "ship_group": 30703, + "ship_l2d_id": "", + "shop_id": 70052, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.45, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 15, + "voice_actor_2": -1 + }, + "307039": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.78, + 0.969, + 0 + ] + ], + "plane": [ + [ + 1.14, + 2.32, + 0 + ] + ] + }, + "desc": "If I can become stronger through this... Commander, what are you staring at? Don't you still have work to do?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 2, + "id": 307039, + "illustrator": 12, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Souryuu (Retrofit)", + "painting": "canglong_g", + "prefab": "canglong_g", + "rarity_bg": "", + "ship_group": 30703, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.45, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 15, + "voice_actor_2": -1 + }, + "307040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.628, + 0.908, + 0 + ] + ], + "plane": [ + [ + -1.188, + 0.832, + 0 + ] + ] + }, + "desc": "Aircraft carrier, {namecode:94}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 307040, + "illustrator": 12, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hiryuu", + "painting": "feilong", + "prefab": "feilong", + "rarity_bg": "", + "ship_group": 30704, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.456, + 0.32, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.118, + 0.905, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 30, + "voice_actor_2": -1 + }, + "307041": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.14, + 0 + ] + ], + "plane": [ + [ + 1.13, + 1.24, + 0 + ] + ] + }, + "desc": "Without girl bullies, there would be no disciplinary girl. So...before sister catches me, let’s cause some mischief at school.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 307041, + "illustrator": 12, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "After School Bullies", + "painting": "feilong_2", + "prefab": "feilong_2", + "rarity_bg": "", + "ship_group": 30704, + "ship_l2d_id": "", + "shop_id": 70053, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 30, + "voice_actor_2": -1 + }, + "307049": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.14, + 0 + ] + ], + "plane": [ + [ + 1.13, + 1.24, + 0 + ] + ] + }, + "desc": "Retrofit complete! Aircraft Carrier Hiryuu, reporting for duty! Hahaha! I finally got the chance to use that line! I'll be counting on you once more!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 2, + "id": 307049, + "illustrator": 12, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hiryuu (Retrofit)", + "painting": "feilong_g", + "prefab": "feilong_g", + "rarity_bg": "", + "ship_group": 30704, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 30, + "voice_actor_2": -1 + }, + "307050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -1.19, + 1.31, + 0 + ] + ], + "plane": [ + [ + 0.62, + 1.13, + 0 + ] + ] + }, + "desc": "First ship of the {namecode:95}-class aircraft carriers, {namecode:95}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 307050, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shoukaku", + "painting": "xianghe", + "prefab": "xianghe", + "rarity_bg": "", + "ship_group": 30705, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.22, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "307051": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.753, + 1.079, + 0 + ] + ], + "plane": [ + [ + 0.015, + 0.012, + 0 + ] + ] + }, + "desc": "I prepared this outfit just for the occasion, so... Commander, you're not going to disappoint me, are you? Hehe~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 307051, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 70, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Crane that Dances With the Wind", + "painting": "xianghe_2", + "prefab": "xianghe_2", + "rarity_bg": "", + "ship_group": 30705, + "ship_l2d_id": "", + "shop_id": 70234, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.22, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "307052": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.033, + 0.988, + 0 + ] + ], + "plane": [ + [ + 1.03, + 1.035, + 0 + ] + ] + }, + "desc": "Hehe, this kind of work is a simple matter for me. Commander, please look forward to my performance~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 307052, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 70, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sororal Wings", + "painting": "xianghe_3", + "prefab": "xianghe_3", + "rarity_bg": "", + "ship_group": 30705, + "ship_l2d_id": "", + "shop_id": 70388, + "shop_type_id": 14, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.22, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "307060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.83, + 0.74, + 0 + ] + ], + "plane": [ + [ + 0.83, + 0.74, + 0 + ] + ] + }, + "desc": "Second ship of the {namecode:95}-class aircraft carriers, {namecode:96}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 307060, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Zuikaku", + "painting": "ruihe", + "prefab": "ruihe", + "rarity_bg": "", + "ship_group": 30706, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "307061": { + "bg": "114", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 0.792, + 0 + ] + ], + "plane": [ + [ + 0.016, + 0.055, + 0 + ] + ] + }, + "desc": "New Elite 1st CarDiv, Zuikaku, reporting for duty! Ahh, I've always wanted to give such a cool introduction! Shoukaku would definitely make fun of me if she heard it, but I wanted to try it while everyone is in a festive mood... Commander, what'd you think?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 307061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ceremonial Crane", + "painting": "ruihe_2", + "prefab": "ruihe_2", + "rarity_bg": "", + "ship_group": 30706, + "ship_l2d_id": "", + "shop_id": 70218, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "307062": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 1.114, + 0 + ] + ], + "plane": [ + [ + 1.138, + 1.144, + 0 + ] + ] + }, + "desc": "Commander, I volunteered to take this job in order to help you out, but this outfit... did it always require such a high degree of exposure...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 307062, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Wind's True Name", + "painting": "ruihe_3", + "prefab": "ruihe_3", + "rarity_bg": "", + "ship_group": 30706, + "ship_l2d_id": "", + "shop_id": 70389, + "shop_type_id": 14, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "307070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.84, + 0.97, + 0 + ] + ], + "plane": [ + [ + 0.83, + 0.91, + 0 + ] + ] + }, + "desc": "Taihou-class aircraft carrier – Taihou.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 307070, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Taihou", + "painting": "dafeng", + "prefab": "dafeng", + "rarity_bg": "", + "ship_group": 30707, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 145, + "voice_actor_2": -1 + }, + "307071": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.74, + 1.24, + 0 + ] + ], + "plane": [ + [ + 0.7, + 1.16, + 0 + ] + ] + }, + "desc": "You're taking so long to dress yourself, my Commander. Are you struggling to find something to match my dress? Hehe, it doesn't matter what you wear, you're always perfect to me♡", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 307071, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -30, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Forbidden Fruit", + "painting": "dafeng_2", + "prefab": "dafeng_2", + "rarity_bg": "", + "ship_group": 30707, + "ship_l2d_id": "", + "shop_id": 70104, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 145, + "voice_actor_2": -1 + }, + "307072": { + "bg": "128", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.93, + 1.24, + 0 + ] + ], + "plane": [ + [ + 0.02, + 0.06, + 0 + ] + ] + }, + "desc": "Hehehe, I let Christmas and New Year's slip right by me, that I might use the Dragon Empery's Lunar New Year to capture my Commander's attentions... Oh, My Commander, won't you please enjoy the show I've prepared for you♡", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 307072, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -10, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Phoenix's Spring Song", + "painting": "dafeng_4", + "prefab": "dafeng_4", + "rarity_bg": "", + "ship_group": 30707, + "ship_l2d_id": "", + "shop_id": 70302, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 145, + "voice_actor_2": -1 + }, + "307073": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.103, + 1.125, + 0 + ] + ], + "plane": [ + [ + 1.15, + 1.132, + 0 + ] + ] + }, + "desc": "Do I make a nice race queen, my Commander...? Hehe. With these proportions, and my fantastic outfit~♡ The others couldn't hope to compare with me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 307073, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Enraptured Companion", + "painting": "dafeng_5", + "prefab": "dafeng_5", + "rarity_bg": "", + "ship_group": 30707, + "ship_l2d_id": "", + "shop_id": 70383, + "shop_type_id": 14, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 145, + "voice_actor_2": -1 + }, + "307074": { + "bg": "147", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.06, + 1.63, + 0 + ] + ], + "plane": [ + [ + 1.14, + 1.43, + 0 + ] + ] + }, + "desc": "Ehehe~ There is no greater bliss than being with you after classes are over, my Commander~ The kitty here seems to agree♡", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 2, + "id": 307074, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 30, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sweet Time After School", + "painting": "dafeng_3", + "prefab": "dafeng_3", + "rarity_bg": "", + "ship_group": 30707, + "ship_l2d_id": [ + 3070741, + 3070742 + ], + "shop_id": 70715, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.84, + 2.04, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 145, + "voice_actor_2": -1 + }, + "307075": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.103, + 1.125, + 0 + ] + ], + "plane": [ + [ + 1.15, + 1.132, + 0 + ] + ] + }, + "desc": "A beach date, just me and my Commander... I could walk by your side forever—No, I can't be satisfied by this alone. And neither can you... Right, my Commander?♥", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 2, + "id": 307075, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -20, + 20 + ], + "ParamAngleY": [ + -20, + 20 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 47, + -25, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Seaside Daydreams", + "painting": "dafeng_6", + "prefab": "dafeng_6", + "rarity_bg": "", + "ship_group": 30707, + "ship_l2d_id": [ + 3070751, + 3070752, + 3070753, + 3070754, + 3070755, + 3070756, + 3070757 + ], + "shop_id": 70848, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 145, + "voice_actor_2": -1 + }, + "307078": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.103, + 1.125, + 0 + ] + ], + "plane": [ + [ + 1.15, + 1.132, + 0 + ] + ] + }, + "desc": "My Commander~ Do you like the location that I've chosen~? We have the entire evening to ourselves, free from the disturbance of anyone else...! Ahhh, my heart is throbbing even more vigorously than the ocean's waves~♡", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 2, + "id": 307078, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Temptation on the Sea Breeze", + "painting": "dafeng_h", + "prefab": "dafeng_h", + "rarity_bg": "", + "ship_group": 30707, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 145, + "voice_actor_2": -1 + }, + "307080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.13, + 0.99, + 0 + ] + ], + "plane": [ + [ + 2.18, + 0.99, + 0 + ] + ] + }, + "desc": "Yamato-class ship number three – Shinano. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 307080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shinano ", + "painting": "xinnong", + "prefab": "xinnong", + "rarity_bg": "", + "ship_group": 30708, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.23, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "xinnong3", + [ + 326, + -459, + 0 + ], + [ + 2.5 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 272, + -1151, + 0 + ], + [ + 1.2 + ] + ], + "tag": [], + "time": "", + "voice_actor": 192, + "voice_actor_2": -1 + }, + "307081": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.323, + 1.098, + 0 + ] + ], + "plane": [ + [ + 1.439, + 1.128, + 0 + ] + ] + }, + "desc": "The moonlight dims beneath hazy clouds, and the lights of the night sky begin to shine... The moon, and this sake, are both intoxicating... Will you not enjoy this fine evening with me...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 307081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dreams of the Hazy Moon", + "painting": "xinnong_2", + "prefab": "xinnong_2", + "rarity_bg": "", + "ship_group": 30708, + "ship_l2d_id": "", + "shop_id": 70421, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.383, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 192, + "voice_actor_2": -1 + }, + "307082": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.323, + 1.098, + 0 + ] + ], + "plane": [ + [ + 1.439, + 1.128, + 0 + ] + ] + }, + "desc": "Hnnh... Such clamors of merriment... Would this one be welcome amidst these festivities? Alas... If you so desire, how can this one refuse...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 307082, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamAngleY": [ + -15, + 15 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -10, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Moonlit Chrome", + "painting": "xinnong_3", + "prefab": "xinnong_3", + "rarity_bg": "", + "ship_group": 30708, + "ship_l2d_id": [ + 3070821, + 3070822, + 3070823, + 3070824, + 3070825 + ], + "shop_id": 70757, + "shop_type_id": 14, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 192, + "voice_actor_2": -1 + }, + "307083": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.323, + 1.098, + 0 + ] + ], + "plane": [ + [ + 1.439, + 1.128, + 0 + ] + ] + }, + "desc": "This world of pristine sand that you have envisioned, a mirage that fits only within the confines of a dream and a reverie... No matter how many times we meet here, this one finds herself drawn to this place again and again...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 307083, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": [ + 0.33, + 0.33, + 0.33 + ], + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -30, + -10 + ], + "ParamAngleY": [ + 0, + 30 + ], + "ParamBodyAngleX": [ + -10, + 10 + ], + "ParamBodyAngleY": [ + -10, + 10 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dreamy White Sands", + "painting": "xinnong_4", + "prefab": "xinnong_4", + "rarity_bg": "", + "ship_group": 30708, + "ship_l2d_id": [ + 30708301, + 30708302, + 30708303, + 30708304, + 30708305, + 30708306, + 30708307, + 30708308, + 30708309, + 30708310, + 30708311, + 30708312, + 30708313, + 30708314, + 30708315, + 30708316, + 30708317, + 30708318, + 30708319, + 30708320, + 30708321, + 30708322, + 30708323, + 30708324, + 30708325, + 30708326 + ], + "shop_id": 70910, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 192, + "voice_actor_2": -1 + }, + "307090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.98, + 0.67, + 0 + ] + ], + "plane": [ + [ + 1.07, + 0.56, + 0 + ] + ] + }, + "desc": "Aircraft carrier Akagi.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 307090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 30, + -55, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Akagi-chan", + "painting": "chicheng_younv", + "prefab": "chicheng_younv", + "rarity_bg": "", + "ship_group": 30709, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.19, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 44, + "voice_actor_2": -1 + }, + "307100": { + "bg": "121", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.381, + 1.021, + 0 + ] + ], + "plane": [ + [ + 1.362, + 1.012, + 0 + ] + ] + }, + "desc": "With the magicks of the Sakura Empire, changing my form like this is a trifle... Hehehe, Commander? Does this Akagi please you?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 307100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Akagi μ", + "painting": "chicheng_idol", + "prefab": "chicheng_idol", + "rarity_bg": "", + "ship_group": 30710, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.342, + 2.332, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 44, + "voice_actor_2": -1 + }, + "307110": { + "bg": "139", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.481, + 1.049, + 0 + ] + ], + "plane": [ + [ + 1.48, + 1.081, + 0 + ] + ] + }, + "desc": "With these clothes, and upon this stage... Ahaha... Ahahaha... Fate has ordained that my Commander shall fall for me here... Commander, please listen to the song of my love until the very end~♡", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 307110, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Taihou μ", + "painting": "dafeng_idol", + "prefab": "dafeng_idol", + "rarity_bg": "", + "ship_group": 30711, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 145, + "voice_actor_2": -1 + }, + "307120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.481, + 1.049, + 0 + ] + ], + "plane": [ + [ + 1.48, + 1.081, + 0 + ] + ] + }, + "desc": "Unryuu-class aircraft carrier – Katsuragi.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 307120, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Katsuragi", + "painting": "gecheng", + "prefab": "gecheng", + "rarity_bg": "", + "ship_group": 30712, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 286, + "voice_actor_2": -1 + }, + "307121": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.481, + 1.049, + 0 + ] + ], + "plane": [ + [ + 1.48, + 1.081, + 0 + ] + ] + }, + "desc": "It's– summer– festival– time–!! Uhh, well, maybe it's a bit too late for a \"summer\" festival, so maybe a regular festival is fine? Well, the important thing is that you have lots of fun, Commander! Because I sure as heck will!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 307121, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Night-Illuminating Festival", + "painting": "gecheng_2", + "prefab": "gecheng_2", + "rarity_bg": "", + "ship_group": 30712, + "ship_l2d_id": "", + "shop_id": 70591, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 286, + "voice_actor_2": -1 + }, + "307122": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.481, + 1.049, + 0 + ] + ], + "plane": [ + [ + 1.48, + 1.081, + 0 + ] + ] + }, + "desc": "Mmmh~ When it gets real hot, whether you're a shipgirl or an ordinary person, the place to go to cool down is always either the mountains or the beach, right? But what if I told you, that when you're at a rooftop pool, you not only get the great views of climbing up a mountain, but also the refreshing coolness of splashing around in the water? Am I right or am I right, Commander? ...Heeeey, are you even listening?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 307122, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shallow-Water Leisure", + "painting": "gecheng_3", + "prefab": "gecheng_3", + "rarity_bg": "", + "ship_group": 30712, + "ship_l2d_id": "", + "shop_id": 70906, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 286, + "voice_actor_2": -1 + }, + "307130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.84, + 0.97, + 0 + ] + ], + "plane": [ + [ + 0.83, + 0.91, + 0 + ] + ] + }, + "desc": "Taihou-class aircraft carrier – Taihou.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 307130, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Taihou-chan", + "painting": "dafeng_younv", + "prefab": "dafeng_younv", + "rarity_bg": "", + "ship_group": 30713, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 145, + "voice_actor_2": -1 + }, + "308010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.06, + 0.11, + 0 + ] + ], + "torpedo": [ + [ + 1.1, + 0.07, + 0 + ] + ] + }, + "desc": "Type B1 cruiser submarine – I-19.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 308010, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "I-19", + "painting": "I19", + "prefab": "I19", + "rarity_bg": "", + "ship_group": 30801, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 83, + "voice_actor_2": -1 + }, + "308011": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.06, + 0.11, + 0 + ] + ], + "torpedo": [ + [ + 1.1, + 0.07, + 0 + ] + ] + }, + "desc": "Aww, do I have to go to school? ... Oh, Commander! Are you here to see me off?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 308011, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Departure's Gentle Breeze", + "painting": "I19_2", + "prefab": "I19_2", + "rarity_bg": "", + "ship_group": 30801, + "ship_l2d_id": "", + "shop_id": 70074, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 83, + "voice_actor_2": -1 + }, + "308012": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.563, + 0.382, + 0 + ] + ], + "torpedo": [ + [ + 0.011, + -0.417, + 0 + ] + ] + }, + "desc": "So sleepy... Hey, Commandeeer? Do you wanna nap with me and my torpedo?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 308012, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pillowy Paradise", + "painting": "I19_3", + "prefab": "I19_3", + "rarity_bg": "", + "ship_group": 30801, + "ship_l2d_id": "", + "shop_id": 70391, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 83, + "voice_actor_2": -1 + }, + "308013": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.268, + 0.442, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "I thought I'd try on this bunny costume! Hehehe, do you like it? If you think it's cute, I wanna hear you say it~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 308013, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blossoming Bunny", + "painting": "i19_4", + "prefab": "i19_4", + "rarity_bg": "", + "ship_group": 30801, + "ship_l2d_id": "", + "shop_id": 70547, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 83, + "voice_actor_2": -1 + }, + "308020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.97, + 0.24, + 0 + ] + ], + "torpedo": [ + [ + 0.97, + 0.3, + 0 + ] + ] + }, + "desc": "Type B1 cruiser submarine – I-26.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 17, + "id": 308020, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "I-26", + "painting": "I26", + "prefab": "I26", + "rarity_bg": "", + "ship_group": 30802, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 121, + "voice_actor_2": -1 + }, + "308021": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.6, + 0.19, + 0 + ] + ], + "torpedo": [ + [ + 0.65, + 0.03, + 0 + ] + ] + }, + "desc": "Many secrets lie at the bottom of the ocean! Commander, let's go looking for them next time! It'll be like a field trip~ Heheh!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 308021, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Deep-Sea Rabbit", + "painting": "I26_2", + "prefab": "I26_2", + "rarity_bg": "", + "ship_group": 30802, + "ship_l2d_id": "", + "shop_id": 70075, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 121, + "voice_actor_2": -1 + }, + "308022": { + "bg": "114", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.181, + 0.291, + 0 + ] + ], + "torpedo": [ + [ + 0.288, + 0.03, + 0 + ] + ] + }, + "desc": "Commander, are you also waiting for the fireworks to start? There's still some time, so let's have a little chat!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 17, + "id": 308022, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shortly Before the Fireworks", + "painting": "I26_3", + "prefab": "I26_3", + "rarity_bg": "", + "ship_group": 30802, + "ship_l2d_id": "", + "shop_id": 70223, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 121, + "voice_actor_2": -1 + }, + "308030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.7, + 0.21, + 0 + ] + ], + "torpedo": [ + [ + 0.7, + 0.25, + 0 + ] + ] + }, + "desc": "Type-B Mod 2 cruiser submarine – I-58.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 308030, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "I-58", + "painting": "I58", + "prefab": "I58", + "rarity_bg": "", + "ship_group": 30803, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 129, + "voice_actor_2": -1 + }, + "308040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.9, + 0.15, + 0 + ] + ], + "torpedo": [ + [ + 1.209, + 0.03, + 0 + ] + ] + }, + "desc": "Type B1 cruiser submarine – I-25.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 308040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "I-25", + "painting": "I25", + "prefab": "I25", + "rarity_bg": "", + "ship_group": 30804, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.388, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 121, + "voice_actor_2": -1 + }, + "308041": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.02, + 0.44, + 0 + ] + ], + "torpedo": [ + [ + 1.04, + 0.666, + 0 + ] + ] + }, + "desc": "Hi there, Commander. Oh, this outfit? I'll be wearing it to school today. By the way, did you want to come sit in on my class?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 308041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Coral Reef Bunny", + "painting": "I25_2", + "prefab": "I25_2", + "rarity_bg": "", + "ship_group": 30804, + "ship_l2d_id": "", + "shop_id": 70205, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 121, + "voice_actor_2": -1 + }, + "308042": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.266, + 0.999, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.154, + 0 + ] + ] + }, + "desc": "Commander, Happy Lunar New Year. Would you like some sweet wine to celebrate? Oh, be careful not to drink too much~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 308042, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sweet Wine of Celebration", + "painting": "I25_3", + "prefab": "I25_3", + "rarity_bg": "", + "ship_group": 30804, + "ship_l2d_id": "", + "shop_id": 70498, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.403, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 121, + "voice_actor_2": -1 + }, + "308050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.87, + 0.319, + 0 + ] + ], + "torpedo": [ + [ + 1.088, + 0.236, + 0 + ] + ] + }, + "desc": "Type B3 Mod. 2 cruiser submarine – I-56.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 308050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "I-56", + "painting": "I56", + "prefab": "I56", + "rarity_bg": "", + "ship_group": 30805, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.329, + 2.323, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 16, + "voice_actor_2": -1 + }, + "308051": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.108, + 0.082, + 0 + ] + ], + "torpedo": [ + [ + 1.236, + -0.27, + 0 + ] + ] + }, + "desc": "School... is pretty nice. I can quietly stay in this corner and mind my own business...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 308051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Wallflower in the Corner", + "painting": "I56_2", + "prefab": "I56_2", + "rarity_bg": "", + "ship_group": 30805, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 16, + "voice_actor_2": -1 + }, + "308060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.268, + 0.246, + 0 + ] + ], + "torpedo": [ + [ + 1.002, + 0.241, + 0 + ] + ] + }, + "desc": "Kaidai Type VIa submarine – I-168.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 308060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "I-168", + "painting": "I168", + "prefab": "I168", + "rarity_bg": "", + "ship_group": 30806, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.465, + 2.445, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 33, + "voice_actor_2": -1 + }, + "308061": { + "bg": "114", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.098, + 0.383, + 0 + ] + ], + "torpedo": [ + [ + 1.052, + 0.111, + 0 + ] + ] + }, + "desc": "I look different from usual? That's obvious, isn't it... All right, all right, I was just giving you a hard time. We're at a festival, so we might as well enjoy ourselves!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 308061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Festive Mood!", + "painting": "I168_2", + "prefab": "I168_2", + "rarity_bg": "", + "ship_group": 30806, + "ship_l2d_id": "", + "shop_id": 70203, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.532, + 2.13, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 33, + "voice_actor_2": -1 + }, + "312010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.66, + 1.24, + 0 + ] + ], + "cannon": [ + [ + 1.66, + 1.24, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0.12, + 0 + ] + ], + "vicegun": [ + [ + 1.66, + 1.24, + 0 + ] + ] + }, + "desc": "Repair ship {namecode:98}\nCan be built after unlocking", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 312010, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Akashi", + "painting": "mingshi", + "prefab": "mingshi", + "rarity_bg": "", + "ship_group": 31201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.531, + 0.427, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.711, + 0.361, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "312011": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.62, + 0.93, + 0 + ] + ], + "cannon": [ + [ + 0.62, + 0.93, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.17, + 0 + ] + ], + "vicegun": [ + [ + 0.62, + 0.93, + 0 + ] + ] + }, + "desc": "Commander, how does Akashi's new outfit look, nya? Isn't it cute? If you like it, then put a ring on it. I mean, everyone's gone out to play... if you don't help empty my inventory, I'll go broke, nya!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 312011, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Akashi's in the Red, Nya!", + "painting": "Mingshi_2", + "prefab": "Mingshi_2", + "rarity_bg": "", + "ship_group": 31201, + "ship_l2d_id": "", + "shop_id": 70035, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "312012": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.66, + 1.26, + 0 + ] + ], + "cannon": [ + [ + 0.84, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 0.77, + 1.22, + 0 + ] + ] + }, + "desc": "Heheh, this is what I've been saving up for, nya~♪ A special dress that combines Gothic fashion with Sakura charm! Commander, how about those gems, nya?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 312012, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Black Cat Cometh!", + "painting": "mingshi_3", + "prefab": "mingshi_3", + "rarity_bg": "", + "ship_group": 31201, + "ship_l2d_id": "", + "shop_id": 70100, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "312013": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.007, + 1.008, + 0 + ] + ], + "cannon": [ + [ + 1.007, + 1.008, + 0 + ] + ], + "torpedo": [ + [ + 0.037, + 0.059, + 0 + ] + ], + "vicegun": [ + [ + 1.007, + 1.008, + 0 + ] + ] + }, + "desc": "Ohh, it's Commander, nya. Have you come to buy Akashi's new work, nya? Today's a holiday, so go ahead and enjoy yourself, nya~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 14, + "id": 312013, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Welcome to AzurCon!", + "painting": "mingshi_4", + "prefab": "mingshi_4", + "rarity_bg": "", + "ship_group": 31201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "312014": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.074, + 1.26, + 0 + ] + ], + "cannon": [ + [ + 1.036, + 1.416, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.039, + 1.394, + 0 + ] + ] + }, + "desc": "Hehehe, come on in, nya! Can I help you find something, nya? Your genial and knowledgeable staff, Akashi, will gladly provide her detailed recommendations, nya!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 14, + "id": 312014, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Welcome to Sofmap!", + "painting": "mingshi_5", + "prefab": "mingshi_5", + "rarity_bg": "", + "ship_group": 31201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "312018": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.498, + 1.221, + 0 + ] + ], + "cannon": [ + [ + 1.441, + 1.165, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.47, + 1.208, + 0 + ] + ] + }, + "desc": "Commander, because of your continued patronage of my shop, I have no choice but to return the favor with my body, nya~! ...Just kidding, nya. Having that said, I really do love you, Commander. Even more than I love gems, nya~ ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 14, + "id": 312018, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "White Cat's Repayment ", + "painting": "mingshi_h", + "prefab": "mingshi_h", + "rarity_bg": "", + "ship_group": 31201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "317010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.1, + 0.41, + 0 + ] + ], + "torpedo": [ + [ + 0.77, + -0.18, + 0 + ] + ] + }, + "desc": "Type A Mod. 2 cruiser submarine – I-13.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 317010, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "I-13", + "painting": "I13", + "prefab": "I13", + "rarity_bg": "", + "ship_group": 31701, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 186, + "voice_actor_2": -1 + }, + "319010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.323, + 1.274, + 0 + ] + ], + "cannon": [ + [ + 1.323, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.366, + 1.162, + 0 + ] + ] + }, + "desc": "Munition ship – Kashino. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 319010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kashino", + "painting": "jianye", + "prefab": "jianye", + "rarity_bg": "", + "ship_group": 31901, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.367, + 2.434, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 243, + "voice_actor_2": -1 + }, + "319011": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.383, + 1.24, + 0 + ] + ], + "cannon": [ + [ + 1.409, + 1.214, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + -0.018, + 0 + ] + ], + "vicegun": [ + [ + 1.409, + 1.197, + 0 + ] + ] + }, + "desc": "Ack... Owww... My apologies, Commander, I seem to have slipped on something... At times, it's hard to notice things I'm about to step on... Ugh... ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 319011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "home": 0.35, + "login": 1 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 30, + 110, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hot Springs Relaxation", + "painting": "jianye_2", + "prefab": "jianye_2", + "rarity_bg": "", + "ship_group": 31901, + "ship_l2d_id": "", + "shop_id": 70406, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.323, + 2.322, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 243, + "voice_actor_2": -1 + }, + "319012": { + "bg": "160", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.196, + 1.241, + 0 + ] + ], + "cannon": [ + [ + 0.872, + 0.632, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.887, + 0.654, + 0 + ] + ] + }, + "desc": "Hyah?! U-Umm, I can't get out... Oh, Commander?! I'm sorry! I tripped while I was cleaning, and I ended up stuck in here! Umm... What do I do now...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 319012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -20, + 20 + ], + "ParamAngleY": [ + -20, + 20 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Maid for Mayhem", + "painting": "jianye_3", + "prefab": "jianye_3", + "rarity_bg": "", + "ship_group": 31901, + "ship_l2d_id": "", + "shop_id": 70756, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.723, + 1.671, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 243, + "voice_actor_2": -1 + }, + "319013": { + "bg": "172", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.323, + 1.274, + 0 + ] + ], + "cannon": [ + [ + 1.323, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.366, + 1.162, + 0 + ] + ] + }, + "desc": "♪~ Commander, how'd that sound? Hmm... I just started learning last minute, so I guess things aren't coming together after all... But, why do I sound off-pitch even though I'm playing everything exactly the way I was taught...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 319013, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": [ + 0.7, + 0.7, + 0.7 + ], + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -20, + 20 + ], + "ParamAngleY": [ + -20, + 20 + ], + "ParamEyeBallX": [ + -0.7, + 0.7 + ], + "ParamEyeBallY": [ + -0.7, + 0.7 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Robust Floral Strings", + "painting": "jianye_4", + "prefab": "jianye_4", + "rarity_bg": "", + "ship_group": 31901, + "ship_l2d_id": [ + 3190131, + 3190132, + 3190133, + 3190134, + 3190135, + 3190136, + 3190137, + 3190138, + 3190139, + 3190140, + 3190141, + 3190142, + 3190143, + 3190144 + ], + "shop_id": 70899, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.367, + 2.434, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 243, + "voice_actor_2": -1 + }, + "331050": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.304, + 1.224, + 0 + ] + ], + "cannon": [ + [ + 1.364, + 1.163, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.338, + 1.253, + 0 + ] + ] + }, + "desc": "Commander, Happy New Year's. In this coming year, please continue to look after me...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 10, + "gyro": 0, + "hand_id": 14, + "id": 331050, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pulse of the New Year", + "painting": "lingbo_8", + "prefab": "lingbo_8", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 70294, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.63, + 2.53, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "331051": { + "bg": "135", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.304, + 1.139, + 0 + ] + ], + "cannon": [ + [ + 1.279, + 1.071, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.274, + 1.175, + 0 + ] + ] + }, + "desc": "Commander, thank you for coming to the party. Ayanami... has been waiting for you. ...I look a bit scary? I'm not sure I get it... I guess.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 11, + "gyro": 0, + "hand_id": 14, + "id": 331051, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleY": [ + 0, + 0 + ], + "ParamBodyAngleY": [ + 0, + 0 + ], + "ParamEyeBallX": [ + -0.2, + 0.2 + ], + "ParamEyeBallY": [ + -10, + 10 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -70, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nightfall Raiment", + "painting": "lingbo_10", + "prefab": "lingbo_10", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 70420, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.63, + 2.53, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "331052": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.22, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.23, + 1.175, + 0 + ] + ] + }, + "desc": "No, Ryuujou! Samurai builds should stay back during the boss! ...Oh, welcome, Commander. I'm busy with this game right now, so just make yourself at home or something.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 12, + "gyro": 0, + "hand_id": 14, + "id": 331052, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Off-Duty Battle Station Gear", + "painting": "lingbo_11", + "prefab": "lingbo_11", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 4, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.63, + 2.53, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "331053": { + "bg": "152", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.167, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.224, + 1.062, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.079, + 1.033, + 0 + ] + ] + }, + "desc": "Rigging, activate!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 13, + "gyro": 0, + "hand_id": 14, + "id": 331053, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dynasty Shipgirl", + "painting": "lingbo_13", + "prefab": "lingbo_13", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 70663, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.603, + 2.468, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "331054": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.109, + 1.417, + 0 + ] + ], + "cannon": [ + [ + 0.994, + 0.819, + 0 + ] + ], + "torpedo": [ + [ + 0.008, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.997, + 0.824, + 0 + ] + ] + }, + "desc": "Welcome. Ayanami will be taking your order, yes. Will this be dine-in, or to-go? I would personally recommend the cola.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 14, + "gyro": 0, + "hand_id": 14, + "id": 331054, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cola Fills You With Determination", + "painting": "lingbo_14", + "prefab": "lingbo_14", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 70736, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.82, + 1.8, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "331055": { + "bg": "158", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.14, + 1.26, + 0 + ] + ], + "cannon": [ + [ + 0.92, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0.008, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.95, + 1.03, + 0 + ] + ] + }, + "desc": "Ultimate Ability: Dynamic Kick! ...Oh, I used my skill on the wrong target. Sorry, can we try that again?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 15, + "gyro": 0, + "hand_id": 14, + "id": 331055, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dynamic Kick!", + "painting": "lingbo_15", + "prefab": "lingbo_15", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 70761, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "331056": { + "bg": "146", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.14, + 1.26, + 0 + ] + ], + "cannon": [ + [ + 0.92, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0.008, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.95, + 1.03, + 0 + ] + ] + }, + "desc": "*fidget, fidget*... Oh, how's the party? Yes, I get a little angsty when I'm without a weapon... I envy your ability to stay calm no matter what.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 16, + "gyro": 0, + "hand_id": 14, + "id": 331056, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Disarming Deep Blue", + "painting": "lingbo_16", + "prefab": "lingbo_16", + "rarity_bg": "", + "ship_group": 30105, + "ship_l2d_id": "", + "shop_id": 70856, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": "", + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "399010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.45, + 1.35, + 0 + ] + ], + "cannon": [ + [ + -0.32, + 1.31, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.07, + 0 + ] + ] + }, + "desc": "Heavy cruiser – Ibuki.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 399010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ibuki", + "painting": "yichui", + "prefab": "yichui", + "rarity_bg": "", + "ship_group": 39901, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.46, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 107, + "voice_actor_2": -1 + }, + "399011": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.915, + 1.264, + 0 + ] + ], + "cannon": [ + [ + 0.909, + 1.176, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.07, + 0 + ] + ] + }, + "desc": "Milord, it's starting to snow... If it suits you, please take shelter under Ibuki's umbrella.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 399011, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -30, + 30 + ], + "ParamAngleY": [ + -30, + 30 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "expedition": 2.13, + "login": 10.13, + "mail": 1.7, + "main_1": 1.7, + "main_3": 0.17, + "mission": 2.83, + "mission_complete": 1.73, + "propose": 1.97, + "touch": 2.93, + "touch2": 0.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -51, + -154, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Winter Sylph's Reverie", + "painting": "yichui_2", + "prefab": "yichui_2", + "rarity_bg": "", + "ship_group": 39901, + "ship_l2d_id": "", + "shop_id": 70131, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.46, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 107, + "voice_actor_2": -1 + }, + "399012": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.388, + 0.806, + 0 + ] + ], + "cannon": [ + [ + 1.375, + 0.804, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + 0, + 0 + ] + ] + }, + "desc": "This is my first time wearing Western clothes... Um, Milord! Does this outfit... suit Ibuki well...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 399012, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -51, + -154, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Snow on the Wind", + "painting": "yichui_3", + "prefab": "yichui_3", + "rarity_bg": "", + "ship_group": 39901, + "ship_l2d_id": "", + "shop_id": 70238, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 107, + "voice_actor_2": -1 + }, + "399013": { + "bg": "127", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.18, + 1.1, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 1.04, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + 0, + 0 + ] + ] + }, + "desc": "The Dragon Empery's \"Spring Festival\" is... filled with fun, liveliness, and pure jubilation. I can feel my true feelings welling up... Maybe, an environment like this would suit me pretty well...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 2, + "id": 399013, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -51, + -154, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arrival of Spring", + "painting": "yichui_4", + "prefab": "yichui_4", + "rarity_bg": "", + "ship_group": 39901, + "ship_l2d_id": "", + "shop_id": 70305, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.18, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 107, + "voice_actor_2": -1 + }, + "399014": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.221, + 1.135, + 0 + ] + ], + "cannon": [ + [ + 1.248, + 1.004, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + 0, + 0 + ] + ] + }, + "desc": "I'm glad you've returned, Milord. I've changed my attire in order to better carry out your order–for us to \"relax together.\" Now then... could you please instruct me on how to proceed?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 2, + "id": 399014, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tranquil Sunya", + "painting": "yichui_5", + "prefab": "yichui_5", + "rarity_bg": "", + "ship_group": 39901, + "ship_l2d_id": "", + "shop_id": 70522, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 107, + "voice_actor_2": -1 + }, + "399020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.25, + 1.21, + 0 + ] + ], + "cannon": [ + [ + -0.25, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.17, + 0 + ] + ] + }, + "desc": "Battleship – Izumo.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 399020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Izumo", + "painting": "chuyun", + "prefab": "chuyun", + "rarity_bg": "", + "ship_group": 39902, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.58, + 2.19, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 108, + "voice_actor_2": -1 + }, + "399021": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.854, + 1.055, + 0 + ] + ], + "cannon": [ + [ + 1.792, + 1.117, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.07, + 0 + ] + ] + }, + "desc": "You'd like to see my classical dance? Your tastes are quite refined, Commander... In that case, I'll show you the finest performance in the land!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 399021, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Izumo's Thousand Cherry Trees", + "painting": "chuyun_2", + "prefab": "chuyun_2", + "rarity_bg": "", + "ship_group": 39902, + "ship_l2d_id": "", + "shop_id": 70132, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.46, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 108, + "voice_actor_2": -1 + }, + "399030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.081, + 0.724, + 0 + ] + ], + "cannon": [ + [ + 1.118, + 0.774, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + 0.076, + 0 + ] + ] + }, + "desc": "Destroyer – Kitakaze.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 399030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kitakaze", + "painting": "beifeng", + "prefab": "beifeng", + "rarity_bg": "", + "ship_group": 39903, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.389, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 33, + "voice_actor_2": -1 + }, + "399031": { + "bg": "114", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.111, + 1.358, + 0 + ] + ], + "cannon": [ + [ + 1.133, + 1.233, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "All the preparations are now complete... Commander, let us sally forth and conquer these festival grounds! ...But before that, can we get something to eat first?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 6, + "id": 399031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Celebration Conquest!", + "painting": "beifeng_2", + "prefab": "beifeng_2", + "rarity_bg": "", + "ship_group": 39903, + "ship_l2d_id": "", + "shop_id": 70219, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.389, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 33, + "voice_actor_2": -1 + }, + "399033": { + "bg": "159", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.089, + 1.358, + 0 + ] + ], + "cannon": [ + [ + 0.809, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Mm, preparations complete. If I keep it up, the production will surely be a great success. The doves have been on their best behavior too. Commander, what do you think about Kitakaze's magic show?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 6, + "id": 399033, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Night of Doves and Magic", + "painting": "beifeng_4", + "prefab": "beifeng_4", + "rarity_bg": "", + "ship_group": 39903, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 21, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.663, + 2.096, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 33, + "voice_actor_2": -1 + }, + "399040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.29, + 1.36, + 0 + ] + ], + "cannon": [ + [ + 1.31, + 1.28, + 0 + ] + ], + "torpedo": [ + [ + 0.07, + 0.09, + 0 + ] + ] + }, + "desc": "Large cruiser – Azuma.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 399040, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Azuma", + "painting": "wuqi", + "prefab": "wuqi", + "rarity_bg": "", + "ship_group": 39904, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.25, + -0.16 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_wuqi", + [ + 0, + -8, + 0 + ], + [ + 1 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 29, + -699, + 0 + ], + [ + 0.9 + ] + ], + "tag": [], + "time": "", + "voice_actor": 175, + "voice_actor_2": -1 + }, + "399041": { + "bg": "128", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 1.36, + 0 + ] + ], + "cannon": [ + [ + 1.14, + 1.09, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0.03, + 0 + ] + ] + }, + "desc": "Commander? Oh, I haven't quite finished changing. My hair still needs work... Sorry, would you mind waiting a bit longer?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 399041, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Soft Voice of Spring", + "painting": "wuqi_2", + "prefab": "wuqi_2", + "rarity_bg": "", + "ship_group": 39904, + "ship_l2d_id": "", + "shop_id": 70300, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.25, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 175, + "voice_actor_2": -1 + }, + "399048": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.333, + 1.011, + 0 + ] + ], + "cannon": [ + [ + 1.298, + 0.982, + 0 + ] + ], + "torpedo": [ + [ + -0.015, + -0.02, + 0 + ] + ] + }, + "desc": "I must be dreaming, to be able to don this white veil... Haha, though, what's more important is our life together afterwards! Commander, please look forward to the rich fruit of my bridal training~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 2, + "id": 399048, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lily-White Longing", + "painting": "wuqi_h", + "prefab": "wuqi_h", + "rarity_bg": "", + "ship_group": 39904, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.341, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 175, + "voice_actor_2": -1 + }, + "399050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.035, + 1.012, + 0 + ] + ], + "plane": [ + [ + 2.021, + 1.013, + 0 + ] + ] + }, + "desc": "Aircraft carrier – Hakuryuu.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 399050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hakuryuu", + "painting": "bailong", + "prefab": "bailong", + "rarity_bg": "", + "ship_group": 39905, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.441, + 2.515, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_bailong", + [ + 0, + -51, + 0 + ], + [ + 1 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 20, + -627, + 0 + ], + [ + 0.61 + ] + ], + "tag": [], + "time": "", + "voice_actor": 109, + "voice_actor_2": -1 + }, + "399051": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.84, + 1.43, + 0 + ] + ], + "plane": [ + [ + 1.68, + 1.24, + 0 + ] + ] + }, + "desc": "All righty, one freshly-sliced plate of sashimi coming right up! ...Huh? I'm coming across too aggressive? Even after I went through all this trouble for you, you still have something to nitpick about? ...Well, whatever. Enjoy your meal!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 399051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Slice, Dice, and Serve", + "painting": "bailong_2", + "prefab": "bailong_2", + "rarity_bg": "", + "ship_group": 39905, + "ship_l2d_id": "", + "shop_id": 70634, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.41, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 109, + "voice_actor_2": -1 + }, + "399052": { + "bg": "172", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.035, + 1.012, + 0 + ] + ], + "plane": [ + [ + 2.021, + 1.013, + 0 + ] + ] + }, + "desc": "Katana... at the ready. Hmph, you again? Never expected you to know anything about music, the way you've been out there conquering the waves with us this whole time. Come then, let me test how good your tastes are with this song!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 2, + "id": 399052, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 68, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Flash of Silk and Strings", + "painting": "bailong_3", + "prefab": "bailong_3", + "rarity_bg": "", + "ship_group": 39905, + "ship_l2d_id": [ + 3990521, + 3990522, + 3990523, + 3990524, + 3990525, + 3990526, + 3990527 + ], + "shop_id": 70900, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.441, + 2.515, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 109, + "voice_actor_2": -1 + }, + "399060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Light cruiser - Shimanto.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 399060, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shimanto", + "painting": "siwanshi", + "prefab": "siwanshi", + "rarity_bg": "", + "ship_group": 39906, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 373, + "voice_actor_2": -1 + }, + "399061": { + "bg": "172", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.1, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.05, + 0.76, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "You couldn't have picked a better time to come. Allow me to treat you to a cup of the Dragon God's benevolence– Uhh, I'll go boil some water right now, so sit tight. After you finish the tea, shall we kick back and relax awhile?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 399061, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Comfy Dragon God", + "painting": "siwanshi_2", + "prefab": "siwanshi_2", + "rarity_bg": "", + "ship_group": 39906, + "ship_l2d_id": "", + "shop_id": 70957, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 373, + "voice_actor_2": -1 + }, + "401010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.787, + 0.431, + 0 + ], + [ + 0.802, + 0.802, + 0 + ] + ], + "cannon": [ + [ + 0.787, + 0.431, + 0 + ] + ], + "torpedo": [ + [ + -0.439, + 0.673, + 0 + ] + ] + }, + "desc": "Type 1934-class destroyer, Z1 Leberecht Maass.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401010, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Leberecht Maass (Z1)", + "painting": "z1", + "prefab": "z1", + "rarity_bg": "", + "ship_group": 40101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.484, + 0.465, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.476, + 0.527, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 17, + "voice_actor_2": -1 + }, + "401011": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.22, + 1.11, + 0 + ] + ], + "cannon": [ + [ + 1.22, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.1, + 0 + ] + ] + }, + "desc": "Because she’s the Z1, her results will of course be NO.1! Hehe, no matter where she goes, Z1-sama will always be the best!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 401011, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "\"Rebellious\" Top Student", + "painting": "Z1_2", + "prefab": "Z1_2", + "rarity_bg": "", + "ship_group": 40101, + "ship_l2d_id": "", + "shop_id": 70056, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.5, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 17, + "voice_actor_2": -1 + }, + "401019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.61, + 0.87, + 0 + ] + ], + "cannon": [ + [ + 0.68, + 0.96, + 0 + ] + ], + "torpedo": [ + [ + 0.011, + 0, + 0 + ] + ] + }, + "desc": "Hmm... So this is a retrofit, huh? Not bad! Rejoice once more, Commander, for no task or enemy is too daunting for the new and improved Z1!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 401019, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z1 (Retrofit)", + "painting": "Z1_g", + "prefab": "Z1_g", + "rarity_bg": "", + "ship_group": 40101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 17, + "voice_actor_2": -1 + }, + "401020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.14, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 1.47, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.1, + 0 + ] + ] + }, + "desc": "Type 1934-class destroyer – Z2 Georg Thiele. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z2", + "painting": "z2", + "prefab": "z2", + "rarity_bg": "", + "ship_group": 40102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 172, + "voice_actor_2": -1 + }, + "401021": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.04, + 1.039, + 0 + ] + ], + "cannon": [ + [ + 1.039, + 1.037, + 0 + ] + ], + "torpedo": [ + [ + 0.005, + 0.008, + 0 + ] + ] + }, + "desc": "Commander, I do wonder if your order to \"come dressed in new clothes\" was simply your way of saying \"I want to see you in a casual outfit.\" No matter the case, I'm happy to oblige.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 401021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "High-Rise, High-Style", + "painting": "z2_2", + "prefab": "z2_2", + "rarity_bg": "", + "ship_group": 40102, + "ship_l2d_id": "", + "shop_id": 70444, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.579, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 172, + "voice_actor_2": -1 + }, + "401022": { + "bg": "114", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.071, + 1.039, + 0 + ] + ], + "cannon": [ + [ + 1.061, + 1.028, + 0 + ] + ], + "torpedo": [ + [ + 0.005, + 0.008, + 0 + ] + ] + }, + "desc": "Being able to see you all flabbergasted makes changing into this outfit worth it. Are you going to keep standing there like a scarecrow? Come over here~ Who knows, we might even be able to see the fireworks from this spot.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 401022, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Of Koi and Evening Hues", + "painting": "z2_3", + "prefab": "z2_3", + "rarity_bg": "", + "ship_group": 40102, + "ship_l2d_id": "", + "shop_id": 70579, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.356, + 2.649, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 172, + "voice_actor_2": -1 + }, + "401160": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.193, + 1.276, + 0 + ] + ], + "cannon": [ + [ + 1.052, + 0.797, + 0 + ] + ], + "torpedo": [ + [ + 0.008, + 0.008, + 0 + ] + ] + }, + "desc": "Type 1934A destroyer – Z16, Friedrich Eckoldt.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401160, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z16", + "painting": "z16", + "prefab": "z16", + "rarity_bg": "", + "ship_group": 40116, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.751, + 1.838, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 343, + "voice_actor_2": -1 + }, + "401161": { + "bg": "112", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.166, + 1.249, + 0 + ] + ], + "cannon": [ + [ + 0.999, + 0.815, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.035, + 0 + ] + ] + }, + "desc": "Heh heh! Count your lucky stars, Commander, because you're just in time – to witness the one-and-only Z16 knock this thing right outta the ballpark!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 401161, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Guaranteed Grand Slam!", + "painting": "z16_2", + "prefab": "z16_2", + "rarity_bg": "", + "ship_group": 40116, + "ship_l2d_id": "", + "shop_id": 70729, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.867, + 1.745, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 343, + "voice_actor_2": -1 + }, + "401180": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.23, + 0.65, + 0 + ] + ], + "cannon": [ + [ + 1.5, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.09, + 0 + ] + ] + }, + "desc": "Type 1936 destroyer – Z18, Hans Lüdemann.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401180, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z18", + "painting": "z18", + "prefab": "z18", + "rarity_bg": "", + "ship_group": 40118, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.31, + -0.03 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 18, + "voice_actor_2": -1 + }, + "401190": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.38, + 0.5, + 0 + ] + ], + "cannon": [ + [ + -0.38, + 0.5, + 0 + ] + ], + "torpedo": [ + [ + 0.43, + 0.26, + 0 + ] + ] + }, + "desc": "Type 1936-class destroyer, Z19 Hermann Künne.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401190, + "illustrator": 28, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hermann Künne (Z19)", + "painting": "z19", + "prefab": "z19", + "rarity_bg": "", + "ship_group": 40119, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.67, + 0.36, + -0.06 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.72, + 0.31, + -0.03 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 59, + "voice_actor_2": -1 + }, + "401200": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.23, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.23, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0.29, + 0.15, + 0 + ] + ], + "vicegun": [ + [ + 1.23, + 1, + 0 + ] + ] + }, + "desc": "Type 1936-class destroyer, Z20 Karl Galster.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401200, + "illustrator": 28, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Karl Galster (Z20)", + "painting": "z20", + "prefab": "z20", + "rarity_bg": "", + "ship_group": 40120, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.37, + 0.44, + -0.16 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + -0.46, + 1.64, + -0.86 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 59, + "voice_actor_2": -1 + }, + "401210": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.45, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 0.45, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.12, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.45, + 0 + ] + ] + }, + "desc": "Type 1936-class destroyer, Z21 Wilheim Heidkamp.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401210, + "illustrator": 28, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Wilhelm Heidkamp (Z21)", + "painting": "z21", + "prefab": "z21", + "rarity_bg": "", + "ship_group": 40121, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.17, + 0.42, + -0.17 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + -0.37, + 1.73, + -0.93 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 59, + "voice_actor_2": -1 + }, + "401230": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.16, + 0.59, + 0 + ] + ], + "cannon": [ + [ + -0.16, + 0.59, + 0 + ] + ], + "torpedo": [ + [ + 0.33, + 0.35, + 0 + ] + ], + "vicegun": [ + [ + -0.16, + 0.59, + 0 + ] + ] + }, + "desc": "Type 1936A destroyer, Z23.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401230, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z23", + "painting": "z23", + "prefab": "z23", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.531, + 0.89, + -0.27 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.53, + 2.92, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "401231": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.005, + 0.804, + 0 + ] + ], + "cannon": [ + [ + 1.005, + 0.804, + 0 + ] + ], + "torpedo": [ + [ + 0.247, + 0.073, + 0 + ] + ], + "vicegun": [ + [ + 1.005, + 0.804, + 0 + ] + ] + }, + "desc": "This is going to be on the exam! If you don't take thorough notes, I am going to punish you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 401231, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Philosophy Sensei", + "painting": "z23_2", + "prefab": "z23_2", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.531, + 0.89, + -0.27 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.53, + 2.92, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "401232": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.841, + 0.859, + 0 + ] + ], + "cannon": [ + [ + 0.896, + 0.804, + 0 + ] + ], + "torpedo": [ + [ + -0.006, + 0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.005, + 0.804, + 0 + ] + ] + }, + "desc": "Haiyaaah! It's up to you, Ayanami! Oh, Commander! Are you actually keeping score? We might not be having a serious match, but that's no excuse for you to stand around and do nothing.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 401232, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Breezy Doubles", + "painting": "z23_7", + "prefab": "z23_7", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 70368, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.53, + 2.231, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "401233": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.005, + 0.804, + 0 + ] + ], + "cannon": [ + [ + 0.92, + 0.87, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.005, + 0.804, + 0 + ] + ] + }, + "desc": "Welcome! A table for one today? Um... Commander, my smile doesn’t look stiff... right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 401233, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Perfect Smile?", + "painting": "z23_4", + "prefab": "z23_4", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 70178, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.74, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "401234": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.005, + 0.804, + 0 + ] + ], + "cannon": [ + [ + 0.982, + 0.878, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.005, + 0.804, + 0 + ] + ] + }, + "desc": "Oh, good evening, Commander. I was just looking for Javelin and the others... Say, would you like to keep me company for a bit?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 401234, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Banquet's Honor Student", + "painting": "z23_3", + "prefab": "z23_3", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 70187, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.473, + 2.485, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "401235": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.189, + 1.146, + 0 + ] + ], + "cannon": [ + [ + 1.14, + 1.176, + 0 + ] + ], + "torpedo": [ + [ + -0.008, + 0.016, + 0 + ] + ], + "vicegun": [ + [ + 1.163, + 1.133, + 0 + ] + ] + }, + "desc": "Hi, welcome! How may I serve y– It's you, Commander?! Err, well, I'm working as a trainee at this Sakura Empire-style café, you see... What do you think of this outfit?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 13, + "id": 401235, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Café Trainee @New Base", + "painting": "z23_8", + "prefab": "z23_8", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 4, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.473, + 2.485, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "401236": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.955, + 0.921, + 0 + ] + ], + "cannon": [ + [ + 0.982, + 0.878, + 0 + ] + ], + "torpedo": [ + [ + -0.012, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 0.955, + 0.804, + 0 + ] + ] + }, + "desc": "Jeez... Javelin's got what it takes, but I'm really concerned about Laffey and Ayanami. Oh well, I guess it's up to me to manage them... Commander, please don't forget to support me too.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 13, + "id": 401236, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Serious Idol @Acting Manager?!", + "painting": "z23_5", + "prefab": "z23_5", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 70265, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.473, + 2.485, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "401237": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.07, + 1.01, + 0 + ] + ], + "cannon": [ + [ + 1.07, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.11, + 1.02, + 0 + ] + ] + }, + "desc": "Commander, please help hold onto the ladder. I've almost got the book... Just a little more... All right... C-Commander?! Please don't look up!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 7, + "gyro": 0, + "hand_id": 13, + "id": 401237, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Eyecatch in the Rye?", + "painting": "z23_6", + "prefab": "z23_6", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.473, + 2.15, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "401238": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.335, + 1.146, + 0 + ] + ], + "cannon": [ + [ + 1.435, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.411, + 1.106, + 0 + ] + ] + }, + "desc": "Whew... Sorry to keep you waiting. I was having a hard time deciding which outfit to wear... Ah, um... how do I look? ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 401238, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Schwarze Hochzeit", + "painting": "z23_h", + "prefab": "z23_h", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.473, + 2.372, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "401239": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.55, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 1.96, + 0.83, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 1.93, + 0.83, + 0 + ] + ] + }, + "desc": "My efficiency should be upgraded along with my performance. Paperwork, battle plans... I can handle them all! Commander, be prepared, we’ll be very busy~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 401239, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z23 (Retrofit)", + "painting": "z23_g", + "prefab": "z23_g", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.37, + 2.6, + -0.27 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "401240": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.488, + 1.012, + 0 + ] + ], + "cannon": [ + [ + 1.467, + 0.978, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + -0.016, + 0 + ] + ], + "vicegun": [ + [ + 1.461, + 1.003, + 0 + ] + ] + }, + "desc": "Type 1936A \"Narvik class\" destroyer – Z24. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401240, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z24", + "painting": "Z24", + "prefab": "Z24", + "rarity_bg": "", + "ship_group": 40124, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.417, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 227, + "voice_actor_2": -1 + }, + "401241": { + "bg": "143", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.102, + 1.096, + 0 + ] + ], + "cannon": [ + [ + 1.123, + 1.067, + 0 + ] + ], + "torpedo": [ + [ + 0.004, + 0.014, + 0 + ] + ], + "vicegun": [ + [ + 1.122, + 1.097, + 0 + ] + ] + }, + "desc": "Come, human! The rite of festivities is upon us! Come hither, and let us revel in this foreign holiday together!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 401241, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Festival-going Fiend", + "painting": "Z24_2", + "prefab": "Z24_2", + "rarity_bg": "", + "ship_group": 40124, + "ship_l2d_id": "", + "shop_id": 70472, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.504, + 2.673, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 227, + "voice_actor_2": -1 + }, + "401242": { + "bg": "112", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.026, + 1.211, + 0 + ] + ], + "cannon": [ + [ + 0.863, + 0.838, + 0 + ] + ], + "torpedo": [ + [ + 0.004, + 0.014, + 0 + ] + ], + "vicegun": [ + [ + 0.847, + 0.868, + 0 + ] + ] + }, + "desc": "Heh heh... As expected, you couldn't even last for a second! Winning too easily takes all the fun out of it... You, the mortal over there, I'll give you the honor of being my next opponent!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 401242, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Devil on the Court", + "painting": "z24_3", + "prefab": "z24_3", + "rarity_bg": "", + "ship_group": 40124, + "ship_l2d_id": "", + "shop_id": 70731, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.764, + 2.001, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 227, + "voice_actor_2": -1 + }, + "401243": { + "bg": "174", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.026, + 1.211, + 0 + ] + ], + "cannon": [ + [ + 0.863, + 0.838, + 0 + ] + ], + "torpedo": [ + [ + 0.004, + 0.014, + 0 + ] + ], + "vicegun": [ + [ + 0.847, + 0.868, + 0 + ] + ] + }, + "desc": "\"Sing your praises to the Fiend of Crimson Darkness, Z24!\" ... Hmm, maybe I should go with \"Bow down in astonishment!\"... Ah, yes! Mortal, you've come at a most opportune time! Hurry and tell me what you think of my new catchphrase! ...Actually, get me down from here first!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 401243, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blood-Red Dance Beneath the Moon", + "painting": "z24_4", + "prefab": "z24_4", + "rarity_bg": "", + "ship_group": 40124, + "ship_l2d_id": "", + "shop_id": 70926, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.764, + 2.304, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 227, + "voice_actor_2": -1 + }, + "401250": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.17, + 0.91, + 0 + ] + ], + "cannon": [ + [ + -0.13, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.1, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + -0.12, + 0.91, + 0 + ] + ] + }, + "desc": "1936A \"Narvik\" Class Destroyer - Z25", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401250, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z25", + "painting": "Z25", + "prefab": "Z25", + "rarity_bg": "", + "ship_group": 40125, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.14, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "401251": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.31, + 0.87, + 0 + ] + ], + "cannon": [ + [ + -0.22, + 0.87, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + -0.25, + 0.83, + 0 + ] + ] + }, + "desc": "Even at the beach, we cannot afford to be careless! Commander, have you adequately prepared for today's activities?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 401251, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hot Summer's Cool Breeze", + "painting": "Z25_2", + "prefab": "Z25_2", + "rarity_bg": "", + "ship_group": 40125, + "ship_l2d_id": "", + "shop_id": 70081, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.28, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "401260": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.331, + 1.168, + 0 + ] + ], + "cannon": [ + [ + 1.402, + 1.267, + 0 + ] + ], + "torpedo": [ + [ + -0.007, + -0.008, + 0 + ] + ], + "vicegun": [ + [ + 1.31, + 1.274, + 0 + ] + ] + }, + "desc": "Type 1936A \"Narvik class\" destroyer – Z26. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401260, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z26", + "painting": "Z26", + "prefab": "Z26", + "rarity_bg": "", + "ship_group": 40126, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.14, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 247, + "voice_actor_2": -1 + }, + "401261": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.672, + 1.342, + 0 + ] + ], + "cannon": [ + [ + 1.644, + 1.267, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.674, + 1.274, + 0 + ] + ] + }, + "desc": "Commander, welcome to my pad! Ah, give me a sec, let me go grab all the snacks and drinks and games! ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 401261, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sharing is Caring ", + "painting": "Z26_2", + "prefab": "Z26_2", + "rarity_bg": "", + "ship_group": 40126, + "ship_l2d_id": "", + "shop_id": 70405, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.14, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 247, + "voice_actor_2": -1 + }, + "401280": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.366, + 1.072, + 0 + ] + ], + "cannon": [ + [ + 1.35, + 1.064, + 0 + ] + ], + "torpedo": [ + [ + 0.005, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.366, + 1.055, + 0 + ] + ] + }, + "desc": "Type 1936A \"Narvik class\" destroyer – Z28. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401280, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z28", + "painting": "Z28", + "prefab": "Z28", + "rarity_bg": "", + "ship_group": 40128, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.528, + 2.495, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 257, + "voice_actor_2": -1 + }, + "401281": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.384, + 1.012, + 0 + ] + ], + "cannon": [ + [ + 1.401, + 1.029, + 0 + ] + ], + "torpedo": [ + [ + 0.005, + -0.008, + 0 + ] + ], + "vicegun": [ + [ + 1.384, + 1.029, + 0 + ] + ] + }, + "desc": "Commander, Happy New Year! Is there anything you'd like to do on New Year's Day? Say, why don't we try doing all of that stuff, all at once~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 401281, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year Smorgasbord!", + "painting": "Z28_3", + "prefab": "Z28_3", + "rarity_bg": "", + "ship_group": 40128, + "ship_l2d_id": "", + "shop_id": 70476, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.433, + 2.512, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 257, + "voice_actor_2": -1 + }, + "401282": { + "bg": "155", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.199, + 1.335, + 0 + ] + ], + "cannon": [ + [ + 0.835, + 0.833, + 0 + ] + ], + "torpedo": [ + [ + 0.012, + -0.029, + 0 + ] + ], + "vicegun": [ + [ + 0.836, + 0.827, + 0 + ] + ] + }, + "desc": "Prosit, Commander! I think these wild animals were attracted by the champagne's aroma. But they're well-behaved and like being petted. Do you want to be petted too, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 401282, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sylvan Celebration", + "painting": "z28_4", + "prefab": "z28_4", + "rarity_bg": "", + "ship_group": 40128, + "ship_l2d_id": "", + "shop_id": 70753, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.725, + 1.842, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 257, + "voice_actor_2": -1 + }, + "401350": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.17, + 0.88, + 0 + ] + ], + "cannon": [ + [ + -0.18, + 0.9, + 0 + ] + ], + "torpedo": [ + [ + 0.08, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + -0.19, + 0.88, + 0 + ] + ] + }, + "desc": "1936B-class destroyer - Z35", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401350, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z35", + "painting": "Z35", + "prefab": "Z35", + "rarity_bg": "", + "ship_group": 40135, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.24, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 123, + "voice_actor_2": -1 + }, + "401351": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.17, + 0.88, + 0 + ] + ], + "cannon": [ + [ + -0.18, + 0.9, + 0 + ] + ], + "torpedo": [ + [ + 0.08, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + -0.19, + 0.88, + 0 + ] + ] + }, + "desc": "Commander, and all my fellow friends of the fleet, Happy New Year's! This time, your favorite idol Z35 will be presenting a brand new Sakura-themed collaboration, \"Projekt Kirschblüte!\" Everyone, thank you for your continued support!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 401351, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Projekt Kirschblüte", + "painting": "z35_2", + "prefab": "z35_2", + "rarity_bg": "", + "ship_group": 40135, + "ship_l2d_id": "", + "shop_id": 70292, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.24, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 123, + "voice_actor_2": -1 + }, + "401352": { + "bg": "145", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.4, + 0.8, + 0 + ] + ], + "cannon": [ + [ + 1.619, + 0.733, + 0 + ] + ], + "torpedo": [ + [ + 0.042, + 0.034, + 0 + ] + ], + "vicegun": [ + [ + 1.714, + 0.666, + 0 + ] + ] + }, + "desc": "\"Welcome, my beloved Master♡ Heehee, I've been waiting here for you for sooo long!\" Heheh, did you get good pics this time? My beloved Master♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 401352, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Liebender Engel", + "painting": "z35_3", + "prefab": "z35_3", + "rarity_bg": "", + "ship_group": 40135, + "ship_l2d_id": "", + "shop_id": 70942, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.058, + 2.326, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 123, + "voice_actor_2": -1 + }, + "401360": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.35, + 0.6, + 0 + ] + ], + "cannon": [ + [ + 0.2, + 0.55, + 0 + ] + ], + "torpedo": [ + [ + 0.023, + 0.028, + 0 + ] + ], + "vicegun": [ + [ + 0.22, + 0.5, + 0 + ] + ] + }, + "desc": "Type 1936B destroyer - Z36", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401360, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z36", + "painting": "Z36", + "prefab": "Z36", + "rarity_bg": "", + "ship_group": 40136, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.24, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 185, + "voice_actor_2": -1 + }, + "401460": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.82, + 0.4, + 0 + ] + ], + "cannon": [ + [ + 0.82, + 0.4, + 0 + ] + ], + "torpedo": [ + [ + 0.22, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + 0.82, + 0.4, + 0 + ] + ] + }, + "desc": "Type 1936C destroyer, Z46", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401460, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z46", + "painting": "Z46", + "prefab": "Z46", + "rarity_bg": "", + "ship_group": 40146, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.43, + 0.37, + -0.14 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + -0.19, + 1.94, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 60, + "voice_actor_2": -1 + }, + "401461": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.82, + 0.4, + 0 + ] + ], + "cannon": [ + [ + 0.7, + 0.41, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.77, + 0.4, + 0 + ] + ] + }, + "desc": "The bustling beach, clamoring with waves of joyfulness... experiencing this kind of summer is a first for me, but I don't dislike it...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 401461, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 45, + -21.24, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Her First Summer", + "painting": "Z46_2", + "prefab": "Z46_2", + "rarity_bg": "", + "ship_group": 40146, + "ship_l2d_id": "", + "shop_id": 70076, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.14, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 60, + "voice_actor_2": -1 + }, + "401462": { + "bg": "112", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.321, + 1.206, + 0 + ] + ], + "cannon": [ + [ + 1.309, + 1.209, + 0 + ] + ], + "torpedo": [ + [ + -0.013, + 0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.284, + 1.32, + 0 + ] + ] + }, + "desc": "Through the sweat and tears, striving for your goals. Rejoice in victory, sink within defeat... How fascinating, this \"sports meet\" may be.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 401462, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 0.67 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Girls' Relay", + "painting": "Z46_3", + "prefab": "Z46_3", + "rarity_bg": "", + "ship_group": 40146, + "ship_l2d_id": "", + "shop_id": 70328, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.14, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 60, + "voice_actor_2": -1 + }, + "401463": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.596, + 1.399, + 0 + ] + ], + "cannon": [ + [ + 1.633, + 1.34, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.225, + 0 + ] + ], + "vicegun": [ + [ + 1.596, + 1.389, + 0 + ] + ] + }, + "desc": "Dancing beams of light, shimmering on-stage; uplifted voices, joined as one by song... Upon this unknown stage, my heart doth flutter... Yet this sensation, is quite refreshing.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 401463, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -65, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Star-Lit★Chocolate", + "painting": "Z46_4", + "prefab": "Z46_4", + "rarity_bg": "", + "ship_group": 40146, + "ship_l2d_id": "", + "shop_id": 70436, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.523, + 2.645, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 60, + "voice_actor_2": -1 + }, + "401464": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.422, + 1.004, + 0 + ] + ], + "cannon": [ + [ + 1.393, + 1.009, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.41, + 1, + 0 + ] + ] + }, + "desc": "\"Jianzhi,\" the art of breathing life into works of cut paper... is a world beyond my imagination. If these decorations are said to usher in blessings... are they akin to a coat-of-arms or a holy seal?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 401464, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -65, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jianzhi Fantasia", + "painting": "Z46_5", + "prefab": "Z46_5", + "rarity_bg": "", + "ship_group": 40146, + "ship_l2d_id": "", + "shop_id": 70483, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.432, + 2.471, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 60, + "voice_actor_2": -1 + }, + "401465": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.33, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.45, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.34, + 1.07, + 0 + ] + ] + }, + "desc": "Cast your eyes upon this bit of dust. As I was entrusted with the cleaning, I shall not allow this dust to remain. Will you also join me in this battle?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 13, + "id": 401465, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chronicles of the Dust Wars", + "painting": "z46_6", + "prefab": "z46_6", + "rarity_bg": "", + "ship_group": 40146, + "ship_l2d_id": "", + "shop_id": 70637, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.53, + 2.38, + -1.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 60, + "voice_actor_2": -1 + }, + "401990": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.82, + 0.4, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 0.53, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.11, + 0.53, + 0 + ] + ] + }, + "desc": "Type 1937J-class destroyer – Otto von Alvensleben.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 401990, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Otto von Alvensleben", + "painting": "aotuo", + "prefab": "aotuo", + "rarity_bg": "", + "ship_group": 40199, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.33, + -0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 364, + "voice_actor_2": -1 + }, + "401991": { + "bg": "158", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.82, + 0.4, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 0.53, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.11, + 0.53, + 0 + ] + ] + }, + "desc": "Hmph! You really think this brainless trap can keep me entangled forever? I don't need your help! I can break free by myself! ...Umm, what the hell? Why can't I do it?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 401991, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hunter Becomes Hunted", + "painting": "aotuo_2", + "prefab": "aotuo_2", + "rarity_bg": "", + "ship_group": 40199, + "ship_l2d_id": "", + "shop_id": 70846, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.33, + -0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 364, + "voice_actor_2": -1 + }, + "402010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.425, + 0.786, + 0 + ] + ], + "cannon": [ + [ + -0.425, + 0.786, + 0 + ] + ], + "torpedo": [ + [ + 0.369, + 0.232, + 0 + ] + ], + "vicegun": [ + [ + -0.425, + 0.786, + 0 + ] + ] + }, + "desc": "Königsberg class light cruiser, Königsberg.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 402010, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Königsberg", + "painting": "kenisibao", + "prefab": "kenisibao", + "rarity_bg": "", + "ship_group": 40201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.531, + 0.427, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.24, + 2.74, + -0.46 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 78, + "voice_actor_2": -1 + }, + "402020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.35, + 0.73, + 0 + ] + ], + "cannon": [ + [ + -0.36, + 0.73, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.17, + 0 + ] + ], + "vicegun": [ + [ + -0.36, + 0.73, + 0 + ] + ] + }, + "desc": "Königsberg class light cruiser, Karlsruhe.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 402020, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Karlsruhe", + "painting": "kaersilue", + "prefab": "kaersilue", + "rarity_bg": "", + "ship_group": 40202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.82, + 0.86, + -0.31 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.6, + 2.59, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 78, + "voice_actor_2": -1 + }, + "402029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 0.97, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.1, + 0.19, + 0 + ] + ], + "vicegun": [ + [ + 1.16, + 0.97, + 0 + ] + ] + }, + "desc": "Königsberg-class light cruiser – Karlsruhe.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 402029, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Karlsruhe (Retrofit)", + "painting": "kaersilue_g", + "prefab": "kaersilue_g", + "rarity_bg": "", + "ship_group": 40202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.52, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 78, + "voice_actor_2": -1 + }, + "402030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.44, + 0.94, + 0 + ] + ], + "cannon": [ + [ + 0.92, + 0.75, + 0 + ] + ], + "torpedo": [ + [ + 0.23, + 0.23, + 0 + ] + ], + "vicegun": [ + [ + 0.92, + 0.75, + 0 + ] + ] + }, + "desc": "Königsberg-class light cruiser, Köln.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 402030, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Köln", + "painting": "kelong", + "prefab": "kelong", + "rarity_bg": "", + "ship_group": 40203, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.57, + 0.81, + -0.568 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.64, + 2.606, + -0.472 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 78, + "voice_actor_2": -1 + }, + "402039": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.25, + 0.4, + 0 + ] + ], + "cannon": [ + [ + 1.24, + 0.389, + 0 + ] + ], + "torpedo": [ + [ + 0.008, + 0.041, + 0 + ] + ], + "vicegun": [ + [ + 1.216, + 0.372, + 0 + ] + ] + }, + "desc": "Hmm... I feel like I can work even more efficiently than before. Commander, please rest assured, I will never betray your expectations.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 402039, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Köln (Retrofit)", + "painting": "kelong_g", + "prefab": "kelong_g", + "rarity_bg": "", + "ship_group": 40203, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.401, + -0.472 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 78, + "voice_actor_2": -1 + }, + "402040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.19, + 1.2, + 0 + ] + ], + "cannon": [ + [ + 1.19, + 1.2, + 0 + ] + ], + "torpedo": [ + [ + -0.13, + 0.37, + 0 + ] + ], + "vicegun": [ + [ + 1.19, + 1.2, + 0 + ] + ] + }, + "desc": "Leipzig-class light cruiser, Leipzig.\nCan be built after unlocking", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 402040, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Leipzig", + "painting": "laibixi", + "prefab": "laibixi", + "rarity_bg": "", + "ship_group": 40204, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.57, + 0.81, + -0.568 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.64, + 2.606, + -0.472 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 78, + "voice_actor_2": -1 + }, + "402041": { + "bg": "150", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.13, + 1.05, + 0 + ] + ], + "cannon": [ + [ + 1.2, + 0.95, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.18, + 1.01, + 0 + ] + ] + }, + "desc": "Commander, ah, um... We have all new items on the menu, and they're on sale for a limited time only... P-please give them a try! Phew... Th-thank goodness, I managed to not flub it...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 402041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Storefront Training", + "painting": "laibixi_2", + "prefab": "laibixi_2", + "rarity_bg": "", + "ship_group": 40204, + "ship_l2d_id": "", + "shop_id": 70635, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.29, + -0.472 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 78, + "voice_actor_2": -1 + }, + "402049": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.19, + 1.17, + 0 + ] + ], + "cannon": [ + [ + 1.19, + 1.15, + 0 + ] + ], + "torpedo": [ + [ + 0.239, + -0.109, + 0 + ] + ], + "vicegun": [ + [ + 1.19, + 1.15, + 0 + ] + ] + }, + "desc": "I feel like Fishy is a lot more capable than before, but I don't feel much different... M-maybe Fishy was the one to get a retrofit instead of me?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 402049, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Leipzig (Retrofit)", + "painting": "laibixi_g", + "prefab": "laibixi_g", + "rarity_bg": "", + "ship_group": 40204, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.462, + -0.472 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 78, + "voice_actor_2": -1 + }, + "402050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.262, + 1.014, + 0 + ] + ], + "cannon": [ + [ + 1.226, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.232, + 0.996, + 0 + ] + ] + }, + "desc": "Leipzig-class light cruiser – Nürnberg. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 402050, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nürnberg", + "painting": "niulunbao", + "prefab": "niulunbao", + "rarity_bg": "", + "ship_group": 40205, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.444, + 2.549, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 258, + "voice_actor_2": -1 + }, + "402051": { + "bg": "126", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.082, + 1.002, + 0 + ] + ], + "cannon": [ + [ + 1.064, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.058, + 1.008, + 0 + ] + ] + }, + "desc": "Since you so readily accepted my invitation to go on a vacation together, you must be planning to... Ahh, what I meant is, we can leave at any time if you're ready...!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 402051, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Spring Wanderer", + "painting": "niulunbao_2", + "prefab": "niulunbao_2", + "rarity_bg": "", + "ship_group": 40205, + "ship_l2d_id": "", + "shop_id": 70470, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.438, + 2.465, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 258, + "voice_actor_2": -1 + }, + "402060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 1.12, + 0 + ] + ], + "cannon": [ + [ + 1.17, + 0.88, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.11, + 1.01, + 0 + ] + ] + }, + "desc": "M-class light cruiser – Magdeburg", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 402060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Magdeburg", + "painting": "magedebao", + "prefab": "magedebao", + "rarity_bg": "", + "ship_group": 40206, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.47, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 298, + "voice_actor_2": -1 + }, + "402061": { + "bg": "150", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 1.12, + 0 + ] + ], + "cannon": [ + [ + 1.17, + 0.88, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.11, + 1.01, + 0 + ] + ] + }, + "desc": "You little...! Look what a damn mess you made! And I'm the one who's gotta clean it up now! ...Oh. Perfect timing, Commander. Could use a hand with the floor here, after what this little turd did.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 402061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cat Café Cleanup", + "painting": "magedebao_3", + "prefab": "magedebao_3", + "rarity_bg": "", + "ship_group": 40206, + "ship_l2d_id": "", + "shop_id": 70630, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.444, + 2.33, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 298, + "voice_actor_2": -1 + }, + "402062": { + "bg": "133", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.938, + 1.219, + 0 + ] + ], + "cannon": [ + [ + 1.201, + 0.697, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.209, + 0.697, + 0 + ] + ] + }, + "desc": "Here's an idea – how 'bout putting down the camera and actually enjoyin' the open sea? I'll move the swim ring so you can chill in the breeze with me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 402062, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gone Fishing", + "painting": "magedebao_2", + "prefab": "magedebao_2", + "rarity_bg": "", + "ship_group": 40206, + "ship_l2d_id": "", + "shop_id": 70725, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.811, + 1.948, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 298, + "voice_actor_2": -1 + }, + "402070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.049, + 1.09, + 0 + ] + ], + "cannon": [ + [ + 1.081, + 0.932, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.073, + 0.943, + 0 + ] + ] + }, + "desc": "Dresden-class light cruiser – Emden.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 402070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Emden", + "painting": "aimudeng", + "prefab": "aimudeng", + "rarity_bg": "", + "ship_group": 40207, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.468, + 2.357, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 310, + "voice_actor_2": -1 + }, + "402071": { + "bg": "156", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 1.185, + 0.985, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.065, + 1.01, + 0 + ] + ] + }, + "desc": "Raise your head, my darling human. O lost soul, you have three options – become Emden's meal, become Emden's prisoner... \"Or become Emden's vassal. Our vassal♥\"", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 402071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "White-Black Partita", + "painting": "aimudeng_2", + "prefab": "aimudeng_2", + "rarity_bg": "", + "ship_group": 40207, + "ship_l2d_id": "", + "shop_id": 70683, + "shop_type_id": 18, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.445, + 2.41, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 310, + "voice_actor_2": -1 + }, + "402072": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1, + 1, + 0 + ] + ], + "cannon": [ + [ + 1, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1, + 1, + 0 + ] + ] + }, + "desc": "Welcome, my darling human. Are you looking for something? If it is Emden you seek, you have already found her. \"We, Emden, are before your very eyes.\"", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 402072, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Moonsilver Union", + "painting": "aimudeng_3", + "prefab": "aimudeng_3", + "rarity_bg": "", + "ship_group": 40207, + "ship_l2d_id": "", + "shop_id": 70737, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 310, + "voice_actor_2": -1 + }, + "402080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.979, + 1.481, + 0 + ] + ], + "cannon": [ + [ + 1.493, + 1.046, + 0 + ] + ], + "torpedo": [ + [ + 0.203, + 0.263, + 0 + ] + ], + "vicegun": [ + [ + 1.087, + 1.386, + 0 + ] + ] + }, + "desc": "Pillau-class light cruiser – Elbing.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 402080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Elbing", + "painting": "aierbin", + "prefab": "aierbin", + "rarity_bg": "", + "ship_group": 40208, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -1.009, + 2.493, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 312, + "voice_actor_2": -1 + }, + "402081": { + "bg": "156", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.303, + 1.932, + 0 + ] + ], + "cannon": [ + [ + 1.576, + 1.234, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.366, + 1.191, + 0 + ] + ] + }, + "desc": "As the mistress of this manor, I c-command thee to kneel... No, of course. I mean, what authority do I have to issue commands? I'm better suited to be a maid than a mistress...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 402081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Throne of Misfortune", + "painting": "aierbin_2", + "prefab": "aierbin_2", + "rarity_bg": "", + "ship_group": 40208, + "ship_l2d_id": "", + "shop_id": 70686, + "shop_type_id": 18, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.468, + 2.387, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 312, + "voice_actor_2": -1 + }, + "402082": { + "bg": "", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.303, + 2.223, + 0 + ] + ], + "cannon": [ + [ + 1.79, + 1.389, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.424, + 1.191, + 0 + ] + ] + }, + "desc": "Are you also having trouble sleeping, Commander? I-I thought so... It must be because I was praying for you to have sweet dreams... Look what I've done – now, neither of us can fall asleep... Urgh...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 402082, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sleepless Night's Wishes", + "painting": "aierbin_3", + "prefab": "aierbin_3", + "rarity_bg": "", + "ship_group": 40208, + "ship_l2d_id": "", + "shop_id": 70773, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.468, + 2.999, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 312, + "voice_actor_2": -1 + }, + "402083": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.44, + 2.17, + 0 + ] + ], + "cannon": [ + [ + 2.51, + 0.65, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.55, + 0.68, + 0 + ] + ] + }, + "desc": "G-good day, Commander. I'm ready to be your model... Ugh, there's probably going to be an accident if I wish that you'll take cute photos... Better clear my head just to be sure.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 402083, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beauty Beneath the Spring Limelight", + "painting": "aierbin_4", + "prefab": "aierbin_4", + "rarity_bg": "", + "ship_group": 40208, + "ship_l2d_id": "", + "shop_id": 70962, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.25, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 312, + "voice_actor_2": -1 + }, + "402100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.46, + 3.24, + 0 + ] + ], + "cannon": [ + [ + 1.47, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.45, + 1.01, + 0 + ] + ] + }, + "desc": "M-class light cruiser – Regensburg.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 402100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Regensburg", + "painting": "leigensibao", + "prefab": "leigensibao", + "rarity_bg": "", + "ship_group": 40210, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.16, + 3.08, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 362, + "voice_actor_2": -1 + }, + "402101": { + "bg": "168", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.46, + 3.24, + 0 + ] + ], + "cannon": [ + [ + 1.47, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.45, + 1.01, + 0 + ] + ] + }, + "desc": "Wanted to feast your eyes on this, didn't you? Haha, there's no point trying to deny it. All your petty desires are clear as day to me, so why not just be honest about it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 402101, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -20, + 20 + ], + "ParamBodyAngleX": [ + -8, + 8 + ], + "ParamBodyAngleY": [ + -5, + 5 + ], + "ParamEyeBallX": [ + -0.6, + 0.3 + ], + "ParamEyeBallY": [ + -0.5, + 0.5 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -75, + -30, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dark Dragon, Brilliant Beach", + "painting": "leigensibao_2", + "prefab": "leigensibao_2", + "rarity_bg": "", + "ship_group": 40210, + "ship_l2d_id": [ + 4021011, + 4021012 + ], + "shop_id": 70844, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.16, + 3.08, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 362, + "voice_actor_2": -1 + }, + "403010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.27, + 0.57, + 0 + ] + ], + "cannon": [ + [ + 0.27, + 0.57, + 0 + ] + ], + "torpedo": [ + [ + 0.49, + 0.05, + 0 + ] + ], + "vicegun": [ + [ + 0.27, + 0.57, + 0 + ] + ] + }, + "desc": "Admiral Hipper-class Heavy Cruiser, Admiral Hipper", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 403010, + "illustrator": 29, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Admiral Hipper", + "painting": "xipeierhaijunshangjiang", + "prefab": "xipeierhaijunshangjiang", + "rarity_bg": "", + "ship_group": 40301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.26, + 0.686, + -0.081 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + -0.259, + 2.6, + -1.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 61, + "voice_actor_2": -1 + }, + "403012": { + "bg": "114", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.158, + 1.27, + 0 + ] + ], + "cannon": [ + [ + 1.203, + 1.067, + 0 + ] + ], + "torpedo": [ + [ + 0.106, + 0.035, + 0 + ] + ], + "vicegun": [ + [ + 1, + 0.961, + 0 + ] + ] + }, + "desc": "W-well? Does this kimono look good on me? ...R-really? Duh, I know it looks GREAT on me! Who really cares what you think... C-can't be me... No, I didn't say anything!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 403012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sunshine by the Hot Spring", + "painting": "xipeierhaijunshangjiang_3", + "prefab": "xipeierhaijunshangjiang_3", + "rarity_bg": "", + "ship_group": 40301, + "ship_l2d_id": "", + "shop_id": 70693, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.445, + 2.335, + -0.568 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 61, + "voice_actor_2": -1 + }, + "403020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.317, + 1.357, + 0 + ] + ], + "cannon": [ + [ + 1.752, + 1.166, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.012, + 0 + ] + ], + "vicegun": [ + [ + 1.744, + 1.166, + 0 + ] + ] + }, + "desc": "Admiral Hipper-class heavy cruiser – Blücher.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 403020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blücher", + "painting": "bulvxieer", + "prefab": "bulvxieer", + "rarity_bg": "", + "ship_group": 40302, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.817, + 1.885, + -0.081 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 132, + "voice_actor_2": -1 + }, + "403021": { + "bg": "132", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.225, + 1.349, + 0 + ] + ], + "cannon": [ + [ + 1.385, + 1.166, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.37, + 1.166, + 0 + ] + ] + }, + "desc": "Heheheh☆ You're lagging behind, Commander! Pick up the pace or you'll be left behind! Just kidding~ I'll slow down for you so we can stick together!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 403021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "High-Altitude Head Over Heels", + "painting": "bulvxieer_2", + "prefab": "bulvxieer_2", + "rarity_bg": "", + "ship_group": 40302, + "ship_l2d_id": "", + "shop_id": 70728, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.718, + 0.969, + -0.081 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 132, + "voice_actor_2": -1 + }, + "403030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.235, + 0.484, + 0 + ], + [ + 0.847, + 0.34, + 0 + ] + ], + "cannon": [ + [ + -0.53, + 0.802, + 0 + ] + ], + "torpedo": [ + [ + 0.227, + 0.408, + 0 + ] + ], + "vicegun": [ + [ + -0.235, + 0.484, + 0 + ], + [ + 0.847, + 0.34, + 0 + ] + ] + }, + "desc": "Admiral Hipper-class Heavy Cruiser, Prinz Eugen", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 403030, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prinz Eugen", + "painting": "ougen", + "prefab": "ougen", + "rarity_bg": "", + "ship_group": 40303, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.531, + 0.427, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.711, + 0.361, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 21, + "voice_actor_2": -1 + }, + "403031": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.42, + 0.73, + 0 + ] + ], + "cannon": [ + [ + 1.42, + 0.73, + 0 + ] + ], + "torpedo": [ + [ + 1.42, + 0.73, + 0 + ] + ], + "vicegun": [ + [ + 0.3, + 0.09, + 0 + ] + ] + }, + "desc": "Relaxing on a float, gently licking my lips... is this really the most popular photo pose for the beach? Wales, you’re not teasing me again, are you?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 403031, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Unfading Smile", + "painting": "ougen_2", + "prefab": "ougen_2", + "rarity_bg": "", + "ship_group": 40303, + "ship_l2d_id": "", + "shop_id": 70015, + "shop_type_id": 6, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.531, + 0.427, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.711, + 0.361, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 21, + "voice_actor_2": -1 + }, + "403032": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.46, + 0.81, + 0 + ] + ], + "cannon": [ + [ + 1.46, + 0.81, + 0 + ] + ], + "torpedo": [ + [ + 0.117, + 0.094, + 0 + ] + ], + "vicegun": [ + [ + 1.46, + 0.81, + 0 + ] + ] + }, + "desc": "So this is the Sakura Empire's New Year? Hehe, how interesting~ Commander, since it's the New Year, why don't you put aside all those papers and have a drink with me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 403032, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Profusion of Flowers", + "painting": "ougen_3", + "prefab": "ougen_3", + "rarity_bg": "", + "ship_group": 40303, + "ship_l2d_id": "", + "shop_id": 70036, + "shop_type_id": 2, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.32, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 21, + "voice_actor_2": -1 + }, + "403033": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.344, + 1.131, + 0 + ] + ], + "cannon": [ + [ + 1.358, + 1.22, + 0 + ] + ], + "torpedo": [ + [ + 0.008, + 0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.358, + 1.22, + 0 + ] + ] + }, + "desc": "... Huh? Commander, is that you? Me, drunk? No way... *hic*... If I was, Commander, then what are you planning to do to me? Hehe...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 403033, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cordial Cornflower", + "painting": "ougen_4", + "prefab": "ougen_4", + "rarity_bg": "", + "ship_group": 40303, + "ship_l2d_id": "", + "shop_id": 70236, + "shop_type_id": 7, + "show_skin": "stand2", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.32, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 21, + "voice_actor_2": -1 + }, + "403034": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.344, + 1.4, + 0 + ] + ], + "cannon": [ + [ + 1.47, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.42, + 1.27, + 0 + ] + ] + }, + "desc": "Viel Glück~ Are you having a good time, Commander? Just know that the only person I'm cheering for... is you~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 403034, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 70, + 160, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Final Lap", + "painting": "ougen_5", + "prefab": "ougen_5", + "rarity_bg": "", + "ship_group": 40303, + "ship_l2d_id": "", + "shop_id": 70614, + "shop_type_id": 14, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.72, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 21, + "voice_actor_2": -1 + }, + "403035": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.344, + 1.4, + 0 + ] + ], + "cannon": [ + [ + 1.47, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.42, + 1.27, + 0 + ] + ] + }, + "desc": "Guten Abend~ So, what do you think? Pretty great view, right? Hehe, I was talking about the night scenery outside, you know~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 1, + "id": 403035, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamEyeBallX": [ + -0.7, + 0.7 + ], + "ParamEyeBallY": [ + -0.7, + 0.7 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -35, + 80, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kindred Evening Spirits", + "painting": "ougen_6", + "prefab": "ougen_6", + "rarity_bg": "", + "ship_group": 40303, + "ship_l2d_id": [ + 206 + ], + "shop_id": 70700, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.53, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 21, + "voice_actor_2": -1 + }, + "403038": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.46, + 0.81, + 0 + ] + ], + "cannon": [ + [ + 1.46, + 0.81, + 0 + ] + ], + "torpedo": [ + [ + 0.117, + 0.094, + 0 + ] + ], + "vicegun": [ + [ + 1.46, + 0.81, + 0 + ] + ] + }, + "desc": "If fate brought us together, then it has my thanks… I look forward to our future together~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 403038, + "illustrator": 30, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Symphonic Fate", + "painting": "ougen_h", + "prefab": "ougen_h", + "rarity_bg": "", + "ship_group": 40303, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.32, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 21, + "voice_actor_2": -1 + }, + "403040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.97, + 1.03, + 0 + ] + ], + "cannon": [ + [ + 1.97, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0.07, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 1.97, + 1.03, + 0 + ] + ] + }, + "desc": "Deutschland-class armored cruiser, Deutschland.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 403040, + "illustrator": 31, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Deutschland", + "painting": "deyizhi", + "prefab": "deyizhi", + "rarity_bg": "", + "ship_group": 40304, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.77, + 0.6, + -0.76 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + -0.08, + 2.63, + -1.93 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "403041": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.77, + 1.22, + 0 + ] + ], + "cannon": [ + [ + 1.77, + 1.22, + 0 + ] + ], + "torpedo": [ + [ + 0.24, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.77, + 1.22, + 0 + ] + ] + }, + "desc": "For a servant, your eyes are good... *coughs*... I'm an Ironblood Princess, the Queen of Night, Deutschland! Servant? No. I am the first of my family. Come, kiss the ring of royalty!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 403041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dark Demon Princess", + "painting": "deyizhi_2", + "prefab": "deyizhi_2", + "rarity_bg": "", + "ship_group": 40304, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "403042": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.58, + 1.05, + 0 + ] + ], + "cannon": [ + [ + 1.52, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0.24, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.58, + 0.92, + 0 + ] + ] + }, + "desc": "One must not neglect sunscreen during the summer... Plebeian, if you wish to serve your master, prostrate yourself and yell \"I beg of you, Queen Deutschland\" three times, and I might consider giving you an opportunity. Ahahaha~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 403042, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "main_2": 5.3, + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 37, + -37, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Service Time?!", + "painting": "deyizhi_3", + "prefab": "deyizhi_3", + "rarity_bg": "", + "ship_group": 40304, + "ship_l2d_id": "", + "shop_id": 70080, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.19, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "403043": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.58, + 0.982, + 0 + ] + ], + "cannon": [ + [ + 1.636, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.58, + 0.92, + 0 + ] + ] + }, + "desc": "I seem pleased? Of course I am. Why wouldn't I be when my sweet little sister will be joining us at the party? Now shape up and entertain your master, you lowly animal! Ahahahaha!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 403043, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 37, + -37, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Demon Princess' Dark Hour Banquet", + "painting": "deyizhi_4", + "prefab": "deyizhi_4", + "rarity_bg": "", + "ship_group": 40304, + "ship_l2d_id": "", + "shop_id": 70239, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.19, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "403044": { + "bg": "128", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.91, + 0.982, + 0 + ] + ], + "cannon": [ + [ + 1.85, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.85, + 0.92, + 0 + ] + ] + }, + "desc": "Why are so many people out and about during a holiday? ...That's it! Lowly animal, was it your idea to prepare all this to surprise me...?! Heh... Hehe, that's right, don't you dare disappoint me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 403044, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 37, + -37, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lantern-Lit Ruler", + "painting": "deyizhi_5", + "prefab": "deyizhi_5", + "rarity_bg": "", + "ship_group": 40304, + "ship_l2d_id": "", + "shop_id": 70307, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.59, + 2.19, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "403050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.06, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 2.06, + 1.18, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + 2.06, + 1.18, + 0 + ] + ] + }, + "desc": "Deutschland-class armored cruiser number three – Admiral Graf Spee.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 403050, + "illustrator": 31, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Admiral Graf Spee", + "painting": "sipeibojue", + "prefab": "sipeibojue", + "rarity_bg": "", + "ship_group": 40305, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 99, + "voice_actor_2": -1 + }, + "403051": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.06, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 2.06, + 1.18, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + 2.06, + 1.18, + 0 + ] + ] + }, + "desc": "I sailed alone, fought alone, and then I was sunk while being alone. Now I found a new beginning... Hmm? Commander, you've been staring and laughing at me since the beginning… do you want to eat this?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 403051, + "illustrator": 31, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Girl's Sunday", + "painting": "Sipeibojue_2", + "prefab": "Sipeibojue_2", + "rarity_bg": "", + "ship_group": 40305, + "ship_l2d_id": "", + "shop_id": 70059, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 99, + "voice_actor_2": -1 + }, + "403052": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 1.51, + 0 + ] + ], + "cannon": [ + [ + 1.24, + 1.65, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 1.58, + 0 + ] + ] + }, + "desc": "I never dreamt that I'd be able to don this outfit and live a normal, peaceful life... Thank you, Commander...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 403052, + "illustrator": 31, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Peaceful Daily Life", + "painting": "sipeibojue_3", + "prefab": "sipeibojue_3", + "rarity_bg": "", + "ship_group": 40305, + "ship_l2d_id": "", + "shop_id": 70125, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 99, + "voice_actor_2": -1 + }, + "403053": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.918, + 1.026, + 0 + ] + ], + "cannon": [ + [ + 1.064, + 1.181, + 0 + ] + ], + "torpedo": [ + [ + 0.045, + 0.024, + 0 + ] + ], + "vicegun": [ + [ + 0.902, + 1.029, + 0 + ] + ] + }, + "desc": "It's so fancy, so formal... Is this a \"party\"? I'm not sure I'll be able to fit in... But if you'll go with me, Commander, I'll give it a try!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 403053, + "illustrator": 31, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Novel Anniversary", + "painting": "sipeibojue_4", + "prefab": "sipeibojue_4", + "rarity_bg": "", + "ship_group": 40305, + "ship_l2d_id": "", + "shop_id": 70191, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 99, + "voice_actor_2": -1 + }, + "403054": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.253, + 0.926, + 0 + ] + ], + "cannon": [ + [ + 1.306, + 0.914, + 0 + ] + ], + "torpedo": [ + [ + 0.045, + 0.007, + 0 + ] + ], + "vicegun": [ + [ + 1.27, + 0.92, + 0 + ] + ] + }, + "desc": "My sister just wouldn't stop bugging me, so I finally caved and agreed to do this... Anyways, all I have to do is get up on stage and sing, right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 403054, + "illustrator": 31, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 3, + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + -100, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "World's♥Cutest", + "painting": "sipeibojue_5", + "prefab": "sipeibojue_5", + "rarity_bg": "", + "ship_group": 40305, + "ship_l2d_id": "", + "shop_id": 70260, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 99, + "voice_actor_2": -1 + }, + "403070": { + "bg": "121", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.358, + 1.265, + 0 + ] + ], + "cannon": [ + [ + 1.442, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.391, + 1.273, + 0 + ] + ] + }, + "desc": "Huh? Why are you staring at me like I'm some weirdo? I'll have you know, it's not like I wanted to do this or anything!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 403070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Admiral Hipper μ", + "painting": "xipeier_idol", + "prefab": "xipeier_idol", + "rarity_bg": "", + "ship_group": 40307, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.377, + 2.284, + -0.081 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 61, + "voice_actor_2": -1 + }, + "403080": { + "bg": "139", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.993, + 1.232, + 0 + ] + ], + "cannon": [ + [ + 1.992, + 1.14, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.008, + 1.193, + 0 + ] + ] + }, + "desc": "Heavy cruiser Roon, reporting for idol activities and associated experimental equipment testing. Today, we fight not with fire and sword, but with the power of song.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 403080, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Roon μ", + "painting": "luoen_idol", + "prefab": "luoen_idol", + "rarity_bg": "", + "ship_group": 40308, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.384, + 2.482, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 109, + "voice_actor_2": -1 + }, + "403090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.578, + 0.982, + 0 + ] + ], + "cannon": [ + [ + 1.537, + 0.996, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.586, + 1.003, + 0 + ] + ] + }, + "desc": "P-class armored ship – Prinz Heinrich. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 403090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 37, + -37, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prinz Heinrich", + "painting": "haiyinlixi", + "prefab": "haiyinlixi", + "rarity_bg": "", + "ship_group": 40309, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.507, + 2.567, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 255, + "voice_actor_2": -1 + }, + "403091": { + "bg": "126", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.004, + 0.997, + 0 + ] + ], + "cannon": [ + [ + 0.997, + 0.988, + 0 + ] + ], + "torpedo": [ + [ + -0.024, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 0.997, + 1.003, + 0 + ] + ] + }, + "desc": "Phew... Changing into these clothes took quite a long time~ So, how does it look? A fine mixing of different cultures, wouldn't you agree? Ahaha, Happy New Year, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 403091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 37, + -37, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fireworks and Tapestries", + "painting": "haiyinlixi_3", + "prefab": "haiyinlixi_3", + "rarity_bg": "", + "ship_group": 40309, + "ship_l2d_id": "", + "shop_id": 70468, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.59, + 2.643, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 255, + "voice_actor_2": -1 + }, + "403092": { + "bg": "164", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.38, + 1.41, + 0 + ] + ], + "cannon": [ + [ + 1.52, + 1.1, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.52, + 1.003, + 0 + ] + ] + }, + "desc": "*ptwee*! Remember: safety first! Commander, you've got to do your stretches before going in the pool! Be thorough, or I'll get mad at you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 403092, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -25, + 25 + ], + "ParamAngleY": [ + -25, + 25 + ], + "ParamEyeBallX": [ + -0.5, + 0.5 + ], + "ParamEyeBallY": [ + -0.5, + 0.5 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 50, + -195, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rabbit on Watch", + "painting": "haiyinlixi_2", + "prefab": "haiyinlixi_2", + "rarity_bg": "", + "ship_group": 40309, + "ship_l2d_id": "", + "shop_id": 70784, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.507, + 2.567, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 255, + "voice_actor_2": -1 + }, + "403093": { + "bg": "147", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.38, + 1.41, + 0 + ] + ], + "cannon": [ + [ + 1.52, + 1.1, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.52, + 1.003, + 0 + ] + ] + }, + "desc": "Listen up, Commander! I'm the one in charge of this school's seedy underbelly here at this port, so you'd better do what I tell you to! In return, I'll offer you my protection! Ahaha~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 403093, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Secret Boss o' the Underworld?", + "painting": "haiyinlixi_5", + "prefab": "haiyinlixi_5", + "rarity_bg": "", + "ship_group": 40309, + "ship_l2d_id": "", + "shop_id": 70830, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.507, + 2.567, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 255, + "voice_actor_2": -1 + }, + "403094": { + "bg": "159", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.38, + 1.41, + 0 + ] + ], + "cannon": [ + [ + 1.52, + 1.1, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.52, + 1.003, + 0 + ] + ] + }, + "desc": "Alrighty, I'm gonna sing a song for you now! Surprised by how jazzy and womanly I can be, are you? Ahahah!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 403094, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Heinrich on Stage", + "painting": "haiyinlixi_4", + "prefab": "haiyinlixi_4", + "rarity_bg": "", + "ship_group": 40309, + "ship_l2d_id": "", + "shop_id": 70857, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.507, + 2.567, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": "", + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 255, + "voice_actor_2": -1 + }, + "403100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.53, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 1.43, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.39, + 0.96, + 0 + ] + ] + }, + "desc": "P-class armored ship – Prinz Adalbert", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 403100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prinz Adalbert", + "painting": "adaerbote", + "prefab": "adaerbote", + "rarity_bg": "", + "ship_group": 40310, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 297, + "voice_actor_2": -1 + }, + "403101": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.53, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 1.43, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.39, + 0.96, + 0 + ] + ] + }, + "desc": "Zzz... Huh? Did I doze off? I just meant to rest my eyes for a sec after closing up, but look how long I slept... Hang on, why are you still here, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 403101, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 60, + -50, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "After-Hours Service", + "painting": "adaerbote_2", + "prefab": "adaerbote_2", + "rarity_bg": "", + "ship_group": 40310, + "ship_l2d_id": "", + "shop_id": 70629, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 297, + "voice_actor_2": -1 + }, + "403110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.387, + 1.624, + 0 + ] + ], + "cannon": [ + [ + 1.738, + 1.319, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.39, + 1.426, + 0 + ] + ] + }, + "desc": "Roon-class armored cruiser – Yorck.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 403110, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yorck", + "painting": "yueke_ger", + "prefab": "yueke_ger", + "rarity_bg": "", + "ship_group": 40311, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.408, + 2.337, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 313, + "voice_actor_2": -1 + }, + "403111": { + "bg": "156", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.38, + 1.677, + 0 + ] + ], + "cannon": [ + [ + 1.708, + 1.424, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.435, + 1.299, + 0 + ] + ] + }, + "desc": "\"Foolish, pitiable creature. Kneel before your Goddess!\" Heehee! Hahahah, ahahahaha♥ You're the Commander, silly. You don't need to play along unless you want to.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 403111, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Breaker under the Blood Moon", + "painting": "yueke_ger_2", + "prefab": "yueke_ger_2", + "rarity_bg": "", + "ship_group": 40311, + "ship_l2d_id": "", + "shop_id": 70687, + "shop_type_id": 18, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.415, + 2.269, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 313, + "voice_actor_2": -1 + }, + "403120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.387, + 1.609, + 0 + ] + ], + "cannon": [ + [ + 1.821, + 1.446, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.51, + 1.193, + 0 + ] + ] + }, + "desc": "Admiral Hipper-class heavy cruiser – Prinz Eugen.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 403120, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Prinz Eugen", + "painting": "ougen_younv", + "prefab": "ougen_younv", + "rarity_bg": "", + "ship_group": 40312, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.528, + 2.096, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 21, + "voice_actor_2": -1 + }, + "403130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.31, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1, + 0.69, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 0.95, + 0.66, + 0 + ] + ] + }, + "desc": "Deutschland-class armored cruiser – Admiral Graf Spee.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 403130, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Spee", + "painting": "sipeibojue_younv", + "prefab": "sipeibojue_younv", + "rarity_bg": "", + "ship_group": 40313, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.22, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 99, + "voice_actor_2": -1 + }, + "404010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.58, + 1.4, + 0 + ] + ], + "cannon": [ + [ + 1.58, + 1.4, + 0 + ] + ], + "torpedo": [ + [ + 0.09, + 0.16, + 0 + ] + ], + "vicegun": [ + [ + 1.58, + 1.4, + 0 + ] + ] + }, + "desc": "Scharnhorst-class battlecruiser, Scharnhorst.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 404010, + "illustrator": 32, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Scharnhorst", + "painting": "shaenhuosite", + "prefab": "shaenhuosite", + "rarity_bg": "", + "ship_group": 40401, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.08, + 1.14, + -0.35 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.21, + 2.74, + -1.27 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 38, + "voice_actor_2": -1 + }, + "404011": { + "bg": "127", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.02, + 1.17, + 0 + ] + ], + "cannon": [ + [ + 1.14, + 1.14, + 0 + ] + ], + "torpedo": [ + [ + -0.01, + 0.03, + 0 + ] + ], + "vicegun": [ + [ + 1.08, + 1.16, + 0 + ] + ] + }, + "desc": "A festival, huh? Going for days without fighting is boring, not to mention not my style. C'mon, Commander, isn't there *something* exciting I can do during this \"Lunar New Year\" festival?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 404011, + "illustrator": 32, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Panther und Pflaume", + "painting": "shaenhuosite_2", + "prefab": "shaenhuosite_2", + "rarity_bg": "", + "ship_group": 40401, + "ship_l2d_id": "", + "shop_id": 70312, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.71, + 1.9, + -0.35 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 38, + "voice_actor_2": -1 + }, + "404020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.42, + 0.88, + 0 + ] + ], + "cannon": [ + [ + 1.42, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.42, + 0.88, + 0 + ] + ] + }, + "desc": "Scharnhorst-class battlecruiser, Gneisenau.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 404020, + "illustrator": 32, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gneisenau", + "painting": "genaisennao", + "prefab": "genaisennao", + "rarity_bg": "", + "ship_group": 40402, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.88, + 1.26, + -0.73 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.18, + 2.65, + -1.54 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 26, + "voice_actor_2": -1 + }, + "404021": { + "bg": "119", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.617, + 1.369, + 0 + ] + ], + "cannon": [ + [ + 1.591, + 1.331, + 0 + ] + ], + "torpedo": [ + [ + 0.007, + 0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.597, + 1.336, + 0 + ] + ] + }, + "desc": "These Halloween festivities are quite interesting, in a good way. Getting dressed up in these costumes isn't such a bad experience either. Commander, what do you think of my costume?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 404021, + "illustrator": 32, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -30, + 30 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 5, + -50, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nightmarish Succubus", + "painting": "genaisennao_2", + "prefab": "genaisennao_2", + "rarity_bg": "", + "ship_group": 40402, + "ship_l2d_id": "", + "shop_id": 70253, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.474, + 2.44, + -0.73 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 26, + "voice_actor_2": -1 + }, + "404030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.006, + 1.211, + 0 + ] + ], + "cannon": [ + [ + 1.593, + 1.345, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.149, + 1.03, + 0 + ] + ] + }, + "desc": "Battlecruiser – Seydlitz.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 404030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Seydlitz", + "painting": "saidelici", + "prefab": "saidelici", + "rarity_bg": "", + "ship_group": 40403, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.534, + 2.245, + -0.73 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 144, + "voice_actor_2": -1 + }, + "404031": { + "bg": "156", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.037, + 1.166, + 0 + ] + ], + "cannon": [ + [ + 1.533, + 1.436, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.097, + 1.053, + 0 + ] + ] + }, + "desc": "There it is – Dracula's Castle, brought into this world by chaos itself... On my honor, I swear I will put an end to the divine bloodline!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 404031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Heir of the Vampire Killer", + "painting": "saidelici_4", + "prefab": "saidelici_4", + "rarity_bg": "", + "ship_group": 40403, + "ship_l2d_id": "", + "shop_id": 70685, + "shop_type_id": 18, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.511, + 2.261, + -0.73 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 144, + "voice_actor_2": -1 + }, + "404032": { + "bg": "161", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.037, + 1.166, + 0 + ] + ], + "cannon": [ + [ + 1.488, + 0.785, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.008, + 0 + ] + ], + "vicegun": [ + [ + 1.207, + 0.767, + 0 + ] + ] + }, + "desc": "How do I look, Commandant? I thought you may like seeing me in a dress, however I don't know if this is what you desired or not...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 404032, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Floral Liberation", + "painting": "saidelici_6", + "prefab": "saidelici_6", + "rarity_bg": "", + "ship_group": 40403, + "ship_l2d_id": "", + "shop_id": 70748, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.837, + 1.846, + -0.73 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 144, + "voice_actor_2": -1 + }, + "404040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.33, + 1.527, + 0 + ] + ], + "cannon": [ + [ + 1.57, + 1.458, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.443, + 1.361, + 0 + ] + ] + }, + "desc": "Derfflinger-class battlecruiser – Lützow.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 404040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lützow", + "painting": "lvzuofu", + "prefab": "lvzuofu", + "rarity_bg": "", + "ship_group": 40404, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.594, + 2.291, + -0.73 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 311, + "voice_actor_2": -1 + }, + "404041": { + "bg": "156", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.345, + 1.452, + 0 + ] + ], + "cannon": [ + [ + 1.503, + 1.608, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.488, + 1.354, + 0 + ] + ] + }, + "desc": "\"Have you come to accept your fate, human? Heehee~\" ...Don't just stand there, Commander. Say something!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 404041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 1, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamAngleY": [ + -15, + 15 + ], + "ParamEyeBallX": [ + -0.3, + 0.3 + ], + "ParamEyeBallY": [ + -0.3, + 0.3 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 42, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Everlasting Blood Banquet", + "painting": "lvzuofu_2", + "prefab": "lvzuofu_2", + "rarity_bg": "", + "ship_group": 40404, + "ship_l2d_id": "", + "shop_id": 70684, + "shop_type_id": 18, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.647, + 2.358, + -0.73 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 311, + "voice_actor_2": -1 + }, + "404042": { + "bg": "165", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.345, + 1.452, + 0 + ] + ], + "cannon": [ + [ + 1.503, + 1.608, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.488, + 1.354, + 0 + ] + ] + }, + "desc": "Om, nom... Hmm. Hey! This is pretty good! I mean, of course it's good – it's Empery cuisine! Commander, open wide and I'll give you a dumpling alley oop. Say \"aah\"!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 404042, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Steaming-Hot Treat", + "painting": "lvzuofu_3", + "prefab": "lvzuofu_3", + "rarity_bg": "", + "ship_group": 40404, + "ship_l2d_id": "", + "shop_id": 70812, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.647, + 2.358, + -0.73 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 311, + "voice_actor_2": -1 + }, + "404048": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.338, + 1.856, + 0 + ] + ], + "cannon": [ + [ + 1.578, + 1.601, + 0 + ] + ], + "torpedo": [ + [ + 0.073, + 0.015, + 0 + ] + ], + "vicegun": [ + [ + 1.58, + 1.61, + 0 + ] + ] + }, + "desc": "*yawn*, finally, I get to lie down. Tell you what, I'm gonna have a nap... Hm? The ceremony's still not over? Hrmh... Look, it's not important. You should just come lie next to me, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 404048, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sleeping White Beauty", + "painting": "lvzuofu_h", + "prefab": "lvzuofu_h", + "rarity_bg": "", + "ship_group": 40404, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.834, + 2.358, + -0.73 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 311, + "voice_actor_2": -1 + }, + "404050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.299, + 1.741, + 0 + ] + ], + "cannon": [ + [ + 0.944, + 0.855, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.007, + 0 + ] + ], + "vicegun": [ + [ + 0.901, + 0.857, + 0 + ] + ] + }, + "desc": "O-class battlecruiser – Brünhilde.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 404050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Brünhilde", + "painting": "bulunxierde", + "prefab": "bulunxierde", + "rarity_bg": "", + "ship_group": 40405, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -1.076, + 1.153, + -0.73 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 337, + "voice_actor_2": -1 + }, + "404051": { + "bg": "112", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.238, + 1.566, + 0 + ] + ], + "cannon": [ + [ + 0.845, + 0.87, + 0 + ] + ], + "torpedo": [ + [ + 0.009, + -0.023, + 0 + ] + ], + "vicegun": [ + [ + 0.802, + 0.902, + 0 + ] + ] + }, + "desc": "Hah! This donut now belongs to Brünhilde! Alright, now for the finish line... C-Commander? Sorry, but there's no time for chit-chat... I'll be going now!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 404051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Grain-Seizing Grani", + "painting": "bulunxierde_2", + "prefab": "bulunxierde_2", + "rarity_bg": "", + "ship_group": 40405, + "ship_l2d_id": "", + "shop_id": 70727, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.968, + 1.069, + -0.73 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 337, + "voice_actor_2": -1 + }, + "405010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.42, + 0.88, + 0 + ] + ], + "cannon": [ + [ + 1.42, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.42, + 0.88, + 0 + ] + ] + }, + "desc": "Bismarck-class battleship – Bismarck.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 405010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bismarck", + "painting": "bisimai", + "prefab": "bisimai", + "rarity_bg": "", + "ship_group": 40501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.526, + 2.453, + -1.54 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 38, + "voice_actor_2": -1 + }, + "405011": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.541, + 0.606, + 0 + ] + ], + "cannon": [ + [ + 1.591, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.483, + 0.502, + 0 + ] + ] + }, + "desc": "My sincerest apologies for the delay, Commander. Ah, excuse me... as the fleet leader of the Iron Blood, I'm expected to wear this outfit to various formal occasions. Just putting it on seems to make me inadvertently change the way I speak...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 405011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beacon of the Iron Blood", + "painting": "bisimai_2", + "prefab": "bisimai_2", + "rarity_bg": "", + "ship_group": 40501, + "ship_l2d_id": "", + "shop_id": 70183, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.27, + -1.54 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 38, + "voice_actor_2": -1 + }, + "405012": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.27, + 0.89, + 0 + ] + ], + "cannon": [ + [ + 1.47, + 1.02, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.39, + 0.91, + 0 + ] + ] + }, + "desc": "Welcome, what would you like to order? ...If you want, we can drop this charade. I'm not used to being a waiter anyway, so I prefer it this way. Hehe.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 405012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Iron-Black Elysium", + "painting": "bisimai_3", + "prefab": "bisimai_3", + "rarity_bg": "", + "ship_group": 40501, + "ship_l2d_id": "", + "shop_id": 70638, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.32, + -1.54 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 38, + "voice_actor_2": -1 + }, + "405020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.28, + 1.19, + 0 + ] + ], + "cannon": [ + [ + 1.28, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.29, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.28, + 1.19, + 0 + ] + ] + }, + "desc": "Bismarck-class battleship, Tirpitz.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 405020, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tirpitz", + "painting": "tierbici", + "prefab": "tierbici", + "rarity_bg": "", + "ship_group": 40502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.74, + 0.86, + -0.18 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.03, + 2.66, + -1.22 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "405021": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.404, + 0.824, + 0 + ] + ], + "cannon": [ + [ + 1.415, + 0.767, + 0 + ] + ], + "torpedo": [ + [ + 0.262, + -0.143, + 0 + ] + ], + "vicegun": [ + [ + 1.367, + 0.726, + 0 + ] + ] + }, + "desc": "Summer... In the past, it was always just a hot and stifling season... But now...? Doesn't my outfit tell the whole story? Let's get going, there's bound to be a lot of people on the beach.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 405021, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5, + "touch2": 5.9 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -27.7, + -97.3, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Snow-Melting Summer", + "painting": "tierbici_2", + "prefab": "tierbici_2", + "rarity_bg": "", + "ship_group": 40502, + "ship_l2d_id": "", + "shop_id": 70078, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.09, + -1.22 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "405022": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.845, + 1.205, + 0 + ] + ], + "cannon": [ + [ + 0.856, + 1.24, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.855, + 1.324, + 0 + ] + ] + }, + "desc": "I bet Bismarck must've been thinking about how to invite me to the party, but ended up asking you to do it, Commander. Hehe... Let's get going soon. It's best not to keep her waiting.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 405022, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -27.7, + -97.3, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Iron Blood Snowstorm", + "painting": "tierbici_3", + "prefab": "tierbici_3", + "rarity_bg": "", + "ship_group": 40502, + "ship_l2d_id": "", + "shop_id": 70237, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.32, + 2.49, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "405023": { + "bg": "143", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.111, + 1.018, + 0 + ] + ], + "cannon": [ + [ + 1.075, + 1.006, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.089, + 1.004, + 0 + ] + ] + }, + "desc": "They have a peculiar way of wishing a happy New Year in the Sakura Empire. In line with their traditions, I've put on this new outfit. I hope it doesn't... look strange on me. ...You like it? I see... That being the case, I'll keep wearing it for the time", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 405023, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -27.7, + -97.3, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Seasonal Pine and the Frost Flower", + "painting": "tierbici_4", + "prefab": "tierbici_4", + "rarity_bg": "", + "ship_group": 40502, + "ship_l2d_id": "", + "shop_id": 70463, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.424, + 2.49, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "405024": { + "bg": "157", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.111, + 1.018, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.99, + 1.02, + 0 + ] + ] + }, + "desc": "It's all right, I just got here myself. I will say, it's strangely reassuring to know I'm not the only one nervous on this day.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 405024, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Vase for the Frost Flower", + "painting": "tierbici_5", + "prefab": "tierbici_5", + "rarity_bg": "", + "ship_group": 40502, + "ship_l2d_id": "", + "shop_id": 70706, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "405030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.32, + 1.27, + 0 + ] + ], + "cannon": [ + [ + 1.55, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.05, + 0 + ] + ], + "vicegun": [ + [ + 1.28, + 1.16, + 0 + ] + ] + }, + "desc": "H-class battleship – Ulrich von Hutten", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 405030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ulrich von Hutten", + "painting": "wuerlixi", + "prefab": "wuerlixi", + "rarity_bg": "", + "ship_group": 40503, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.36, + -0.18 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_wuerlixi", + [ + 10, + -20, + 0 + ], + [ + 1.68 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 10, + -312, + 0 + ], + [ + 1.03 + ] + ], + "tag": [], + "time": "", + "voice_actor": 190, + "voice_actor_2": -1 + }, + "405031": { + "bg": "150", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.32, + 1.27, + 0 + ] + ], + "cannon": [ + [ + 1.55, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.05, + 0 + ] + ], + "vicegun": [ + [ + 1.28, + 1.16, + 0 + ] + ] + }, + "desc": "*sigh* Do you really have to bother me during my break? ...It's a joke, no need to take it so seriously. I was looking for someone to kill some time with anyway.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 1, + "hand_id": 1, + "id": 405031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 30, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mayhem Maid", + "painting": "wuerlixi_2", + "prefab": "wuerlixi_2", + "rarity_bg": "", + "ship_group": 40503, + "ship_l2d_id": [ + 207, + 208 + ], + "shop_id": 70628, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.38, + -1.22 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 190, + "voice_actor_2": -1 + }, + "405032": { + "bg": "132", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.32, + 1.27, + 0 + ] + ], + "cannon": [ + [ + 1.55, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.05, + 0 + ] + ], + "vicegun": [ + [ + 1.28, + 1.16, + 0 + ] + ] + }, + "desc": "That was a pretty good race – reckon you'll get first place next time, though? ...Hmh. Easier said than done. You know they won't settle for second place – and hopefully neither will you, Commander.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 405032, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": [ + 0.5, + 0.5, + 0.5 + ], + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamAngleY": [ + -15, + 15 + ], + "ParamEyeBallX": [ + -0.5, + 0.5 + ], + "ParamEyeBallY": [ + -0.5, + 0.5 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 83, + -85, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ignition Matrician", + "painting": "wuerlixi_3", + "prefab": "wuerlixi_3", + "rarity_bg": "", + "ship_group": 40503, + "ship_l2d_id": [ + 40503201, + 40503202, + 40503203, + 40503204, + 40503205, + 40503206 + ], + "shop_id": 70913, + "shop_type_id": 14, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.38, + -1.22 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 190, + "voice_actor_2": -1 + }, + "405040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.345, + 1.324, + 0 + ] + ], + "cannon": [ + [ + 1.623, + 0.864, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.3, + 1.068, + 0 + ] + ] + }, + "desc": "Helgoland-class battleship – Thüringen.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 405040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Thüringen", + "painting": "tulingen", + "prefab": "tulingen", + "rarity_bg": "", + "ship_group": 40504, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.473, + 2.227, + -1.54 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 314, + "voice_actor_2": -1 + }, + "405041": { + "bg": "156", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.247, + 1.474, + 0 + ] + ], + "cannon": [ + [ + 1.616, + 0.954, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.202, + 1.234, + 0 + ] + ] + }, + "desc": "You, mop the floor. You, take care of the windows. Once that's done... Ah, Commander. Excuse us, we're in the middle of cleaning the area. If you have need of me, I must ask you to wait.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 405041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tidying in the Moonlight", + "painting": "tulingen_2", + "prefab": "tulingen_2", + "rarity_bg": "", + "ship_group": 40504, + "ship_l2d_id": "", + "shop_id": 70688, + "shop_type_id": 18, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.458, + 2.287, + -1.54 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 314, + "voice_actor_2": -1 + }, + "405050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.86, + 2.01, + 0 + ] + ], + "cannon": [ + [ + 1.94, + 2, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.02, + 1.07, + 0 + ] + ] + }, + "desc": "Bismarck-class battleship – Bismarck.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 405050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bismarck Zwei", + "painting": "bisimaiz", + "prefab": "bisimaiz", + "rarity_bg": "", + "ship_group": 40505, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 3.05, + -0.18 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_bisimaiZ", + [ + -457, + -320, + 0 + ], + [ + 3.7 + ] + ], + "spine_action_offset": true, + "spine_offset": [ + [ + -410, + -1390, + 0 + ], + [ + 2.3 + ] + ], + "tag": [], + "time": "", + "voice_actor": 38, + "voice_actor_2": -1 + }, + "405051": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.86, + 2.01, + 0 + ] + ], + "cannon": [ + [ + 1.94, + 2, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.02, + 1.07, + 0 + ] + ] + }, + "desc": "Ah, you've already gotten changed, Commander? I'm just... Well, I need to do something about my hair before I go back in the water.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 405051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Crystal-Clear Holiday", + "painting": "bisimaiz_2", + "prefab": "bisimaiz_2", + "rarity_bg": "", + "ship_group": 40505, + "ship_l2d_id": "", + "shop_id": 70843, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 3.05, + -0.18 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_bisimaiZ_2", + [ + 1177, + 132, + 0 + ], + [ + 0.9 + ] + ], + "spine_action_offset": true, + "spine_offset": [ + [ + 19, + -315, + 0 + ], + [ + 0.48 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 38, + "voice_actor_2": -1 + }, + "406010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.598, + 1.01, + 0 + ] + ], + "plane": [ + [ + 1.593, + 1.02, + 0 + ] + ] + }, + "desc": "Aircraft carrier – Weser. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 406010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Weser", + "painting": "weixi", + "prefab": "weixi", + "rarity_bg": "", + "ship_group": 40601, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.374, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 259, + "voice_actor_2": -1 + }, + "406011": { + "bg": "136", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.624, + 1.001, + 0 + ] + ], + "plane": [ + [ + 1.602, + 0.994, + 0 + ] + ] + }, + "desc": "I've been waiting for you, Comander. As per my sister's recommendation, I've put on this Sakura Empire kimono. It was very tricky to get into, I might add... That aside, how do I look? ...Good enough, I hope?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 406011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Obsidian Elegance", + "painting": "weixi_3", + "prefab": "weixi_3", + "rarity_bg": "", + "ship_group": 40601, + "ship_l2d_id": "", + "shop_id": 70471, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.364, + 2.486, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 259, + "voice_actor_2": -1 + }, + "406012": { + "bg": "146", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.22, + 1.2, + 0 + ] + ], + "plane": [ + [ + 1.32, + 1.26, + 0 + ] + ] + }, + "desc": "Ah, I've kept you waiting. I do apologize that it took so long to get changed into this outfit. Now, Commander, won't you come show me your chivalry and escort me down these stairs?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 406012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": { + "login": [ + "yinxiao", + 0.01 + ] + }, + "l2d_voice_calibrate": { + "expedition": 0.5, + "login": 17.8, + "mail": 0.5, + "main_1": 0.5, + "main_2": 0.5, + "main_3": 0.5, + "mission": 0.5, + "mission_complete": 0.5, + "propose": 0.5, + "touch": 0.5, + "touch2": 0.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -20, + -30, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Urbane Onyx", + "painting": "weixi_2", + "prefab": "weixi_2", + "rarity_bg": "", + "ship_group": 40601, + "ship_l2d_id": "", + "shop_id": 70553, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.52, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 259, + "voice_actor_2": -1 + }, + "406013": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.929, + 0.955, + 0 + ] + ], + "plane": [ + [ + 0.976, + 0.879, + 0 + ] + ] + }, + "desc": "I've been waiting forever for this season to arrive. It's a perfect time, the waves wait for nobody, so I'm off for now. I'll make sure to teach you how to surf later, so look forward to it.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 406013, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Wave-Washed Paradise", + "painting": "weixi_4", + "prefab": "weixi_4", + "rarity_bg": "", + "ship_group": 40601, + "ship_l2d_id": "", + "shop_id": 70726, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.754, + 1.951, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 259, + "voice_actor_2": -1 + }, + "406020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.53, + 1.37, + 0 + ] + ], + "plane": [ + [ + 1.49, + 1.43, + 0 + ] + ] + }, + "desc": "Jade-class aircraft carrier – Elbe", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 406020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Elbe", + "painting": "yibei", + "prefab": "yibei", + "rarity_bg": "", + "ship_group": 40602, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 299, + "voice_actor_2": -1 + }, + "406021": { + "bg": "150", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.53, + 1.37, + 0 + ] + ], + "plane": [ + [ + 1.49, + 1.43, + 0 + ] + ] + }, + "desc": "Thank you all for waiting! Large mugs of Iron Blood beer, just as ord–– W-waaah?! Nnngh...! Phew, somehow managed to not spill anything... Wh-what's your deal?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 406021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Time to Show Off?", + "painting": "yibei_2", + "prefab": "yibei_2", + "rarity_bg": "", + "ship_group": 40602, + "ship_l2d_id": "", + "shop_id": 70631, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 299, + "voice_actor_2": -1 + }, + "406022": { + "bg": "105", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.53, + 1.37, + 0 + ] + ], + "plane": [ + [ + 1.49, + 1.43, + 0 + ] + ] + }, + "desc": "Still not here yet...? Geez, I'll give the Commander what-for for coming later than me... Huh? C-Commander? N-no, I happened to come an hour early, is all...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 406022, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -10, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pure-Hearted Bad Girl", + "painting": "yibei_3", + "prefab": "yibei_3", + "rarity_bg": "", + "ship_group": 40602, + "ship_l2d_id": [ + 4060221 + ], + "shop_id": 70819, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 299, + "voice_actor_2": -1 + }, + "406030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.53, + 1.37, + 0 + ] + ], + "plane": [ + [ + 1.49, + 1.43, + 0 + ] + ] + }, + "desc": "Jade-class aircraft carrier – Jade.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 406030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jade", + "painting": "yade", + "prefab": "yade", + "rarity_bg": "", + "ship_group": 40603, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 363, + "voice_actor_2": -1 + }, + "406031": { + "bg": "168", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.53, + 1.37, + 0 + ] + ], + "plane": [ + [ + 1.49, + 1.43, + 0 + ] + ] + }, + "desc": "*lick*... Hmm. The fact that you can just stand there must mean that you don't mind the heat. It's okay, though. If you don't come in, I'm more than happy to have this pool all to myself~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 406031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Lick of Summer", + "painting": "yade_2", + "prefab": "yade_2", + "rarity_bg": "", + "ship_group": 40603, + "ship_l2d_id": "", + "shop_id": 70845, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 363, + "voice_actor_2": -1 + }, + "407010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.74, + 1, + 0 + ] + ], + "plane": [ + [ + 0.73, + 1.28, + 0 + ] + ] + }, + "desc": "Aircraft carrier, Graf Zeppelin.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 407010, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Graf Zeppelin", + "painting": "qibolin", + "prefab": "qibolin", + "rarity_bg": "", + "ship_group": 40701, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.01, + 0.86, + -1.89 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.87, + 0.79, + -1.85 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": 73 + }, + "407011": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.19, + 3.86, + 0 + ] + ], + "plane": [ + [ + 0.59, + 3.45, + 0 + ] + ] + }, + "desc": "So the Second Movement is a Lento of the summer and the sea? So be it... Since we will arrive at the Finale eventually, I suppose I can enjoy this moment of fleeting peace with you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 407011, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 15.34, + -36.6, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beachside Urd", + "painting": "qibolin_2", + "prefab": "qibolin_2", + "rarity_bg": "", + "ship_group": 40701, + "ship_l2d_id": "", + "shop_id": 70077, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.68, + 2.46, + -1.85 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 9, + "voice_actor_2": 73 + }, + "407020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.96, + 0.62, + 0 + ] + ], + "plane": [ + [ + 0.95, + 0.66, + 0 + ] + ] + }, + "desc": "Aircraft carrier Graf Zeppelin", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 407020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 15.34, + -36.6, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Zeppy", + "painting": "qibolin_younv", + "prefab": "qibolin_younv", + "rarity_bg": "", + "ship_group": 40702, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.07, + -1.85 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": 73 + }, + "407030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2.148, + 1, + 0 + ] + ], + "plane": [ + [ + 2.175, + 0.999, + 0 + ] + ] + }, + "desc": "Graf Zeppelin-class aircraft carrier – Peter Strasser. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 407030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -30, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Peter Strasser", + "painting": "shitelasai", + "prefab": "shitelasai", + "rarity_bg": "", + "ship_group": 40703, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.557, + 2.68, + -1.89 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 254, + "voice_actor_2": -1 + }, + "407031": { + "bg": "143", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2.279, + 1, + 0 + ] + ], + "plane": [ + [ + 2.23, + 0.991, + 0 + ] + ] + }, + "desc": "Eugen, you said that this was is a ceremonial outfit from the Sakura Empire? Surprisingly, it does seem to suit me rather well. Oh, I'm supposed to offer my well-wishes for the New Year at this time, yes?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 407031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -30, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chronos's Kalendae", + "painting": "shitelasai_2", + "prefab": "shitelasai_2", + "rarity_bg": "", + "ship_group": 40703, + "ship_l2d_id": "", + "shop_id": 70459, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.604, + 2.414, + -1.89 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 254, + "voice_actor_2": -1 + }, + "407032": { + "bg": "146", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.91, + 1.19, + 0 + ] + ], + "plane": [ + [ + 1.76, + 1.42, + 0 + ] + ] + }, + "desc": "You already know, don't you? Since I spent so much of my precious time changing into a dress for your sake... Heh, I'll be taking plenty of your time in return. Hehehe.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 407032, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Moment Frozen in Pure White", + "painting": "shitelasai_3", + "prefab": "shitelasai_3", + "rarity_bg": "", + "ship_group": 40703, + "ship_l2d_id": "", + "shop_id": 70600, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.58, + -1.89 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 254, + "voice_actor_2": -1 + }, + "407033": { + "bg": "175", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2.044, + 1.19, + 0 + ] + ], + "plane": [ + [ + 1.76, + 1.42, + 0 + ] + ] + }, + "desc": "Heheheh, it may be a new year, but don't forget to be punctual. Just as you've refurnished this study into a Dragon Empery style, I've changed clothes to match. This little book club is just for the two of us, and I mean to suit the mood.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 407033, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lustrous Jade of the Golden House", + "painting": "shitelasai_4", + "prefab": "shitelasai_4", + "rarity_bg": "", + "ship_group": 40703, + "ship_l2d_id": "", + "shop_id": 70976, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.526, + 2.432, + -1.89 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 254, + "voice_actor_2": -1 + }, + "408010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.78, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ] + }, + "desc": "Iron Blood Type VIIC submarine – U-81.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 408010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-81", + "painting": "U81", + "prefab": "U81", + "rarity_bg": "", + "ship_group": 40801, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 130, + "voice_actor_2": -1 + }, + "408011": { + "bg": "107", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.74, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0.54, + 0.3, + 0 + ] + ] + }, + "desc": "*Ugh*... I figured this bulky dress would be hard to move in... Huh? I look pretty? Aha, ahaha... You're makin' me blush...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 408011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Soft Serenade", + "painting": "U81_2", + "prefab": "U81_2", + "rarity_bg": "", + "ship_group": 40801, + "ship_l2d_id": "", + "shop_id": 70105, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 130, + "voice_actor_2": -1 + }, + "408012": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.32, + 0.75, + 0 + ] + ], + "torpedo": [ + [ + 1.1, + 0.07, + 0 + ] + ] + }, + "desc": "Over here, Commander! I came because you said we were going to go moon-viewing together! I even brought tea and mooncakes.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 408012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lantern-Lit Full Moon", + "painting": "u81_3", + "prefab": "u81_3", + "rarity_bg": "", + "ship_group": 40801, + "ship_l2d_id": "", + "shop_id": 70738, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 1.63, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 130, + "voice_actor_2": -1 + }, + "408020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.98, + 0.37, + 0 + ] + ], + "torpedo": [ + [ + 0.57, + 0.1, + 0 + ] + ] + }, + "desc": "Iron Blood Type VIIB submarine – U-47.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 408020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-47", + "painting": "U47", + "prefab": "U47", + "rarity_bg": "", + "ship_group": 40802, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.1, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 160, + "voice_actor_2": -1 + }, + "408021": { + "bg": "105", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.05, + 0.31, + 0 + ] + ], + "torpedo": [ + [ + 0.99, + 0.23, + 0 + ] + ] + }, + "desc": "I haven't seen much of the world on land... Commander, want to explore it with me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 408021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rookie Rider", + "painting": "U47_2", + "prefab": "U47_2", + "rarity_bg": "", + "ship_group": 40802, + "ship_l2d_id": "", + "shop_id": 70079, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 160, + "voice_actor_2": -1 + }, + "408022": { + "bg": "115", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.406, + -0.166, + 0 + ] + ], + "torpedo": [ + [ + 0.098, + -0.332, + 0 + ] + ] + }, + "desc": "Sigh... I'd much rather be in a nice, quiet place like this over the din and clamor of the venue... Wouldn't you agree, Commander? I see. Well, come sit here then.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 408022, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Eigenen Raum", + "painting": "U47_3", + "prefab": "U47_3", + "rarity_bg": "", + "ship_group": 40802, + "ship_l2d_id": "", + "shop_id": 70235, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 160, + "voice_actor_2": -1 + }, + "408023": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.2, + 0.62, + 0 + ] + ], + "torpedo": [ + [ + 1.23, + 0.2, + 0 + ] + ] + }, + "desc": "Coming through! Steer clear! Oh, it's you, Commander. Talk to you later – I've got coffee to deliver.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 408023, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Urban Maid", + "painting": "u47_4", + "prefab": "u47_4", + "rarity_bg": "", + "ship_group": 40802, + "ship_l2d_id": "", + "shop_id": 70636, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.29, + 2.14, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 160, + "voice_actor_2": -1 + }, + "408024": { + "bg": "156", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.471, + 0.868, + 0 + ] + ], + "torpedo": [ + [ + 1.253, + 0.065, + 0 + ] + ] + }, + "desc": "An empty study with a cushy couch. The perfect place to relax. Whew... Go ahead and read a book if you want, Commander. If that'll be all then I'm gonna take a nap.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 408024, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sanguine Moon Sojourn", + "painting": "u47_5", + "prefab": "u47_5", + "rarity_bg": "", + "ship_group": 40802, + "ship_l2d_id": "", + "shop_id": 70690, + "shop_type_id": 18, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + 0.018, + 2.163, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 160, + "voice_actor_2": -1 + }, + "408025": { + "bg": "152", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.2, + 0.62, + 0 + ] + ], + "torpedo": [ + [ + 1.23, + 0.2, + 0 + ] + ] + }, + "desc": "Nice. I've found a legendary luck-bringing carp, like... Oh. I almost had it, too... Sorry, Commander.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 13, + "id": 408025, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hook, Line, and Sinker", + "painting": "u47_6", + "prefab": "u47_6", + "rarity_bg": "", + "ship_group": 40802, + "ship_l2d_id": "", + "shop_id": 70818, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.29, + 2.14, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 160, + "voice_actor_2": -1 + }, + "408030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.84, + 0.58, + 0 + ] + ], + "torpedo": [ + [ + 0.8, + 0.09, + 0 + ] + ] + }, + "desc": "Iron Blood Type VIIC submarine – U-557.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 408030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-557", + "painting": "U557", + "prefab": "U557", + "rarity_bg": "", + "ship_group": 40803, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.18, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 160, + "voice_actor_2": -1 + }, + "408040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.84, + 0.58, + 0 + ] + ], + "torpedo": [ + [ + 0.8, + 0.09, + 0 + ] + ] + }, + "desc": "Iron Blood Type VIIC submarine – U-556.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 408040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-556", + "painting": "U556", + "prefab": "U556", + "rarity_bg": "", + "ship_group": 40804, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.25, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 38, + "voice_actor_2": -1 + }, + "408041": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.84, + 0.58, + 0 + ] + ], + "torpedo": [ + [ + 0.8, + 0.09, + 0 + ] + ] + }, + "desc": "It's me, U-556, all prettied up! Eheheheh, we're gonna have lots of fun at this party, Commander! Come on, let's go!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 408041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Party Knight!", + "painting": "U556_2", + "prefab": "U556_2", + "rarity_bg": "", + "ship_group": 40804, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.18, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 38, + "voice_actor_2": -1 + }, + "408050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.84, + 0.58, + 0 + ] + ], + "torpedo": [ + [ + 0.8, + 0.09, + 0 + ] + ] + }, + "desc": "Iron Blood Type VIIB submarine – U-73.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 408050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-73", + "painting": "U73", + "prefab": "U73", + "rarity_bg": "", + "ship_group": 40805, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 200, + "voice_actor_2": -1 + }, + "408051": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.643, + 0.58, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "It's time for science class with U-73! Now, Commander, let's try out an exhilarating and positively fascinating experiment!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 408051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Science Rules!", + "painting": "U73_3", + "prefab": "U73_3", + "rarity_bg": "", + "ship_group": 40805, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.18, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 200, + "voice_actor_2": -1 + }, + "408052": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.946, + 0.571, + 0 + ] + ], + "torpedo": [ + [ + 1.359, + 0.081, + 0 + ] + ] + }, + "desc": "In today's chemistry lesson, we'll learn how to make a warming cup of tea and an optional concoction to enhance its flavor! Will you do the honor of taste-testing it, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 408052, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's Chemistry", + "painting": "u73_4", + "prefab": "u73_4", + "rarity_bg": "", + "ship_group": 40805, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.342, + 2.385, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 200, + "voice_actor_2": -1 + }, + "408060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.287, + 0.619, + 0 + ] + ], + "torpedo": [ + [ + 0.997, + 0.302, + 0 + ] + ] + }, + "desc": "Iron Blood Type VIIC submarine – U-101.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 408060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-101", + "painting": "U101", + "prefab": "U101", + "rarity_bg": "", + "ship_group": 40806, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.541, + 2.497, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 189, + "voice_actor_2": -1 + }, + "408061": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.211, + 0.654, + 0 + ] + ], + "torpedo": [ + [ + 1.023, + 0.09, + 0 + ] + ] + }, + "desc": "Commander, welcome to the school band! Why'd I join the band? The reason's simple - there's no Motorbike Club at school, haha! Just kidding~! Actually, I'm quite fond of music as well, heh.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 408061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ironbrass Trombonist", + "painting": "U101_2", + "prefab": "U101_2", + "rarity_bg": "", + "ship_group": 40806, + "ship_l2d_id": "", + "shop_id": 70204, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 189, + "voice_actor_2": -1 + }, + "408070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.099, + 0.335, + 0 + ] + ], + "torpedo": [ + [ + 1.261, + 0.208, + 0 + ] + ] + }, + "desc": "Iron Blood Type IXC submarine – U-522.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 408070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-522", + "painting": "U522", + "prefab": "U522", + "rarity_bg": "", + "ship_group": 40807, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 86, + "voice_actor_2": -1 + }, + "408080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.393, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.055, + 0 + ] + ] + }, + "desc": "Raaaawr. U-110 is a shaaaark. Fear meeee. Mess with me and I'll bite yooouuu.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 408080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-110", + "painting": "U110", + "prefab": "U110", + "rarity_bg": "", + "ship_group": 40808, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "408081": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.909, + 0.897, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.109, + 0 + ] + ] + }, + "desc": "Whenever I play games with Bulldog, I always end up losing. Frustratinggg. That's why... I'll study hard. One day, I'll winnnn.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 408081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kleiner Hai", + "painting": "U110_2", + "prefab": "U110_2", + "rarity_bg": "", + "ship_group": 40808, + "ship_l2d_id": "", + "shop_id": 70252, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "408082": { + "bg": "135", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.212, + 1.222, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "I have to wear beautiful clothes to a party, or so Bulldog said. So, I had everyone help me pick out beautiful clothes. Commander, I'm beautiful, right? Eh... cute?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 408082, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Cute, Sharky Reverie", + "painting": "U110_3", + "prefab": "U110_3", + "rarity_bg": "", + "ship_group": 40808, + "ship_l2d_id": "", + "shop_id": 70425, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "408083": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.212, + 1.1, + 0 + ] + ], + "torpedo": [ + [ + 0.019, + 0, + 0 + ] + ] + }, + "desc": "The horned idol U-110 splashes onto the staaage. I'll sing all the baddies to obliviooon. I'm scaaary. Raaawr. Raaawr♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 5, + "id": 408083, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Garnished Supershark", + "painting": "U110_4", + "prefab": "U110_4", + "rarity_bg": "", + "ship_group": 40808, + "ship_l2d_id": "", + "shop_id": 70441, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "408084": { + "bg": "126", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.268, + 0.723, + 0 + ] + ], + "torpedo": [ + [ + -0.013, + -0.569, + 0 + ] + ] + }, + "desc": "Commander, happy new yeeear. I'm no bunny, I'm a shaaark. Not a cute shark, but a crimson, scaaary shark. Raaawr.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 5, + "id": 408084, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year, Small Shark", + "painting": "U110_5", + "prefab": "U110_5", + "rarity_bg": "", + "ship_group": 40808, + "ship_l2d_id": "", + "shop_id": 70477, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.558, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "408085": { + "bg": "152", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.268, + 0.723, + 0 + ] + ], + "torpedo": [ + [ + -0.013, + -0.569, + 0 + ] + ] + }, + "desc": "I'm gathering mushrooms, not garlic cloooves. The edible ones are gonna go in a hearty hot pot that'll warm me and my frieeends. Raaawr.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 5, + "id": 408085, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Springtime Shark", + "painting": "u110_6", + "prefab": "u110_6", + "rarity_bg": "", + "ship_group": 40808, + "ship_l2d_id": "", + "shop_id": 70809, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.558, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "408090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.175, + 0.382, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Iron Blood Type VIIC submarine – U-96. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 408090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-96", + "painting": "U96", + "prefab": "U96", + "rarity_bg": "", + "ship_group": 40809, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 246, + "voice_actor_2": -1 + }, + "408091": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.341, + 0.473, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.25, + 0 + ] + ] + }, + "desc": "Nice timing. I just finished an intense battle. The result...? Of course I won. What? Did you want to have a match against me? ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 408091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Secret Gaming Session ", + "painting": "U96_2", + "prefab": "U96_2", + "rarity_bg": "", + "ship_group": 40809, + "ship_l2d_id": "", + "shop_id": 70404, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 246, + "voice_actor_2": -1 + }, + "408092": { + "bg": "112", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.639, + 0.717, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.023, + 0 + ] + ] + }, + "desc": "Mmgh... Guh... Ahhh! These things are heavier than they look... Oh, there you are. You work out too, do ya? Feel free to join me if you've not just come to tease me.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 408092, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "How Heavy Are Those Barbells?", + "painting": "u96_3", + "prefab": "u96_3", + "rarity_bg": "", + "ship_group": 40809, + "ship_l2d_id": "", + "shop_id": 70730, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.755, + 2.025, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 246, + "voice_actor_2": -1 + }, + "408100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.319, + 1.023, + 0 + ] + ], + "torpedo": [ + [ + 0.008, + 0.016, + 0 + ] + ] + }, + "desc": "Iron Blood Type IXA submarine – U-37. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 408100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-37", + "painting": "U37", + "prefab": "U37", + "rarity_bg": "", + "ship_group": 40810, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.534, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 256, + "voice_actor_2": -1 + }, + "408101": { + "bg": "101", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.039, + 1.031, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Now then, please lend your ears to this song I shall offer you... Wait, Commander, are you spacing out again? Even though I went through all this trouble to learn this song from my friends in the Sakura fleet... Please pay attention, okay? I'm starting ov", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 408101, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "New Year's Nightingale", + "painting": "U37_2", + "prefab": "U37_2", + "rarity_bg": "", + "ship_group": 40810, + "ship_l2d_id": "", + "shop_id": 70469, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 256, + "voice_actor_2": -1 + }, + "408110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2.327, + 0.001, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.536, + 0 + ] + ] + }, + "desc": "Iron Blood Type VIIC submarine – U-410.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 408110, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-410", + "painting": "U410", + "prefab": "U410", + "rarity_bg": "", + "ship_group": 40811, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.409, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 261, + "voice_actor_2": -1 + }, + "408111": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2.304, + 0.061, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.435, + 0 + ] + ] + }, + "desc": "Happy Lunar New Year. Have you cooked up a scheme for this year's festival? Hehehe~ I'm of course talking about giving out New Year's gifts and hanging up decorations. I've devised a master plan of my own.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 408111, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Spring Festival Scheme", + "painting": "U410_2", + "prefab": "U410_2", + "rarity_bg": "", + "ship_group": 40811, + "ship_l2d_id": "", + "shop_id": 70501, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.523, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 261, + "voice_actor_2": -1 + }, + "408112": { + "bg": "112", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.578, + 0.498, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.037, + 0 + ] + ] + }, + "desc": "And for my finishing move... maybe something like this? Heehee. What do your eyes think, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 408112, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Practice Makes Perfect", + "painting": "u410_3", + "prefab": "u410_3", + "rarity_bg": "", + "ship_group": 40811, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.924, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 261, + "voice_actor_2": -1 + }, + "408120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.08, + 0.21, + 0 + ] + ], + "torpedo": [ + [ + 0.38, + 0.01, + 0 + ] + ] + }, + "desc": "Iron Blood Type VIIC submarine – U-1206", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 408120, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-1206", + "painting": "u1206", + "prefab": "u1206", + "rarity_bg": "", + "ship_group": 40812, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 300, + "voice_actor_2": -1 + }, + "408121": { + "bg": "150", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.08, + 0.21, + 0 + ] + ], + "torpedo": [ + [ + 0.38, + 0.01, + 0 + ] + ] + }, + "desc": "Welcome! Oh, Hey, Commander! Heheh, so how do you like my maid getup? Looks pretty nice, if I do say so myself!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 408121, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Maid Just for You", + "painting": "u1206_2", + "prefab": "u1206_2", + "rarity_bg": "", + "ship_group": 40812, + "ship_l2d_id": "", + "shop_id": 70632, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 300, + "voice_actor_2": -1 + }, + "431230": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.998, + 1.012, + 0 + ] + ], + "cannon": [ + [ + 1.005, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + -0.007, + -0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.005, + 0.998, + 0 + ] + ] + }, + "desc": "*sigh*... Taking care of Meowfficers is more work than you'd think... They're awfully needy for support units. Commander, make absolute sure you don't turn out like them.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 10, + "gyro": 0, + "hand_id": 13, + "id": 431230, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Keeper of the Comf-Fort", + "painting": "z23_9", + "prefab": "z23_9", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 4, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.399, + 2.475, + -0.27 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "431232": { + "bg": "158", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.3, + 1.36, + 0 + ] + ], + "cannon": [ + [ + 0.98, + 0.87, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.97, + 0.92, + 0 + ] + ] + }, + "desc": "N-no way... I lost the gear I worked so hard for because the upgrade failed, and now I'm completely out of gold... Ugh, I'm going to have to go farm the dungeon all over again...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 12, + "gyro": 0, + "hand_id": 13, + "id": 431232, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Upgrade Failure?!", + "painting": "z23_10", + "prefab": "z23_10", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 70760, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.23, + -0.27 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "431233": { + "bg": "136", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.95, + 0.92, + 0 + ] + ], + "cannon": [ + [ + 0.98, + 0.87, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.97, + 0.92, + 0 + ] + ] + }, + "desc": "Sure, I've worn black dresses in the past, but this time I decided to incorporate a bit of red and white, per Eugen's suggestion. This is sure to invite the Commander to dance wi– C-Commander?! Did you just get here? I see. Uhh... How do you like my dress?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 13, + "gyro": 0, + "hand_id": 13, + "id": 431233, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tanz der Blumen", + "painting": "z23_12", + "prefab": "z23_12", + "rarity_bg": "", + "ship_group": 40123, + "ship_l2d_id": "", + "shop_id": 70912, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.33, + -0.27 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "499010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 1.95, + 2.9, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.05, + 0 + ] + ], + "vicegun": [ + [ + -0.72, + 1.07, + 0 + ] + ] + }, + "desc": "Heavy cruiser – Roon.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 499010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Roon", + "painting": "luoen", + "prefab": "luoen", + "rarity_bg": "", + "ship_group": 49901, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.59, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 109, + "voice_actor_2": -1 + }, + "499011": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.92, + 0.977, + 0 + ] + ], + "cannon": [ + [ + 0.759, + 0.967, + 0 + ] + ], + "torpedo": [ + [ + 0.035, + 0.034, + 0 + ] + ], + "vicegun": [ + [ + 0.75, + 0.984, + 0 + ] + ] + }, + "desc": "Such a delightful party with our wonderful friends in this peaceful harbor... It's wonderful, really... But, it's all so boring...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 499011, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dark Red Grin", + "painting": "luoen_2", + "prefab": "luoen_2", + "rarity_bg": "", + "ship_group": 49901, + "ship_l2d_id": "", + "shop_id": 70244, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.59, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 109, + "voice_actor_2": -1 + }, + "499012": { + "bg": "157", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.34, + 1.59, + 0 + ] + ], + "cannon": [ + [ + 2.14, + 2.45, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.05, + 0 + ] + ], + "vicegun": [ + [ + 1.32, + 1.52, + 0 + ] + ] + }, + "desc": "It's so nice getting away from the bustling party hall and being alone with you, Commander. I'm eager to see what we'll do now as your idea of a... \"break\"~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 499012, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -20, + 20 + ], + "ParamAngleY": [ + -20, + 20 + ], + "ParamBodyAngleX": [ + -10, + 5 + ], + "ParamEyeBallX": [ + -0.7, + 0.7 + ], + "ParamEyeBallY": [ + -0.7, + 0.7 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 20, + -170, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Viridescent Lullaby", + "painting": "luoen_4", + "prefab": "luoen_4", + "rarity_bg": "", + "ship_group": 49901, + "ship_l2d_id": "", + "shop_id": 70705, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.4, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 109, + "voice_actor_2": -1 + }, + "499020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.84, + 1.79, + 0 + ] + ], + "cannon": [ + [ + 1.86, + 1.74, + 0 + ] + ], + "torpedo": [ + [ + -0.03, + 0.05, + 0 + ] + ] + }, + "desc": "Battleship – Friedrich der Große.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 499020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Friedrich der Große", + "painting": "feiteliedadi", + "prefab": "feiteliedadi", + "rarity_bg": "", + "ship_group": 49902, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_dadi", + [ + -16, + 121, + 0 + ], + [ + 1.6 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 0, + -636, + 0 + ], + [ + 1 + ] + ], + "tag": [], + "time": "", + "voice_actor": 174, + "voice_actor_2": -1 + }, + "499021": { + "bg": "126", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.897, + 1.854, + 0 + ] + ], + "cannon": [ + [ + 1.965, + 1.846, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "I see, so this is a \"kimono\" from the Sakura Empire. Exquisitely crafted, comfortable to the touch, and elegantly designed... How to wear it? ...My child, what are you talking about?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 499021, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dark Raiments of Gagaku", + "painting": "feiteliedadi_2", + "prefab": "feiteliedadi_2", + "rarity_bg": "", + "ship_group": 49902, + "ship_l2d_id": "", + "shop_id": 70285, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 174, + "voice_actor_2": -1 + }, + "499028": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.274, + 1.637, + 0 + ] + ], + "cannon": [ + [ + 2.306, + 1.494, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Ahh, the dreamlike beauty of this variation... let us write down this movement so that it may continue forever, my sweet child.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 1, + "id": 499028, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Zeremonie of the Cradle", + "painting": "feiteliedadi_h", + "prefab": "feiteliedadi_h", + "rarity_bg": "", + "ship_group": 49902, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 174, + "voice_actor_2": -1 + }, + "499030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.309, + 1.327, + 0 + ] + ], + "cannon": [ + [ + 2.268, + 1.411, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 2.273, + 1.37, + 0 + ] + ] + }, + "desc": "Light cruiser – Mainz.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 499030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mainz", + "painting": "meiyinci", + "prefab": "meiyinci", + "rarity_bg": "", + "ship_group": 49903, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.531, + 2.393, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 236, + "voice_actor_2": -1 + }, + "499032": { + "bg": "167", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.02, + 1.73, + 0 + ] + ], + "cannon": [ + [ + 2.05, + 1.65, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.02, + 1.69, + 0 + ] + ] + }, + "desc": "Ah! Changed already? Just wait a minute... No, you don't have to leave. I'm almost done.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 499032, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Silkiest Brew", + "painting": "meiyinci_2", + "prefab": "meiyinci_2", + "rarity_bg": "", + "ship_group": 49903, + "ship_l2d_id": "", + "shop_id": 70837, + "shop_type_id": 22, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.531, + 2.393, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 236, + "voice_actor_2": -1 + }, + "499040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Battlecruiser – Odin.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 499040, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Odin", + "painting": "aoding", + "prefab": "aoding", + "rarity_bg": "", + "ship_group": 49904, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 237, + "voice_actor_2": -1 + }, + "499041": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.982, + 0.964, + 0 + ] + ], + "cannon": [ + [ + 1.003, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 0.994, + 0.924, + 0 + ] + ] + }, + "desc": "I thought I would never have time to pursue the fine arts, and yet here I am now. Your thoughts, Commander? Eastern as this calligraphy may be, does it not suit the connotations of my name?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 499041, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Black Strokes upon Blank Snow", + "painting": "aoding_2", + "prefab": "aoding_2", + "rarity_bg": "", + "ship_group": 49904, + "ship_l2d_id": "", + "shop_id": 70462, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 237, + "voice_actor_2": -1 + }, + "499050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.222, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.212, + 1.006, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Large cruiser – Ägir.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 499050, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ägir", + "painting": "aijier", + "prefab": "aijier", + "rarity_bg": "", + "ship_group": 49905, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.426, + -0.16 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_aijier", + [ + 315, + 123, + 0 + ], + [ + 1.75 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 315, + -510, + 0 + ], + [ + 0.75 + ] + ], + "tag": [], + "time": "", + "voice_actor": 21, + "voice_actor_2": -1 + }, + "499051": { + "bg": "136", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.222, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.212, + 1.006, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Hmph. They think being a maid is so difficult, do they? I could do this with my eyes clo– What?! H-how long have YOU been here?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 499051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -25, + 25 + ], + "ParamAngleY": [ + -25, + 25 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 60, + -140, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Iron Blood's Dragon Maid", + "painting": "aijier_2", + "prefab": "aijier_2", + "rarity_bg": "", + "ship_group": 49905, + "ship_l2d_id": "", + "shop_id": 70701, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.426, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 21, + "voice_actor_2": -1 + }, + "499052": { + "bg": "157", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.222, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.212, + 1.006, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "New decorations, new outfits, and countless preparations to make... Lunar New Year is quite the busy time of year. Go on, see to your duties. I'm well aware how essential you are to this holiday's smooth operation. Just don't keep me waiting all day. Heehee.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 1, + "hand_id": 1, + "id": 499052, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -20, + 20 + ], + "ParamAngleY": [ + -20, + 20 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -65, + 170, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Golden Dragon Among Auspicious Clouds", + "painting": "aijier_3", + "prefab": "aijier_3", + "rarity_bg": "", + "ship_group": 49905, + "ship_l2d_id": [ + 4990521, + 4990522, + 4990523, + 4990524, + 4990525, + 4990526, + 4990527, + 4990528 + ], + "shop_id": 70814, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.426, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 21, + "voice_actor_2": -1 + }, + "499060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2.67, + 1.021, + 0 + ] + ], + "plane": [ + [ + 2.644, + 1.021, + 0 + ] + ] + }, + "desc": "Aircraft carrier – August von Parseval.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 499060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -30, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "August von Parseval", + "painting": "aogusite", + "prefab": "aogusite", + "rarity_bg": "", + "ship_group": 49906, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.405, + 2.502, + -1.89 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 202, + "voice_actor_2": -1 + }, + "499061": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2.52, + 1.16, + 0 + ] + ], + "plane": [ + [ + 2.43, + 1.34, + 0 + ] + ] + }, + "desc": "My hair is a mess... There we go. No, I don't need a hand. I am here to serve you in this fleeting dream of yours. Enjoy it while it lasts. Hehehe.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 499061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Conquered Unhulde", + "painting": "aogusite_2", + "prefab": "aogusite_2", + "rarity_bg": "", + "ship_group": 49906, + "ship_l2d_id": "", + "shop_id": 70633, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.35, + -1.89 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 202, + "voice_actor_2": -1 + }, + "499070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.6, + 1.94, + 0 + ] + ], + "cannon": [ + [ + 1.81, + 1.44, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.66, + 1.37, + 0 + ] + ] + }, + "desc": "Battlecruiser – Prinz Rupprecht.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 499070, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prinz Rupprecht", + "painting": "lupuleixite", + "prefab": "lupuleixite", + "rarity_bg": "", + "ship_group": 49907, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.92, + 1.91, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 328, + "voice_actor_2": -1 + }, + "499071": { + "bg": "165", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.6, + 1.94, + 0 + ] + ], + "cannon": [ + [ + 1.81, + 1.44, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.66, + 1.37, + 0 + ] + ] + }, + "desc": "Woah, so this is the Dragon Empery's \"Spring Festival\" that I've heard so much about. But, why are they celebrating it in the middle of winter? And you, Commander – why are you helping with such a grandiose... Whuah?! What was that noise?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 499071, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamAngleY": [ + -15, + 15 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 47, + 200, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Gate Dragon's Advent", + "painting": "lupuleixite_2", + "prefab": "lupuleixite_2", + "rarity_bg": "", + "ship_group": 49907, + "ship_l2d_id": [ + 4990711 + ], + "shop_id": 70813, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.92, + 1.91, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 328, + "voice_actor_2": -1 + }, + "499080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Destroyer - Felix Schultz.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 499080, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Felix Schultz", + "painting": "feilikesishuerci", + "prefab": "feilikesishuerci", + "rarity_bg": "", + "ship_group": 49908, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 374, + "voice_actor_2": -1 + }, + "499081": { + "bg": "501", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 2.21, + 1.94, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "My, my. I'm quite surprised you're still able to stay awake. As expected of the Commander– even a dose of Felix Schultz's special concoction isn't enough to put you under... but that ends here. It's your fault for peeping on me slacking off in the first place, so be nice and obedient and succumb to me already~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 499081, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sweet, Sleepy \"Revenge\"", + "painting": "feilikesishuerci_2", + "prefab": "feilikesishuerci_2", + "rarity_bg": "", + "ship_group": 49908, + "ship_l2d_id": "", + "shop_id": 70958, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 374, + "voice_actor_2": -1 + }, + "499090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Heavy cruiser – Hindenburg.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 499090, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hindenburg", + "painting": "xingdengbao", + "prefab": "xingdengbao", + "rarity_bg": "", + "ship_group": 49909, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_xingdengbao", + [ + -183, + -1054, + 0 + ], + [ + 1.6 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -175, + -1049, + 0 + ], + [ + 1.08 + ] + ], + "tag": [], + "time": "", + "voice_actor": 372, + "voice_actor_2": -1 + }, + "499091": { + "bg": "501", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.08, + 0.9, + 0 + ] + ], + "cannon": [ + [ + 1.72, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "It's just the two of us now, Contract Binder. Come – play a game with me and immerse yourself in the pleasures this place offers. The loser of this game, of course, must accept a punishment tonight♡", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 499091, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Delirious Duel", + "painting": "xingdengbao_2", + "prefab": "xingdengbao_2", + "rarity_bg": "", + "ship_group": 49909, + "ship_l2d_id": [ + 49909101, + 49909102, + 49909103, + 49909104, + 49909105, + 49909106, + 49909107, + 49909108, + 49909109, + 49909110, + 49909111, + 49909112, + 49909113 + ], + "shop_id": 70959, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_xingdengbao", + [ + -183, + -1054, + 0 + ], + [ + 1.6 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -175, + -1049, + 0 + ], + [ + 1.08 + ] + ], + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 372, + "voice_actor_2": -1 + }, + "501010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.03, + 0.9, + 0 + ] + ], + "cannon": [ + [ + 0.02, + 0.9, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.03, + 1, + 0 + ] + ] + }, + "desc": "An Shan-class destroyer, No. 1 - Anshan (101)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 15, + "id": 501010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "An Shan", + "painting": "anshan", + "prefab": "anshan", + "rarity_bg": "", + "ship_group": 50101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 81, + "voice_actor_2": -1 + }, + "501012": { + "bg": "108", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.897, + 1.031, + 0 + ] + ], + "cannon": [ + [ + 0.942, + 0.862, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.798, + 0.792, + 0 + ] + ] + }, + "desc": "\"Boundless is the beauty of evening's glow, but alas––\" ...Oh, that doesn't have any special meaning, I've just been hanging around Hai Tien too much. (*whispers*) But, it's true... Our time together is far too short, just like the evening light...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 15, + "id": 501012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Setting Sun, Hearts as One", + "painting": "anshan_3", + "prefab": "anshan_3", + "rarity_bg": "", + "ship_group": 50101, + "ship_l2d_id": "", + "shop_id": 70665, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.488, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 81, + "voice_actor_2": -1 + }, + "501019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.06, + 1.22, + 0 + ] + ], + "cannon": [ + [ + 1.15, + 1.14, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 1.16, + 1.13, + 0 + ] + ] + }, + "desc": "An Shan, retrofitting complete! With this new power, Commander, I'll protect both you and my sisters! But first... Umm, I need to double-check how these missiles work...!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 15, + "id": 501019, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "An Shan (Retrofit)", + "painting": "anshan_g", + "prefab": "anshan_g", + "rarity_bg": "", + "ship_group": 50101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 81, + "voice_actor_2": -1 + }, + "501020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.03, + 0.88, + 0 + ] + ], + "cannon": [ + [ + 0.08, + 0.93, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.01, + 0.91, + 0 + ] + ] + }, + "desc": "An Shan-class destroyer No.2 - Fu Shun (102)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 15, + "id": 501020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fu Shun", + "painting": "fushun", + "prefab": "fushun", + "rarity_bg": "", + "ship_group": 50102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.83, + 4.55, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 81, + "voice_actor_2": -1 + }, + "501021": { + "bg": "165", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.03, + 0.88, + 0 + ] + ], + "cannon": [ + [ + 0.08, + 0.93, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.01, + 0.91, + 0 + ] + ] + }, + "desc": "Heh-hey! Just hooked us another baozi~! We're in for one heckuva haul today! ...Eh? Huh, Commander?! Th-this is, uhh... yeah, we're just playing a normal game... totally...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 15, + "id": 501021, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Unbreakable Baozi Heist", + "painting": "fushun_2", + "prefab": "fushun_2", + "rarity_bg": "", + "ship_group": 50102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.83, + 4.55, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 81, + "voice_actor_2": -1 + }, + "501030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.02, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 0.88, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.04, + 0 + ] + ], + "vicegun": [ + [ + 1.02, + 0.86, + 0 + ] + ] + }, + "desc": "An Shan-class destroyer No. 3 - Chang Chun (103)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 15, + "id": 501030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chang Chun", + "painting": "changchun", + "prefab": "changchun", + "rarity_bg": "", + "ship_group": 50103, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "501031": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 0.99, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.12, + 0 + ] + ], + "vicegun": [ + [ + 1.16, + 0.93, + 0 + ] + ] + }, + "desc": "Ta-da! My pajamas are finally finished! Now to snuggle up until I'm all warm! Eh~ Ehhh? But sis, I don't want to get out! Ack, did Tai Yuan purposely make this tail big and thick to make it easier for you?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 15, + "id": 501031, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Joy of Spring", + "painting": "changchun_2", + "prefab": "changchun_2", + "rarity_bg": "", + "ship_group": 50103, + "ship_l2d_id": "", + "shop_id": 70046, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "501032": { + "bg": "152", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 0.83, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.16, + 0.93, + 0 + ] + ] + }, + "desc": "Commander, hurry up and plug your ears! Th-this isn't a joke! Um... Seriously, that big ol' doozy over there is about to blow!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 15, + "id": 501032, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fortune Arrives in Red", + "painting": "changchun_3", + "prefab": "changchun_3", + "rarity_bg": "", + "ship_group": 50103, + "ship_l2d_id": "", + "shop_id": 70817, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "501039": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.04, + 1.187, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.052, + 0 + ] + ], + "torpedo": [ + [ + 0.261, + 0.102, + 0 + ] + ], + "vicegun": [ + [ + 1.098, + 0.93, + 0 + ] + ] + }, + "desc": "All done with my retrofit~ Now, time to test out my new toys... Err, I mean, time to test the firepower of my new armaments! Oh, watch your head, Commander! Wouldn't want one of the missiles to lock onto you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 15, + "id": 501039, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chang Chun (Retrofit)", + "painting": "changchun_g", + "prefab": "changchun_g", + "rarity_bg": "", + "ship_group": 50103, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.307, + 2.404, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "501040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.94, + 0.95, + 0 + ] + ], + "cannon": [ + [ + 0.98, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.93, + 0.95, + 0 + ] + ] + }, + "desc": "An Shan-class destroyer No. 4 - Tai Yuan (104)", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 15, + "id": 501040, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tai Yuan", + "painting": "taiyuan", + "prefab": "taiyuan", + "rarity_bg": "", + "ship_group": 50104, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "501041": { + "bg": "102", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.94, + 0.95, + 0 + ] + ], + "cannon": [ + [ + 0.98, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.93, + 0.95, + 0 + ] + ] + }, + "desc": "O-on behalf of the An Shan class, we wish a prosperous, happy, and healthy new year to Commander, and to everyone here at port... Umm... even though I made this outfit, I feel a bit embarrassed wearing it... Eh? It looks good on me? Um... th-thank you...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 15, + "id": 501041, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Golden Dragon's Festivities", + "painting": "taiyuan_2", + "prefab": "taiyuan_2", + "rarity_bg": "", + "ship_group": 50104, + "ship_l2d_id": "", + "shop_id": 70148, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "501049": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.486, + 3.24, + 0 + ] + ], + "cannon": [ + [ + 1.491, + 0.721, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.469, + 0.64, + 0 + ] + ] + }, + "desc": "Phew... Tai Yuan, retrofit complete. Thanks for supporting me this whole time, Commander. With this new equipment, I'll be able to get one step closer to catching up to my sisters.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 15, + "id": 501049, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tai Yuan (Retrofit)", + "painting": "taiyuan_g", + "prefab": "taiyuan_g", + "rarity_bg": "", + "ship_group": 50104, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.09, + 2.404, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "501050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.03, + 1.48, + 0 + ] + ], + "cannon": [ + [ + 2.02, + 1.52, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.98, + 1.17, + 0 + ] + ] + }, + "desc": "Vulcan Stettin 1,000-ton torpedo destroyer – Lung Wu.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 10, + "id": 501050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lung Wu", + "painting": "longwu", + "prefab": "longwu", + "rarity_bg": "", + "ship_group": 50105, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.13, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 396, + "voice_actor_2": -1 + }, + "501051": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.67, + 1.68, + 0 + ] + ], + "cannon": [ + [ + 1.66, + 1.05, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.73, + 1.04, + 0 + ] + ] + }, + "desc": "Happy New Year, Commander... Having that said, the others said they had a surprise for me, but then ended up banning me from the kitchen... I didn't do anything bad, did I? I'm real worried... Can't I at least take a look at what's going on there? Ugh... How about you go check it out in my stead? P-pretty please, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 10, + "id": 501051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 40, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ascendant Dragon's Spring Feast", + "painting": "longwu_2", + "prefab": "longwu_2", + "rarity_bg": "", + "ship_group": 50105, + "ship_l2d_id": [ + 50105101, + 50105102, + 50105103, + 50105104, + 50105105, + 50105106, + 50105107, + 50105108, + 50105109, + 50105110, + 50105111, + 50105112, + 50105113, + 50105114, + 50105115, + 50105116, + 50105117, + 50105118, + 50105119, + 50105120, + 50105121, + 50105122, + 50105123 + ], + "shop_id": 70966, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 396, + "voice_actor_2": -1 + }, + "501060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.14, + 2.08, + 0 + ] + ], + "cannon": [ + [ + 1.5, + 0.66, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.85, + 0.78, + 0 + ] + ] + }, + "desc": "Vulcan Stettin 1,000-ton torpedo destroyer – Hu Pen.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 10, + "id": 501060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hu Pen", + "painting": "huben", + "prefab": "huben", + "rarity_bg": "", + "ship_group": 50106, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.29, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 396, + "voice_actor_2": -1 + }, + "501061": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.04, + 1.84, + 0 + ] + ], + "cannon": [ + [ + 2.21, + 1.02, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.2, + 1.04, + 0 + ] + ] + }, + "desc": "Let's usher in the New Year with the sound of gongs and firecrackers~! Whaddya think? Lion dances are pretty awesome, aren't they? So, Commander, who's got more oomph in their dance steps? Me, or Lung Wu? C'mon, hurry up and decide~!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 10, + "id": 501061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prancing Tiger Welcomes the Spring", + "painting": "huben_2", + "prefab": "huben_2", + "rarity_bg": "", + "ship_group": 50106, + "ship_l2d_id": "", + "shop_id": 70967, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + 167, + -653, + 0 + ], + [ + 0.58 + ] + ], + "tag": [ + 4, + 6 + ], + "time": "", + "voice_actor": 396, + "voice_actor_2": -1 + }, + "501070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.47, + 0.89, + 0 + ] + ], + "cannon": [ + [ + 1.58, + 0.88, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.59, + 0.84, + 0 + ] + ] + }, + "desc": "Chang Feng-class destroyer – Fei Yuen.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 10, + "id": 501070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fei Yuen", + "painting": "feiyun", + "prefab": "feiyun", + "rarity_bg": "", + "ship_group": 50107, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.26, + 2.22, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 397, + "voice_actor_2": -1 + }, + "501071": { + "bg": "144", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.48, + 1.726, + 0 + ] + ], + "cannon": [ + [ + 1.495, + 1.096, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.521, + 1.093, + 0 + ] + ] + }, + "desc": "H-Happy New Year, Commander... Umm, uhh... C-could you please help me down first? ....Waah, I promise I won't have any more \"adventures\" in the kitchen...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 10, + "id": 501071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Flying Clouds, Flailing Pranks", + "painting": "feiyun_2", + "prefab": "feiyun_2", + "rarity_bg": "", + "ship_group": 50107, + "ship_l2d_id": "", + "shop_id": 70968, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.338, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 397, + "voice_actor_2": -1 + }, + "502010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.92, + 0.45, + 0 + ] + ], + "cannon": [ + [ + 0.92, + 0.45, + 0 + ] + ], + "torpedo": [ + [ + 0.28, + 0.04, + 0 + ] + ], + "vicegun": [ + [ + 0.92, + 0.45, + 0 + ] + ] + }, + "desc": "Cruiser, Yat Sen.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 9, + "id": 502010, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yat Sen", + "painting": "yixian", + "prefab": "yixian", + "rarity_bg": "", + "ship_group": 50201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 74, + "voice_actor_2": -1 + }, + "502011": { + "bg": "157", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.01, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.03, + 0 + ] + ], + "vicegun": [ + [ + 1.01, + 1, + 0 + ] + ] + }, + "desc": "I am truly honored to be able to share this wondrous scenery with you on such a festive occasion, Commander. Umm... I'm not just saying that out of courtesy. We rarely get opportunities like this, so I'm somewhat flattered...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 502011, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Paragon of Celestial Grace", + "painting": "yixian_2", + "prefab": "yixian_2", + "rarity_bg": "", + "ship_group": 50201, + "ship_l2d_id": "", + "shop_id": 70804, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_yixian_2", + [ + 147, + 329, + 0 + ], + [ + 1.47 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -98, + -874, + 0 + ], + [ + 2.5 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 74, + "voice_actor_2": -1 + }, + "502012": { + "bg": "157", + "bg_sp": "1101", + "bgm": "theme-yixian-soft-loop", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.01, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.03, + 0 + ] + ], + "vicegun": [ + [ + 1.01, + 1, + 0 + ] + ] + }, + "desc": "I am honored that you could make time in your busy schedule to accept my invitation... Hmm? There's no need to be so formal? Heehee. Well, the tea happens to be ready now, so please sit down next to me~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 9, + "id": 502012, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pristine Leaves, Rich Warmth", + "painting": "yixian_3", + "prefab": "yixian_3", + "rarity_bg": "", + "ship_group": 50201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 74, + "voice_actor_2": -1 + }, + "502018": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.097, + 0.961, + 0 + ] + ], + "cannon": [ + [ + 1.064, + 0.83, + 0 + ] + ], + "torpedo": [ + [ + 0.005, + 0.04, + 0 + ] + ], + "vicegun": [ + [ + 1.07, + 0.921, + 0 + ] + ] + }, + "desc": "Commander, thank you for waiting for me. Though I am unworthy of this honor, thank you so much...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 9, + "id": 502018, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Coronal Afterglow", + "painting": "yixian_h", + "prefab": "yixian_h", + "rarity_bg": "", + "ship_group": 50201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.946, + 4.368, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 74, + "voice_actor_2": -1 + }, + "502019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.58, + 1.15, + 0 + ] + ], + "cannon": [ + [ + 1.51, + 1.26, + 0 + ] + ], + "torpedo": [ + [ + 0.11, + 0.03, + 0 + ] + ], + "vicegun": [ + [ + 1.57, + 1.26, + 0 + ] + ] + }, + "desc": "There's no need to worry, Commander. I will be fine now. Please allow me to serve you once more in this new form.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 9, + "id": 502019, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yat Sen (Retrofit)", + "painting": "yixian_g", + "prefab": "yixian_g", + "rarity_bg": "", + "ship_group": 50201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.946, + 4.368, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 74, + "voice_actor_2": -1 + }, + "502020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.48, + 0.73, + 0 + ] + ], + "cannon": [ + [ + -0.48, + 0.73, + 0 + ] + ], + "torpedo": [ + [ + 0.31, + 0.34, + 0 + ] + ], + "vicegun": [ + [ + -0.48, + 0.73, + 0 + ] + ] + }, + "desc": "Ning Hai-class Light Cruiser, Ning Hai", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 15, + "id": 502020, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ning Hai", + "painting": "ninghai", + "prefab": "ninghai", + "rarity_bg": "", + "ship_group": 50202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.6, + 0.75, + -0.27 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.8, + 2.45, + -0.05 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 22, + "voice_actor_2": -1 + }, + "502021": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.22, + 0 + ] + ], + "cannon": [ + [ + 1.2, + 1.22, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.13 + ] + ], + "vicegun": [ + [ + 1.2, + 1.22, + 0 + ] + ] + }, + "desc": "Summer’s all about the beach! And the beach is all about good food! Commander, let’s find something delicious to eat!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 15, + "id": 502021, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Hunger", + "painting": "ninghai_2", + "prefab": "ninghai_2", + "rarity_bg": "", + "ship_group": 50202, + "ship_l2d_id": "", + "shop_id": 70016, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 22, + "voice_actor_2": -1 + }, + "502022": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.19, + 1.04, + 0 + ] + ], + "cannon": [ + [ + 0.19, + 1.04, + 0 + ] + ], + "torpedo": [ + [ + 0.06, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.19, + 1.04, + 0 + ] + ] + }, + "desc": "Happy Mid-Autumn Festival! I heard that if you pray to the moon today, you’ll become as pretty as the Goddess of the Moon! ...Eh? You’re gonna pray too?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 15, + "id": 502022, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Moon Palace Rabbit", + "painting": "ninghai_3", + "prefab": "ninghai_3", + "rarity_bg": "", + "ship_group": 50202, + "ship_l2d_id": "", + "shop_id": 70013, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.54, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 22, + "voice_actor_2": -1 + }, + "502023": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.074, + 1.019, + 0 + ] + ], + "cannon": [ + [ + 1.125, + 1.019, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + -0.012, + 0 + ] + ], + "vicegun": [ + [ + 1.058, + 0.986, + 0 + ] + ] + }, + "desc": "We haven't had to worry as much about things like food since we joined the fleet, but that doesn't mean we can just throw money around...! Anyway, I'm the older of the \"Dragon Sisters,\" Ning Hai! Great to be here!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 15, + "id": 502023, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "home": 4, + "login": 10.33 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 130, + -150, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dragon Sisters! -N", + "painting": "ninghai_4", + "prefab": "ninghai_4", + "rarity_bg": "", + "ship_group": 50202, + "ship_l2d_id": "", + "shop_id": 70262, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 43, + "voice_actor_2": -1 + }, + "502024": { + "bg": "129", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.22, + 0 + ] + ], + "cannon": [ + [ + 1.2, + 1.22, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.13 + ] + ], + "vicegun": [ + [ + 1.2, + 1.22, + 0 + ] + ] + }, + "desc": "Commander, what are you spacing out for? Over here! They say that you'll have good fortune if you give this thing a shake!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 15, + "id": 502024, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Springtime Sojourn", + "painting": "ninghai_5", + "prefab": "ninghai_5", + "rarity_bg": "", + "ship_group": 50202, + "ship_l2d_id": "", + "shop_id": 70289, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 43, + "voice_actor_2": -1 + }, + "502025": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.22, + 0 + ] + ], + "cannon": [ + [ + 1.2, + 1.22, + 0 + ] + ], + "torpedo": [ + [ + -0.015, + -0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.2, + 1.22, + 0 + ] + ] + }, + "desc": "Yat Sen said this look would be best for a party, but, is it really okay? I'm not used to having my hair down like this...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 15, + "id": 502025, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gorgeous Violet", + "painting": "ninghai_6", + "prefab": "ninghai_6", + "rarity_bg": "", + "ship_group": 50202, + "ship_l2d_id": "", + "shop_id": 70378, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 43, + "voice_actor_2": -1 + }, + "502026": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.152, + 1.061, + 0 + ] + ], + "cannon": [ + [ + 1.165, + 1.031, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.141, + 1.038, + 0 + ] + ] + }, + "desc": "Good boy. Chew thoroughly before you swallow. I never thought I'd help with a charity event for nature, but Da Bao's made a lot of new friends because of it. Keep up the good work, Commander and Ping!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 15, + "id": 502026, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Da Bao's Friend!", + "painting": "ninghai_7", + "prefab": "ninghai_7", + "rarity_bg": "", + "ship_group": 50202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 43, + "voice_actor_2": -1 + }, + "502029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.84, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 0.84, + 0.85, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.84, + 0.85, + 0 + ] + ] + }, + "desc": "Yes! … this feels good. Thank you, Commander. In order to live up to your expectations, from now on, I will be more serious around you, Commander. Hey, don't run!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 15, + "id": 502029, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ning Hai (Retrofit)", + "painting": "ninghai_g", + "prefab": "ninghai_g", + "rarity_bg": "", + "ship_group": 50202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 22, + "voice_actor_2": -1 + }, + "502030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.48, + 0.76, + 0 + ] + ], + "cannon": [ + [ + -0.48, + 0.76, + 0 + ] + ], + "torpedo": [ + [ + 0.28, + 0.36, + 0 + ] + ], + "vicegun": [ + [ + -0.48, + 0.76, + 0 + ] + ] + }, + "desc": "Ning Hai-class Light Cruser, Ping Hai", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 15, + "id": 502030, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ping Hai", + "painting": "pinghai", + "prefab": "pinghai", + "rarity_bg": "", + "ship_group": 50203, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.59, + 0.84, + -0.33 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.66, + 2.44, + -0.27 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 11, + "voice_actor_2": -1 + }, + "502031": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.88, + 0.71, + 0 + ] + ], + "cannon": [ + [ + 0.88, + 0.71, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + 0.88, + 0.71, + 0 + ] + ] + }, + "desc": "Compared to pork buns, shaved ice is tastier. Compared to shaved ice, fireworks are prettier. Compared to fireworks, what I care for the most is...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 15, + "id": 502031, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Vacation", + "painting": "pinghai_2", + "prefab": "pinghai_2", + "rarity_bg": "", + "ship_group": 50203, + "ship_l2d_id": "", + "shop_id": 70010, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 11, + "voice_actor_2": -1 + }, + "502032": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.994, + 0.814, + 0 + ] + ], + "cannon": [ + [ + 0.994, + 0.814, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.113, + 0 + ] + ], + "vicegun": [ + [ + 0.994, + 0.814, + 0 + ] + ] + }, + "desc": "Happy Mid-Autumn Festival, Commander! Mooncakes, pomegranates, and osmanthus cakes... what a wonderful holiday!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 15, + "id": 502032, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Osmanthus Moon Rabbit", + "painting": "pinghai_3", + "prefab": "pinghai_3", + "rarity_bg": "", + "ship_group": 50203, + "ship_l2d_id": "", + "shop_id": 70014, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.455, + 2.414, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 11, + "voice_actor_2": -1 + }, + "502033": { + "bg": "120", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.88, + 0.71, + 0 + ] + ], + "cannon": [ + [ + 0.88, + 0.71, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + 0.88, + 0.71, + 0 + ] + ] + }, + "desc": "Big sister says that even though we have some money now, we still have to save as much as we can. Um... Anyway, I'm the younger \"Dragon Sister,\" Ping Hai. Erm... I'm kind of hungry. Do you maybe have something to eat?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 15, + "id": 502033, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "home": 4, + "login": 10.33 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -130, + -150, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dragon Sisters! -P", + "painting": "pinghai_4", + "prefab": "pinghai_4", + "rarity_bg": "", + "ship_group": 50203, + "ship_l2d_id": "", + "shop_id": 70261, + "shop_type_id": 11, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 43, + "voice_actor_2": -1 + }, + "502034": { + "bg": "129", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.88, + 0.71, + 0 + ] + ], + "cannon": [ + [ + 0.88, + 0.71, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + 0.88, + 0.71, + 0 + ] + ] + }, + "desc": "The Sakura Empire has lots of delicious food that I've never tried before! Yeah! It's a great place!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 15, + "id": 502034, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -130, + -170, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Great Gourmet Expedition", + "painting": "pinghai_5", + "prefab": "pinghai_5", + "rarity_bg": "", + "ship_group": 50203, + "ship_l2d_id": "", + "shop_id": 70288, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 43, + "voice_actor_2": -1 + }, + "502035": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.249, + 1.178, + 0 + ] + ], + "cannon": [ + [ + 1.229, + 1.033, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + -0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.216, + 1.092, + 0 + ] + ] + }, + "desc": "There's always a lot of delicious food at these parties! But, my sister said I'm not allowed to have any cake until everyone's gotten their slice... Baobao, let's be on our best behavior!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 15, + "id": 502035, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "expedition": 0.5, + "home": 5.26, + "login": 11.27, + "mail": 0.5, + "main_1": 0, + "main_2": 0, + "main_3": 0, + "mission": 0.5, + "mission_complete": 0.5, + "propose": 1, + "touch": 0, + "touch2": 0 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 18, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Delicious Crimson", + "painting": "pinghai_6", + "prefab": "pinghai_6", + "rarity_bg": "", + "ship_group": 50203, + "ship_l2d_id": "", + "shop_id": 70370, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 43, + "voice_actor_2": -1 + }, + "502036": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.179, + 1.076, + 0 + ] + ], + "cannon": [ + [ + 1.159, + 1.033, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.159, + 1.067, + 0 + ] + ] + }, + "desc": "Cheese! That came out looking good! Hehehe~ I'm really glad to be a part of this charity event for nature, along with you and my sister! Baobao is really glad too!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 6, + "gyro": 0, + "hand_id": 15, + "id": 502036, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Baobao's Buddy!", + "painting": "pinghai_7", + "prefab": "pinghai_7", + "rarity_bg": "", + "ship_group": 50203, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.23, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 43, + "voice_actor_2": -1 + }, + "502039": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.84, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 0.84, + 0.85, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.84, + 0.85, + 0 + ] + ] + }, + "desc": "Hi~ya! Hmm... this feels... nothing special. Baobao looks happy though... Never mind, Commander, Ping Hai is hungry!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 15, + "id": 502039, + "illustrator": 5, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ping Hai (Retrofit)", + "painting": "pinghai_g", + "prefab": "pinghai_g", + "rarity_bg": "", + "ship_group": 50203, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 11, + "voice_actor_2": -1 + }, + "502040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.474, + 0.997, + 0 + ] + ], + "cannon": [ + [ + 1.497, + 1.009, + 0 + ] + ], + "torpedo": [ + [ + 0.007, + 0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.508, + 0.997, + 0 + ] + ] + }, + "desc": "Chao Ho-class protected cruiser – Ying Swei.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 15, + "id": 502040, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ying Swei", + "painting": "yingrui", + "prefab": "yingrui", + "rarity_bg": "", + "ship_group": 50204, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.439, + 2.547, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 260, + "voice_actor_2": -1 + }, + "502041": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.521, + 0.994, + 0 + ] + ], + "cannon": [ + [ + 1.558, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0.008, + -0.039, + 0 + ] + ], + "vicegun": [ + [ + 1.543, + 0.994, + 0 + ] + ] + }, + "desc": "Happy New Year, Commander. I've come to deliver you blessings for this coming year... Next, you're going to ask for a red envelope, right? Hehe, just teasing~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 15, + "id": 502041, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Snowy Pine's Warmth", + "painting": "yingrui_2", + "prefab": "yingrui_2", + "rarity_bg": "", + "ship_group": 50204, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.516, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 260, + "voice_actor_2": -1 + }, + "502042": { + "bg": "157", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.521, + 0.994, + 0 + ] + ], + "cannon": [ + [ + 1.558, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0.008, + -0.039, + 0 + ] + ], + "vicegun": [ + [ + 1.543, + 0.994, + 0 + ] + ] + }, + "desc": "Commander, Happy New Year! Chao Ho and I are preparing for this year's Spring Festival, and as you can see... we're in the middle of a little \"intermission.\" Hehe, don't worry, there's nothing you need to help out with. Just take a seat over there and enjoy the show~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 15, + "id": 502042, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 180, + -20, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Frolicking Flowers, Verse I", + "painting": "yingrui_3", + "prefab": "yingrui_3", + "rarity_bg": "", + "ship_group": 50204, + "ship_l2d_id": "", + "shop_id": 70810, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.516, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 260, + "voice_actor_2": -1 + }, + "502050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.552, + 1.002, + 0 + ] + ], + "cannon": [ + [ + 1.523, + 0.985, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0.006, + 0 + ] + ], + "vicegun": [ + [ + 1.546, + 0.996, + 0 + ] + ] + }, + "desc": "Chao Ho-class protected cruiser – Chao Ho.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 15, + "id": 502050, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chao Ho", + "painting": "zhaohe", + "prefab": "zhaohe", + "rarity_bg": "", + "ship_group": 50205, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.469, + 2.525, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 260, + "voice_actor_2": -1 + }, + "502051": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.68, + 1.002, + 0 + ] + ], + "cannon": [ + [ + 1.701, + 0.987, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + -0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.672, + 1.002, + 0 + ] + ] + }, + "desc": "Happy New Year, Commander! This red envelope is my gift to you... after all, that's my responsibility as a big sister! Anyway, hurry up and take it!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 15, + "id": 502051, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Plum Blossom's Illumination", + "painting": "zhaohe_2", + "prefab": "zhaohe_2", + "rarity_bg": "", + "ship_group": 50205, + "ship_l2d_id": "", + "shop_id": 70499, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.393, + 2.452, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 260, + "voice_actor_2": -1 + }, + "502052": { + "bg": "157", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.33, + 1.37, + 0 + ] + ], + "cannon": [ + [ + 1.21, + 1.11, + 0 + ] + ], + "plane": [ + [ + 1.28, + 1.43, + 0 + ] + ], + "vicegun": [ + [ + 1.19, + 1.11, + 0 + ] + ] + }, + "desc": "Happy... New Year... Commander... Gah, this isn't the time for pleasantries! And you, help me catch the dumb fluffball that ran off with our ornaments! Jeez, why is this happening when I'm in the middle of getting ready for the Spring Festival?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 15, + "id": 502052, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -20, + 20 + ], + "ParamAngleY": [ + -15, + 15 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 390, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Frolicking Flowers, Verse II", + "painting": "zhaohe_3", + "prefab": "zhaohe_3", + "rarity_bg": "", + "ship_group": 50205, + "ship_l2d_id": [ + 5020521 + ], + "shop_id": 70811, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 260, + "voice_actor_2": -1 + }, + "502070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.215, + 1.206, + 0 + ] + ], + "cannon": [ + [ + 1.071, + 0.994, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.943, + 0.969, + 0 + ] + ] + }, + "desc": "Hai Tien-class protected cruiser – Hai Tien.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 15, + "id": 502070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hai Tien", + "painting": "haitian", + "prefab": "haitian", + "rarity_bg": "", + "ship_group": 50207, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.469, + 2.383, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 301, + "voice_actor_2": -1 + }, + "502071": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.091, + 1.1, + 0 + ] + ], + "cannon": [ + [ + 1.195, + 1.038, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.094, + 1.023, + 0 + ] + ] + }, + "desc": "What a serendipitous meeting this is, Commander. I was simply searching for a place where I could leisurely enjoy my poetry manuscript. Since fate has brought both of us here, why don't we accompany each other for a while?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 15, + "id": 502071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Verse-Weaver at the Water's Edge", + "painting": "haitian_2", + "prefab": "haitian_2", + "rarity_bg": "", + "ship_group": 50207, + "ship_l2d_id": "", + "shop_id": 70648, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.487, + 2.392, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 301, + "voice_actor_2": -1 + }, + "502072": { + "bg": "152", + "bg_sp": "", + "bgm": "theme-haitian-soft-loop", + "bound_bone": { + "antiaircraft": [ + [ + 1.091, + 1.1, + 0 + ] + ], + "cannon": [ + [ + 1.195, + 1.038, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.094, + 1.023, + 0 + ] + ] + }, + "desc": "Through dance of gossamer silk, the apsaras' grace soars... Oh, I'm simply reciting something I just happened to pick up on. What do you think, Commander? If I've captured your attention, I suppose this was worth our while~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 15, + "id": 502072, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Soaring Apsaras", + "painting": "haitian_3", + "prefab": "haitian_3", + "rarity_bg": "", + "ship_group": 50207, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.487, + 2.392, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4, + 5 + ], + "time": "", + "voice_actor": 301, + "voice_actor_2": -1 + }, + "502073": { + "bg": "174", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.091, + 1.1, + 0 + ] + ], + "cannon": [ + [ + 1.195, + 1.038, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.094, + 1.023, + 0 + ] + ] + }, + "desc": "Sorry to keep you waiting. It took quite some time to prepare my dress as well as this lantern... Yes, when you said we would go on a \"night stroll,\" I made some preparations in accordance to what my ancestors once did. Now then, shall we set off?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 15, + "id": 502073, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Autumn Night of Wandering Spirits", + "painting": "haitian_4", + "prefab": "haitian_4", + "rarity_bg": "", + "ship_group": 50207, + "ship_l2d_id": "", + "shop_id": 70925, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.487, + 2.392, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 301, + "voice_actor_2": -1 + }, + "502080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.188, + 1.241, + 0 + ] + ], + "cannon": [ + [ + 1.257, + 1.074, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.094, + 1.111, + 0 + ] + ] + }, + "desc": "Hai Tien-class protected cruiser – Hai Chi.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 15, + "id": 502080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hai Chi", + "painting": "haiqi", + "prefab": "haiqi", + "rarity_bg": "", + "ship_group": 50208, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.436, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 301, + "voice_actor_2": -1 + }, + "502081": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.047, + 1.144, + 0 + ] + ], + "cannon": [ + [ + 1.221, + 1.083, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.067, + 1.12, + 0 + ] + ] + }, + "desc": "Look, Commander! I've become a goddess from the Dragon Empery's folklore! Hehehe! Let me perform for you a song and dance number I just learned!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 15, + "id": 502081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Dance Among the Lotuses", + "painting": "haiqi_2", + "prefab": "haiqi_2", + "rarity_bg": "", + "ship_group": 50208, + "ship_l2d_id": "", + "shop_id": 70649, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.478, + 2.481, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 301, + "voice_actor_2": -1 + }, + "502090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.98, + 1.79, + 0 + ] + ], + "cannon": [ + [ + 2.34, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.35, + 0.87, + 0 + ] + ] + }, + "desc": "CNT Shipyard 1,800-ton small protected cruiser – Chi An.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 9, + "id": 502090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chi An", + "painting": "jian", + "prefab": "jian", + "rarity_bg": "", + "ship_group": 50209, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.29, + 2.41, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 395, + "voice_actor_2": -1 + }, + "502091": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.521, + 2.542, + 0 + ] + ], + "cannon": [ + [ + 1.991, + 1.293, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.97, + 1.295, + 0 + ] + ] + }, + "desc": "May blessings reach you this coming spring. Hm? My outfit? Heehee. Since the ever-so-busy Commander came to see me on this special occasion, I naturally had to put in some effort too– Now then, set aside all your worries, and come enjoy this wonderful evening with me~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 502091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lanternlit Stroll", + "painting": "jian_2", + "prefab": "jian_2", + "rarity_bg": "", + "ship_group": 50209, + "ship_l2d_id": "", + "shop_id": 70965, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.356, + 2.542, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 395, + "voice_actor_2": -1 + }, + "504010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 2.205, + 0.914, + 0 + ] + ], + "plane": [ + [ + 1.42, + 1.15, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2, + 0.97, + 0 + ] + ] + }, + "desc": "1913 Naval Expansion Project 26,000-ton battlecruiser – Huan Ch'ang.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 9, + "id": 504010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Huan Ch'ang", + "painting": "huanchang", + "prefab": "huanchang", + "rarity_bg": "", + "ship_group": 50401, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.14, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 394, + "voice_actor_2": -1 + }, + "504011": { + "bg": "157", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.6, + 1.45, + 0 + ] + ], + "cannon": [ + [ + 2.03, + 0.98, + 0 + ] + ], + "plane": [ + [ + 1.69, + 1.51, + 0 + ] + ], + "vicegun": [ + [ + 2, + 1, + 0 + ] + ] + }, + "desc": "Happy New Year, Commander. Hmm? I look a bit different from usual? Why of course, it's because it was chosen to suit your tastes by none other than Chi An. Even this mask is brand new. I look \"like a fairy from the sacred mountains,\" you say? I wonder... who taught you to say something like that?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 504011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dance Beneath the Moonlight", + "painting": "huanchang_2", + "prefab": "huanchang_2", + "rarity_bg": "", + "ship_group": 50401, + "ship_l2d_id": "", + "shop_id": 70964, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.13, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + 166, + -35, + 0 + ], + [ + 0.78 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 394, + "voice_actor_2": -1 + }, + "506010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.53, + 1.37, + 0 + ] + ], + "cannon": [ + [ + 1.49, + 1.11, + 0 + ] + ], + "plane": [ + [ + 1.49, + 1.43, + 0 + ] + ], + "vicegun": [ + [ + 1.34, + 1.11, + 0 + ] + ] + }, + "desc": "Seaplane carrier - Chen Hai.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 9, + "id": 506010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chen Hai", + "painting": "zhenhai", + "prefab": "zhenhai", + "rarity_bg": "", + "ship_group": 50601, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "506011": { + "bg": "152", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.117, + 1.273, + 0 + ] + ], + "cannon": [ + [ + 1.49, + 1.11, + 0 + ] + ], + "plane": [ + [ + 1.182, + 1.179, + 0 + ] + ], + "vicegun": [ + [ + 1.34, + 1.11, + 0 + ] + ] + }, + "desc": "You're here, Commander, just as promised. How do you like the atmosphere in here? Hehe, take a seat and enjoy the tea slowly. After all, we have plenty of time~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 506011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vestibule of Wonders", + "painting": "zhenhai_2", + "prefab": "zhenhai_2", + "rarity_bg": "", + "ship_group": 50601, + "ship_l2d_id": "", + "shop_id": 70647, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.514, + 2.328, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "506012": { + "bg": "161", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.117, + 1.273, + 0 + ] + ], + "cannon": [ + [ + 1.129, + 0.986, + 0 + ] + ], + "plane": [ + [ + 0.924, + 0.894, + 0 + ] + ], + "vicegun": [ + [ + 1.082, + 1.029, + 0 + ] + ] + }, + "desc": "Oh my, if it isn't the Commander... Have you also come to escape the heat? What a serendipitous meeting... Or, did you perhaps have some other goal in mind? Heehee...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 9, + "id": 506012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cerulean Ripples", + "painting": "zhenhai_3", + "prefab": "zhenhai_3", + "rarity_bg": "", + "ship_group": 50601, + "ship_l2d_id": "", + "shop_id": 70754, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.805, + 1.806, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "506019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 1.52, + 0 + ] + ], + "cannon": [ + [ + 1.49, + 1.11, + 0 + ] + ], + "plane": [ + [ + 1.24, + 1.54, + 0 + ] + ], + "vicegun": [ + [ + 1.34, + 1.11, + 0 + ] + ] + }, + "desc": "Just as promised, I present myself before you in a brand new form. Heehee... Since we have plenty of time, why don't you come take a seat, enjoy the fragrance of tea with me, and envision our future?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 9, + "id": 506019, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chen Hai (Retrofit)", + "painting": "zhenhai_g", + "prefab": "zhenhai_g", + "rarity_bg": "", + "ship_group": 50601, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.26, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 56, + "voice_actor_2": -1 + }, + "506020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.25, + 1.37, + 0 + ] + ], + "cannon": [ + [ + 1.35, + 1.11, + 0 + ] + ], + "plane": [ + [ + 1.06, + 1.24, + 0 + ] + ], + "vicegun": [ + [ + 1.34, + 1.11, + 0 + ] + ] + }, + "desc": "Seaplane carrier – Hwah Jah.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 9, + "id": 506020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hwah Jah", + "painting": "huajia", + "prefab": "huajia", + "rarity_bg": "", + "ship_group": 50602, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 354, + "voice_actor_2": -1 + }, + "506021": { + "bg": "152", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.117, + 1.273, + 0 + ] + ], + "cannon": [ + [ + 1.49, + 1.11, + 0 + ] + ], + "plane": [ + [ + 1.182, + 1.179, + 0 + ] + ], + "vicegun": [ + [ + 1.34, + 1.11, + 0 + ] + ] + }, + "desc": "I am Hwah Jah, now in zombie form. It is an honor to see you– hmm? What's wrong, Commander? Everyone else is getting dressed up for the occasion, so I figured I'd get in on the action too... Is there something wrong with that?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 506021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Festive Undead", + "painting": "huajia_2", + "prefab": "huajia_2", + "rarity_bg": "", + "ship_group": 50602, + "ship_l2d_id": "", + "shop_id": 70807, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.514, + 2.328, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_huajia_2", + [ + -5, + 266, + 0 + ], + [ + 1.416 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -50, + -307, + 0 + ], + [ + 0.67 + ] + ], + "tag": [ + 4, + 6 + ], + "time": "", + "voice_actor": 354, + "voice_actor_2": -1 + }, + "519010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.04, + 0.8800001, + 0 + ] + ], + "remote": [ + -50, + 0, + 0 + ], + "vicegun": [ + [ + 1.19, + 1.11, + 0 + ] + ] + }, + "desc": "Seaplane carrier – Ting An.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 9, + "id": 519010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ting An", + "painting": "dingan", + "prefab": "dingan", + "rarity_bg": "", + "ship_group": 51901, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.36, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 353, + "voice_actor_2": -1 + }, + "519011": { + "bg": "165", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.117, + 1.273, + 0 + ] + ], + "cannon": [ + [ + 1.49, + 1.11, + 0 + ] + ], + "remote": [ + -50, + 0, + 0 + ], + "vicegun": [ + [ + 1.34, + 1.11, + 0 + ] + ] + }, + "desc": "I see, so this is how you're supposed to knead dough... Hmm? Commander? As you can see, I'm currently trying to make baozi. Would you like to help out?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 519011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tender White Jade", + "painting": "dingan_2", + "prefab": "dingan_2", + "rarity_bg": "", + "ship_group": 51901, + "ship_l2d_id": "", + "shop_id": 70808, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.514, + 2.328, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 353, + "voice_actor_2": -1 + }, + "520000": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.03, + 0.9, + 0 + ] + ], + "cannon": [ + [ + 0.02, + 0.9, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.03, + 1, + 0 + ] + ] + }, + "desc": "鞍山级驱逐舰1号舰—鞍山,舷号101", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 15, + "id": 520000, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "导驱type20测试机", + "painting": "anshan", + "prefab": "anshan", + "rarity_bg": "", + "ship_group": 52000, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 81, + "voice_actor_2": -1 + }, + "521000": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.03, + 0.9, + 0 + ] + ], + "cannon": [ + [ + 0.02, + 0.9, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + 0.07, + 0 + ] + ], + "vicegun": [ + [ + 0.03, + 1, + 0 + ] + ] + }, + "desc": "鞍山级驱逐舰1号舰—鞍山,舷号101", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 15, + "id": 521000, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "导驱type21测试机", + "painting": "anshan", + "prefab": "anshan", + "rarity_bg": "", + "ship_group": 52100, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 81, + "voice_actor_2": -1 + }, + "599010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1, + 1.29, + 0 + ] + ], + "cannon": [ + [ + 1.15, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.95, + 0 + ] + ] + }, + "desc": "Light cruiser - Harbin.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 9, + "id": 599010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Harbin", + "painting": "haerbin", + "prefab": "haerbin", + "rarity_bg": "", + "ship_group": 59901, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.82, + 1.82, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 336, + "voice_actor_2": -1 + }, + "599011": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.29, + 0 + ] + ], + "cannon": [ + [ + 1.15, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.95, + 0 + ] + ] + }, + "desc": "Pheeew! I just love blue skies and a fair ocean breeze. Since you're already here, Commander, set aside all the boring paperwork and business stuff, and come enjoy the waves!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 9, + "id": 599011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Union Between Sea and Sky", + "painting": "haerbin_2", + "prefab": "haerbin_2", + "rarity_bg": "", + "ship_group": 59901, + "ship_l2d_id": "", + "shop_id": 70783, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.12, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 336, + "voice_actor_2": -1 + }, + "599018": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.274, + 1.637, + 0 + ] + ], + "cannon": [ + [ + 2.306, + 1.494, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Sorry to keep you waiting, Commander. So, how's my new look? It's got me a bit embarrassed... But, well, all that matters is that you like it.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 9, + "id": 599018, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Red Paeonia", + "painting": "haerbin_h", + "prefab": "haerbin_h", + "rarity_bg": "", + "ship_group": 59901, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 336, + "voice_actor_2": -1 + }, + "601020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.12, + 0.86, + 0 + ] + ], + "cannon": [ + [ + 0.47, + 0.82, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0.943, + 0 + ] + ] + }, + "desc": "Soldati-class destroyer – Carabiniere.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 601020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Carabiniere", + "painting": "longqibing", + "prefab": "longqibing", + "rarity_bg": "", + "ship_group": 60102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.525, + 2.237, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 202, + "voice_actor_2": -1 + }, + "601021": { + "bg": "105", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.99, + 0.76, + 0 + ] + ], + "cannon": [ + [ + 1, + 0.75, + 0 + ] + ], + "torpedo": [ + [ + 0.05, + 0.03, + 0 + ] + ], + "vicegun": [ + [ + 1.02, + 0.74, + 0 + ] + ] + }, + "desc": "Lady Veneto advised me to enjoy my time off by changing into something befitting the occasion... Um, Commander, I d-don't look strange, do I?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 601021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Refreshing Sundress", + "painting": "longqibing_2", + "prefab": "longqibing_2", + "rarity_bg": "", + "ship_group": 60102, + "ship_l2d_id": "", + "shop_id": 70232, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 202, + "voice_actor_2": -1 + }, + "601030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.574, + 1.018, + 0 + ] + ], + "cannon": [ + [ + 1.562, + 1.007, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.534, + 1.024, + 0 + ] + ] + }, + "desc": "Alfredo Oriani-class destroyer – Vincenzo Gioberti. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 601030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vincenzo Gioberti ", + "painting": "wenqinzuojiaobeidi", + "prefab": "wenqinzuojiaobeidi", + "rarity_bg": "", + "ship_group": 60103, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.525, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 262, + "voice_actor_2": -1 + }, + "601032": { + "bg": "146", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.23, + 1.3, + 0 + ] + ], + "cannon": [ + [ + 0.91, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.92, + 1.08, + 0 + ] + ] + }, + "desc": "\"To refuse a fair signorina's invitation would be most uncouth\"... Hehe~ Now, Commander, would you like to partake in some refreshments? Rest assured, they're all non-alcoholic♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 601032, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fair Lady's Invitation", + "painting": "wenqinzuojiaobeidi_3", + "prefab": "wenqinzuojiaobeidi_3", + "rarity_bg": "", + "ship_group": 60103, + "ship_l2d_id": "", + "shop_id": 70602, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.496, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 262, + "voice_actor_2": -1 + }, + "601040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.289, + 0.991, + 0 + ] + ], + "cannon": [ + [ + 1.284, + 1.007, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.276, + 0.99, + 0 + ] + ] + }, + "desc": "Maestrale-class destroyer – Maestrale.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 601040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Maestrale", + "painting": "xibeifeng", + "prefab": "xibeifeng", + "rarity_bg": "", + "ship_group": 60104, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.593, + 2.538, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 268, + "voice_actor_2": -1 + }, + "601041": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.331, + 1.009, + 0 + ] + ], + "cannon": [ + [ + 1.333, + 1.011, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.322, + 1.008, + 0 + ] + ] + }, + "desc": "It's way too crowded on the beach... I'd much rather be– Oh, Commander? Are you not good with crowded places either...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 601041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lonesome Beachfarer", + "painting": "xibeifeng_2", + "prefab": "xibeifeng_2", + "rarity_bg": "", + "ship_group": 60104, + "ship_l2d_id": "", + "shop_id": 70536, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.546, + 2.323, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 268, + "voice_actor_2": -1 + }, + "601050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.201, + 0.991, + 0 + ] + ], + "cannon": [ + [ + 1.169, + 1.007, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.153, + 0.99, + 0 + ] + ] + }, + "desc": "Maestrale-class destroyer – Libeccio.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 601050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Libeccio", + "painting": "xinanfeng", + "prefab": "xinanfeng", + "rarity_bg": "", + "ship_group": 60105, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.503, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 268, + "voice_actor_2": -1 + }, + "601051": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.27, + 0.996, + 0 + ] + ], + "cannon": [ + [ + 1.272, + 0.991, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.019, + 0 + ] + ], + "vicegun": [ + [ + 1.282, + 1.002, + 0 + ] + ] + }, + "desc": "Libeccio's heading towards the sea! Commander, let's go to where all the excitement is!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 601051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beachbound Southwestern Wind!", + "painting": "xinanfeng_2", + "prefab": "xinanfeng_2", + "rarity_bg": "", + "ship_group": 60105, + "ship_l2d_id": "", + "shop_id": 70535, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.498, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 268, + "voice_actor_2": -1 + }, + "601060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.999, + 1.018, + 0 + ] + ], + "cannon": [ + [ + 0.993, + 1.007, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.991, + 1.024, + 0 + ] + ] + }, + "desc": "Navigatori-class destroyer – Nicoloso da Recco.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 601060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nicoloso da Recco", + "painting": "daleike", + "prefab": "daleike", + "rarity_bg": "", + "ship_group": 60106, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.525, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 269, + "voice_actor_2": -1 + }, + "601061": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.992, + 1.02, + 0 + ] + ], + "cannon": [ + [ + 1.007, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.019, + 0 + ] + ], + "vicegun": [ + [ + 1, + 1.009, + 0 + ] + ] + }, + "desc": "I know this one! It's that Sakura Empire watermelon-smashing game! Just put the melon over there, Commander! ...Relax, it'll be fine! Have some faith in my navigator's intuition! Ready? Then let's go!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 601061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "To a Smashing Voyage!", + "painting": "daleike_2", + "prefab": "daleike_2", + "rarity_bg": "", + "ship_group": 60106, + "ship_l2d_id": "", + "shop_id": 70539, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.498, + 2.44, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 269, + "voice_actor_2": -1 + }, + "601070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.04, + 1.04, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.02, + 1.04, + 0 + ] + ] + }, + "desc": "Capitani Romani-class ship – Pompeo Magno.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 601070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pompeo Magno", + "painting": "pangpeimagenuo", + "prefab": "pangpeimagenuo", + "rarity_bg": "", + "ship_group": 60107, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 308, + "voice_actor_2": -1 + }, + "601071": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.999, + 1.018, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 1.12, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.99, + 0.98, + 0 + ] + ] + }, + "desc": "*yawn*... Nothing's impossible when you've got Captain Pompey... Hmm? Commander? Wait, I fell asleep? Seems I did... Drat, I forgot what I even came here for...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 601071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Quaver Daydream", + "painting": "pangpeimagenuo_2", + "prefab": "pangpeimagenuo_2", + "rarity_bg": "", + "ship_group": 60107, + "ship_l2d_id": "", + "shop_id": 70676, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 308, + "voice_actor_2": -1 + }, + "601080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.342, + 1.25, + 0 + ] + ], + "cannon": [ + [ + 0.847, + 0.864, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.865, + 0.872, + 0 + ] + ] + }, + "desc": "Oriani-class destroyer - Alfredo Oriani.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 601080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Alfredo Oriani", + "painting": "aerfuleiduo", + "prefab": "aerfuleiduo", + "rarity_bg": "", + "ship_group": 60108, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.776, + 2.067, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 334, + "voice_actor_2": -1 + }, + "601081": { + "bg": "155", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.159, + 1.346, + 0 + ] + ], + "cannon": [ + [ + 0.862, + 0.617, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.017, + 0 + ] + ], + "vicegun": [ + [ + 0.84, + 0.552, + 0 + ] + ] + }, + "desc": "Found you, Commander! How would you grade this outfit of mine? ...No, no, I wasn't asking if it looked cute or pretty, I wanted to know if I was wearing it right in the first place! You know what though, I think I'll take those compliments~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 601081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vivacious Vivace", + "painting": "aerfuleiduo_2", + "prefab": "aerfuleiduo_2", + "rarity_bg": "", + "ship_group": 60108, + "ship_l2d_id": "", + "shop_id": 70720, + "shop_type_id": 21, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.715, + 1.972, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 334, + "voice_actor_2": -1 + }, + "601090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.99, + 1.217, + 0 + ] + ], + "cannon": [ + [ + 1.106, + 0.869, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.095, + 0.885, + 0 + ] + ] + }, + "desc": "Navigatori-class destroyer – Emanuele Pessagno.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 601090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Emanuele Pessagno", + "painting": "aimannuaier", + "prefab": "aimannuaier", + "rarity_bg": "", + "ship_group": 60109, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.68, + 2.164, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 333, + "voice_actor_2": -1 + }, + "601091": { + "bg": "109", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.999, + 1.018, + 0 + ] + ], + "cannon": [ + [ + 1.096, + 0.947, + 0 + ] + ], + "torpedo": [ + [ + 0.014, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.102, + 0.939, + 0 + ] + ] + }, + "desc": "Eek! Wh-why are you guys tugging at my stockings... P-please stop that... C-Commander, please... Hurry and come help me! Waah...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 601091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Backstage Blunders", + "painting": "aimannuaier_2", + "prefab": "aimannuaier_2", + "rarity_bg": "", + "ship_group": 60109, + "ship_l2d_id": "", + "shop_id": 70719, + "shop_type_id": 21, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.653, + 2.176, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 333, + "voice_actor_2": -1 + }, + "601100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.999, + 1.018, + 0 + ] + ], + "cannon": [ + [ + 1.64, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.64, + 0.98, + 0 + ] + ] + }, + "desc": "Capitani Romani-class large destroyer – Attilio Regolo.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 601100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Attilio Regolo", + "painting": "adiliao", + "prefab": "adiliao", + "rarity_bg": "", + "ship_group": 60110, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 369, + "voice_actor_2": -1 + }, + "601101": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.999, + 1.018, + 0 + ] + ], + "cannon": [ + [ + 1.73, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.99, + 0.98, + 0 + ] + ] + }, + "desc": "Welcome to my humble abode! Bunnies, kitty-cats, and the Commander... The gang's all here! Today's tale is gonna be a wild one!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 601101, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Castle of Inspiration", + "painting": "adiliao_2", + "prefab": "adiliao_2", + "rarity_bg": "", + "ship_group": 60110, + "ship_l2d_id": "", + "shop_id": 70864, + "shop_type_id": 23, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 369, + "voice_actor_2": -1 + }, + "602010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.999, + 1.018, + 0 + ] + ], + "cannon": [ + [ + 1.004, + 1.007, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.016, + 1.024, + 0 + ] + ] + }, + "desc": "Duca degli Abruzzi-class light cruiser – Luigi di Savoia Duca degli Abruzzi.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 602010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Duca degli Abruzzi", + "painting": "abuluqi", + "prefab": "abuluqi", + "rarity_bg": "", + "ship_group": 60201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.525, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 270, + "voice_actor_2": -1 + }, + "602011": { + "bg": "133", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.991, + 1.013, + 0 + ] + ], + "cannon": [ + [ + 0.996, + 0.992, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.019, + 0 + ] + ], + "vicegun": [ + [ + 0.989, + 1.008, + 0 + ] + ] + }, + "desc": "Good evening, Commander. Here to unwind after a day's work, I take it? Even dignitaries desire a bit of luxury sometimes. Hahaha.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 602011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lustrous Onyx Sirenetta", + "painting": "abuluqi_2", + "prefab": "abuluqi_2", + "rarity_bg": "", + "ship_group": 60201, + "ship_l2d_id": "", + "shop_id": 70530, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.526, + 2.461, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 270, + "voice_actor_2": -1 + }, + "602020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.11, + 1.31, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.15, + 1.07, + 0 + ] + ] + }, + "desc": "Duca degli Abruzzi-class light cruiser – Giuseppe Garibaldi.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 602020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Giuseppe Garibaldi", + "painting": "zhusaipei", + "prefab": "zhusaipei", + "rarity_bg": "", + "ship_group": 60202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.81, + 2.09, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 286, + "voice_actor_2": -1 + }, + "602021": { + "bg": "159", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.999, + 1.001, + 0 + ] + ], + "cannon": [ + [ + 1.004, + 0.957, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.025, + 0 + ] + ], + "vicegun": [ + [ + 1.016, + 0.966, + 0 + ] + ] + }, + "desc": "I am the evil swan Odile! Where oh where is my prince? ...Oh, it's you, Commander. My lines aside, pretty good performance, right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 602021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Noble Ivory Plumes", + "painting": "zhusaipei_2", + "prefab": "zhusaipei_2", + "rarity_bg": "", + "ship_group": 60202, + "ship_l2d_id": "", + "shop_id": 70717, + "shop_type_id": 21, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.908, + 1.813, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 286, + "voice_actor_2": -1 + }, + "603010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.4, + 0.57, + 0 + ] + ], + "cannon": [ + [ + 1.15, + 0.9, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + 0.04, + 0 + ] + ], + "vicegun": [ + [ + 1.34, + 0.73, + 0 + ] + ] + }, + "desc": "Trento-class heavy cruiser – Trento.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 603010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Trento", + "painting": "teluntuo", + "prefab": "teluntuo", + "rarity_bg": "", + "ship_group": 60301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.12, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 224, + "voice_actor_2": -1 + }, + "603011": { + "bg": "106", + "bg_sp": "1103", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.983, + 0.826, + 0 + ] + ], + "cannon": [ + [ + 1.992, + 0.767, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.019, + 0 + ] + ], + "vicegun": [ + [ + 1.974, + 0.696, + 0 + ] + ] + }, + "desc": "The summer's scorching heat is alleviated by the ocean~ Commander, why don't you set aside your worries and... cut loose a bit~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 603011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer's Hotness?", + "painting": "teluntuo_2", + "prefab": "teluntuo_2", + "rarity_bg": "", + "ship_group": 60301, + "ship_l2d_id": "", + "shop_id": 70231, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.498, + 1.99, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 224, + "voice_actor_2": -1 + }, + "603020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.13, + 0.826, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 0.73, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.03, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 0.73, + 0 + ] + ] + }, + "desc": "Zara-class heavy cruiser – Zara.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 603020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Zara", + "painting": "zhala", + "prefab": "zhala", + "rarity_bg": "", + "ship_group": 60302, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.67, + 2.13, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 146, + "voice_actor_2": -1 + }, + "603021": { + "bg": "117", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 0.69, + 0 + ] + ], + "cannon": [ + [ + 1.26, + 0.72, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.29, + 0.72, + 0 + ] + ] + }, + "desc": "Phew... It's a perfect day for swimming. Oh my, Commander, did you come to swim too? Or... perhaps you had something else in mind? Ehehe~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 603021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "expedition": 0.5, + "home": 0.5, + "login": 14.17, + "mail": 0.5, + "main_1": 0.5, + "main_2": 0.5, + "main_3": 0.5, + "mission": 0.5, + "mission_complete": 0.5, + "propose": 3, + "touch": 0.5, + "touch2": 0.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -22, + -79, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Poolside Coincidence", + "painting": "zhala_2", + "prefab": "zhala_2", + "rarity_bg": "", + "ship_group": 60302, + "ship_l2d_id": "", + "shop_id": 70229, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.12, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 146, + "voice_actor_2": -1 + }, + "603030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.463, + 0.927, + 0 + ] + ], + "cannon": [ + [ + 1.482, + 0.941, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + -0.007, + 0 + ] + ], + "vicegun": [ + [ + 1.449, + 0.947, + 0 + ] + ] + }, + "desc": "Zara-class heavy cruiser – Pola. ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 603030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pola ", + "painting": "bola", + "prefab": "bola", + "rarity_bg": "", + "ship_group": 60303, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.564, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 146, + "voice_actor_2": -1 + }, + "603031": { + "bg": "117", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 0.997, + 0 + ] + ], + "cannon": [ + [ + 1.26, + 1.001, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.29, + 1.001, + 0 + ] + ] + }, + "desc": "Zara, how dastardly of you to spike the ball at such a time– Eek?! Commander?! Why are you in a place like that?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 603031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Seaside Coincidence", + "painting": "bola_2", + "prefab": "bola_2", + "rarity_bg": "", + "ship_group": 60303, + "ship_l2d_id": "", + "shop_id": 70528, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.507, + 2.381, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 146, + "voice_actor_2": -1 + }, + "603040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.23, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 1.15, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.07, + 1.04, + 0 + ] + ] + }, + "desc": "Trento-class heavy cruiser – Trieste.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 603040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Trieste", + "painting": "diliyasite", + "prefab": "diliyasite", + "rarity_bg": "", + "ship_group": 60304, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.58, + 2.44, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 224, + "voice_actor_2": -1 + }, + "603041": { + "bg": "147", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.99, + 1.06, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 1.12, + 0 + ] + ] + }, + "desc": "Oh my, are you done with your errands already? Surely, you didn't skip work just to eat lunch with... Ah, sorry for doubting you. Alright, let's go. Trento is waiting for us.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 603041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rooftop Lunch Break", + "painting": "diliyasite_2", + "prefab": "diliyasite_2", + "rarity_bg": "", + "ship_group": 60304, + "ship_l2d_id": "", + "shop_id": 70678, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 224, + "voice_actor_2": -1 + }, + "603042": { + "bg": "167", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.56, + 1.67, + 0 + ] + ], + "cannon": [ + [ + 1.62, + 1.64, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.54, + 1.71, + 0 + ] + ] + }, + "desc": "Whew... I'm getting dizzy... I'll rest in the breeze for a moment. You okay, Commander? Step out if it's too hot. See, someone will worry about you...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 603042, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Amore Termico", + "painting": "diliyasite_3", + "prefab": "diliyasite_3", + "rarity_bg": "", + "ship_group": 60304, + "ship_l2d_id": "", + "shop_id": 70835, + "shop_type_id": 22, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_diliyasite_3", + [ + 600, + 994, + 0 + ], + [ + 1.4 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 90, + -983, + 0 + ], + [ + 0.8 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 224, + "voice_actor_2": -1 + }, + "603050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.936, + 1.169, + 0 + ] + ], + "cannon": [ + [ + 0.981, + 0.793, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + -0.022, + 0 + ] + ], + "vicegun": [ + [ + 0.992, + 0.801, + 0 + ] + ] + }, + "desc": "Heavy cruiser – Bolzano.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 603050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bolzano", + "painting": "boerzhanuo", + "prefab": "boerzhanuo", + "rarity_bg": "", + "ship_group": 60305, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.82, + 1.745, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 335, + "voice_actor_2": -1 + }, + "603051": { + "bg": "159", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 1.6, + 0 + ] + ], + "cannon": [ + [ + 1.01, + 0.78, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + -0.012, + 0 + ] + ], + "vicegun": [ + [ + 1, + 0.79, + 0 + ] + ] + }, + "desc": "I've never had a knack for dancing or exercise unlike Zara and her sisters... but if asked, I will dance as best as I can! Please keep your eyes on me, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 603051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Flutter in the Moment", + "painting": "boerzhanuo_2", + "prefab": "boerzhanuo_2", + "rarity_bg": "", + "ship_group": 60305, + "ship_l2d_id": "", + "shop_id": 70721, + "shop_type_id": 21, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.757, + 1.965, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 335, + "voice_actor_2": -1 + }, + "603052": { + "bg": "164", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.936, + 1.169, + 0 + ] + ], + "cannon": [ + [ + 0.981, + 0.793, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + -0.022, + 0 + ] + ], + "vicegun": [ + [ + 0.992, + 0.801, + 0 + ] + ] + }, + "desc": "So... The premise is that you and I were shipwrecked and ended up on a desert island... Is that right, Commander? I see... But if we weren't actually shipwrecked... what is this treasure, then?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 603052, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tempting Treasure", + "painting": "boerzhanuo_3", + "prefab": "boerzhanuo_3", + "rarity_bg": "", + "ship_group": 60305, + "ship_l2d_id": "", + "shop_id": 70788, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.11, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 335, + "voice_actor_2": -1 + }, + "603060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.13, + 1.09, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 1.09, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 1.09, + 0 + ] + ] + }, + "desc": "Zara-class heavy cruiser – Gorizia.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 603060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gorizia", + "painting": "geliqiya", + "prefab": "geliqiya", + "rarity_bg": "", + "ship_group": 60306, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.12, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 368, + "voice_actor_2": -1 + }, + "603061": { + "bg": "169", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.26, + 0.69, + 0 + ] + ], + "cannon": [ + [ + 1.26, + 0.72, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.29, + 0.72, + 0 + ] + ] + }, + "desc": "These stockings are so annoying to wear... Mmrgh... *sigh*. You can't give up already, Gorizia. If you want the Commander's attention... this is what you have to do!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 603061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 30, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Unrequited Office Love?", + "painting": "geliqiya_2", + "prefab": "geliqiya_2", + "rarity_bg": "", + "ship_group": 60306, + "ship_l2d_id": [ + 6030611, + 6030613, + 6030614 + ], + "shop_id": 70861, + "shop_type_id": 23, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.12, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 368, + "voice_actor_2": -1 + }, + "605010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.006, + 0.986, + 0 + ] + ], + "cannon": [ + [ + 2.002, + 1.011, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.011, + 1.019, + 0 + ] + ] + }, + "desc": "Vittorio Veneto-class battleship – Vittorio Veneto.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 605010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vittorio Veneto", + "painting": "weineituo", + "prefab": "weineituo", + "rarity_bg": "", + "ship_group": 60501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.483, + 2.531, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 192, + "voice_actor_2": -1 + }, + "605011": { + "bg": "106", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.468, + 1.008, + 0 + ] + ], + "cannon": [ + [ + 1.442, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + 0.008, + 0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.465, + 0.999, + 0 + ] + ] + }, + "desc": "Nngh, haah... It's awfully sunny today... How long was I asleep, Commander? Oh, it's already lunchtime? In that case, I'll get started on some food. Would you like something as well?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 605011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 70, + 20, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Flower of La Spezia", + "painting": "weineituo_2", + "prefab": "weineituo_2", + "rarity_bg": "", + "ship_group": 60501, + "ship_l2d_id": "", + "shop_id": 70529, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.63, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 192, + "voice_actor_2": -1 + }, + "605020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.33, + 1.09, + 0 + ] + ], + "cannon": [ + [ + 1.32, + 1.18, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.29, + 1.11, + 0 + ] + ] + }, + "desc": "Vittorio Veneto-class battleship – Littorio.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 605020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Littorio", + "painting": "lituoliao", + "prefab": "lituoliao", + "rarity_bg": "", + "ship_group": 60502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 142, + "voice_actor_2": -1 + }, + "605021": { + "bg": "106", + "bg_sp": "1103", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.28, + 0.82, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 0.84, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.21, + 0.77, + 0 + ] + ] + }, + "desc": "A visit to the beach with me? Then you must try your hardest to stand out. Otherwise the eyes of the world will be on me alone.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 605021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Glory of Naples", + "painting": "lituoliao_2", + "prefab": "lituoliao_2", + "rarity_bg": "", + "ship_group": 60502, + "ship_l2d_id": "", + "shop_id": 70228, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.07, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 142, + "voice_actor_2": -1 + }, + "605022": { + "bg": "136", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.617, + 0.892, + 0 + ] + ], + "cannon": [ + [ + 1.569, + 1.083, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.645, + 1.067, + 0 + ] + ] + }, + "desc": "Welcome to Littorio's personal suite. Are you here to issue me a challenge of who can romance the most girls? Hahahah, I'm joking of course! There'd be no fun in a game I would win every single time.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 605022, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Calabria Aurea", + "painting": "lituoliao_3", + "prefab": "lituoliao_3", + "rarity_bg": "", + "ship_group": 60502, + "ship_l2d_id": "", + "shop_id": 70373, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.498, + 2.347, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 142, + "voice_actor_2": -1 + }, + "605023": { + "bg": "109", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.274, + 1.133, + 0 + ] + ], + "cannon": [ + [ + 1.476, + 1.004, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.372, + 1.004, + 0 + ] + ] + }, + "desc": "Hello there. You'll have to forgive the loungewear; I have scarcely any reason to wear extravagant clothes in my private space away from the public eye.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 605023, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lounging Emerald", + "painting": "lituoliao_4", + "prefab": "lituoliao_4", + "rarity_bg": "", + "ship_group": 60502, + "ship_l2d_id": "", + "shop_id": 70521, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.571, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 142, + "voice_actor_2": -1 + }, + "605024": { + "bg": "169", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.274, + 1.133, + 0 + ] + ], + "cannon": [ + [ + 1.476, + 1.004, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.372, + 1.004, + 0 + ] + ] + }, + "desc": "Talk about bad luck, we're caught in a rainstorm right now. Unfortunately, it seems we'll have to wait it out here, Commander.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 605024, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sitting in the Rain", + "painting": "lituoliao_5", + "prefab": "lituoliao_5", + "rarity_bg": "", + "ship_group": 60502, + "ship_l2d_id": "", + "shop_id": 70866, + "shop_type_id": 23, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.571, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 142, + "voice_actor_2": -1 + }, + "605030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.088, + 1.298, + 0 + ] + ], + "cannon": [ + [ + 1.067, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.042, + 0.768, + 0 + ] + ] + }, + "desc": "Vittorio Veneto-class battleship – Roma.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 605030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Roma", + "painting": "luoma", + "prefab": "luoma", + "rarity_bg": "", + "ship_group": 60503, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.768, + 1.527, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 331, + "voice_actor_2": -1 + }, + "605031": { + "bg": "159", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.161, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 1.058, + 1.003, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.992, + 0.779, + 0 + ] + ] + }, + "desc": "You seem to have known that I would be here. Then stay and spend the night with me. Just the two of us.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 605031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamAngleY": [ + -15, + 15 + ], + "ParamEyeBallX": [ + -0.5, + 0.5 + ], + "ParamEyeBallY": [ + -0.5, + 0.5 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 100, + -75, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "White Heron of Darkest Night", + "painting": "luoma_2", + "prefab": "luoma_2", + "rarity_bg": "", + "ship_group": 60503, + "ship_l2d_id": [ + 6050311 + ], + "shop_id": 70716, + "shop_type_id": 21, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.814, + 1.512, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 331, + "voice_actor_2": -1 + }, + "605050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.06, + 0.99, + 0 + ] + ], + "cannon": [ + [ + -0.01, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0.845, + 0 + ] + ] + }, + "desc": "Conte di Cavour-class battleship – Conte di Cavour.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 605050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Conte di Cavour", + "painting": "jiafuerbojue", + "prefab": "jiafuerbojue", + "rarity_bg": "", + "ship_group": 60505, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 201, + "voice_actor_2": -1 + }, + "605051": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.89, + 0.997, + 0 + ] + ], + "cannon": [ + [ + 0.927, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.019, + 0 + ] + ], + "vicegun": [ + [ + 0.921, + 1.009, + 0 + ] + ] + }, + "desc": "Commander, take this. Good, for the time being, you are a now a disciple under my command. It is time for us to mete out punishment to the unruly.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 605051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fierce Beachside Battle", + "painting": "jiafuerbojue_2", + "prefab": "jiafuerbojue_2", + "rarity_bg": "", + "ship_group": 60505, + "ship_l2d_id": "", + "shop_id": 70538, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.498, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 201, + "voice_actor_2": -1 + }, + "605060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.27, + 0.92, + 0 + ] + ], + "cannon": [ + [ + 1.19, + 0.95, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.29, + 0.92, + 0 + ] + ] + }, + "desc": "Conte di Cavour-class battleship – Giulio Cesare.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 605060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Giulio Cesare", + "painting": "kaisa", + "prefab": "kaisa", + "rarity_bg": "", + "ship_group": 60506, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.72, + 2.09, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 201, + "voice_actor_2": -1 + }, + "605061": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 0.87, + 0 + ] + ], + "cannon": [ + [ + 1.09, + 0.86, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 0.89, + 0 + ] + ] + }, + "desc": "Both exercise and war are at their core about willpower! Now, get ready, Commander! We're not finished until you're dripping with sweat!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 605061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fitness Master", + "painting": "kaisa_2", + "prefab": "kaisa_2", + "rarity_bg": "", + "ship_group": 60506, + "ship_l2d_id": "", + "shop_id": 70233, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 1.97, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 201, + "voice_actor_2": -1 + }, + "605062": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.465, + 1.014, + 0 + ] + ], + "cannon": [ + [ + 1.44, + 1.018, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.019, + 0 + ] + ], + "vicegun": [ + [ + 1.467, + 1.015, + 0 + ] + ] + }, + "desc": "Tired already? For goodness' sake, I thought you'd be more reliable than this. Don't go burning all your energy at once, we still have a whole day of recreation ahead of us.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 605062, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "High Tide Under the Sunlight", + "painting": "kaisa_3", + "prefab": "kaisa_3", + "rarity_bg": "", + "ship_group": 60506, + "ship_l2d_id": "", + "shop_id": 70537, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.487, + 2.423, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 201, + "voice_actor_2": -1 + }, + "605070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.19, + 1.36, + 0 + ] + ], + "cannon": [ + [ + 1.19, + 1.36, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.19, + 1.36, + 0 + ] + ] + }, + "desc": "Andrea Doria-class battleship – Andrea Doria.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 605070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Andrea Doria", + "painting": "andelieyaduoliya", + "prefab": "andelieyaduoliya", + "rarity_bg": "", + "ship_group": 60507, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.72, + 2.09, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 370, + "voice_actor_2": -1 + }, + "605071": { + "bg": "170", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.09, + 1.32, + 0 + ] + ], + "cannon": [ + [ + 1.09, + 1.32, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 1.32, + 0 + ] + ] + }, + "desc": "\"I'm your stewardess, Andrea Doria, here to ensure you have a pleasant flight\"... Did I sound natural, Commander? ...Still a bit on the stiff side, huh? *sigh*, this job really isn't easy for first-timers...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 605071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Have a Safe Flight", + "painting": "andelieyaduoliya_2", + "prefab": "andelieyaduoliya_2", + "rarity_bg": "", + "ship_group": 60507, + "ship_l2d_id": "", + "shop_id": 70867, + "shop_type_id": 23, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.72, + 2.09, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 370, + "voice_actor_2": -1 + }, + "607010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2.093, + 1, + 0 + ] + ], + "plane": [ + [ + 2.102, + 0.995, + 0 + ] + ] + }, + "desc": "Aircraft carrier – Aquila.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 607010, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Aquila", + "painting": "tianying", + "prefab": "tianying", + "rarity_bg": "", + "ship_group": 60701, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.515, + 2.648, + -1.89 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 126, + "voice_actor_2": -1 + }, + "607011": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.992, + 1.014, + 0 + ] + ], + "cannon": [ + [ + 1.024, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + -0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.012, + 1.021, + 0 + ] + ] + }, + "desc": "Good day, my Commander. We have the day off to enjoy the sea breeze and the ocean waves~ Hehe, would you like to help yourself to some fruit?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 607011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sardegnian Shallows and Sunshine", + "painting": "tianying_2", + "prefab": "tianying_2", + "rarity_bg": "", + "ship_group": 60701, + "ship_l2d_id": "", + "shop_id": 70531, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.583, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 126, + "voice_actor_2": -1 + }, + "607012": { + "bg": "146", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.992, + 1.26, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.012, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.012, + 0.94, + 0 + ] + ] + }, + "desc": "Oh, my Commander? I didn't expect to meet you here! Fortune smiles upon me today. Hehe~ If you have a minute to spare, would you care to join me for a cup of tea?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 607012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Sip of Sardegnian Elegance", + "painting": "tianying_3", + "prefab": "tianying_3", + "rarity_bg": "", + "ship_group": 60701, + "ship_l2d_id": "", + "shop_id": 70606, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.55, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 126, + "voice_actor_2": -1 + }, + "607020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.62, + 1.1, + 0 + ] + ], + "plane": [ + [ + 1.56, + 1.41, + 0 + ] + ] + }, + "desc": "Aircraft carrier – Impero.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 607020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Impero", + "painting": "diguo", + "prefab": "diguo", + "rarity_bg": "", + "ship_group": 60702, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.28, + -1.89 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 309, + "voice_actor_2": -1 + }, + "607021": { + "bg": "147", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.62, + 1.23, + 0 + ] + ], + "plane": [ + [ + 1.54, + 1.41, + 0 + ] + ] + }, + "desc": "Seems school uniforms are all the hype. Veneto picked this one out for me. What are you dressed as, Commander? A teacher? A classmate?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 607021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Languid Librarian", + "painting": "diguo_2", + "prefab": "diguo_2", + "rarity_bg": "", + "ship_group": 60702, + "ship_l2d_id": "", + "shop_id": 70677, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.31, + -1.89 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 309, + "voice_actor_2": -1 + }, + "608010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.393, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.452, + 0 + ] + ] + }, + "desc": "Brin-class submarine – Torricelli.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 608010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Torricelli", + "painting": "tuolichaili", + "prefab": "tuolichaili", + "rarity_bg": "", + "ship_group": 60801, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 272, + "voice_actor_2": -1 + }, + "608011": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.483, + 1.007, + 0 + ] + ], + "cannon": [ + [ + 1.531, + 1.007, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.436, + 0 + ] + ], + "vicegun": [ + [ + 1.5, + 1.014, + 0 + ] + ] + }, + "desc": "Hehe, hehehehe... We have this little c-corner of the beach all to ourselves... Now, what should we do first... Hehehehe...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 608011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shady Seaside", + "painting": "tuolichaili_2", + "prefab": "tuolichaili_2", + "rarity_bg": "", + "ship_group": 60801, + "ship_l2d_id": "", + "shop_id": 70534, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.556, + 2.471, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 272, + "voice_actor_2": -1 + }, + "608020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.03, + 0.612, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Marconi-class submarine – Leonardo da Vinci.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 608020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Leonardo da Vinci", + "painting": "dafenqi", + "prefab": "dafenqi", + "rarity_bg": "", + "ship_group": 60802, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.696, + 2.006, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 332, + "voice_actor_2": -1 + }, + "608021": { + "bg": "158", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.705, + 0.629, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Here to watch me rehearse just like these deer, Commander? Isn't it wonderful being surrounded by the beauty of nature? For a performance based on a fable such as this one, ambiance is key. Ehehe~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 608021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Riverside Pirouette", + "painting": "dafenqi_2", + "prefab": "dafenqi_2", + "rarity_bg": "", + "ship_group": 60802, + "ship_l2d_id": "", + "shop_id": 70718, + "shop_type_id": 21, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.729, + 2.024, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 332, + "voice_actor_2": -1 + }, + "699010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.417, + 0.993, + 0 + ] + ], + "cannon": [ + [ + 1.505, + 1.013, + 0 + ] + ], + "torpedo": [ + [ + 0.007, + -0.014, + 0 + ] + ], + "vicegun": [ + [ + 1.462, + 1.007, + 0 + ] + ] + }, + "desc": "Battleship – Marco Polo.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 699010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Marco Polo", + "painting": "makeboluo", + "prefab": "makeboluo", + "rarity_bg": "", + "ship_group": 69901, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.473, + 2.437, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 280, + "voice_actor_2": -1 + }, + "699011": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.45, + 1.39, + 0 + ] + ], + "cannon": [ + [ + 2.05, + 1.013, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.37, + 1.39, + 0 + ] + ] + }, + "desc": "Me? Serve as your maid? Oho! That's more like it, Commander! How magnificent and ambitious of you! ...Only temporarily? And you're content with that?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 699011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Queen of Hearts", + "painting": "makeboluo_2", + "prefab": "makeboluo_2", + "rarity_bg": "", + "ship_group": 69901, + "ship_l2d_id": "", + "shop_id": 70646, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.473, + 2.437, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 280, + "voice_actor_2": -1 + }, + "701020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.29, + 0.88, + 0 + ] + ], + "cannon": [ + [ + 1.289, + 0.93, + 0 + ] + ], + "torpedo": [ + [ + 0.009, + -0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.26, + 1.01, + 0 + ] + ] + }, + "desc": "Gnevny-class destroyer – Grozny.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 701020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Grozny", + "painting": "weiyan", + "prefab": "weiyan", + "rarity_bg": "", + "ship_group": 70102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.08, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 221, + "voice_actor_2": -1 + }, + "701021": { + "bg": "130", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.21, + 0.651, + 0 + ] + ], + "cannon": [ + [ + 1.26, + 0.675, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 1.216, + 0.637, + 0 + ] + ] + }, + "desc": "Comrade Commander, are you here to see my room? Hm? That Шутки isn't funny? Then how about... did my room come to see you, comrade Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 701021, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "home": 5.73, + "login": 9.83, + "main_1": 1.7 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + -53.3, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bad Bunny Behind Bars", + "painting": "weiyan_2", + "prefab": "weiyan_2", + "rarity_bg": "", + "ship_group": 70102, + "ship_l2d_id": "", + "shop_id": 70323, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.554, + 2.1, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 221, + "voice_actor_2": -1 + }, + "701022": { + "bg": "109", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.125, + 1.008, + 0 + ] + ], + "cannon": [ + [ + 1.131, + 1.001, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + 0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.14, + 1.002, + 0 + ] + ] + }, + "desc": "Hmm... If I tweak Królik around a bit like this... But, it'll probably be a problem if I don't finish this in one go... Guess I'll think about it while I eat. Mhm.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 701022, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bunny Remodeling Plan?", + "painting": "weiyan_3", + "prefab": "weiyan_3", + "rarity_bg": "", + "ship_group": 70102, + "ship_l2d_id": "", + "shop_id": 70515, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.295, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 221, + "voice_actor_2": -1 + }, + "701023": { + "bg": "154", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.136, + 0.889, + 0 + ] + ], + "cannon": [ + [ + 1.235, + 1.011, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.188, + 0.983, + 0 + ] + ] + }, + "desc": "Our shift starts now. Królik, Pirožkí, Manjuus – form up! Let us realize our Manjuu comrades' dreams!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 5, + "id": 701023, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shadowy Syndicate Showdown", + "painting": "weiyan_4", + "prefab": "weiyan_4", + "rarity_bg": "", + "ship_group": 70102, + "ship_l2d_id": "", + "shop_id": 70675, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.501, + 2.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 221, + "voice_actor_2": -1 + }, + "701024": { + "bg": "157", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 0.84, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.188, + 0.983, + 0 + ] + ] + }, + "desc": "*burp*... Now I think I get the appeal of tea. Why is the cup so small, though? Do you have a bigger one on hand, Comrade Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 5, + "id": 701024, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tea Party with Królik", + "painting": "weiyan_5", + "prefab": "weiyan_5", + "rarity_bg": "", + "ship_group": 70102, + "ship_l2d_id": "", + "shop_id": 70702, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 221, + "voice_actor_2": -1 + }, + "701025": { + "bg": "167", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 0.84, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.188, + 0.983, + 0 + ] + ] + }, + "desc": "Uughh... Ooohh... Królik is melting... *gasp*! I'm getting lightheaded... Comrade Commander, fetch me some ice...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 5, + "gyro": 0, + "hand_id": 5, + "id": 701025, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -10, + 10 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -150, + -160, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bunny in the Banya", + "painting": "weiyan_6", + "prefab": "weiyan_6", + "rarity_bg": "", + "ship_group": 70102, + "ship_l2d_id": "", + "shop_id": 70834, + "shop_type_id": 22, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 221, + "voice_actor_2": -1 + }, + "701030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.02, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 0.88, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.04, + 0 + ] + ], + "vicegun": [ + [ + 1.02, + 0.86, + 0 + ] + ] + }, + "desc": "Leningrad-class destroyer – Minsk.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 701030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Minsk", + "painting": "mingsike", + "prefab": "mingsike", + "rarity_bg": "", + "ship_group": 70103, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 228, + "voice_actor_2": -1 + }, + "701031": { + "bg": "130", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.164, + 1.081, + 0 + ] + ], + "cannon": [ + [ + 1.213, + 1.092, + 0 + ] + ], + "torpedo": [ + [ + -0.013, + -0.008, + 0 + ] + ], + "vicegun": [ + [ + 1.184, + 1.062, + 0 + ] + ] + }, + "desc": "You've violated the Minsk Protocol, comrade! Therefore, the sentence appropriate for you is imprisonment! Until when? Obviously, until your jailor is satisfied~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 701031, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Thunderous Jailor", + "painting": "mingsike_2", + "prefab": "mingsike_2", + "rarity_bg": "", + "ship_group": 70103, + "ship_l2d_id": "", + "shop_id": 70324, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.243, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 228, + "voice_actor_2": -1 + }, + "701040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.71, + 1.037, + 0 + ] + ], + "cannon": [ + [ + 1.73, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.7, + 1.094, + 0 + ] + ] + }, + "desc": "Tashkent-class destroyer – Tashkent.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 701040, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tashkent", + "painting": "tashigan", + "prefab": "tashigan", + "rarity_bg": "", + "ship_group": 70104, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.515, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 220, + "voice_actor_2": -1 + }, + "701041": { + "bg": "130", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 1.037, + 0 + ] + ], + "cannon": [ + [ + 1.149, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0.018, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.146, + 1.094, + 0 + ] + ] + }, + "desc": "...*Sigh*, I never thought I'd get captured by these little guys... Dear comrade, does Tashkent really have to play along with this?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 701041, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Bound Cruiser", + "painting": "tashigan_2", + "prefab": "tashigan_2", + "rarity_bg": "", + "ship_group": 70104, + "ship_l2d_id": "", + "shop_id": 70327, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.515, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 220, + "voice_actor_2": -1 + }, + "701042": { + "bg": "109", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.803, + 0.99, + 0 + ] + ], + "cannon": [ + [ + 1.794, + 0.991, + 0 + ] + ], + "torpedo": [ + [ + 0.018, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.791, + 1.007, + 0 + ] + ] + }, + "desc": "Urrk... Who dares disturb Tashkent's slumber? ...Oh, it's you, dear comrade? Um, in that case... I can always get more rest later. Is something the matter?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 701042, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Blue Snoozer", + "painting": "tashigan_3", + "prefab": "tashigan_3", + "rarity_bg": "", + "ship_group": 70104, + "ship_l2d_id": "", + "shop_id": 70517, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.406, + 2.497, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 220, + "voice_actor_2": -1 + }, + "701050": { + "bg": "140", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.046, + 1.155, + 0 + ] + ], + "cannon": [ + [ + 2.128, + 1.11, + 0 + ] + ], + "torpedo": [ + [ + 0.018, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.171, + 1.094, + 0 + ] + ] + }, + "desc": "How do you like my outfit, dear comrade? ...Is that so? After all of Tashkent's work to become an idol, that's how you react? Hmph. Just you wait. My next concert will rock your socks off.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 701050, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tashkent μ", + "painting": "tashigan_idol", + "prefab": "tashigan_idol", + "rarity_bg": "", + "ship_group": 70105, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.443, + 2.44, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 220, + "voice_actor_2": -1 + }, + "701060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.487, + 0.994, + 0 + ] + ], + "cannon": [ + [ + 1.516, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.535, + 1.01, + 0 + ] + ] + }, + "desc": "Gnevny-class destroyer - Stremitelny ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 701060, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Stremitelny ", + "painting": "shensu", + "prefab": "shensu", + "rarity_bg": "", + "ship_group": 70106, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.08, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 263, + "voice_actor_2": -1 + }, + "701061": { + "bg": "109", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.394, + 1.002, + 0 + ] + ], + "cannon": [ + [ + 1.439, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.416, + 1.01, + 0 + ] + ] + }, + "desc": "It sucks not being able to play in the snow... Oh well! I'll play some games instead! Commander, let's play something fun together!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 701061, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "No Snow No Life", + "painting": "shensu_2", + "prefab": "shensu_2", + "rarity_bg": "", + "ship_group": 70106, + "ship_l2d_id": "", + "shop_id": 70516, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.442, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 263, + "voice_actor_2": -1 + }, + "701070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.177, + 1.018, + 0 + ] + ], + "cannon": [ + [ + 1.168, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.169, + 1.01, + 0 + ] + ] + }, + "desc": "Gnevny-class destroyer - Stremitelny ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 701070, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gremyashchy", + "painting": "leiming", + "prefab": "leiming", + "rarity_bg": "", + "ship_group": 70107, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.251, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 264, + "voice_actor_2": -1 + }, + "701071": { + "bg": "109", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.003, + 0.994, + 0 + ] + ], + "cannon": [ + [ + 1.008, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0.008, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.004, + 1.01, + 0 + ] + ] + }, + "desc": "Wh-who gave you the right to just barge in? ...I did? Huh. Well, seeing as you're here, I guess we could read a book together. Mm, that's all.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 701071, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Daytime Delight is in a Book", + "painting": "leiming_2", + "prefab": "leiming_2", + "rarity_bg": "", + "ship_group": 70107, + "ship_l2d_id": "", + "shop_id": 70508, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.446, + 2.291, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 264, + "voice_actor_2": -1 + }, + "701080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.116, + 1.02, + 0 + ] + ], + "cannon": [ + [ + 1.115, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.129, + 1.01, + 0 + ] + ] + }, + "desc": "Gnevny-class destroyer—Gromky.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 701080, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gromky", + "painting": "hongliang", + "prefab": "hongliang", + "rarity_bg": "", + "ship_group": 70108, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.274, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 265, + "voice_actor_2": -1 + }, + "701081": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.001, + 0.994, + 0 + ] + ], + "cannon": [ + [ + 1.005, + 1.002, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1, + 1.01, + 0 + ] + ] + }, + "desc": "Comrade! The morning is already here! Look how high the sun is in the sky!! C'mon, a wonderful day is calling to us~!!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 701081, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Morning's Beckoning", + "painting": "hongliang_2", + "prefab": "hongliang_2", + "rarity_bg": "", + "ship_group": 70108, + "ship_l2d_id": "", + "shop_id": 70510, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.468, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 265, + "voice_actor_2": -1 + }, + "701090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.134, + 1.472, + 0 + ] + ], + "cannon": [ + [ + 1.305, + 1.182, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.21, + 1.209, + 0 + ] + ] + }, + "desc": "Project 7U-class destroyer – Soobrazitelny", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 701090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Soobrazitelny", + "painting": "lingmin", + "prefab": "lingmin", + "rarity_bg": "", + "ship_group": 70109, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.568, + 2.572, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 304, + "voice_actor_2": -1 + }, + "701091": { + "bg": "154", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.17, + 1.472, + 0 + ] + ], + "cannon": [ + [ + 1.224, + 1.101, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.156, + 1.1, + 0 + ] + ] + }, + "desc": "Yes, these data and results are quite interesting... Though they mean nothing to me! I am a genius mechanic, not an analyst! Ahh-ha-ha-haah!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 701091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Machinery of Life", + "painting": "lingmin_2", + "prefab": "lingmin_2", + "rarity_bg": "", + "ship_group": 70109, + "ship_l2d_id": "", + "shop_id": 70670, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.406, + 2.383, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 304, + "voice_actor_2": -1 + }, + "701100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.6, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 1.59, + 1.12, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.55, + 1.12, + 0 + ] + ] + }, + "desc": "Project 48-class destroyer – Kiev", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 701100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kiev", + "painting": "jifu", + "prefab": "jifu", + "rarity_bg": "", + "ship_group": 70110, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.515, + 2.256, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 305, + "voice_actor_2": -1 + }, + "701101": { + "bg": "154", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.503, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.523, + 1.166, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.522, + 1.103, + 0 + ] + ] + }, + "desc": "Seeing you here puts me at ease. I know this stakeout will go smoothly as long as you're here. Mhm, all is fine.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 701101, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Backstreet Silver Sonata", + "painting": "jifu_2", + "prefab": "jifu_2", + "rarity_bg": "", + "ship_group": 70110, + "ship_l2d_id": "", + "shop_id": 70668, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.487, + 2.322, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 305, + "voice_actor_2": -1 + }, + "701102": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.503, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.523, + 1.166, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.522, + 1.103, + 0 + ] + ] + }, + "desc": "Since you're a beginner at this, Commander, let me show you the ropes. Somehow... it feels like I skate better than usual when you're around. I'm pretty good at ice skating, aren't I? This... should be fine, right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 701102, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Víla of the Crystal Lake", + "painting": "jifu_3", + "prefab": "jifu_3", + "rarity_bg": "", + "ship_group": 70110, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 21, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.487, + 2.322, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 305, + "voice_actor_2": -1 + }, + "702010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.982, + 1.179, + 0 + ] + ], + "cannon": [ + [ + 0.968, + 0.931, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.085, + 0 + ] + ], + "vicegun": [ + [ + 0.986, + 1.013, + 0 + ] + ] + }, + "desc": "Pallada-class Light Cruiser, Avrora", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 702010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Avrora", + "painting": "afuleer", + "prefab": "afuleer", + "rarity_bg": "", + "ship_group": 70201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.498, + 0.298, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.453, + 0.524, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 22, + "voice_actor_2": -1 + }, + "702011": { + "bg": "130", + "bg_sp": "1100", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.064, + 1.048, + 0 + ] + ], + "cannon": [ + [ + 1.031, + 1.011, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + 0.016, + 0 + ] + ], + "vicegun": [ + [ + 1.031, + 1.05, + 0 + ] + ] + }, + "desc": "\"I am Avrora, the princess bound within this tower by a cruel fate... My beloved, please come for me soon...\"", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 702011, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shackled Saule", + "painting": "afuleer_2", + "prefab": "afuleer_2", + "rarity_bg": "", + "ship_group": 70201, + "ship_l2d_id": "", + "shop_id": 70322, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.498, + 2.041, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 22, + "voice_actor_2": -1 + }, + "702012": { + "bg": "154", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.901, + 1.179, + 0 + ] + ], + "cannon": [ + [ + 1.112, + 1.067, + 0 + ] + ], + "torpedo": [ + [ + 0.021, + 0.049, + 0 + ] + ], + "vicegun": [ + [ + 1.031, + 1.031, + 0 + ] + ] + }, + "desc": "\"Muahaha... Now, these streets belong to me...\" Sorry, I bit my tongue... Hmm, getting into this role is quite difficult for me after all.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 702012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Not Cut Out For This?", + "painting": "afuleer_3", + "prefab": "afuleer_3", + "rarity_bg": "", + "ship_group": 70201, + "ship_l2d_id": "", + "shop_id": 70674, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.471, + 2.233, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 22, + "voice_actor_2": -1 + }, + "702020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.402, + 0.95, + 0 + ] + ], + "cannon": [ + [ + 1.385, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + -0.007, + 0 + ] + ], + "vicegun": [ + [ + 1.392, + 0.95, + 0 + ] + ] + }, + "desc": "Bogatyr-class protected cruiser – Pamiat Merkuria.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 702020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pamiat' Merkuria", + "painting": "shuixingjinian", + "prefab": "shuixingjinian", + "rarity_bg": "", + "ship_group": 70202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.196, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 219, + "voice_actor_2": -1 + }, + "702021": { + "bg": "130", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.152, + 0.95, + 0 + ] + ], + "cannon": [ + [ + 1.038, + 1.026, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + 0.013, + 0 + ] + ], + "vicegun": [ + [ + 1.074, + 0.969, + 0 + ] + ] + }, + "desc": "What kinda exercise is this?! Nobody said I'd become a dang showpiece! Come on, get this thing off me, NOW!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 702021, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Caged Minx", + "painting": "shuixingjinian_2", + "prefab": "shuixingjinian_2", + "rarity_bg": "", + "ship_group": 70202, + "ship_l2d_id": "", + "shop_id": 70326, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.225, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 219, + "voice_actor_2": -1 + }, + "702022": { + "bg": "109", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.042, + 1.008, + 0 + ] + ], + "cannon": [ + [ + 1.038, + 1.004, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.03, + 0.998, + 0 + ] + ] + }, + "desc": "Mmmh~ I sure could get used to this life~ Oh, Commander, thanks for being my gofer~♪ Ah, you can leave the cherries right over here!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 702022, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sweet Cherry Memories", + "painting": "shuixingjinian_4", + "prefab": "shuixingjinian_4", + "rarity_bg": "", + "ship_group": 70202, + "ship_l2d_id": "", + "shop_id": 70513, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.388, + 2.455, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 219, + "voice_actor_2": -1 + }, + "702023": { + "bg": "105", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.042, + 1.008, + 0 + ] + ], + "cannon": [ + [ + 1.038, + 1.004, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.03, + 0.998, + 0 + ] + ] + }, + "desc": "Aaand send DM to Rossiya... Finally you showed up, Commander! So, where are you taking me, hmm?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 702023, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chic and Cheeky", + "painting": "shuixingjinian_3", + "prefab": "shuixingjinian_3", + "rarity_bg": "", + "ship_group": 70202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 219, + "voice_actor_2": -1 + }, + "702024": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.042, + 1.008, + 0 + ] + ], + "cannon": [ + [ + 1.038, + 1.004, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.03, + 0.998, + 0 + ] + ] + }, + "desc": "Happy Valentine's Day~♪ Did you come here to enjoy my chocolate? Then, try guessing where I hid my chocolate – if you get it right, I'll give it to you~♪ Is it here... or maybe over here? Ahahaha~♡", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 13, + "id": 702024, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mercurial Chocolate Love", + "painting": "shuixingjinian_5", + "prefab": "shuixingjinian_5", + "rarity_bg": "", + "ship_group": 70202, + "ship_l2d_id": "", + "shop_id": 70821, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 219, + "voice_actor_2": -1 + }, + "702029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.136, + 1.03, + 0 + ] + ], + "cannon": [ + [ + 1.138, + 1.013, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.157, + 1.024, + 0 + ] + ] + }, + "desc": "My retrofitting is done! Look forward to seeing how both my cuteness and combat potential have been upgraded!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 702029, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pamiat' Merkuria (Retrofit)", + "painting": "shuixingjinian_g", + "prefab": "shuixingjinian_g", + "rarity_bg": "", + "ship_group": 70202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.516, + 2.454, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 219, + "voice_actor_2": -1 + }, + "702030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.423, + 1.511, + 0 + ] + ], + "cannon": [ + [ + 1.451, + 1.429, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.467, + 1.436, + 0 + ] + ] + }, + "desc": "Chapayev-class cruiser – Chapayev.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 702030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chapayev", + "painting": "qiabayefu", + "prefab": "qiabayefu", + "rarity_bg": "", + "ship_group": 70203, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.513, + 2.157, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 223, + "voice_actor_2": -1 + }, + "702031": { + "bg": "130", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.942, + 0.95, + 0 + ] + ], + "cannon": [ + [ + 1.953, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0.016, + 0.032, + 0 + ] + ], + "vicegun": [ + [ + 1.961, + 0.95, + 0 + ] + ] + }, + "desc": "Commander, what's going on? Did I... do something wrong...? This was all just... meant to be an exercise, right?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 702031, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Captive Cavalier", + "painting": "qiabayefu_2", + "prefab": "qiabayefu_2", + "rarity_bg": "", + "ship_group": 70203, + "ship_l2d_id": "", + "shop_id": 70321, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.486, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 223, + "voice_actor_2": -1 + }, + "702032": { + "bg": "109", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.001, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.008, + 0.995, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.005, + 1, + 0 + ] + ] + }, + "desc": "Phew... Oh my, Commander, I'm sorry I didn't welcome you at the door. You don't have to be so tense - I already know not to try doing anything weird with you. Hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 702032, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "White Cavalier's Respite", + "painting": "qiabayefu_3", + "prefab": "qiabayefu_3", + "rarity_bg": "", + "ship_group": 70203, + "ship_l2d_id": "", + "shop_id": 70514, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.486, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 223, + "voice_actor_2": -1 + }, + "702033": { + "bg": "114", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.001, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.076, + 1.138, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.005, + 1, + 0 + ] + ] + }, + "desc": "You've been looking for me? Heehee, sorry if I made you worry, I just had to feel the night breeze in my hair for a bit. Why don't you stay and enjoy it with me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 702033, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Indigo & Lantern-Lit Summer Night", + "painting": "qiabayefu_4", + "prefab": "qiabayefu_4", + "rarity_bg": "", + "ship_group": 70203, + "ship_l2d_id": "", + "shop_id": 70692, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.441, + 2.327, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 223, + "voice_actor_2": -1 + }, + "702034": { + "bg": "159", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.001, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.076, + 1.138, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.005, + 1, + 0 + ] + ] + }, + "desc": "Why are you here... Oh, that was rude of me to ask. Maybe you just wanted a change of scenery, or you were drawn by the music. Or maybe my feelings have reached you... I think I like the sound of that one the most. Hehehe.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 4, + "gyro": 0, + "hand_id": 1, + "id": 702034, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Melody of the White Cavalier", + "painting": "qiabayefu_5", + "prefab": "qiabayefu_5", + "rarity_bg": "", + "ship_group": 70203, + "ship_l2d_id": "", + "shop_id": 70860, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.441, + 2.327, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": "", + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 223, + "voice_actor_2": -1 + }, + "702040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2, + 1.326, + 0 + ] + ], + "cannon": [ + [ + 2.009, + 1.338, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.005, + 1.364, + 0 + ] + ] + }, + "desc": "Kirov-Class cruiser—Kirov", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 702040, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kirov", + "painting": "jiluofu", + "prefab": "jiluofu", + "rarity_bg": "", + "ship_group": 70204, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.526, + 2.357, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "702041": { + "bg": "109", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.996, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 1, + 0.995, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.001, + 1.005, + 0 + ] + ] + }, + "desc": "Comrade Commander, you've come at a good time. I've recently taken a liking to this blend of coffee. Want some as well? No need to be shy.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 702041, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blend R", + "painting": "jiluofu_2", + "prefab": "jiluofu_2", + "rarity_bg": "", + "ship_group": 70204, + "ship_l2d_id": "", + "shop_id": 70507, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.435, + 2.399, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "702042": { + "bg": "154", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.276, + 1.511, + 0 + ] + ], + "cannon": [ + [ + 1.28, + 1.122, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.245, + 1.123, + 0 + ] + ] + }, + "desc": "Halt! You have nowhere left to run!! ...Well done, Comrade Commander, what a thrilling chase we had on our hands! What, you think I'm well-suited for this job? You tease too much, bahaha!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 702042, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 1, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + -110, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Drifting Justice", + "painting": "jiluofu_3", + "prefab": "jiluofu_3", + "rarity_bg": "", + "ship_group": 70204, + "ship_l2d_id": "", + "shop_id": 70672, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.29, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "702043": { + "bg": "112", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.935, + 1.066, + 0 + ] + ], + "cannon": [ + [ + 0.809, + 0.919, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.008, + 0 + ] + ], + "vicegun": [ + [ + 0.856, + 0.974, + 0 + ] + ] + }, + "desc": "...Hmph! Just short of a new personal best, huh? But make no mistake, Comrade Commander. Keep watching me and your patience WILL be rewarded with a breathtaking record!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 702043, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "High Jump Star", + "painting": "jiluofu_4", + "prefab": "jiluofu_4", + "rarity_bg": "", + "ship_group": 70204, + "ship_l2d_id": "", + "shop_id": 70733, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.71, + 2.009, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "702050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2, + 1.326, + 0 + ] + ], + "cannon": [ + [ + 2.009, + 1.338, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.005, + 1.364, + 0 + ] + ] + }, + "desc": "Chapayev-class light cruiser – Kuybyshev.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 702050, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kuybyshev", + "painting": "gubixuefu", + "prefab": "gubixuefu", + "rarity_bg": "", + "ship_group": 70205, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.526, + 2.357, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 351, + "voice_actor_2": -1 + }, + "702051": { + "bg": "152", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2, + 1.326, + 0 + ] + ], + "cannon": [ + [ + 2.009, + 1.338, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.005, + 1.364, + 0 + ] + ] + }, + "desc": "...Thus marks the end of this tune. The Dragon Empery has graciously allowed me to perform in their Spring Festival celebration. Are you here to listen, Commander? In that case... How did you like the song? Heehee.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 702051, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Maestro of Sterling Strings", + "painting": "gubixuefu_2", + "prefab": "gubixuefu_2", + "rarity_bg": "", + "ship_group": 70205, + "ship_l2d_id": "", + "shop_id": 70805, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.526, + 2.357, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 351, + "voice_actor_2": -1 + }, + "702060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.334, + 1.01, + 0 + ] + ], + "cannon": [ + [ + 1.338, + 0.99, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.332, + 1.001, + 0 + ] + ] + }, + "desc": "Omaha-class light cruiser – Murmansk", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 702060, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Murmansk", + "painting": "moermansike", + "prefab": "moermansike", + "rarity_bg": "", + "ship_group": 70206, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.341, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 88, + "voice_actor_2": -1 + }, + "702061": { + "bg": "109", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.293, + 1.02, + 0 + ] + ], + "cannon": [ + [ + 1.268, + 1.006, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.259, + 1.005, + 0 + ] + ] + }, + "desc": "...Achoo! Uhh, good morning... Snow? Yeah, it is snowing today... Woah, it's really coming down hard... Ahaha~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 702061, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sceneries of Pure Snow", + "painting": "moermansike_2", + "prefab": "moermansike_2", + "rarity_bg": "", + "ship_group": 70206, + "ship_l2d_id": "", + "shop_id": 70509, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.458, + 2.329, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 88, + "voice_actor_2": -1 + }, + "702070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.334, + 1.01, + 0 + ] + ], + "cannon": [ + [ + 1.338, + 0.99, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.332, + 1.001, + 0 + ] + ] + }, + "desc": "Kirov-class light cruiser – Voroshilov.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 702070, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Voroshilov", + "painting": "fuluoxiluofu", + "prefab": "fuluoxiluofu", + "rarity_bg": "", + "ship_group": 70207, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.341, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 360, + "voice_actor_2": -1 + }, + "702071": { + "bg": "142", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.293, + 1.02, + 0 + ] + ], + "cannon": [ + [ + 1.268, + 1.006, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.259, + 1.005, + 0 + ] + ] + }, + "desc": "Comrade Commander, is the bath to your liking? I'm glad. Heehee, it's a good thing I trusted that \"Top 10 Dates for Snowy Days\" article and chose this secluded hot spring.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 702071, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Devoted as the Warm Snow", + "painting": "fuluoxiluofu_2", + "prefab": "fuluoxiluofu_2", + "rarity_bg": "", + "ship_group": 70207, + "ship_l2d_id": "", + "shop_id": 70831, + "shop_type_id": 22, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.458, + 2.329, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + -111, + -604, + 0 + ], + [ + 0.8 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 360, + "voice_actor_2": -1 + }, + "703010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.133, + 1.39, + 0 + ] + ], + "cannon": [ + [ + 2.12, + 1.402, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.126, + 1.374, + 0 + ] + ] + }, + "desc": "Heavy cruiser - Tallinn.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 703010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tallinn", + "painting": "talin", + "prefab": "talin", + "rarity_bg": "", + "ship_group": 70301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.641, + 2.36, + -0.081 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 113, + "voice_actor_2": -1 + }, + "703011": { + "bg": "136", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.3, + 1.006, + 0 + ] + ], + "cannon": [ + [ + 1.318, + 0.999, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.307, + 1.014, + 0 + ] + ] + }, + "desc": "What, you've never seen the inside of a shipgirl's room? It's not like you're here on official business, so stop standing around already. Find a place to sit and relax.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 703011, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nostalgic Pilsner", + "painting": "talin_3", + "prefab": "talin_3", + "rarity_bg": "", + "ship_group": 70301, + "ship_l2d_id": "", + "shop_id": 70505, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.506, + 2.453, + -0.081 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 113, + "voice_actor_2": -1 + }, + "703012": { + "bg": "154", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.373, + 1.499, + 0 + ] + ], + "cannon": [ + [ + 1.695, + 1.42, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.574, + 1.401, + 0 + ] + ] + }, + "desc": "You've reached the Bureau of Investigation... Oh boy, another case. Commander, finish up your paperwork ASAP. We've got witnesses to interview.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 703012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "As You Say, Ma'am!", + "painting": "talin_2", + "prefab": "talin_2", + "rarity_bg": "", + "ship_group": 70301, + "ship_l2d_id": "", + "shop_id": 70673, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.632, + 2.288, + -0.081 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 113, + "voice_actor_2": -1 + }, + "703020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.62, + 1.61, + 0 + ] + ], + "cannon": [ + [ + 1.69, + 1.39, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.54, + 1.17, + 0 + ] + ] + }, + "desc": "Heavy cruiser – Kursk.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 703020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kursk", + "painting": "kuersike", + "prefab": "kuersike", + "rarity_bg": "", + "ship_group": 70302, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.641, + 2.36, + -0.081 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 361, + "voice_actor_2": -1 + }, + "703021": { + "bg": "167", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.54, + 1.4, + 0 + ] + ], + "cannon": [ + [ + 1.57, + 1.43, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.49, + 1.31, + 0 + ] + ] + }, + "desc": "This steamy hot spring... is a rather novel experience. I left a spot for you, so come sit down already – Wait, why haven't you taken your clothes off yet?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 703021, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -10, + 145, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lone Wolf Amid the Steam", + "painting": "kuersike_2", + "prefab": "kuersike_2", + "rarity_bg": "", + "ship_group": 70302, + "ship_l2d_id": [ + 7030211, + 7030212 + ], + "shop_id": 70832, + "shop_type_id": 22, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.641, + 2.36, + -0.081 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 361, + "voice_actor_2": -1 + }, + "705010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.595, + 1.143, + 0 + ] + ], + "cannon": [ + [ + 1.558, + 1.084, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + 0.022, + 0 + ] + ], + "vicegun": [ + [ + 1.623, + 1.027, + 0 + ] + ] + }, + "desc": "Gangut-class battleship – Gangut.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 705010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gangut", + "painting": "gangute", + "prefab": "gangute", + "rarity_bg": "", + "ship_group": 70501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.611, + 2.1, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 222, + "voice_actor_2": -1 + }, + "705011": { + "bg": "131", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.566, + 1.085, + 0 + ] + ], + "cannon": [ + [ + 1.519, + 1.122, + 0 + ] + ], + "torpedo": [ + [ + -0.013, + 0.022, + 0 + ] + ], + "vicegun": [ + [ + 1.556, + 1.143, + 0 + ] + ] + }, + "desc": "You have my thanks for this exercise, comrade! I shall gladly carry out the important duty of judge, jury, and rehabilitator!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 705011, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Imposing Warden", + "painting": "gangute_2", + "prefab": "gangute_2", + "rarity_bg": "", + "ship_group": 70501, + "ship_l2d_id": "", + "shop_id": 70325, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.679, + 2.128, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 222, + "voice_actor_2": -1 + }, + "705012": { + "bg": "136", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.537, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 1.497, + 0.999, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.505, + 0.997, + 0 + ] + ] + }, + "desc": "...Bwahaah! I've had all kinds of liquor, but nothing beats the stuff back home! Comrade, let's have a toast to the coming off-duty days!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 705012, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Keeper of the Firewater", + "painting": "gangute_3", + "prefab": "gangute_3", + "rarity_bg": "", + "ship_group": 70501, + "ship_l2d_id": "", + "shop_id": 70511, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.679, + 2.128, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 222, + "voice_actor_2": -1 + }, + "705040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.092, + 1.003, + 0 + ] + ], + "cannon": [ + [ + 2.068, + 0.997, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.084, + 1.006, + 0 + ] + ] + }, + "desc": "Sovestsky Soyuz-class battleship - Sovetskaya Belorussiya.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 705040, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sovetskaya Belorussiya", + "painting": "suweiaibeilaluosi", + "prefab": "suweiaibeilaluosi", + "rarity_bg": "", + "ship_group": 70504, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.346, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 106, + "voice_actor_2": -1 + }, + "705041": { + "bg": "136", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.453, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 1.436, + 1.004, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.469, + 0.999, + 0 + ] + ] + }, + "desc": "To pass the time by proactively reading, or by passively enjoying the company of others... Ah, good morning, Comrade, I've been expecting you. Hahaha!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 705041, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Relaxation Stratagem", + "painting": "suweiaibeilaluosi_2", + "prefab": "suweiaibeilaluosi_2", + "rarity_bg": "", + "ship_group": 70504, + "ship_l2d_id": "", + "shop_id": 70506, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.462, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 106, + "voice_actor_2": -1 + }, + "705050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.643, + 1.075, + 0 + ] + ], + "cannon": [ + [ + 1.702, + 1.074, + 0 + ] + ], + "torpedo": [ + [ + -0.013, + 0.032, + 0 + ] + ], + "vicegun": [ + [ + 1.691, + 1.094, + 0 + ] + ] + }, + "desc": "Sovetsky Soyuz-class battleship – Sovetskaya Rossiya.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 705050, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sovetskaya Rossiya", + "painting": "suweiailuoxiya", + "prefab": "suweiailuoxiya", + "rarity_bg": "", + "ship_group": 70505, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.186, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 85, + "voice_actor_2": -1 + }, + "705051": { + "bg": "130", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.72, + 1.056, + 0 + ] + ], + "cannon": [ + [ + 1.722, + 1.026, + 0 + ] + ], + "torpedo": [ + [ + 0.016, + 0.032, + 0 + ] + ], + "vicegun": [ + [ + 1.729, + 1.056, + 0 + ] + ] + }, + "desc": "\"Situation normal in all sectors of the facility...\" Oh, it is you. I was just giving Minsk the daily report. Do you have something?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 705051, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Lackadaisical Lookout", + "painting": "suweiailuoxiya_2", + "prefab": "suweiailuoxiya_2", + "rarity_bg": "", + "ship_group": 70505, + "ship_l2d_id": "", + "shop_id": 70320, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.553, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 85, + "voice_actor_2": -1 + }, + "705060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.364, + 1.116, + 0 + ] + ], + "cannon": [ + [ + 1.506, + 1.277, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.426, + 1.201, + 0 + ] + ] + }, + "desc": "R-class battleship – Arkhangelsk", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 705060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arkhangelsk", + "painting": "aerhangeersike", + "prefab": "aerhangeersike", + "rarity_bg": "", + "ship_group": 70506, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.423, + 2.288, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 306, + "voice_actor_2": -1 + }, + "705061": { + "bg": "154", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.418, + 1.46, + 0 + ] + ], + "cannon": [ + [ + 1.569, + 1.449, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.498, + 1.255, + 0 + ] + ] + }, + "desc": "Your choice treasure now belongs to master thief Arkhangelsk! Think you can arrest me? Then stop gawking and come get me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 705061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Grandiose Getaway", + "painting": "aerhangeersike_2", + "prefab": "aerhangeersike_2", + "rarity_bg": "", + "ship_group": 70506, + "ship_l2d_id": "", + "shop_id": 70671, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.369, + 2.343, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 306, + "voice_actor_2": -1 + }, + "705070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.55, + 1.33, + 0 + ] + ], + "cannon": [ + [ + 1.56, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.54, + 0.99, + 0 + ] + ] + }, + "desc": "Gangut-class battleship – Sevastopol.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 705070, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sevastopol", + "painting": "saiwasituoboer", + "prefab": "saiwasituoboer", + "rarity_bg": "", + "ship_group": 70507, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.341, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 306, + "voice_actor_2": -1 + }, + "705071": { + "bg": "167", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.293, + 1.02, + 0 + ] + ], + "cannon": [ + [ + 1.268, + 1.006, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.259, + 1.005, + 0 + ] + ] + }, + "desc": "Phew... This is... Comrade Commander? Fancy meeting you at this time of night. Me? Heh, heheheheh... You wouldn't believe me if I said I got too drunk and went in first, would you?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 705071, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "More than a Little Drunk", + "painting": "saiwasituoboer_2", + "prefab": "saiwasituoboer_2", + "rarity_bg": "", + "ship_group": 70507, + "ship_l2d_id": "", + "shop_id": 70833, + "shop_type_id": 22, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.458, + 2.329, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 306, + "voice_actor_2": -1 + }, + "707010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2.102, + 1.651, + 0 + ] + ], + "plane": [ + [ + 2.156, + 1.781, + 0 + ] + ] + }, + "desc": "Project 72-class aircraft carrier – Volga", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 707010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Volga", + "painting": "fuerjia", + "prefab": "fuerjia", + "rarity_bg": "", + "ship_group": 70701, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.461, + 2.503, + -1.89 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 307, + "voice_actor_2": -1 + }, + "707011": { + "bg": "154", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2.211, + 1.633, + 0 + ] + ], + "plane": [ + [ + 2.31, + 2.08, + 0 + ] + ] + }, + "desc": "Volga here. I'm currently tracking an important witness. *gurgle* ...Is my stomach rumbling because this AR game requires so much stamina? Ugh, lost track of the witness just now...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 707011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "An Irresistible AR Adventure", + "painting": "fuerjia_2", + "prefab": "fuerjia_2", + "rarity_bg": "", + "ship_group": 70701, + "ship_l2d_id": "", + "shop_id": 70669, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.506, + 2.359, + -1.89 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 307, + "voice_actor_2": -1 + }, + "718010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.56, + 1.74, + 0 + ] + ], + "cannon": [ + [ + 1.76, + 1.61, + 0 + ] + ], + "torpedo": [ + [ + 0.07, + 0.09, + 0 + ] + ] + }, + "desc": "Project 69-class cruiser – Kronshtadt", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 718010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kronshtadt", + "painting": "kalangshitade", + "prefab": "kalangshitade", + "rarity_bg": "", + "ship_group": 71801, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.386, + 2.405, + -0.16 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_kalangshitade", + [ + 1597, + 229, + 0 + ], + [ + 1.35 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -92, + -772, + 0 + ], + [ + 0.95 + ] + ], + "tag": [], + "time": "", + "voice_actor": 272, + "voice_actor_2": -1 + }, + "718011": { + "bg": "154", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.299, + 1.316, + 0 + ] + ], + "cannon": [ + [ + 1.397, + 1.306, + 0 + ] + ], + "torpedo": [ + [ + 0.07, + 0.09, + 0 + ] + ] + }, + "desc": "Listen up, assholes! We have you surrounded! I'm Kronshtadt, squad leader of the Northern Parliament Special Forces! You have only one option: come out with your hands in the air and surrender!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 718011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 47, + -60, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Begin the Rush!", + "painting": "kalangshitade_2", + "prefab": "kalangshitade_2", + "rarity_bg": "", + "ship_group": 71801, + "ship_l2d_id": "", + "shop_id": 70667, + "shop_type_id": 12, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.351, + 2.346, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 272, + "voice_actor_2": -1 + }, + "799010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.502, + 1.145, + 0 + ] + ], + "plane": [ + [ + 1.723, + 0.543, + 0 + ] + ] + }, + "desc": "Aircraft carrier - Chkalov.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 799010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chkalov", + "painting": "qikaluofu", + "prefab": "qikaluofu", + "rarity_bg": "", + "ship_group": 79901, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.829, + 0.834, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 329, + "voice_actor_2": -1 + }, + "799011": { + "bg": "164", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.502, + 1.145, + 0 + ] + ], + "plane": [ + [ + 1.723, + 0.69, + 0 + ] + ] + }, + "desc": "Oh? What made you come over here instead of heading down to the beach? Surely you didn't ditch your friends on a hard-earned day off just to see me? But, I don't mind. It's called a day off because you get to decide how to spend your time.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 799011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Seaside Sunset", + "painting": "qikaluofu_2", + "prefab": "qikaluofu_2", + "rarity_bg": "", + "ship_group": 79901, + "ship_l2d_id": "", + "shop_id": 70782, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.28, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 329, + "voice_actor_2": -1 + }, + "801010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.06, + 1.26, + 0 + ] + ], + "cannon": [ + [ + 1, + 1.21, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 1.06, + 1.22, + 0 + ] + ] + }, + "desc": "Le Fantasque-class destroyer – Le Triomphant.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 801010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Le Triomphant", + "painting": "kaixuan", + "prefab": "kaixuan", + "rarity_bg": "", + "ship_group": 80101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 6, + "voice_actor_2": -1 + }, + "801020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.29, + 1.01, + 0 + ] + ], + "cannon": [ + [ + -0.22, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0.07, + 0.12, + 0 + ] + ], + "vicegun": [ + [ + -0.24, + 1.05, + 0 + ] + ] + }, + "desc": "L'Adroit-class destroyer – Forbin.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 801020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Forbin", + "painting": "fuerban", + "prefab": "fuerban", + "rarity_bg": "", + "ship_group": 80102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 124, + "voice_actor_2": -1 + }, + "801021": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.467, + 0.826, + 0 + ] + ], + "cannon": [ + [ + -0.395, + 1.165, + 0 + ] + ], + "torpedo": [ + [ + 0.256, + 0.266, + 0 + ] + ], + "vicegun": [ + [ + -0.395, + 1.165, + 0 + ] + ] + }, + "desc": "It's good to be able to stop and smell the roses every now and then. Um, Commander, would you be able to accompany me a bit longer?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 801021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fleur Blanche", + "painting": "Fuerban_2", + "prefab": "Fuerban_2", + "rarity_bg": "", + "ship_group": 80102, + "ship_l2d_id": "", + "shop_id": 70087, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 124, + "voice_actor_2": -1 + }, + "801022": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.95, + 1.009, + 0 + ] + ], + "cannon": [ + [ + 0.93, + 0.997, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + 0.042, + 0 + ] + ], + "vicegun": [ + [ + 0.964, + 0.981, + 0 + ] + ] + }, + "desc": "Even though I'm an Iris Libre squire, I'm currently working hard to have a rich student life. Um... maybe this is a bit too laid back?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 801022, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "École de Chevalier", + "painting": "fuerban_3", + "prefab": "fuerban_3", + "rarity_bg": "", + "ship_group": 80102, + "ship_l2d_id": "", + "shop_id": 70201, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 124, + "voice_actor_2": -1 + }, + "801023": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.121, + 1.147, + 0 + ] + ], + "cannon": [ + [ + 1.062, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + -0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.05, + 1.08, + 0 + ] + ] + }, + "desc": "Good evening, Commander. I am currently enjoying the party in the company of my friends, as my duties as a squire entail. Um... I've had a bit too much to drink? R-really...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 801023, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Feast of Champagne", + "painting": "fuerban_4", + "prefab": "fuerban_4", + "rarity_bg": "", + "ship_group": 80102, + "ship_l2d_id": "", + "shop_id": 70381, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 124, + "voice_actor_2": -1 + }, + "801028": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.121, + 1.147, + 0 + ] + ], + "cannon": [ + [ + 1.062, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + -0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.05, + 1.08, + 0 + ] + ] + }, + "desc": "At long last, this wonderful day is here. It feels like I'm dreaming... I'm so happy, I just... Forgive me, I promised myself I wouldn't cry... I, Forbin the squire, shall remain by your side for the rest of my life!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 801028, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fleur de Mariée", + "painting": "fuerban_h", + "prefab": "fuerban_h", + "rarity_bg": "", + "ship_group": 80102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 124, + "voice_actor_2": -1 + }, + "801029": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.37, + 1.06, + 0 + ] + ], + "cannon": [ + [ + -0.29, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.15, + 0 + ] + ], + "vicegun": [ + [ + -0.37, + 1.03, + 0 + ] + ] + }, + "desc": "My hard work has finally paid off! Commander, thank you for your guidance all this time! I'll return the favor by bringing you even more honors in battle!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 13, + "id": 801029, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Forbin (Retrofit)", + "painting": "fuerban_g", + "prefab": "fuerban_g", + "rarity_bg": "", + "ship_group": 80102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 124, + "voice_actor_2": -1 + }, + "801030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.89, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 0.95, + 1.21, + 0 + ] + ], + "torpedo": [ + [ + 0.35, + 0.25, + 0 + ] + ], + "vicegun": [ + [ + 0.95, + 1.18, + 0 + ] + ] + }, + "desc": "Le Hardi-class destroyer – Le Téméraire.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 801030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Le Téméraire", + "painting": "lumang", + "prefab": "lumang", + "rarity_bg": "", + "ship_group": 80103, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 158, + "voice_actor_2": -1 + }, + "801031": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.434, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 1.355, + 1.216, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.342, + 1.18, + 0 + ] + ] + }, + "desc": "Commander, I've finished changing into my swimsuit! Heheh~ let's head down to the beach and enjoy ourselves as much as we can!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 801031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summery Temeraire!", + "painting": "lumang_2", + "prefab": "lumang_2", + "rarity_bg": "", + "ship_group": 80103, + "ship_l2d_id": "", + "shop_id": 70350, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 158, + "voice_actor_2": -1 + }, + "801032": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.402, + 0.996, + 0 + ] + ], + "cannon": [ + [ + 1.393, + 1.013, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.399, + 0.997, + 0 + ] + ] + }, + "desc": "How do I look? These pajamas are super cute, aren't they? Ehehe, I really like this one! It even matches with Opiniâtre's!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 801032, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dreamy Dolce", + "painting": "lumang_3", + "prefab": "lumang_3", + "rarity_bg": "", + "ship_group": 80103, + "ship_l2d_id": "", + "shop_id": 70524, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 158, + "voice_actor_2": -1 + }, + "801040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.89, + 0.537, + 0 + ] + ], + "cannon": [ + [ + 0.95, + 0.587, + 0 + ] + ], + "torpedo": [ + [ + 0.151, + 0.051, + 0 + ] + ], + "vicegun": [ + [ + 0.95, + 0.54, + 0 + ] + ] + }, + "desc": "Le Hardi-class destroyer – L'Opiniâtre.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 801040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "L'Opiniâtre", + "painting": "juejiang", + "prefab": "juejiang", + "rarity_bg": "", + "ship_group": 80104, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 158, + "voice_actor_2": -1 + }, + "801041": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.89, + 1.053, + 0 + ] + ], + "cannon": [ + [ + 0.961, + 1.103, + 0 + ] + ], + "torpedo": [ + [ + 0.061, + -0.093, + 0 + ] + ], + "vicegun": [ + [ + 0.95, + 1.077, + 0 + ] + ] + }, + "desc": "It is said that the summertime sea holds an extraordinary enchantment over people... but the only supernatural thing I'm feeling is this accursed heat... Am I missing something?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 801041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beachside Magician", + "painting": "juejiang_2", + "prefab": "juejiang_2", + "rarity_bg": "", + "ship_group": 80104, + "ship_l2d_id": "", + "shop_id": 70202, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 158, + "voice_actor_2": -1 + }, + "801070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.03, + 1.193, + 0 + ] + ], + "cannon": [ + [ + 1.052, + 1.039, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.06, + 0.996, + 0 + ] + ] + }, + "desc": "Le Fantasque-class large destroyer - Le Terrible.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 801070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Le Terrible", + "painting": "kebu", + "prefab": "kebu", + "rarity_bg": "", + "ship_group": 80107, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.633, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 291, + "voice_actor_2": -1 + }, + "801071": { + "bg": "109", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.038, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1, + 1.158, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.06, + 1.071, + 0 + ] + ] + }, + "desc": "Zzz... Commander...? Sorry... for showing you this unsightly side of mine... I'm just, not a morning person... Zzzzz...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 801071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Silence, Slumber, and Solace", + "painting": "kebu_3", + "prefab": "kebu_3", + "rarity_bg": "", + "ship_group": 80107, + "ship_l2d_id": "", + "shop_id": 70608, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 291, + "voice_actor_2": -1 + }, + "801072": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.03, + 1.193, + 0 + ] + ], + "cannon": [ + [ + 1.052, + 1.039, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.06, + 0.996, + 0 + ] + ] + }, + "desc": "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~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 801072, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sunlight, Seaspray, and Sanctity", + "painting": "kebu_2", + "prefab": "kebu_2", + "rarity_bg": "", + "ship_group": 80107, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 4, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.633, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 291, + "voice_actor_2": -1 + }, + "801080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.21, + 1.17, + 0 + ] + ], + "cannon": [ + [ + 1.286, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.353, + 1.06, + 0 + ] + ] + }, + "desc": "Vauquelin-class destroyer – Maillé Brézé.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 801080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Maillé Brézé", + "painting": "mayebuleize", + "prefab": "mayebuleize", + "rarity_bg": "", + "ship_group": 80108, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.393, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 290, + "voice_actor_2": -1 + }, + "801081": { + "bg": "109", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.243, + 1.183, + 0 + ] + ], + "cannon": [ + [ + 1.28, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.26, + 1.06, + 0 + ] + ] + }, + "desc": "H-h-halt, intruder! Thou art intruding in the domain of an Iris Libre Templar Knight, a crime punishable by... Eek! I'm begging you, spare my life! ...It's you, Lord Commander?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 801081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Noble Knight's Last Stand", + "painting": "mayebuleize_3", + "prefab": "mayebuleize_3", + "rarity_bg": "", + "ship_group": 80108, + "ship_l2d_id": "", + "shop_id": 70609, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.445, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 290, + "voice_actor_2": -1 + }, + "801082": { + "bg": "146", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.237, + 1.373, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 1.181, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.112, + 1.149, + 0 + ] + ] + }, + "desc": "Enjoying sweet pastries in a lovely dress – heehee, such bliss! ...I care not how unbecoming this is of a knight! I saved these desserts for my holiday! Let me enjoy myself, would you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 801082, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sugary Sabbatical", + "painting": "mayebuleize_2", + "prefab": "mayebuleize_2", + "rarity_bg": "", + "ship_group": 80108, + "ship_l2d_id": "", + "shop_id": 70749, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.837, + 1.775, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 290, + "voice_actor_2": -1 + }, + "802010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -1.115, + 1.938, + 0 + ] + ], + "cannon": [ + [ + -1.064, + 1.994, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.055, + 0 + ] + ], + "vicegun": [ + [ + -1.036, + 1.966, + 0 + ] + ] + }, + "desc": "Light cruiser – Émile Bertin.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 802010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Émile Bertin", + "painting": "aimierbeierding", + "prefab": "aimierbeierding", + "rarity_bg": "", + "ship_group": 80201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 108, + "voice_actor_2": -1 + }, + "802011": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.186, + 0.442, + 0 + ] + ], + "cannon": [ + [ + 1.17, + 0.451, + 0 + ] + ], + "torpedo": [ + [ + 0.179, + -0.146, + 0 + ] + ], + "vicegun": [ + [ + 1.179, + 0.46, + 0 + ] + ] + }, + "desc": "Commander, does my swimsuit pique your fancy? I'm actually quite proud of my fashion sense. *Giggle* Now, let's enjoy midsummer together~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 802011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 60, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Côte d'Azur", + "painting": "Aimierbeierding_2", + "prefab": "Aimierbeierding_2", + "rarity_bg": "", + "ship_group": 80201, + "ship_l2d_id": "", + "shop_id": 70085, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 108, + "voice_actor_2": -1 + }, + "802012": { + "bg": "104", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.386, + 0.684, + 0 + ] + ], + "cannon": [ + [ + 1.359, + 0.756, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.321, + 0.623, + 0 + ] + ] + }, + "desc": "I heard of this romantic concept of maid outfits, and thought I'd try one on to see how it feels~ What are your thoughts, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 802012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "expedition": 0, + "home": 4, + "login": 4, + "mail": 1.42, + "main_1": 1.67, + "main_2": 0, + "main_3": 1.67, + "mission": 0, + "mission_complete": 0.5, + "propose": 0, + "touch": 0.67, + "touch2": 2.25 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -11, + -20, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Maid Fantastique", + "painting": "aimierbeierding_3", + "prefab": "aimierbeierding_3", + "rarity_bg": "", + "ship_group": 80201, + "ship_l2d_id": "", + "shop_id": 70361, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 108, + "voice_actor_2": -1 + }, + "802013": { + "bg": "146", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.386, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 1.54, + 0.94, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.321, + 0.79, + 0 + ] + ] + }, + "desc": "Modest though it may be, isn't this a lovely little garden? Come, Commander! Let us dance surrounded by Mother Nature~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 802013, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gilded Dance", + "painting": "aimierbeierding_4", + "prefab": "aimierbeierding_4", + "rarity_bg": "", + "ship_group": 80201, + "ship_l2d_id": "", + "shop_id": 70607, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.52, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 108, + "voice_actor_2": -1 + }, + "802019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 0.98, + 0 + ] + ], + "cannon": [ + [ + 1.58, + 0.96, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.66, + 0.97, + 0 + ] + ] + }, + "desc": "Émile Bertin, retrofit complete! I feel like a completely new person! To show my gratitude, Commander, I'll perform a brand new dance for you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 1, + "id": 802019, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 60, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Émile Bertin (Retrofit)", + "painting": "aimierbeierding_g", + "prefab": "aimierbeierding_g", + "rarity_bg": "", + "ship_group": 80201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 108, + "voice_actor_2": -1 + }, + "802020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.661, + 1.263, + 0 + ] + ], + "cannon": [ + [ + 1.699, + 1.199, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.733, + 1.208, + 0 + ] + ] + }, + "desc": "Light cruiser – Jeanne d'Arc.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 802020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jeanne d'Arc", + "painting": "shengnvzhende", + "prefab": "shengnvzhende", + "rarity_bg": "", + "ship_group": 80202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 146, + "voice_actor_2": -1 + }, + "802021": { + "bg": "134", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.697, + 1.203, + 0 + ] + ], + "cannon": [ + [ + 1.657, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.623, + 1.239, + 0 + ] + ] + }, + "desc": "\"O chosen hero, I bestow this sword upon you so that you may clear any obstacles in your path...\" Commander, how did that sound?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 802021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Saintess of the Sea", + "painting": "shengnvzhende_2", + "prefab": "shengnvzhende_2", + "rarity_bg": "", + "ship_group": 80202, + "ship_l2d_id": "", + "shop_id": 70362, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 146, + "voice_actor_2": -1 + }, + "802030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.661, + 1.263, + 0 + ] + ], + "cannon": [ + [ + 1.74, + 1.21, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.04, + 0 + ] + ], + "vicegun": [ + [ + 1.733, + 1.208, + 0 + ] + ] + }, + "desc": "De Grasse-class light cruiser – Guichen.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 802030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Guichen", + "painting": "jishang", + "prefab": "jishang", + "rarity_bg": "", + "ship_group": 80203, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.8, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 378, + "voice_actor_2": -1 + }, + "802031": { + "bg": "125", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.661, + 1.263, + 0 + ] + ], + "cannon": [ + [ + 1.74, + 1.21, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.04, + 0 + ] + ], + "vicegun": [ + [ + 1.733, + 1.208, + 0 + ] + ] + }, + "desc": "Advanced technology is indistinguishable from magic—and that goes for this icy stage, too. Commander, please enjoy this demonstration of our heaven-bestowed sacrament until the very end~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 802031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sorcière on Ice", + "painting": "jishang_2", + "prefab": "jishang_2", + "rarity_bg": "", + "ship_group": 80203, + "ship_l2d_id": "", + "shop_id": 70891, + "shop_type_id": 21, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.8, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 378, + "voice_actor_2": -1 + }, + "803010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.47, + 1.4, + 0 + ] + ], + "cannon": [ + [ + 1.46, + 1.38, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.51, + 1.37, + 0 + ] + ] + }, + "desc": "Suffren-class heavy cruiser – Suffren.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 803010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Suffren", + "painting": "xufulun", + "prefab": "xufulun", + "rarity_bg": "", + "ship_group": 80301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 379, + "voice_actor_2": -1 + }, + "803011": { + "bg": "103", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.58, + 1.203, + 0 + ] + ], + "cannon": [ + [ + 1.657, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.623, + 1.239, + 0 + ] + ] + }, + "desc": "Hm? The door's open! ...Commander? Oh, ahaha... Silly me, I should've put up a card with \"occupied\" on it... Then again, I... I guess I don't mind if you're the one who sees me~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 803011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Impulsive Incident", + "painting": "xufulun_2", + "prefab": "xufulun_2", + "rarity_bg": "", + "ship_group": 80301, + "ship_l2d_id": "", + "shop_id": 70894, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 379, + "voice_actor_2": -1 + }, + "805010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.66, + 1.299, + 0 + ] + ], + "cannon": [ + [ + 1.67, + 1.335, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.66, + 1.365, + 0 + ] + ] + }, + "desc": "Richelieu-class battleship – Richelieu.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 805010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Richelieu", + "painting": "lisailiu", + "prefab": "lisailiu", + "rarity_bg": "", + "ship_group": 80501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 148, + "voice_actor_2": -1 + }, + "805011": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.66, + 1.243, + 0 + ] + ], + "cannon": [ + [ + 1.71, + 1.231, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.66, + 1.213, + 0 + ] + ] + }, + "desc": "This swimsuit... Yes, the one Émile picked out for me, seems a bit skimpy... I didn't think she'd be the type to trick me into wearing something like this, but... Commander, where are you looking?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 805011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 4, + "mail": 2.5, + "main_2": 3 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fleuron of the Waves", + "painting": "lisailiu_2", + "prefab": "lisailiu_2", + "rarity_bg": "", + "ship_group": 80501, + "ship_l2d_id": "", + "shop_id": 70359, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 148, + "voice_actor_2": -1 + }, + "805012": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.996, + 1.009, + 0 + ] + ], + "cannon": [ + [ + 1, + 0.99, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.003, + 1.017, + 0 + ] + ] + }, + "desc": "Commander, I wish you a Happy New Year. May you avail yourself of the period of repose that follows the culmination of the year's duties. I pray that you and everyone else may receive the blessing of the Heavens.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 805012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -30, + 30 + ], + "ParamAngleY": [ + 0, + 0 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 5.8, + "mail": 0.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 40, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Evergreen Prophecy", + "painting": "lisailiu_3", + "prefab": "lisailiu_3", + "rarity_bg": "", + "ship_group": 80501, + "ship_l2d_id": "", + "shop_id": 70461, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.449, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 148, + "voice_actor_2": -1 + }, + "805020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.66, + 1.44, + 0 + ] + ], + "cannon": [ + [ + 1.47, + 1.37, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.58, + 1.49, + 0 + ] + ] + }, + "desc": "Lyon-class battleship – Lyon.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 805020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lyon", + "painting": "liang", + "prefab": "liang", + "rarity_bg": "", + "ship_group": 80502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.49, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 155, + "voice_actor_2": -1 + }, + "805021": { + "bg": "109", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.66, + 1.44, + 0 + ] + ], + "cannon": [ + [ + 1.47, + 1.37, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.58, + 1.49, + 0 + ] + ] + }, + "desc": "Mmh... Pilates may be easy to learn, but it seems difficult to master... Are you still okay, Commander? Me? I-I can keep going...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 805021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Paired Exercise", + "painting": "liang_2", + "prefab": "liang_2", + "rarity_bg": "", + "ship_group": 80502, + "ship_l2d_id": "", + "shop_id": 70893, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.49, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 155, + "voice_actor_2": -1 + }, + "807010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.16, + 1.13, + 0 + ] + ], + "plane": [ + [ + 1.244, + 1.128, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Aircraft carrier – Béarn.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 807010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Béarn", + "painting": "beiyaen", + "prefab": "beiyaen", + "rarity_bg": "", + "ship_group": 80701, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.07, + -1.85 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 235, + "voice_actor_2": -1 + }, + "807011": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.244, + 1.177, + 0 + ] + ], + "plane": [ + [ + 1.223, + 1.201, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Are you perhaps feeling unwell, Commander? Oh, I see, you're just looking for a shaded place to rest? Acknowledged. In that case, you may sit here if you'd like.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 807011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Lifeguard", + "painting": "beiyaen_2", + "prefab": "beiyaen_2", + "rarity_bg": "", + "ship_group": 80701, + "ship_l2d_id": "", + "shop_id": 70366, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.07, + -1.85 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 235, + "voice_actor_2": -1 + }, + "807020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.49, + 1.229, + 0 + ] + ], + "plane": [ + [ + 1.41, + 1.26, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Joffre-class aircraft carrier – Painlevé.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 807020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Painlevé", + "painting": "banerwei", + "prefab": "banerwei", + "rarity_bg": "", + "ship_group": 80702, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.67, + 2.28, + -1.85 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 354, + "voice_actor_2": -1 + }, + "807021": { + "bg": "109", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.49, + 1.229, + 0 + ] + ], + "plane": [ + [ + 1.41, + 1.26, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Phew... Commander...? Would you like to... hnnngh... stretch with me? Don't worry, it won't hurt. We have plenty of time, so we can take it slow...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 807021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Team Stretching", + "painting": "banerwei_2", + "prefab": "banerwei_2", + "rarity_bg": "", + "ship_group": 80702, + "ship_l2d_id": "", + "shop_id": 70892, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.67, + 2.28, + -1.85 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + -936, + -790, + 0 + ], + [ + 0.7 + ] + ], + "tag": [ + 6, + 2 + ], + "time": "", + "voice_actor": 354, + "voice_actor_2": -1 + }, + "808010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 0.81, + 0 + ] + ], + "cannon": [ + [ + 1.21, + 0.86, + 0 + ] + ], + "torpedo": [ + [ + 0.76, + 0.35, + 0 + ] + ], + "vicegun": [ + [ + 1.2, + 0.83, + 0 + ] + ] + }, + "desc": "Cruiser submarine – Surcouf.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 808010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Surcouf", + "painting": "xukufu", + "prefab": "xukufu", + "rarity_bg": "", + "ship_group": 80801, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 85, + "voice_actor_2": -1 + }, + "808011": { + "bg": "118", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.969, + 0.906, + 0 + ] + ], + "cannon": [ + [ + 0.951, + 0.661, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.138, + 0 + ] + ], + "vicegun": [ + [ + 0.971, + 0.727, + 0 + ] + ] + }, + "desc": "Hmm? Commander, are you shopping as well? If so, why don't you come along and take a look around? ... Huh? Of course you can't climb on. That'd be illegal.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 808011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 20, + -140, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shopping Time!", + "painting": "xukufu_2", + "prefab": "xukufu_2", + "rarity_bg": "", + "ship_group": 80801, + "ship_l2d_id": "", + "shop_id": 70249, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 85, + "voice_actor_2": -1 + }, + "808012": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.461, + 0.345, + 0 + ] + ], + "cannon": [ + [ + 1.519, + 0.339, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.414, + 0 + ] + ], + "vicegun": [ + [ + 1.491, + 0.316, + 0 + ] + ] + }, + "desc": "Mmmh~ Bonjour, Commander~ Nothing feels better than the waves lapping at your skin~ Oh, Commander, why don't you come lie down and experience it for yourself? ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 808012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 4 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 45, + -20, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Loisirs Balnéaires", + "painting": "xukufu_3", + "prefab": "xukufu_3", + "rarity_bg": "", + "ship_group": 80801, + "ship_l2d_id": "", + "shop_id": 70360, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 85, + "voice_actor_2": -1 + }, + "899010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.28, + 1.33, + 0 + ] + ], + "cannon": [ + [ + -0.15, + 1.35, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.05, + 0 + ] + ] + }, + "desc": "Heavy cruiser – Saint Louis.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 899010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Saint Louis", + "painting": "luyijiushi", + "prefab": "luyijiushi", + "rarity_bg": "", + "ship_group": 89901, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 106, + "voice_actor_2": -1 + }, + "899011": { + "bg": "135", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.28, + 1.33, + 0 + ] + ], + "cannon": [ + [ + -0.15, + 1.35, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.05, + 0 + ] + ] + }, + "desc": "With all due respect, Commander, this finery and this throne are not fit for one such as myself. Despite the hallowed name I have inherited, I am nothing more than a warrior. —However, if such an arrangement pleases you, then I shall hold my objections.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 899011, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ], + "ParamAngleY": [ + -15, + 15 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 50, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Holy Knight's Resplendence", + "painting": "luyijiushi_2", + "prefab": "luyijiushi_2", + "rarity_bg": "", + "ship_group": 89901, + "ship_l2d_id": "", + "shop_id": 70417, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 106, + "voice_actor_2": -1 + }, + "899012": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.162, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 1.168, + 0.999, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + -0.004, + 0 + ] + ] + }, + "desc": "Commander, regarding your next appointment... Ah, hard work is one of the highest virtues of the Iris's holy knights. On weekdays or vacations, in knights' armor or the Dragon Empery's attire, there can be no pause to my prayer, my training, or my duties as the administrator of your will.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 899012, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 50, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Alluring Administrator", + "painting": "luyijiushi_3", + "prefab": "luyijiushi_3", + "rarity_bg": "", + "ship_group": 89901, + "ship_l2d_id": "", + "shop_id": 70485, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.443, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 106, + "voice_actor_2": -1 + }, + "899020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.773, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 1.822, + 1.095, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + 0.03, + 0 + ] + ] + }, + "desc": "Battleship – Champagne.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 899020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Champagne", + "painting": "xiangbin", + "prefab": "xiangbin", + "rarity_bg": "", + "ship_group": 89902, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.33, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 64, + "voice_actor_2": -1 + }, + "899021": { + "bg": "143", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.001, + 1.151, + 0 + ] + ], + "cannon": [ + [ + 2.022, + 1.17, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0.007, + 0 + ] + ] + }, + "desc": "It is not against the teachings to halt one's pursuit of destiny and to surrender to the warm draft of festivities. It is mankind's prerogative to seek out auspicious portents.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 899021, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lapis Lazuli's First Dream", + "painting": "xiangbin_2", + "prefab": "xiangbin_2", + "rarity_bg": "", + "ship_group": 89902, + "ship_l2d_id": "", + "shop_id": 70478, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.507, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 4 + ], + "time": "", + "voice_actor": 64, + "voice_actor_2": -1 + }, + "899028": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.274, + 1.637, + 0 + ] + ], + "cannon": [ + [ + 2.306, + 1.494, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "An ode of gratitude for the venerable Iris, echoing tones condensing to pure prayer. Seek blessings not in public worship, but in humanity's true triumph: our everlasting bonds.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 8, + "gyro": 0, + "hand_id": 13, + "id": 899028, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Adulation Eternal", + "painting": "xiangbin_h", + "prefab": "xiangbin_h", + "rarity_bg": "", + "ship_group": 89902, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9998, + "show_skin": "stand", + "skin_type": 1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 64, + "voice_actor_2": -1 + }, + "899030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.492, + 2.069, + 0 + ] + ], + "cannon": [ + [ + 1.792, + 1.696, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.433, + 1.164, + 0 + ] + ] + }, + "desc": "Large cruiser - Brest.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 899030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Brest", + "painting": "buleisite", + "prefab": "buleisite", + "rarity_bg": "", + "ship_group": 89903, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.507, + -0.16 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_buleisite", + [ + -51, + 162, + 0 + ], + [ + 2.2 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -35, + -1749, + 0 + ], + [ + 1.2 + ] + ], + "tag": [], + "time": "", + "voice_actor": 330, + "voice_actor_2": -1 + }, + "899031": { + "bg": "164", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.492, + 2.069, + 0 + ] + ], + "cannon": [ + [ + 1.792, + 1.696, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.433, + 1.164, + 0 + ] + ] + }, + "desc": "\"I devote this paean to thee, Champion of seas blue and free.\" There, the song is completed. But we've come all this way... Shall we continue our adventure through these undersea ruins, Champion?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 899031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Marine Muse", + "painting": "buleisite_2", + "prefab": "buleisite_2", + "rarity_bg": "", + "ship_group": 89903, + "ship_l2d_id": [ + 8990311, + 8990312, + 8990313 + ], + "shop_id": 70780, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.36, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 330, + "voice_actor_2": -1 + }, + "900001": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.464, + 1.052, + 0 + ], + [ + -0.439, + 1.353, + 0 + ] + ], + "cannon": [ + [ + -0.257, + 0.783, + 0 + ] + ], + "torpedo": [ + [ + 0.119, + 0.702, + 0 + ] + ], + "vicegun": [ + [ + -0.257, + 0.783, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900001, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Königsberg", + "painting": "kenisibao-ui", + "prefab": "bote", + "rarity_bg": "", + "ship_group": 900001, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.498, + 0.298, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.453, + 0.524, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900002": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.35, + 0.73, + 0 + ] + ], + "cannon": [ + [ + -0.36, + 0.73, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.17, + 0 + ] + ], + "vicegun": [ + [ + -0.36, + 0.73, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900002, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Karlsruhe", + "painting": "kaersilue", + "prefab": "kaersilue", + "rarity_bg": "", + "ship_group": 900002, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.82, + 0.86, + -0.31 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.6, + 2.59, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900003": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.44, + 0.94, + 0 + ] + ], + "cannon": [ + [ + 0.92, + 0.75, + 0 + ] + ], + "torpedo": [ + [ + 0.23, + 0.23, + 0 + ] + ], + "vicegun": [ + [ + 0.92, + 0.75, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900003, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Köln", + "painting": "kelong-ui", + "prefab": "kelong", + "rarity_bg": "", + "ship_group": 900003, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.57, + 0.81, + -0.568 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.64, + 2.606, + -0.472 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900004": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.027, + 0.936, + 0 + ] + ], + "cannon": [ + [ + 1.088, + 0.776, + 0 + ] + ], + "torpedo": [ + [ + 0.251, + 0.487, + 0 + ] + ], + "vicegun": [ + [ + 1.088, + 0.776, + 0 + ] + ] + }, + "desc": "Kent-class heavy cruiser—Suffolk, Hull Number 55!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900004, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Suffolk", + "painting": "safuke", + "prefab": "safuke", + "rarity_bg": "", + "ship_group": 900004, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.29, + 0.95, + -0.16 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.71, + 2.52, + 0.07 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900005": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.333, + 0.635, + 0 + ] + ], + "cannon": [ + [ + 0.606, + 0.501, + 0 + ] + ], + "torpedo": [ + [ + -0.333, + 0.635, + 0 + ] + ], + "vicegun": [ + [ + -0.333, + 0.635, + 0 + ] + ] + }, + "desc": "Norfolk-class heavy cruiser—Norfolk, Hull Number 78!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900005, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Norfolk", + "painting": "nuofuke", + "prefab": "nuofuke", + "rarity_bg": "", + "ship_group": 900005, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.82, + 2.19, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900006": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 0.823, + 0 + ] + ], + "cannon": [ + [ + -0.25, + 1.291, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0.585, + 0 + ] + ] + }, + "desc": "Admiral-class battlecruiser, Hood, Hull Number 51!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900006, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hood", + "painting": "hude", + "prefab": "hude", + "rarity_bg": "", + "ship_group": 900006, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900007": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.552, + 1.098, + 0 + ], + [ + 0.764, + 0.871, + 0 + ] + ], + "cannon": [ + [ + 1.6, + 0.11, + -0.06 + ] + ], + "vicegun": [ + [ + -0.235, + 0.409, + 0 + ] + ] + }, + "desc": "King George V-class battleship, Prince of Wales. Hull Number 53.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900007, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prince of Wales", + "painting": "weiershiqinwang", + "prefab": "weiershiqinwang", + "rarity_bg": "", + "ship_group": 900007, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.014, + 1.52, + -0.59 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.57, + 0.723, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900008": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.333, + 1.037, + 0 + ] + ], + "plane": [ + [ + -0.81, + 0.757, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900008, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ark Royal", + "painting": "huangjiafangzhou", + "prefab": "huangjiafangzhou", + "rarity_bg": "", + "ship_group": 900008, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.469, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.34, + 0.854, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900009": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.235, + 0.484, + 0 + ], + [ + 0.847, + 0.34, + 0 + ] + ], + "cannon": [ + [ + -0.53, + 0.802, + 0 + ] + ], + "torpedo": [ + [ + 0.227, + 0.408, + 0 + ] + ], + "vicegun": [ + [ + -0.235, + 0.484, + 0 + ], + [ + 0.847, + 0.34, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900009, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prinz Eugen", + "painting": "ougen", + "prefab": "ougen", + "rarity_bg": "", + "ship_group": 900009, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.531, + 0.427, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.711, + 0.361, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 1.12, + 0 + ], + [ + 1.377, + 0.87, + 0 + ] + ], + "cannon": [ + [ + -0.295, + 0.507, + 0 + ] + ], + "torpedo": [ + [ + 0.795, + 0.03, + 0 + ] + ], + "vicegun": [ + [ + 0, + 1.12, + 0 + ], + [ + 1.377, + 0.87, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900010, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bismarck", + "painting": "bisimai", + "prefab": "bisimai", + "rarity_bg": "", + "ship_group": 900010, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900011": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900011, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "?????", + "painting": "unknown1", + "prefab": "unknown1", + "rarity_bg": "", + "ship_group": 900011, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900012": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900012, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "?????", + "painting": "unknown2", + "prefab": "unknown2", + "rarity_bg": "", + "ship_group": 900012, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900013": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900013, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tone", + "painting": "ligen", + "prefab": "ligen", + "rarity_bg": "", + "ship_group": 900013, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900014": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900014, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kirishima", + "painting": "wudao", + "prefab": "wudao", + "rarity_bg": "", + "ship_group": 900014, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900015": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900015, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mogami", + "painting": "zuishang", + "prefab": "zuishang", + "rarity_bg": "", + "ship_group": 900015, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900016": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900016, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Atago", + "painting": "aidang", + "prefab": "aidang", + "rarity_bg": "", + "ship_group": 900016, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900017": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.338, + 1.343, + 0 + ] + ], + "cannon": [ + [ + -0.366, + 1.334, + 0 + ] + ], + "torpedo": [ + [ + 0.179, + 0.103, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900017, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kongou", + "painting": "jingang", + "prefab": "jingang", + "rarity_bg": "", + "ship_group": 900017, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900020, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yat Sen", + "painting": "yixian", + "prefab": "yixian", + "rarity_bg": "", + "ship_group": 900020, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900021": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900021, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "?????", + "painting": "unknown3", + "prefab": "unknown3", + "rarity_bg": "", + "ship_group": 900021, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900022": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900022, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ning Hai", + "painting": "ninghai_memory", + "prefab": "ninghai", + "rarity_bg": "", + "ship_group": 900022, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900023": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900023, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ping Hai", + "painting": "pinghai_memory", + "prefab": "pinghai", + "rarity_bg": "", + "ship_group": 900023, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900024": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900024, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yat Sen", + "painting": "yixian_memory", + "prefab": "yixian", + "rarity_bg": "", + "ship_group": 900024, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900027": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -1.19, + 1.31, + 0 + ] + ], + "plane": [ + [ + 0.62, + 1.13, + 0 + ] + ] + }, + "desc": "First ship of {namecode:95} class aircraft carriers, {namecode:95}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900027, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:95}", + "painting": "xianghe_memory", + "prefab": "xianghe", + "rarity_bg": "", + "ship_group": 900027, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.22, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900028": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.83, + 0.74, + 0 + ] + ], + "plane": [ + [ + 0.83, + 0.74, + 0 + ] + ] + }, + "desc": "Second ship of {namecode:95} class aircraft carriers, {namecode:96}.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900028, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:96}", + "painting": "ruihe_memory", + "prefab": "ruihe", + "rarity_bg": "", + "ship_group": 900028, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900032": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.92, + 0.45, + 0 + ] + ], + "cannon": [ + [ + 0.92, + 0.45, + 0 + ] + ], + "torpedo": [ + [ + 0.28, + 0.04, + 0 + ] + ], + "vicegun": [ + [ + 0.92, + 0.45, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900032, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yat Sen", + "painting": "yixian", + "prefab": "yixian", + "rarity_bg": "", + "ship_group": 900032, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900033": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.66, + 1.24, + 0 + ] + ], + "cannon": [ + [ + 1.66, + 1.24, + 0 + ] + ], + "torpedo": [ + [ + 0.01, + 0.12, + 0 + ] + ], + "vicegun": [ + [ + 1.66, + 1.24, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900033, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Akashi", + "painting": "mingshi", + "prefab": "mingshi", + "rarity_bg": "", + "ship_group": 900033, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.531, + 0.427, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.711, + 0.361, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "900040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.841, + 0.999, + 0 + ] + ], + "torpedo": [ + [ + -0.324, + 0.148, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900040, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ayanami", + "painting": "lingbo", + "prefab": "lingbo", + "rarity_bg": "", + "ship_group": 900040, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.29, + 0.47, + 0.48 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.28, + 2.813, + 1.136 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900041": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.096, + 3.156, + 0 + ] + ], + "cannon": [ + [ + 0.088, + 0.917, + 0 + ] + ], + "torpedo": [ + [ + 0.088, + 0.917, + 0 + ] + ], + "vicegun": [ + [ + 0.694, + 0.853, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900041, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Takao", + "painting": "gaoxiong", + "prefab": "gaoxiong", + "rarity_bg": "", + "ship_group": 900041, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.26, + 0.686, + -0.081 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + -0.46, + 0.486, + -0.481 + ] + ], + [ + "smoke", + [ + 0.54, + 0.486, + -0.481 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900042": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.096, + 3.156, + 0 + ] + ], + "cannon": [ + [ + 0.088, + 0.917, + 0 + ] + ], + "torpedo": [ + [ + 0.088, + 0.917, + 0 + ] + ], + "vicegun": [ + [ + 0.694, + 0.853, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900042, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Atago", + "painting": "aidang", + "prefab": "aidang", + "rarity_bg": "", + "ship_group": 900042, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.26, + 0.686, + -0.081 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + -0.46, + 0.486, + -0.481 + ] + ], + [ + "smoke", + [ + 0.54, + 0.486, + -0.481 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900043": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + -1.19, + 1.31, + 0 + ] + ], + "plane": [ + [ + 0.62, + 1.13, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900043, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shoukaku", + "painting": "xianghe", + "prefab": "xianghe", + "rarity_bg": "", + "ship_group": 900043, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.22, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900044": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.83, + 0.74, + 0 + ] + ], + "plane": [ + [ + 0.83, + 0.74, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900044, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Zuikaku", + "painting": "ruihe", + "prefab": "ruihe", + "rarity_bg": "", + "ship_group": 900044, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.468, + 0.148, + 0.28 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.932, + 1.436, + 1.83 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900045": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.096, + 3.156, + 0 + ] + ], + "cannon": [ + [ + 0.088, + 0.917, + 0 + ] + ], + "torpedo": [ + [ + 0.088, + 0.917, + 0 + ] + ], + "vicegun": [ + [ + 0.694, + 0.853, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900045, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mikasa", + "painting": "sanli", + "prefab": "sanli", + "rarity_bg": "", + "ship_group": 900045, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.26, + 0.686, + -0.081 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + -0.46, + 0.486, + -0.481 + ] + ], + [ + "smoke", + [ + 0.54, + 0.486, + -0.481 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900046": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900046, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hiei", + "painting": "birui", + "prefab": "birui", + "rarity_bg": "", + "ship_group": 900046, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.8, + 0.55, + -0.25 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.58, + 1.96, + 1.88 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.096, + 3.156, + 0 + ] + ], + "cannon": [ + [ + 0.088, + 0.917, + 0 + ] + ], + "torpedo": [ + [ + 0.088, + 0.917, + 0 + ] + ], + "vicegun": [ + [ + 0.694, + 0.853, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900050, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mikasa", + "painting": "sanli_memory", + "prefab": "sanli", + "rarity_bg": "", + "ship_group": 900050, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.26, + 0.686, + -0.081 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + -0.46, + 0.486, + -0.481 + ] + ], + [ + "smoke", + [ + 0.54, + 0.486, + -0.481 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900051": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900051, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hiei", + "painting": "birui_memory", + "prefab": "birui", + "rarity_bg": "", + "ship_group": 900051, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.8, + 0.55, + -0.25 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.58, + 1.96, + 1.88 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900052": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900052, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Richelieu", + "painting": "lisailiu", + "prefab": "birui", + "rarity_bg": "", + "ship_group": 900052, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.8, + 0.55, + -0.25 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.58, + 1.96, + 1.88 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900053": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900053, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jeanne", + "painting": "shengnvzhende", + "prefab": "birui", + "rarity_bg": "", + "ship_group": 900053, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.8, + 0.55, + -0.25 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.58, + 1.96, + 1.88 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900054": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900054, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Richelieu", + "painting": "lisailiu_memory", + "prefab": "birui", + "rarity_bg": "", + "ship_group": 900054, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.8, + 0.55, + -0.25 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.58, + 1.96, + 1.88 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900055": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900055, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jean Bart", + "painting": "rangbaer_memory", + "prefab": "birui", + "rarity_bg": "", + "ship_group": 900055, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.8, + 0.55, + -0.25 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.58, + 1.96, + 1.88 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.802, + 0.53, + 0 + ] + ], + "plane": [ + [ + -0.863, + 0.643, + 0 + ] + ] + }, + "desc": "Yorktown-class aircraft carrier, Enterprise. Hull Number CV-6.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900070, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Enterprise", + "painting": "qiye_dark_memory", + "prefab": "qiye_dark_memory", + "rarity_bg": "", + "ship_group": 900070, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900071": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900071, + "illustrator": 0, + "illustrator2": 0, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "?????", + "painting": "unknown2_memory", + "prefab": "unknown2", + "rarity_bg": "", + "ship_group": 900071, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900072": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.34, + 0.39, + 0 + ] + ], + "plane": [ + [ + -0.37, + 0.39, + 0 + ] + ] + }, + "desc": "Yorktown-class aircraft carrier, Enterprise. Hull Number CV-6.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900072, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Enterprise", + "painting": "qiye_dark", + "prefab": "qiye_dark", + "rarity_bg": "", + "ship_group": 900072, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900076": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.05, + 1.13, + 0 + ] + ], + "cannon": [ + [ + 1.09, + 1.15, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.07, + 0 + ] + ] + }, + "desc": "I'm Blanc, awaiting your orders. Could you tell me something interesting about the world?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900076, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blanc", + "painting": "HDN301_memory", + "prefab": "HDN301", + "rarity_bg": "nepwhite", + "ship_group": 900076, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.65, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900077": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.98, + 0.93, + 0 + ] + ], + "cannon": [ + [ + 0.92, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.08, + 0 + ] + ] + }, + "desc": "I'm the Goddess of Leanbox, Vert! I'm exceptionally skilled at shooting games. Feel free to ask me for help!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900077, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vert", + "painting": "HDN401_memory", + "prefab": "HDN401", + "rarity_bg": "nepgreen", + "ship_group": 900077, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900079": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.86, + 0.54, + 0 + ] + ], + "cannon": [ + [ + 0.86, + 0.54, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.86, + 0.54, + 0 + ] + ] + }, + "desc": "Courageous-class aircraft carrier – Glorious, Pennant Number 77.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900079, + "illustrator": 39, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Glorious", + "painting": "guangrong", + "prefab": "guangrong", + "rarity_bg": "", + "ship_group": 900079, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.28, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.571, + 0.711, + 0 + ] + ], + "cannon": [ + [ + 1.593, + 0.988, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 900130, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Great Fox's Respite", + "painting": "changmen_2", + "prefab": "changmen_2", + "rarity_bg": "", + "ship_group": 900130, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.394, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 11, + "voice_actor_2": -1 + }, + "900132": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.984, + 1.171, + 0 + ], + [ + -0.664, + 1.115, + 0 + ] + ], + "cannon": [ + [ + -0.094, + 0.708, + 0 + ] + ], + "vicegun": [ + [ + -0.094, + 0.708, + 0 + ], + [ + -0.413, + 0.965, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900132, + "illustrator": 7, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Helena", + "painting": "hailunna", + "prefab": "hailunna", + "rarity_bg": "", + "ship_group": 900132, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.53, + 0.43, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.07, + 0.99, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900133": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.52, + 1.06, + 0 + ] + ], + "cannon": [ + [ + 1.52, + 1.06, + 0 + ] + ], + "vicegun": [ + [ + 1.52, + 1.06, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900133, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "North Carolina", + "painting": "beikaluolaina", + "prefab": "beikaluolaina", + "rarity_bg": "", + "ship_group": 900133, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.3, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900134": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.42, + 1.4, + 0 + ] + ], + "cannon": [ + [ + 1.42, + 1.4, + 0 + ] + ], + "vicegun": [ + [ + 1.42, + 1.4, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900134, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Washington", + "painting": "huashengdun", + "prefab": "huashengdun", + "rarity_bg": "", + "ship_group": 900134, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.29, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900135": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.802, + 0.53, + 0 + ] + ], + "plane": [ + [ + -0.863, + 0.643, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900135, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "?????", + "painting": "qiye_dark", + "prefab": "qiye_dark", + "rarity_bg": "", + "ship_group": 900135, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900136": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.802, + 0.53, + 0 + ] + ], + "plane": [ + [ + -0.863, + 0.643, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900136, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Observer zero", + "painting": "unknown4", + "prefab": "unknown4", + "rarity_bg": "", + "ship_group": 900136, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900161": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.696, + 0.779, + 0 + ], + [ + 0.893, + 0.242, + 0 + ] + ], + "cannon": [ + [ + -0.061, + 1.339, + 0 + ] + ], + "vicegun": [ + [ + -0.696, + 0.779, + 0 + ], + [ + 0.893, + 0.242, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900161, + "illustrator": 19, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Warspite", + "painting": "yanzhan", + "prefab": "yanzhan", + "rarity_bg": "", + "ship_group": 900161, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.082, + 0.566, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.919, + 0.617, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900162": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.02, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 0.88, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.04, + 0 + ] + ], + "vicegun": [ + [ + 1.02, + 0.86, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900162, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chang Chun", + "painting": "changchun", + "prefab": "changchun", + "rarity_bg": "", + "ship_group": 900162, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900179": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.67, + 0.98, + 0 + ] + ], + "cannon": [ + [ + 0.63, + 0.93, + 0 + ] + ], + "torpedo": [ + [ + -0.01, + 0.05, + 0 + ] + ], + "vicegun": [ + [ + 0.55, + 0.97, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900179, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kizuna AI", + "painting": "aijiang", + "prefab": "aijiangDD", + "rarity_bg": "", + "ship_group": 900179, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900180": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.72, + 0 + ] + ], + "torpedo": [ + [ + 0.96, + 0.01, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900180, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-556", + "painting": "u556", + "prefab": "u556", + "rarity_bg": "", + "ship_group": 900180, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.747, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 160, + "voice_actor_2": -1 + }, + "900181": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.72, + 0 + ] + ], + "torpedo": [ + [ + 0.96, + 0.01, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900181, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-556", + "painting": "u556", + "prefab": "u556", + "rarity_bg": "", + "ship_group": 900180, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.747, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 160, + "voice_actor_2": -1 + }, + "900182": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.72, + 0 + ] + ], + "torpedo": [ + [ + 0.96, + 0.01, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900182, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-556", + "painting": "u556", + "prefab": "u556", + "rarity_bg": "", + "ship_group": 900180, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.747, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 160, + "voice_actor_2": -1 + }, + "900183": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 0.82, + 0.72, + 0 + ] + ], + "torpedo": [ + [ + 0.96, + 0.01, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900183, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cat", + "painting": "lanmao", + "prefab": "birui", + "rarity_bg": "", + "ship_group": 900183, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.436, + 2.747, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900184": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.802, + 0.53, + 0 + ] + ], + "plane": [ + [ + -0.863, + 0.643, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900184, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Enterprise", + "painting": "qiye", + "prefab": "qiye", + "rarity_bg": "", + "ship_group": 900184, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "900185": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.23, + 1.05, + 0 + ] + ], + "cannon": [ + [ + -0.14, + 1.09, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900185, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Denver", + "painting": "danfo", + "prefab": "danfo", + "rarity_bg": "", + "ship_group": 900185, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.49, + 2.23, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 117, + "voice_actor_2": -1 + }, + "900186": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.16, + 1.27, + 0 + ] + ], + "cannon": [ + [ + 0.16, + 1.27, + 0 + ] + ], + "torpedo": [ + [ + 0.06, + 0.17, + 0 + ] + ], + "vicegun": [ + [ + 0.16, + 1.27, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900186, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Columbia", + "painting": "gelunbiya", + "prefab": "gelunbiya", + "rarity_bg": "", + "ship_group": 900186, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.57, + 0.48, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.53, + 0.47, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "900187": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.11, + 1.2, + 0 + ] + ], + "cannon": [ + [ + -0.18, + 1.24, + 0 + ] + ], + "torpedo": [ + [ + 0.14, + 0.13, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900187, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Montpelier", + "painting": "mengbiliai", + "prefab": "mengbiliai", + "rarity_bg": "", + "ship_group": 900187, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.45, + 2.39, + -0.15 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 131, + "voice_actor_2": -1 + }, + "900188": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.269, + 0.914, + 0 + ], + [ + 0.922, + 0.739, + 0 + ] + ], + "cannon": [ + [ + -0.182, + 0.695, + 0 + ] + ], + "vicegun": [ + [ + -0.269, + 0.914, + 0 + ], + [ + 0.922, + 0.739, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900188, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cleveland", + "painting": "kelifulan", + "prefab": "kelifulan", + "rarity_bg": "", + "ship_group": 900188, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.57, + 0.48, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.53, + 0.47, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "900189": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.89, + 0.44, + 0 + ] + ], + "cannon": [ + [ + 0.89, + 0.44, + 0 + ] + ], + "torpedo": [ + [ + 0.23, + 0.19, + 0 + ] + ], + "vicegun": [ + [ + 0.89, + 0.44, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900189, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Takao", + "painting": "gaoxiong_dark_shadow", + "prefab": "gaoxiong_alter", + "rarity_bg": "", + "ship_group": 900189, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.78, + 0.26 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.68, + 2.55, + -0.44 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "900190": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.34, + 0.39, + 0 + ] + ], + "plane": [ + [ + -0.37, + 0.39, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900190, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Enterprise", + "painting": "qiye_dark_shadow", + "prefab": "qiye_dark_shadow", + "rarity_bg": "", + "ship_group": 900190, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "900191": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.34, + 0.39, + 0 + ] + ], + "plane": [ + [ + -0.37, + 0.39, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900191, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arbiter: The Empress III", + "painting": "empress", + "prefab": "empress", + "rarity_bg": "", + "ship_group": 900191, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "900192": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.89, + 0.44, + 0 + ] + ], + "cannon": [ + [ + 0.89, + 0.44, + 0 + ] + ], + "torpedo": [ + [ + 0.23, + 0.19, + 0 + ] + ], + "vicegun": [ + [ + 0.89, + 0.44, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900192, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Takao", + "painting": "gaoxiong_dark", + "prefab": "gaoxiong_alter", + "rarity_bg": "", + "ship_group": 900192, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.78, + 0.26 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.68, + 2.55, + -0.44 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 8, + "voice_actor_2": -1 + }, + "900193": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.047, + 0.794, + 0 + ] + ], + "torpedo": [ + [ + 0.155, + 0.041, + 0 + ] + ], + "vicegun": [ + [ + 1.024, + 0.773, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900193, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Baltimore", + "painting": "baerdimo_dark_shadow", + "prefab": "baerdimo", + "rarity_bg": "", + "ship_group": 900193, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 2.427, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 191, + "voice_actor_2": -1 + }, + "900194": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.757, + 1.097, + 0 + ] + ], + "plane": [ + [ + -0.492, + 0.598, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900194, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hornet", + "painting": "dahuangfeng_dark_shadow", + "prefab": "dahuangfeng", + "rarity_bg": "", + "ship_group": 900194, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.76, + 0.4, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.53, + 0.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "900195": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.081, + 0.724, + 0 + ] + ], + "cannon": [ + [ + 1.118, + 0.774, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + 0.076, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 900195, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kitakaze", + "painting": "beifeng", + "prefab": "beifeng", + "rarity_bg": "", + "ship_group": 900195, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.389, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 33, + "voice_actor_2": -1 + }, + "900196": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.081, + 0.724, + 0 + ] + ], + "cannon": [ + [ + 1.118, + 0.774, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + 0.076, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 900196, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kitakaze", + "painting": "beifeng_2", + "prefab": "beifeng_2", + "rarity_bg": "", + "ship_group": 900196, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.389, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 33, + "voice_actor_2": -1 + }, + "900197": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.209, + 0.826, + 0 + ] + ], + "cannon": [ + [ + 1.221, + 0.809, + 0 + ] + ], + "torpedo": [ + [ + 0.053, + 0.019, + 0 + ] + ], + "vicegun": [ + [ + 1.189, + 0.76, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900197, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pola", + "painting": "bola", + "prefab": "bola", + "rarity_bg": "", + "ship_group": 900196, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.666, + 2.169, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900198": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.01, + 1.56, + 0 + ] + ], + "cannon": [ + [ + 2.07, + 1.53, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 2.1, + 1.55, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900198, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vittorio Veneto", + "painting": "weineituo", + "prefab": "weineituo", + "rarity_bg": "", + "ship_group": 900195, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900199": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.243, + 1.164, + 0 + ] + ], + "cannon": [ + [ + 1.292, + 1.094, + 0 + ] + ], + "vicegun": [ + [ + 1.204, + 1.064, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900199, + "illustrator": 19, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Warspite Retrofit", + "painting": "yanzhan_g", + "prefab": "yanzhan_g", + "rarity_bg": "", + "ship_group": 900199, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.654, + 2.41, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "900200": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.561, + 1.745, + 0 + ] + ], + "cannon": [ + [ + 1.601, + 1.611, + 0 + ] + ], + "vicegun": [ + [ + 1.585, + 1.681, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900200, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Suruga", + "painting": "junhe", + "prefab": "junhe", + "rarity_bg": "", + "ship_group": 900200, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.654, + 2.41, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900201": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.61, + 0.92, + 0 + ] + ], + "cannon": [ + [ + 0.61, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0.43, + 0.39, + 0 + ] + ], + "vicegun": [ + [ + 0.61, + 0.92, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 900201, + "illustrator": 16, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "dadouquan_dark_shadow", + "prefab": "dadouquan", + "rarity_bg": "", + "ship_group": 900201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.83, + 2.61, + -1.03 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.42, + 0.49, + -0.12 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 63, + "voice_actor_2": -1 + }, + "900202": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.795, + 3.137, + 0 + ] + ], + "cannon": [ + [ + 1.868, + 3.337, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + -0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.723, + 3.272, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 900202, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "abeikelongbi_2_dark_shadow", + "prefab": "abeikelongbi_2", + "rarity_bg": "", + "ship_group": 900202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.346, + 2.301, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 105, + "voice_actor_2": -1 + }, + "900203": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.135, + 0.929, + 0 + ] + ], + "cannon": [ + [ + 1.114, + 0.924, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + -0.02, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900203, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gascogne μ", + "painting": "jiasikenie_idolns", + "prefab": "jiasikenie_idol", + "rarity_bg": "", + "ship_group": 900203, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.33, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 98, + "voice_actor_2": -1 + }, + "900204": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.381, + 1.021, + 0 + ] + ], + "plane": [ + [ + 1.362, + 1.012, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900204, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Akagi μ", + "painting": "chicheng_idolns", + "prefab": "chicheng_idol", + "rarity_bg": "", + "ship_group": 900204, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.342, + 2.332, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 44, + "voice_actor_2": -1 + }, + "900205": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.114, + 1.107, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 1.088, + 0 + ] + ], + "vicegun": [ + [ + 1.14, + 1.04, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900205, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Cleveland μ", + "painting": "kelifulan_idolns", + "prefab": "kelifulan_idol", + "rarity_bg": "", + "ship_group": 900205, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.369, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "900206": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.358, + 1.265, + 0 + ] + ], + "cannon": [ + [ + 1.442, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.391, + 1.273, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900206, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Admiral Hipper μ", + "painting": "xipeier_idolns", + "prefab": "xipeier_idol", + "rarity_bg": "", + "ship_group": 900206, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.377, + 2.284, + -0.081 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 61, + "voice_actor_2": -1 + }, + "900207": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.173, + 1.311, + 0 + ] + ], + "cannon": [ + [ + 1.163, + 1.256, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.176, + 1.324, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900207, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sheffield μ", + "painting": "xiefeierde_idolns", + "prefab": "xiefeierde_idol", + "rarity_bg": "", + "ship_group": 900207, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 88, + "voice_actor_2": -1 + }, + "900209": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.374, + 1.117, + 0 + ] + ], + "cannon": [ + [ + 1.346, + 1.136, + 0 + ] + ], + "remote": [ + -50, + 0, + 0 + ], + "torpedo": [ + [ + 0.009, + 0.004, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900209, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shirakami Fubuki", + "painting": "vtuber_fubuki_wjz", + "prefab": "vtuber_fubuki", + "rarity_bg": "", + "ship_group": 900209, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.386, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900210": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.181, + 1.153, + 0 + ] + ], + "cannon": [ + [ + 1.161, + 1.097, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + -0.001, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900210, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tokino Sora", + "painting": "vtuber_sora_wjz", + "prefab": "vtuber_sora", + "rarity_bg": "", + "ship_group": 900210, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900211": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.437, + 0.832, + 0 + ] + ], + "cannon": [ + [ + 1.561, + 0.849, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.062, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900211, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Minato Aqua", + "painting": "vtuber_aqua_wjz", + "prefab": "vtuber_aqua", + "rarity_bg": "", + "ship_group": 900211, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900212": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.169, + 1.101, + 0 + ] + ], + "cannon": [ + [ + 1.152, + 1.077, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + 0.01, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900212, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Natsuiro Matsuri", + "painting": "vtuber_matsuri_wjz", + "prefab": "vtuber_matsuri", + "rarity_bg": "", + "ship_group": 900212, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.493, + 2.318, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900213": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.538, + 1.332, + 0 + ] + ], + "cannon": [ + [ + 1.566, + 1.322, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + -0.001, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900213, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nakiri Ayame", + "painting": "vtuber_ayame_wjz", + "prefab": "vtuber_ayame", + "rarity_bg": "", + "ship_group": 900213, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900214": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.477, + 1.156, + 0 + ] + ], + "cannon": [ + [ + 1.485, + 1.133, + 0 + ] + ], + "torpedo": [ + [ + 0.009, + -0.006, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900214, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Murasaki Shion", + "painting": "vtuber_shion_wjz", + "prefab": "vtuber_shion", + "rarity_bg": "", + "ship_group": 900214, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.323, + 2.372, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900215": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.454, + 1.151, + 0 + ] + ], + "cannon": [ + [ + 1.461, + 1.144, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + -0.006, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900215, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ookami Mio", + "painting": "vtuber_mio_wjz", + "prefab": "vtuber_mio", + "rarity_bg": "", + "ship_group": 900215, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900216": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900216, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dido", + "painting": "daiduo", + "prefab": "daiduo", + "rarity_bg": "", + "ship_group": 900216, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900217": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900217, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kirov", + "painting": "jiluofu", + "prefab": "jiluofu", + "rarity_bg": "", + "ship_group": 900217, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900218": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900218, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sovetsky Soyuz", + "painting": "suweiaitongmeng_wjz", + "prefab": "suweiaitongmeng", + "rarity_bg": "", + "ship_group": 900218, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900219": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900219, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Omitter", + "painting": "qingchuzhe", + "prefab": "qingchuzhe", + "rarity_bg": "", + "ship_group": 900219, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900220": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900220, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "suweiailuoxiya_dark", + "prefab": "suweiailuoxiya_dark", + "rarity_bg": "", + "ship_group": 900220, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900221": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900221, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "gangute_dark", + "prefab": "gangute_dark", + "rarity_bg": "", + "ship_group": 900221, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900222": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900222, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "tashigan_dark", + "prefab": "tashigan_dark", + "rarity_bg": "", + "ship_group": 900222, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900223": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900223, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "qiabayefu_dark", + "prefab": "qiabayefu_dark", + "rarity_bg": "", + "ship_group": 900223, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900224": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900224, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "weiyan_dark", + "prefab": "weiyan_dark", + "rarity_bg": "", + "ship_group": 900224, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900225": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900225, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "shuixingjinian_dark", + "prefab": "shuixingjinian_dark", + "rarity_bg": "", + "ship_group": 900225, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900226": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900226, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "suweiaitongmeng_dark", + "prefab": "suweiaitongmeng_dark", + "rarity_bg": "", + "ship_group": 900226, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900227": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.34, + 0.39, + 0 + ] + ], + "plane": [ + [ + -0.37, + 0.39, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900227, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "qiye_dark_shadow", + "prefab": "qiye_dark_shadow", + "rarity_bg": "", + "ship_group": 900227, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "900228": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.34, + 0.39, + 0 + ] + ], + "plane": [ + [ + -0.37, + 0.39, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900228, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "lansaiyu", + "prefab": "lansaiyu", + "rarity_bg": "", + "ship_group": 900228, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "900229": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900229, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "unknown5_shadow", + "prefab": "unknown5_shadow", + "rarity_bg": "", + "ship_group": 900229, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900230": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.34, + 0.39, + 0 + ] + ], + "plane": [ + [ + -0.37, + 0.39, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900230, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Compiler ", + "painting": "unknown5", + "prefab": "unknown5", + "rarity_bg": "", + "ship_group": 900230, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "900231": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.34, + 0.39, + 0 + ] + ], + "plane": [ + [ + -0.37, + 0.39, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900231, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Purifier ", + "painting": "unknown3_shadow", + "prefab": "unknown3_shadow", + "rarity_bg": "", + "ship_group": 900231, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "900232": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.34, + 0.39, + 0 + ] + ], + "plane": [ + [ + -0.37, + 0.39, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900232, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Observer ", + "painting": "unknown2", + "prefab": "unknown2", + "rarity_bg": "", + "ship_group": 900232, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "900233": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.34, + 0.39, + 0 + ] + ], + "plane": [ + [ + -0.37, + 0.39, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900233, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Purifier ", + "painting": "unknown3", + "prefab": "unknown3", + "rarity_bg": "", + "ship_group": 900233, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "900234": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.34, + 0.39, + 0 + ] + ], + "plane": [ + [ + -0.37, + 0.39, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900234, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "unknown5", + "prefab": "unknown5", + "rarity_bg": "", + "ship_group": 900234, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "900235": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.35, + 0.67, + 0 + ] + ], + "cannon": [ + [ + 0.35, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.25, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 900235, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Universal Bulin", + "painting": "gin", + "prefab": "gin", + "rarity_bg": "", + "ship_group": 900235, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.09, + 0.59, + -0.15 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.83, + 2.24, + -0.59 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "900236": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.35, + 0.67, + 0 + ] + ], + "cannon": [ + [ + 0.35, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.25, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 900236, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vauquelin", + "painting": "wokelan", + "prefab": "wokelan", + "rarity_bg": "", + "ship_group": 900236, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.09, + 0.59, + -0.15 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.83, + 2.24, + -0.59 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "900237": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.35, + 0.67, + 0 + ] + ], + "cannon": [ + [ + 0.35, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.25, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 900237, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Le Terrible", + "painting": "kebu", + "prefab": "kebu", + "rarity_bg": "", + "ship_group": 900237, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.09, + 0.59, + -0.15 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.83, + 2.24, + -0.59 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "900238": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.35, + 0.67, + 0 + ] + ], + "cannon": [ + [ + 0.35, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.25, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 900238, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Algérie?", + "painting": "aerjiliya_hei", + "prefab": "aerjiliya_hei", + "rarity_bg": "", + "ship_group": 900238, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.09, + 0.59, + -0.15 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.83, + 2.24, + -0.59 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "900239": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.35, + 0.67, + 0 + ] + ], + "cannon": [ + [ + 0.35, + 0.67, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.25, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 900239, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jean Bart", + "painting": "rangbaer_hei", + "prefab": "rangbaer_hei", + "rarity_bg": "", + "ship_group": 900239, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.09, + 0.59, + -0.15 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.83, + 2.24, + -0.59 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "900240": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.37, + 0.97, + 0 + ] + ], + "cannon": [ + [ + -0.37, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.53, + 0.39, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900240, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Laffey", + "painting": "lafei", + "prefab": "lafei", + "rarity_bg": "", + "ship_group": 900240, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.559, + 2.57, + -0.13 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 35, + "voice_actor_2": -1 + }, + "900241": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.855, + 0.424, + 0 + ] + ], + "cannon": [ + [ + 0.855, + 0.424, + 0 + ] + ], + "torpedo": [ + [ + -0.545, + 0.537, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900241, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Javelin", + "painting": "biaoqiang", + "prefab": "biaoqiang", + "rarity_bg": "", + "ship_group": 900241, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.487, + 0.32, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.354, + 0.977, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 23, + "voice_actor_2": -1 + }, + "900242": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.16, + 0.59, + 0 + ] + ], + "cannon": [ + [ + -0.16, + 0.59, + 0 + ] + ], + "torpedo": [ + [ + 0.33, + 0.35, + 0 + ] + ], + "vicegun": [ + [ + -0.16, + 0.59, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900242, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Z23", + "painting": "z23", + "prefab": "z23", + "rarity_bg": "", + "ship_group": 900242, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.531, + 0.89, + -0.27 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.53, + 2.92, + -0.38 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "900243": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.98, + 1.05, + 0 + ] + ], + "cannon": [ + [ + 0.98, + 1.05, + 0 + ] + ], + "torpedo": [ + [ + 0.25, + 0.08, + 0 + ] + ], + "vicegun": [ + [ + 0.98, + 1.05, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900243, + "illustrator": 2, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:6}", + "painting": "lingbo", + "prefab": "lingbo", + "rarity_bg": "", + "ship_group": 900243, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "900244": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.28, + 1.19, + 0 + ] + ], + "cannon": [ + [ + 1.28, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.29, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.28, + 1.19, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900244, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tirpitz", + "painting": "tierbici", + "prefab": "tierbici", + "rarity_bg": "", + "ship_group": 900244, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.74, + 0.86, + -0.18 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.03, + 2.66, + -1.22 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "900245": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.74, + 1, + 0 + ] + ], + "plane": [ + [ + 0.73, + 1.28, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900245, + "illustrator": 21, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Graf Zeppelin", + "painting": "qibolin", + "prefab": "qibolin", + "rarity_bg": "", + "ship_group": 900245, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.01, + 0.86, + -1.89 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.87, + 0.79, + -1.85 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": -1 + }, + "900246": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.42, + 0.88, + 0 + ] + ], + "cannon": [ + [ + 1.42, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.06, + 0 + ] + ], + "vicegun": [ + [ + 1.42, + 0.88, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900246, + "illustrator": 32, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gneisenau", + "painting": "genaisennao", + "prefab": "genaisennao", + "rarity_bg": "", + "ship_group": 900246, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.88, + 1.26, + -0.73 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.18, + 2.65, + -1.54 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 26, + "voice_actor_2": -1 + }, + "900247": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -1.19, + 1.31, + 0 + ] + ], + "plane": [ + [ + 0.62, + 1.13, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900247, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:95}", + "painting": "xianghe", + "prefab": "xianghe", + "rarity_bg": "", + "ship_group": 900247, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.22, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "900248": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.83, + 0.74, + 0 + ] + ], + "plane": [ + [ + 0.83, + 0.74, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900248, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:96}", + "painting": "ruihe", + "prefab": "ruihe", + "rarity_bg": "", + "ship_group": 900248, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 46, + "voice_actor_2": -1 + }, + "900249": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.31, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 0.31, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.1, + 0.1, + 0 + ] + ], + "vicegun": [ + [ + 0.31, + 1.16, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 14, + "id": 900249, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yamashiro (Retrofit)", + "painting": "shancheng_g", + "prefab": "shancheng_g", + "rarity_bg": "", + "ship_group": 900249, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "900250": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.52, + 1.06, + 0 + ] + ], + "cannon": [ + [ + 1.52, + 1.06, + 0 + ] + ], + "vicegun": [ + [ + 1.52, + 1.06, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900250, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "North Carolina", + "painting": "beikaluolaina", + "prefab": "beikaluolaina", + "rarity_bg": "", + "ship_group": 900250, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.3, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 39, + "voice_actor_2": -1 + }, + "900251": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.42, + 1.4, + 0 + ] + ], + "cannon": [ + [ + 1.42, + 1.4, + 0 + ] + ], + "vicegun": [ + [ + 1.42, + 1.4, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900251, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Washington", + "painting": "huashengdun", + "prefab": "huashengdun", + "rarity_bg": "", + "ship_group": 900251, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.29, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 3, + "voice_actor_2": -1 + }, + "900252": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.802, + 0.53, + 0 + ] + ], + "plane": [ + [ + -0.863, + 0.643, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900252, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Enterprise", + "painting": "qiye", + "prefab": "qiye", + "rarity_bg": "", + "ship_group": 900252, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "900253": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.83, + 1.38, + 0 + ] + ], + "cannon": [ + [ + 1.9, + 1.55, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.13, + 0 + ] + ], + "vicegun": [ + [ + -0.21, + 1.4, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900253, + "illustrator": 14, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Duke of York", + "painting": "yuekegongjue", + "prefab": "yuekegongjue", + "rarity_bg": "", + "ship_group": 900253, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.26, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 79, + "voice_actor_2": -1 + }, + "900254": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1, + 1.39, + 0 + ] + ], + "plane": [ + [ + 1.12, + 1.44, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900254, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Victorious", + "painting": "shengli", + "prefab": "shengli", + "rarity_bg": "", + "ship_group": 900254, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.27, + -1.47 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 94, + "voice_actor_2": -1 + }, + "900255": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.029, + 1.278, + 0 + ] + ], + "cannon": [ + [ + 0.029, + 1.278, + 0 + ] + ], + "torpedo": [ + [ + 0.154, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + 0.029, + 1.278, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900255, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:82}", + "painting": "sanli", + "prefab": "sanli", + "rarity_bg": "", + "ship_group": 900255, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.221, + 2.345, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 47, + "voice_actor_2": -1 + }, + "900256": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.05, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 1.11, + 1.24, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 3, + "id": 900256, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Massachusetts", + "painting": "masazhusai", + "prefab": "masazhusai", + "rarity_bg": "", + "ship_group": 900256, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.16, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 131, + "voice_actor_2": -1 + }, + "900257": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 0.823, + 0 + ] + ], + "cannon": [ + [ + -0.25, + 1.291, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0.585, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900257, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hood", + "painting": "hude", + "prefab": "hude", + "rarity_bg": "", + "ship_group": 900257, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 36, + "voice_actor_2": -1 + }, + "900258": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.333, + 1.037, + 0 + ] + ], + "plane": [ + [ + -0.81, + 0.757, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900258, + "illustrator": 18, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ark Royal", + "painting": "huangjiafangzhou", + "prefab": "huangjiafangzhou", + "rarity_bg": "", + "ship_group": 900258, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.469, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.34, + 0.854, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "900259": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.931, + 1.059, + 0 + ] + ], + "plane": [ + [ + 0.492, + 0.393, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900259, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:91}", + "painting": "chicheng", + "prefab": "chicheng", + "rarity_bg": "", + "ship_group": 900259, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.478, + 0.432, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.384, + 0.853, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 44, + "voice_actor_2": -1 + }, + "900260": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -1.059, + 0.492, + 0 + ] + ], + "plane": [ + [ + 0.946, + 0.204, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900260, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:92}", + "painting": "jiahe", + "prefab": "jiahe", + "rarity_bg": "", + "ship_group": 900260, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.799, + 0.453, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.304, + 0.977, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": -1 + }, + "900261": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.407, + 0.613, + 0 + ] + ], + "cannon": [ + [ + 0.015, + 1.165, + 0 + ] + ], + "vicegun": [ + [ + 1.407, + 0.613, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900261, + "illustrator": 11, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Renown", + "painting": "shengwang", + "prefab": "shengwang", + "rarity_bg": "", + "ship_group": 900261, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.832, + 0.566, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.608, + 0.741, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": -1 + }, + "900262": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 2.07, + 1.4, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.99, + 1.39, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900262, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "King George V", + "painting": "qiaozhiwushi", + "prefab": "qiaozhiwushi", + "rarity_bg": "", + "ship_group": 900262, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand2", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.3, + 0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 183, + "voice_actor_2": -1 + }, + "900263": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.696, + 0.779, + 0 + ], + [ + 0.893, + 0.242, + 0 + ] + ], + "cannon": [ + [ + -0.061, + 1.339, + 0 + ] + ], + "vicegun": [ + [ + -0.696, + 0.779, + 0 + ], + [ + 0.893, + 0.242, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900263, + "illustrator": 19, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Warspite", + "painting": "yanzhan", + "prefab": "yanzhan", + "rarity_bg": "", + "ship_group": 900263, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.082, + 0.566, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.919, + 0.617, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "900264": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.804, + 0.561, + 0 + ] + ], + "plane": [ + [ + -0.205, + 1.344, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900264, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Illustrious", + "painting": "guanghui", + "prefab": "guanghui", + "rarity_bg": "", + "ship_group": 900264, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.38, + 1.09, + -0.39 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.6, + 3.04, + -1.47 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 6, + "voice_actor_2": -1 + }, + "900265": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1, + 0.88, + 0 + ] + ], + "plane": [ + [ + 0.85, + 0.77, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900265, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Formidable", + "painting": "kewei", + "prefab": "kewei", + "rarity_bg": "", + "ship_group": 900265, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.19, + -1.47 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "900266": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.643, + 1.075, + 0 + ] + ], + "cannon": [ + [ + 1.702, + 1.074, + 0 + ] + ], + "torpedo": [ + [ + -0.013, + 0.032, + 0 + ] + ], + "vicegun": [ + [ + 1.691, + 1.094, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900266, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sovetskaya Rossiya", + "painting": "suweiailuoxiya", + "prefab": "suweiailuoxiya", + "rarity_bg": "", + "ship_group": 900266, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.38, + 2.186, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 85, + "voice_actor_2": -1 + }, + "900267": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.595, + 1.143, + 0 + ] + ], + "cannon": [ + [ + 1.558, + 1.084, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + 0.022, + 0 + ] + ], + "vicegun": [ + [ + 1.623, + 1.027, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900267, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gangut", + "painting": "gangute", + "prefab": "gangute", + "rarity_bg": "", + "ship_group": 900267, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.611, + 2.1, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 222, + "voice_actor_2": -1 + }, + "900268": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.772, + 0.605, + 0 + ] + ], + "cannon": [ + [ + -0.772, + 0.605, + 0 + ] + ], + "plane": [ + [ + -0.772, + 0.605, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 900268, + "illustrator": 10, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Saratoga", + "painting": "salatuojia", + "prefab": "salatuojia", + "rarity_bg": "", + "ship_group": 900268, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.887, + 1.243, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.642, + 1.068, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "900269": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.12, + 1.3, + 0 + ] + ], + "plane": [ + [ + 1.09, + 1.32, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900269, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Essex", + "painting": "aisaikesi", + "prefab": "aisaikesi", + "rarity_bg": "", + "ship_group": 900269, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 149, + "voice_actor_2": -1 + }, + "900270": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.483, + 1.215, + 0 + ] + ], + "plane": [ + [ + 1.438, + 1.204, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900270, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Intrepid", + "painting": "wuwei", + "prefab": "wuwei", + "rarity_bg": "", + "ship_group": 900270, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 225, + "voice_actor_2": -1 + }, + "900271": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.29, + 1.03, + 0 + ] + ], + "plane": [ + [ + 1.41, + 1.07, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900271, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bunker Hill", + "painting": "bangkeshan", + "prefab": "bangkeshan", + "rarity_bg": "", + "ship_group": 900271, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 179, + "voice_actor_2": -1 + }, + "900272": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.66, + 1.299, + 0 + ] + ], + "cannon": [ + [ + 1.67, + 1.335, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.66, + 1.365, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900272, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kaga", + "painting": "lisailiu", + "prefab": "lisailiu", + "rarity_bg": "", + "ship_group": 900272, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 148, + "voice_actor_2": -1 + }, + "900273": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.16, + 1.13, + 0 + ] + ], + "plane": [ + [ + 1.244, + 1.128, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900273, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Béarn", + "painting": "beiyaen", + "prefab": "beiyaen", + "rarity_bg": "", + "ship_group": 900273, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.55, + 2.07, + -1.85 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 235, + "voice_actor_2": -1 + }, + "900274": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.118, + 1.193, + 0 + ] + ], + "cannon": [ + [ + 1.063, + 1.184, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + -0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.112, + 1.175, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900274, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Howe", + "painting": "hao", + "prefab": "hao", + "rarity_bg": "", + "ship_group": 900274, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.315, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 116, + "voice_actor_2": -1 + }, + "900275": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.59, + 1.288, + 0 + ] + ], + "cannon": [ + [ + 1.605, + 1.205, + 0 + ] + ], + "torpedo": [ + [ + -0.014, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.607, + 1.255, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900275, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Valiant", + "painting": "yingyong", + "prefab": "yingyong", + "rarity_bg": "", + "ship_group": 900275, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.45, + 2.415, + 0.53 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 240, + "voice_actor_2": -1 + }, + "900276": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.785, + 1.358, + 0 + ] + ], + "cannon": [ + [ + 2.789, + 1.258, + 0 + ] + ], + "plane": [ + [ + 2.785, + 1.301, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.747, + 1.311, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900276, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + -120, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Perseus", + "painting": "yingxianzuo", + "prefab": "yingxianzuo", + "rarity_bg": "", + "ship_group": 900276, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.481, + 2.325, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 241, + "voice_actor_2": -1 + }, + "900277": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.466, + 1.186, + 0 + ] + ], + "cannon": [ + [ + 1.462, + 1.16, + 0 + ] + ], + "plane": [ + [ + 1.446, + 1.124, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + -0.018, + 0 + ] + ], + "vicegun": [ + [ + 1.463, + 1.198, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900277, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 80, + -120, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Eagle", + "painting": "ying", + "prefab": "ying", + "rarity_bg": "", + "ship_group": 900277, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.481, + 2.325, + -0.55 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 239, + "voice_actor_2": -1 + }, + "900278": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.571, + 1.092, + 0 + ] + ], + "cannon": [ + [ + 1.593, + 0.988, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 6, + "id": 900278, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:74}", + "painting": "changmen", + "prefab": "changmen", + "rarity_bg": "", + "ship_group": 900278, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.394, + 2.446, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 11, + "voice_actor_2": -1 + }, + "900279": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.75, + 0.88, + 0 + ] + ], + "plane": [ + [ + 0.75, + 0.88, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900279, + "illustrator": 14, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ranger", + "painting": "tujizhe", + "prefab": "tujizhe", + "rarity_bg": "", + "ship_group": 900279, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.5, + 0.55, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.3, + 0.87, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 74, + "voice_actor_2": -1 + }, + "900280": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.06, + 1.02, + 0 + ] + ], + "cannon": [ + [ + 1.14, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.141, + 0.085, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900280, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:92}", + "painting": "jiahezhanlie", + "prefab": "jiahezhanlie", + "rarity_bg": "", + "ship_group": 900280, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 9, + "voice_actor_2": -1 + }, + "900281": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.77, + 1.19, + 0 + ] + ], + "cannon": [ + [ + 0.77, + 1.19, + 0 + ] + ], + "plane": [ + [ + 0.77, + 1.19, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900281, + "illustrator": 23, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:89}", + "painting": "fengxiang", + "prefab": "fengxiang", + "rarity_bg": "", + "ship_group": 900281, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 0.97, + -0.4 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.67, + 2.52, + -0.99 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 58, + "voice_actor_2": -1 + }, + "900282": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.126, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.465, + 0.245, + 0 + ] + ], + "vicegun": [ + [ + -0.327, + 0.824, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900282, + "illustrator": 1, + "illustrator2": 19, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rodney", + "painting": "luodeni", + "prefab": "luodeni", + "rarity_bg": "", + "ship_group": 900282, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.71, + 0.72, + -0.12 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.96, + 0.84, + -0.32 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 32, + "voice_actor_2": -1 + }, + "900283": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900283, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:79}", + "painting": "shancheng", + "prefab": "shancheng", + "rarity_bg": "", + "ship_group": 900249, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "900284": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900284, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "TB ", + "painting": "tbniang", + "prefab": "tbniang", + "rarity_bg": "", + "ship_group": 90284, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "900285": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900285, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arbiter: Strength VIII", + "painting": "strength", + "prefab": "strength", + "rarity_bg": "", + "ship_group": 90285, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "900286": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900286, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arbiter: Temperance XIV", + "painting": "temperance", + "prefab": "temperance", + "rarity_bg": "", + "ship_group": 90286, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "900287": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900287, + "illustrator": 22, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arbiter: The Hermit IX", + "painting": "hermit", + "prefab": "hermit", + "rarity_bg": "", + "ship_group": 90287, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "900295": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.5, + 0.8, + 0 + ], + [ + -0.5, + 0.8, + 0 + ] + ], + "plane": [ + [ + -0.5, + 0.5, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900295, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yorktown", + "painting": "yuekecheng_hei", + "prefab": "yuekecheng", + "rarity_bg": "", + "ship_group": 90295, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.549, + 0.503, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.385, + 0.667, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 42, + "voice_actor_2": -1 + }, + "900296": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.802, + 0.53, + 0 + ] + ], + "plane": [ + [ + -0.863, + 0.643, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900296, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Enterprise", + "painting": "qiye_hei", + "prefab": "qiye", + "rarity_bg": "", + "ship_group": 90296, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.967, + 0.38, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.14, + 0.832, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 31, + "voice_actor_2": -1 + }, + "900297": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.757, + 1.097, + 0 + ] + ], + "plane": [ + [ + -0.492, + 0.598, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900297, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hornet", + "painting": "dahuangfeng_hei", + "prefab": "dahuangfeng", + "rarity_bg": "", + "ship_group": 90297, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.76, + 0.4, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.53, + 0.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 24, + "voice_actor_2": -1 + }, + "900298": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.24, + 1.69, + 0 + ] + ], + "cannon": [ + [ + 1.49, + 0.74, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.18, + 0 + ] + ], + "vicegun": [ + [ + 1.51, + 0.72, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900298, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:161}", + "painting": "tiancheng_hei", + "prefab": "tiancheng", + "rarity_bg": "", + "ship_group": 90298, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 104, + "voice_actor_2": -1 + }, + "900300": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.607, + 1.125, + 0 + ] + ], + "cannon": [ + [ + 1.65, + 1.103, + 0 + ] + ], + "torpedo": [ + [ + 0.012, + -0.009, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900300, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Marie Rose ", + "painting": "maliluosi_doa_wjz", + "prefab": "maliluosi_doa", + "rarity_bg": "", + "ship_group": 900300, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900301": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.685, + 1.05, + 0 + ] + ], + "cannon": [ + [ + 1.663, + 1.036, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.002, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900301, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Honoka ", + "painting": "suixiang_doa_wjz", + "prefab": "suixiang_doa", + "rarity_bg": "", + "ship_group": 900301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900302": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.482, + 1.069, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + -0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.524, + 1.077, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900302, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kasumi ", + "painting": "xia_DOA_wjz", + "prefab": "xia_DOA", + "rarity_bg": "", + "ship_group": 900302, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 2.427, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900303": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.19, + 0.98, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.012, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900303, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Misaki ", + "painting": "haixiao_DOA_wjz", + "prefab": "haixiao_DOA", + "rarity_bg": "", + "ship_group": 900303, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900304": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.73, + 1.112, + 0 + ] + ], + "cannon": [ + [ + 1.758, + 1.049, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.009, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900304, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nagisa ", + "painting": "zhixiao_DOA_wjz", + "prefab": "zhixiao_DOA", + "rarity_bg": "", + "ship_group": 900304, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900305": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.666, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.644, + 1.08, + 0 + ] + ], + "plane": [ + [ + 1.572, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + -0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.666, + 1.08, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900305, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nyotengu ", + "painting": "nvtiangou_DOA_wjz", + "prefab": "nvtiangou_DOA", + "rarity_bg": "", + "ship_group": 900305, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.582, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900306": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.497, + 1.03, + 0 + ] + ], + "cannon": [ + [ + 1.471, + 0.967, + 0 + ] + ], + "plane": [ + [ + 1.492, + 0.976, + 0 + ] + ], + "torpedo": [ + [ + 0.007, + -0.004, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900306, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Monica ", + "painting": "monika_DOA_wjz", + "prefab": "monika_DOA", + "rarity_bg": "", + "ship_group": 900306, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900307": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.666, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.644, + 1.08, + 0 + ] + ], + "plane": [ + [ + 1.572, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + -0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.666, + 1.08, + 0 + ] + ] + }, + "desc": "?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900307, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dr. Aoste", + "painting": "aosita_hei", + "prefab": "gin", + "rarity_bg": "", + "ship_group": 900307, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.582, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900308": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.497, + 1.03, + 0 + ] + ], + "cannon": [ + [ + 1.471, + 0.967, + 0 + ] + ], + "plane": [ + [ + 1.492, + 0.976, + 0 + ] + ], + "torpedo": [ + [ + 0.007, + -0.004, + 0 + ] + ] + }, + "desc": "?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900308, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dr. Anzeel", + "painting": "anjie_hei", + "prefab": "anjie", + "rarity_bg": "", + "ship_group": 900308, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900309": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.092, + 1.003, + 0 + ] + ], + "cannon": [ + [ + 2.068, + 0.997, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.084, + 1.006, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900309, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "suweiaibeilaluosi_hei", + "prefab": "suweiaibeilaluosi_hei", + "rarity_bg": "", + "ship_group": 900309, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.5, + 2.346, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 106, + "voice_actor_2": -1 + }, + "900310": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.129, + 1.063, + 0 + ] + ], + "cannon": [ + [ + 1.129, + 1.027, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 900310, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Universal Enhanced Rigging (Experimental) +α", + "painting": "gin_2", + "prefab": "gin_2", + "rarity_bg": "", + "ship_group": 900310, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.461, + 2.161, + -0.15 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "900311": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.02, + 0.6, + 0 + ] + ], + "cannon": [ + [ + -0.02, + 0.6, + 0 + ] + ], + "torpedo": [ + [ + -0.02, + 0.6, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 900311, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Prototype Bulin MKII", + "painting": "kin", + "prefab": "kin", + "rarity_bg": "", + "ship_group": 900311, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.266, + 0.329, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "900312": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.027, + 0.936, + 0 + ] + ], + "cannon": [ + [ + 1.088, + 0.776, + 0 + ] + ], + "torpedo": [ + [ + 0.251, + 0.487, + 0 + ] + ], + "vicegun": [ + [ + 1.088, + 0.776, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900312, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Suffolk", + "painting": "safuke_xinshou", + "prefab": "safuke", + "rarity_bg": "", + "ship_group": 900312, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + 0.29, + 0.95, + -0.16 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.71, + 2.52, + 0.07 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900313": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0, + 0, + 0 + ] + ], + "cannon": [ + [ + 0, + 0, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900313, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "unknown1_xinshou", + "prefab": "unknown1", + "rarity_bg": "", + "ship_group": 900313, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.81, + 0.402, + 0 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.63, + 0.433, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900314": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.01, + 1.56, + 0 + ] + ], + "cannon": [ + [ + 2.07, + 1.53, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 2.1, + 1.55, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900314, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Souryuu META'", + "painting": "canglong_alter_hei", + "prefab": "canglong_alter_hei", + "rarity_bg": "", + "ship_group": 900314, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 30, + "voice_actor_2": -1 + }, + "900315": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.369, + 1.002, + 0 + ] + ], + "cannon": [ + [ + 1.34, + 1.021, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.321, + 1.009, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900315, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Helena META", + "painting": "hailunna_alter", + "prefab": "hailunna_alter", + "rarity_bg": "", + "ship_group": 900315, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.454, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "900316": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.01, + 1.56, + 0 + ] + ], + "cannon": [ + [ + 2.07, + 1.53, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 2.1, + 1.55, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900316, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yorktown META", + "painting": "yuekecheng_alter", + "prefab": "yuekecheng_alter", + "rarity_bg": "", + "ship_group": 900316, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "900317": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.266, + 1.151, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.301, + 1.144, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900317, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "San Francisco ", + "painting": "jiujinshan_wjz", + "prefab": "jiujinshan", + "rarity_bg": "", + "ship_group": 900317, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.596, + 2.323, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 275, + "voice_actor_2": -1 + }, + "900318": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.92, + 0.977, + 0 + ] + ], + "cannon": [ + [ + 0.759, + 0.967, + 0 + ] + ], + "torpedo": [ + [ + 0.035, + 0.034, + 0 + ] + ], + "vicegun": [ + [ + 0.75, + 0.984, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900318, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Roon", + "painting": "luoen_3", + "prefab": "luoen", + "rarity_bg": "", + "ship_group": 900318, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.59, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 109, + "voice_actor_2": -1 + }, + "900319": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.58, + 1.4, + 0 + ] + ], + "cannon": [ + [ + 1.58, + 1.4, + 0 + ] + ], + "torpedo": [ + [ + 0.09, + 0.16, + 0 + ] + ], + "vicegun": [ + [ + 1.58, + 1.4, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900319, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Scharnhorst", + "painting": "shaenhuosite_alter_hei", + "prefab": "shaenhuosite", + "rarity_bg": "", + "ship_group": 900319, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.08, + 1.14, + -0.35 + ] + ] + ] + ], + [ + 40, + [ + [ + "smoke", + [ + 0.21, + 2.74, + -1.27 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 38, + "voice_actor_2": -1 + }, + "900320": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900320, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arbiter: The Lovers VI", + "painting": "lovers", + "prefab": "lovers", + "rarity_bg": "", + "ship_group": 900320, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900321": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900321, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "???", + "painting": "ailunsamuna_hei", + "prefab": "ailunsamuna", + "rarity_bg": "", + "ship_group": 900321, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900322": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900322, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bon Homme Richard", + "painting": "haorenlichade_alter", + "prefab": "haorenlichade_alter", + "rarity_bg": "", + "ship_group": 900322, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900323": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900323, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "?", + "painting": "tbniang_hei", + "prefab": "tbniang_hei", + "rarity_bg": "", + "ship_group": 900323, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900325": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900325, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "544845544F574552", + "painting": "sairenboss14_jz", + "prefab": "sairenboss14_jz", + "rarity_bg": "", + "ship_group": 900325, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900326": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900326, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Renown META ", + "painting": "shengwang_alter", + "prefab": "shengwang_alter", + "rarity_bg": "", + "ship_group": 900326, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900327": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900327, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Repulse META ", + "painting": "fanji_alter", + "prefab": "fanji_alter", + "rarity_bg": "", + "ship_group": 900327, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900328": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 900328, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Janus", + "painting": "yanusi", + "prefab": "yanusi", + "rarity_bg": "", + "ship_group": 900328, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900329": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.006, + 0.986, + 0 + ] + ], + "cannon": [ + [ + 2.002, + 1.011, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.011, + 1.019, + 0 + ] + ] + }, + "desc": "Roma", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900329, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Roma", + "painting": "luoma_ghost", + "prefab": "luoma_ghost", + "rarity_bg": "", + "ship_group": 900329, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.483, + 2.531, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 331, + "voice_actor_2": -1 + }, + "900330": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.97, + 1.68, + 0 + ] + ], + "cannon": [ + [ + 2.01, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.85, + 1.22, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900330, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Musashi", + "painting": "wuzang_s", + "prefab": "wuzang", + "rarity_bg": "", + "ship_group": 900330, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.4, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 64, + "voice_actor_2": -1 + }, + "900331": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 0.66, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 0.66, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.16, + 0.66, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900331, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jintsuu META", + "painting": "shentong_alter", + "prefab": "shentong_alter", + "rarity_bg": "", + "ship_group": 900331, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "900332": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.497, + 1.03, + 0 + ] + ], + "cannon": [ + [ + 1.471, + 0.967, + 0 + ] + ], + "plane": [ + [ + 1.492, + 0.976, + 0 + ] + ], + "torpedo": [ + [ + 0.007, + -0.004, + 0 + ] + ] + }, + "desc": "Dr. Anzeel", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900332, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dr. Anzeel", + "painting": "anjie", + "prefab": "anjie", + "rarity_bg": "", + "ship_group": 900332, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900333": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "Dr. Aoste", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900333, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dr. Aoste", + "painting": "aosita", + "prefab": "aosita", + "rarity_bg": "", + "ship_group": 900333, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900334": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "Laffey II", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900334, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Laffey II", + "painting": "lafeiII_n", + "prefab": "lafeiII_n", + "rarity_bg": "", + "ship_group": 900334, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900335": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.1, + 0.43, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 1.3, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.27, + 0 + ] + ], + "vicegun": [ + [ + 1.1, + 0.43, + 0 + ] + ] + }, + "desc": "Arbiter: The Devil XV", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 900335, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arbiter: The Devil XV", + "painting": "devil", + "prefab": "devil", + "rarity_bg": "", + "ship_group": 900335, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -0.559, + 1.15, + -0.51 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + 0.293, + 0.826, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900350": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 0.66, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 0.66, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.16, + 0.66, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900350, + "illustrator": 41, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:39}", + "painting": "shentong", + "prefab": "shentong", + "rarity_bg": "", + "ship_group": 900350, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "900351": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.245, + 1.238, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 1.22, + 0 + ] + ], + "torpedo": [ + [ + 0.001, + -0.001, + 0 + ] + ], + "vicegun": [ + [ + 1.23, + 1.21, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900351, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:199}", + "painting": "xinzexi", + "prefab": "xinzexi", + "rarity_bg": "", + "ship_group": 900351, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.641, + 2.55, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "xinzexi", + [ + 100, + -10, + 0 + ], + [ + 1 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -20, + -715, + 0 + ], + [ + 1.1 + ] + ], + "tag": [], + "time": "", + "voice_actor": 273, + "voice_actor_2": -1 + }, + "900352": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.16, + 0.66, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 0.66, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.16, + 0.66, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900352, + "illustrator": 41, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Queen Elizabeth META", + "painting": "yilishabai_alter", + "prefab": "yilishabai_alter", + "rarity_bg": "", + "ship_group": 900350, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "900353": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.467, + 1.304, + 0 + ] + ], + "cannon": [ + [ + 1.439, + 1.286, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.452, + 1.276, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900353, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "La Galissonnière META", + "painting": "jialisuoniye_alter", + "prefab": "jialisuoniye_alter", + "rarity_bg": "", + "ship_group": 900351, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.641, + 2.55, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 273, + "voice_actor_2": -1 + }, + "900354": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Sovetsky Soyuz", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900354, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sovetsky Soyuz", + "painting": "suweiaitongmeng", + "prefab": "suweiaitongmeng", + "rarity_bg": "", + "ship_group": 900354, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900355": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Arbiter: The Hermit IX /*0x0F*/", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900355, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arbiter: The Hermit IX", + "painting": "hermit_alter", + "prefab": "hermit_alter", + "rarity_bg": "", + "ship_group": 900355, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900356": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Arbiter: The Tower XVI", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900356, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arbiter: The Tower XVI", + "painting": "tower", + "prefab": "tower", + "rarity_bg": "", + "ship_group": 900356, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900357": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.65, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.23, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "▅H▊▇ro▅■ph▇▆▅", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900357, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "▅H▊▇ro▅■ph▇▆▅", + "painting": "hierophant", + "prefab": "hierophant", + "rarity_bg": "", + "ship_group": 900357, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.69, + 2.05, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900384": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.661, + 1.263, + 0 + ] + ], + "cannon": [ + [ + 1.699, + 1.199, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.733, + 1.208, + 0 + ] + ] + }, + "desc": "Light cruiser – Jeanne d'Arc.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900384, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jeanne d'Arc", + "painting": "shengnvzhende", + "prefab": "shengnvzhende", + "rarity_bg": "", + "ship_group": 900384, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 146, + "voice_actor_2": -1 + }, + "900385": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.01, + 0.96, + 0 + ] + ], + "cannon": [ + [ + -0.03, + 0.94, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + 0.03, + 0.88, + 0 + ] + ] + }, + "desc": "Sheffield-class Light Cruiser - HMS Sheffield", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900385, + "illustrator": 20, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sheffield", + "painting": "xiefeierde", + "prefab": "xiefeierde", + "rarity_bg": "", + "ship_group": 900385, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 88, + "voice_actor_2": -1 + }, + "900386": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.13, + 0.7, + 0 + ] + ], + "cannon": [ + [ + 1.13, + 0.7, + 0 + ] + ], + "torpedo": [ + [ + 0.164, + 0.102, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 0.7, + 0 + ] + ] + }, + "desc": "Agano-class light cruiser number two – Noshiro.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900386, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:50}", + "painting": "nengdai", + "prefab": "nengdai", + "rarity_bg": "", + "ship_group": 900386, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.51, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 147, + "voice_actor_2": -1 + }, + "900387": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.029, + 1.278, + 0 + ] + ], + "cannon": [ + [ + 0.029, + 1.278, + 0 + ] + ], + "torpedo": [ + [ + 0.154, + 0.067, + 0 + ] + ], + "vicegun": [ + [ + 0.029, + 1.278, + 0 + ] + ] + }, + "desc": "Battleship Suruga, reporting for duty. It would seem that some threads of fate connect me to this port... No, don't mind my rambling. Please disregard that.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900387, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:175}", + "painting": "junhe", + "prefab": "junhe", + "rarity_bg": "", + "ship_group": 900387, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.221, + 2.345, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 215, + "voice_actor_2": -1 + }, + "900388": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.62, + 1.1, + 0 + ] + ], + "plane": [ + [ + 1.56, + 1.41, + 0 + ] + ] + }, + "desc": "Aircraft carrier – Impero.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900388, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Impero", + "painting": "diguo", + "prefab": "diguo", + "rarity_bg": "", + "ship_group": 900388, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.28, + -1.89 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 309, + "voice_actor_2": -1 + }, + "900389": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.66, + 1.44, + 0 + ] + ], + "cannon": [ + [ + 1.47, + 1.37, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.58, + 1.49, + 0 + ] + ] + }, + "desc": "Lyon-class battleship – Lyon.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900389, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lyon", + "painting": "liang", + "prefab": "liang", + "rarity_bg": "", + "ship_group": 900389, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.49, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 155, + "voice_actor_2": -1 + }, + "900390": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.022, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.15, + 1.013, + 0 + ] + ] + }, + "desc": "I'm Memphis. You may not know me, but I know you and I know you well. Don't you worry, I'm not a threat – you can trust me. Today I assume the role of your right hand and bodyguard.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900390, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Memphis META", + "painting": "mengfeisi_alter", + "prefab": "mengfeisi_alter", + "rarity_bg": "", + "ship_group": 900390, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.323, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 159, + "voice_actor_2": -1 + }, + "900391": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.999, + 1.018, + 0 + ] + ], + "cannon": [ + [ + 1.004, + 1.007, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.016, + 1.024, + 0 + ] + ] + }, + "desc": "Duca degli Abruzzi-class light cruiser – Luigi di Savoia Duca degli Abruzzi.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900391, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Duca degli Abruzzi", + "painting": "abuluqi", + "prefab": "abuluqi", + "rarity_bg": "", + "ship_group": 900391, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.525, + 2.415, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 270, + "voice_actor_2": -1 + }, + "900392": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.56, + 1.74, + 0 + ] + ], + "cannon": [ + [ + 1.76, + 1.61, + 0 + ] + ], + "torpedo": [ + [ + 0.07, + 0.09, + 0 + ] + ] + }, + "desc": "Project 69-class cruiser – Kronshtadt", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900392, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kronshtadt", + "painting": "kalangshitade", + "prefab": "kalangshitade", + "rarity_bg": "", + "ship_group": 900392, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.386, + 2.405, + -0.16 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_kalangshitade", + [ + 1597, + 229, + 0 + ], + [ + 1.35 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -92, + -772, + 0 + ], + [ + 0.95 + ] + ], + "tag": [], + "time": "", + "voice_actor": 272, + "voice_actor_2": -1 + }, + "900393": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.01, + 1.56, + 0 + ] + ], + "cannon": [ + [ + 2.07, + 1.53, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 2.1, + 1.55, + 0 + ] + ] + }, + "desc": "I'm getting all fired up! The name's Hiryuu, Hiryuu from the 2nd CarDiv. As a member of this fleet, I'll obey your orders. I do hope that you are qualified to lead us.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 900393, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:191}", + "painting": "feilong_alter", + "prefab": "feilong_alter", + "rarity_bg": "", + "ship_group": 900393, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 30, + "voice_actor_2": -1 + }, + "900394": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.01, + 1.56, + 0 + ] + ], + "cannon": [ + [ + 2.07, + 1.53, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 2.1, + 1.55, + 0 + ] + ] + }, + "desc": "Aircraft carrier Ark Royal, at your service. I hereby vow to lend you my strength for as long as you harbour honourable ambitions!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900394, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ark Royal META", + "painting": "huangjiafangzhou_alter", + "prefab": "huangjiafangzhou_alter", + "rarity_bg": "", + "ship_group": 900394, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "900395": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.804, + 0.561, + 0 + ] + ], + "plane": [ + [ + -0.205, + 1.344, + 0 + ] + ] + }, + "desc": "No description", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900395, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Illustrious", + "painting": "guanghui", + "prefab": "guanghui", + "rarity_bg": "", + "ship_group": 900395, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 70, + [ + [ + "smoke", + [ + -1.38, + 1.09, + -0.39 + ] + ] + ] + ], + [ + 30, + [ + [ + "smoke", + [ + -0.6, + 3.04, + -1.47 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 6, + "voice_actor_2": -1 + }, + "900396": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.21, + 0.77, + 0 + ] + ], + "cannon": [ + [ + 1.24, + 0.79, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + 0.03, + 0 + ] + ] + }, + "desc": "Battleship – Gascogne.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900396, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gascogne", + "painting": "jiasikenie", + "prefab": "jiasikenie", + "rarity_bg": "", + "ship_group": 900396, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.33, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 98, + "voice_actor_2": -1 + }, + "900397": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.773, + 1.18, + 0 + ] + ], + "cannon": [ + [ + 1.822, + 1.095, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + 0.03, + 0 + ] + ] + }, + "desc": "Battleship – Champagne.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900397, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Champagne", + "painting": "xiangbin", + "prefab": "xiangbin", + "rarity_bg": "", + "ship_group": 900397, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.33, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 64, + "voice_actor_2": -1 + }, + "900398": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Battlecruiser – Odin.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900398, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:486}", + "painting": "aoding", + "prefab": "aoding", + "rarity_bg": "", + "ship_group": 900398, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 237, + "voice_actor_2": -1 + }, + "900399": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.28, + 1.33, + 0 + ] + ], + "cannon": [ + [ + -0.15, + 1.35, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.05, + 0 + ] + ] + }, + "desc": "Heavy cruiser – Saint Louis.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900399, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Saint Louis", + "painting": "luyijiushi", + "prefab": "luyijiushi", + "rarity_bg": "", + "ship_group": 900399, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 40, + [ + [ + "smoke", + [ + -0.436, + 2.45, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 106, + "voice_actor_2": -1 + }, + "900400": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.6, + 1.94, + 0 + ] + ], + "cannon": [ + [ + 1.81, + 1.44, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.66, + 1.37, + 0 + ] + ] + }, + "desc": "Battlecruiser – Prinz Rupprecht.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 900400, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "{namecode:484}", + "painting": "lupuleixite", + "prefab": "lupuleixite", + "rarity_bg": "", + "ship_group": 900400, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.92, + 1.91, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 328, + "voice_actor_2": -1 + }, + "900401": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Battleship – Flandre.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 900401, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Flandre", + "painting": "fulandeer", + "prefab": "fulandeer", + "rarity_bg": "", + "ship_group": 900401, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 375, + "voice_actor_2": -1 + }, + "900402": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Zuihou-class aircraft carrier – Chitose.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 900402, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Zuihou", + "painting": "ruifeng", + "prefab": "ruifeng", + "rarity_bg": "", + "ship_group": 900402, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 375, + "voice_actor_2": -1 + }, + "900403": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Zuihou-class aircraft carrier – Chitose.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900403, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Silver Fox", + "painting": "silverfox_shadow", + "prefab": "silverfox_shadow", + "rarity_bg": "", + "ship_group": 900403, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900404": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Zuihou-class aircraft carrier – Chitose.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900404, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "War Protocol Fortress", + "painting": "baolei1", + "prefab": "baolei1", + "rarity_bg": "", + "ship_group": 900404, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900405": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Zuihou-class aircraft carrier – Chitose.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900405, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "War Protocol Fortress", + "painting": "baolei2", + "prefab": "baolei2", + "rarity_bg": "", + "ship_group": 900405, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "900406": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Zuihou-class aircraft carrier – Chitose.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 900406, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Essex META", + "painting": "aisaikesi_alter", + "prefab": "aisaikesi_alter", + "rarity_bg": "", + "ship_group": 900406, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "901010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.08, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 0.96, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 0.98, + 0 + ] + ] + }, + "desc": "L'Adroit-class destroyer – Le Mars.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 16, + "id": 901010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Le Mars", + "painting": "lemaer", + "prefab": "lemaer", + "rarity_bg": "", + "ship_group": 90101, + "ship_l2d_id": "", + "shop_id": 70201, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 124, + "voice_actor_2": -1 + }, + "901011": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.08, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 0.96, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.09, + 0.98, + 0 + ] + ] + }, + "desc": "It's summer~! Summer is here, Commander! Let's head down to the beach to play! I'll show you why I'm feared in water gun fights!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 16, + "id": 901011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Été Brillant", + "painting": "Lemaer_2", + "prefab": "Lemaer_2", + "rarity_bg": "", + "ship_group": 90101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 124, + "voice_actor_2": -1 + }, + "901012": { + "bg": "103", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.11, + 0.769, + 0 + ] + ], + "cannon": [ + [ + 0.182, + 0.747, + 0 + ] + ], + "torpedo": [ + [ + 0.124, + 0.037, + 0 + ] + ], + "vicegun": [ + [ + 0.138, + 0.793, + 0 + ] + ] + }, + "desc": "Hey! Over here! Hehe. I didn't expect to run into you at school, Commander. What are you doing here?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 16, + "id": 901012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Écolière Heureuse", + "painting": "lemaer_3", + "prefab": "lemaer_3", + "rarity_bg": "", + "ship_group": 90101, + "ship_l2d_id": "", + "shop_id": 70200, + "shop_type_id": 4, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 124, + "voice_actor_2": -1 + }, + "901013": { + "bg": "157", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.06, + 1.24, + 0 + ] + ], + "cannon": [ + [ + 1.01, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0.124, + 0.037, + 0 + ] + ], + "vicegun": [ + [ + 0.76, + 0.91, + 0 + ] + ] + }, + "desc": "Commander, thanks for coming to pick me up! I don't often get the chance to wear formal clothes, though it is a little hard to move around... Oh, but I can deal with it!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 16, + "id": 901013, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Splendorous Debut", + "painting": "lemaer_4", + "prefab": "lemaer_4", + "rarity_bg": "", + "ship_group": 90101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.27, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 124, + "voice_actor_2": -1 + }, + "901019": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.17, + 0.93, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.12, + 1.06, + 0 + ] + ] + }, + "desc": "Retro~ fit~ com~ plete! The new and improved Le Mars is at your service~!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 9, + "gyro": 0, + "hand_id": 16, + "id": 901019, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Le Mars (Retrofit)", + "painting": "lemaer_g", + "prefab": "lemaer_g", + "rarity_bg": "", + "ship_group": 90101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9997, + "show_skin": "stand", + "skin_type": 2, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 124, + "voice_actor_2": -1 + }, + "901020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.17, + 0.93, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.09, + 0 + ] + ], + "vicegun": [ + [ + 1.12, + 1.06, + 0 + ] + ] + }, + "desc": "Vauquelin-class destroyer – Tartu.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 901020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tartu", + "painting": "taertu", + "prefab": "taertu", + "rarity_bg": "", + "ship_group": 90102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 234, + "voice_actor_2": -1 + }, + "901021": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.17, + 1.155, + 0 + ] + ], + "cannon": [ + [ + 1.18, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + -0.012, + 0.004, + 0 + ] + ], + "vicegun": [ + [ + 1.12, + 1.06, + 0 + ] + ] + }, + "desc": "Commander, you're not going to get into the water? ...Ah, I'm fine right here. To tell you the truth, I once got washed away by the waves, and then got laughed at by Vauquelin... so I'm perfectly fine right here.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 901021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Overthinking Summer", + "painting": "taertu_2", + "prefab": "taertu_2", + "rarity_bg": "", + "ship_group": 90102, + "ship_l2d_id": "", + "shop_id": 70349, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 234, + "voice_actor_2": -1 + }, + "901030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.578, + 1.283, + 0 + ] + ], + "cannon": [ + [ + 1.588, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + 0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.613, + 1.236, + 0 + ] + ] + }, + "desc": "Vauquelin-class destroyer – Vauquelin.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 901030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vauquelin", + "painting": "wokelan", + "prefab": "wokelan", + "rarity_bg": "", + "ship_group": 90103, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 234, + "voice_actor_2": -1 + }, + "901031": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.559, + 1.265, + 0 + ] + ], + "cannon": [ + [ + 1.557, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + -0.007, + 0 + ] + ], + "vicegun": [ + [ + 1.576, + 1.218, + 0 + ] + ] + }, + "desc": "Commandeeer! What are you doing? It's our day off! Turn the work part of your brain off and just have fun! C'mon, let's enjoy ourselves on the beach!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 901031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Innocent Summer Knight", + "painting": "wokelan_2", + "prefab": "wokelan_2", + "rarity_bg": "", + "ship_group": 90103, + "ship_l2d_id": "", + "shop_id": 70367, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 234, + "voice_actor_2": -1 + }, + "901032": { + "bg": "146", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.38, + 1.33, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 1.13, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 1.11, + 0 + ] + ] + }, + "desc": "Yes, the strings... I can hear the celebratory melody... Now, follow my lead and we'll take this song to greater– Oh, Commander? What's all this, you ask? Uhh... You know... Ahahaha...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 901032, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "One-Girl Orchestra", + "painting": "wokelan_3", + "prefab": "wokelan_3", + "rarity_bg": "", + "ship_group": 90103, + "ship_l2d_id": "", + "shop_id": 70603, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 234, + "voice_actor_2": -1 + }, + "901033": { + "bg": "155", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.38, + 1.33, + 0 + ] + ], + "cannon": [ + [ + 1.25, + 1.13, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.13, + 1.11, + 0 + ] + ] + }, + "desc": "*crash*! Found another coin! Check it out, Commander! I got all these from smashing pots! ...Breaking the law? Heheh! The one law among thieves is that there are no laws♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 13, + "id": 901033, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Otherworldly Adventure", + "painting": "wokelan_4", + "prefab": "wokelan_4", + "rarity_bg": "", + "ship_group": 90103, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 234, + "voice_actor_2": -1 + }, + "901040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.41, + 1.41, + 0 + ] + ], + "cannon": [ + [ + 1.53, + 1.49, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.5, + 1.41, + 0 + ] + ] + }, + "desc": "Vauquelin-class destroyer – Kersaint.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 901040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kersaint", + "painting": "kaiersheng", + "prefab": "kaiersheng", + "rarity_bg": "", + "ship_group": 90104, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 380, + "voice_actor_2": -1 + }, + "901041": { + "bg": "171", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.41, + 1.41, + 0 + ] + ], + "cannon": [ + [ + 1.53, + 1.49, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.5, + 1.41, + 0 + ] + ] + }, + "desc": "Phew... Commander? So the Iris brings us together once again... I-I'm sorry for being so sudden, but... Would you like to join me on my run?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 901041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Reverent Runner", + "painting": "kaiersheng_2", + "prefab": "kaiersheng_2", + "rarity_bg": "", + "ship_group": 90104, + "ship_l2d_id": "", + "shop_id": 70895, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + 13, + -1169, + 0 + ], + [ + 0.44 + ] + ], + "tag": [ + 6, + 2 + ], + "time": "", + "voice_actor": 380, + "voice_actor_2": -1 + }, + "901110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.78, + 0.96, + 0 + ] + ], + "cannon": [ + [ + 0.78, + 0.96, + 0 + ] + ], + "torpedo": [ + [ + 0.054, + 0.027, + 0 + ] + ], + "vicegun": [ + [ + 0.76, + 0.96, + 0 + ] + ] + }, + "desc": "Le Fantasque-class destroyer – Le Malin.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 901110, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Le Malin", + "painting": "edu", + "prefab": "edu", + "rarity_bg": "", + "ship_group": 90111, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 132, + "voice_actor_2": -1 + }, + "901111": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.962, + 0.996, + 0 + ] + ], + "cannon": [ + [ + 0.972, + 1.143, + 0 + ] + ], + "torpedo": [ + [ + 0.075, + 0.048, + 0 + ] + ], + "vicegun": [ + [ + 0.987, + 1.06, + 0 + ] + ] + }, + "desc": "Morning, Commander~ Mm, the Sabbath is the day of rest, so I shall not budge from my sacred charge even if you were to call Triomphant over. I solemnly swear to do absolutely nothing today.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 901111, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sleepy Sunday", + "painting": "edu_2", + "prefab": "edu_2", + "rarity_bg": "", + "ship_group": 90111, + "ship_l2d_id": "", + "shop_id": 70198, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 132, + "voice_actor_2": -1 + }, + "901112": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.361, + 1.348, + 0 + ] + ], + "cannon": [ + [ + 1.356, + 1.143, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0.016, + 0 + ] + ], + "vicegun": [ + [ + 1.392, + 1.218, + 0 + ] + ] + }, + "desc": "I must commend you for being able to find my secret base, Commander... but unfortunately for you, I refuse to return to the office today. Just... *yawn*...let me spend the whole day sleeping here...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 901112, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 60, + 32.5, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mercredi at the Secret Base", + "painting": "edu_3", + "prefab": "edu_3", + "rarity_bg": "", + "ship_group": 90111, + "ship_l2d_id": "", + "shop_id": 70357, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 132, + "voice_actor_2": -1 + }, + "901113": { + "bg": "145", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.188, + 0.996, + 0 + ] + ], + "cannon": [ + [ + 1.188, + 1.008, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.188, + 0.993, + 0 + ] + ] + }, + "desc": "Zzz... zzz... Huh? Commander? I was in the middle of a nap... Oh, this outfit? It's cool, comfy, and cute. If you don't need anything from me, I'm going back to sleep...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 5, + "id": 901113, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Listless Lapin", + "painting": "edu_4", + "prefab": "edu_4", + "rarity_bg": "", + "ship_group": 90111, + "ship_l2d_id": "", + "shop_id": 70590, + "shop_type_id": 16, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 132, + "voice_actor_2": -1 + }, + "901120": { + "bg": "141", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.068, + 1.092, + 0 + ] + ], + "cannon": [ + [ + 2.052, + 1.1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.004, + 0 + ] + ], + "vicegun": [ + [ + 2.04, + 1.092, + 0 + ] + ] + }, + "desc": "I am the Iris's shining sword, Le Malin. As the shimmering idol who chases the waves, may your souls be healed by my songs of prayer.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 901120, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Le Malin μ", + "painting": "edu_idol", + "prefab": "edu_idol", + "rarity_bg": "", + "ship_group": 90112, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.57, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 132, + "voice_actor_2": -1 + }, + "901130": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.213, + 1.217, + 0 + ] + ], + "cannon": [ + [ + 1.321, + 1.034, + 0 + ] + ], + "torpedo": [ + [ + 0.054, + 0.027, + 0 + ] + ], + "vicegun": [ + [ + 1.152, + 1.055, + 0 + ] + ] + }, + "desc": "Le Fantasque-class destroyer – L'Indomptable.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 901130, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "L'Indomptable", + "painting": "buqu", + "prefab": "buqu", + "rarity_bg": "", + "ship_group": 90113, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.499, + 2.186, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 325, + "voice_actor_2": -1 + }, + "901131": { + "bg": "158", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.537, + 1.095, + 0 + ] + ], + "cannon": [ + [ + 1.511, + 1.041, + 0 + ] + ], + "torpedo": [ + [ + 0.054, + 0.027, + 0 + ] + ], + "vicegun": [ + [ + 1.233, + 0.994, + 0 + ] + ] + }, + "desc": "What a farce, making a proud Templar Knight portray a helpless little girl... Why am I lying here, you ask? Hmph. Because Le Malin asserted this is the best way to get in touch with my \"vulnerable side\"...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 901131, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Little Red Riding Hood's Worries", + "painting": "buqu_2", + "prefab": "buqu_2", + "rarity_bg": "", + "ship_group": 90113, + "ship_l2d_id": "", + "shop_id": 70709, + "shop_type_id": 19, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.499, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 325, + "voice_actor_2": -1 + }, + "901132": { + "bg": "165", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.75, + 1.39, + 0 + ] + ], + "cannon": [ + [ + 1.91, + 1.41, + 0 + ] + ], + "torpedo": [ + [ + 0.054, + 0.027, + 0 + ] + ], + "vicegun": [ + [ + 1.91, + 1.35, + 0 + ] + ] + }, + "desc": "Hmm... Traveling by foot from here would be quickest. Ah... It's snowing. Hmph! A little snow and wind can scarcely faze a noble Templar Knight! I'll be back shortly!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 5, + "id": 901132, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Temp in Low Temperatures", + "painting": "buqu_3", + "prefab": "buqu_3", + "rarity_bg": "", + "ship_group": 90113, + "ship_l2d_id": "", + "shop_id": 70815, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.499, + 2.186, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 325, + "voice_actor_2": -1 + }, + "902010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.403, + 1.497, + 0 + ] + ], + "cannon": [ + [ + 2.47, + 1.472, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + -0.006, + 0 + ] + ], + "vicegun": [ + [ + 2.415, + 1.558, + 0 + ] + ] + }, + "desc": "La Galissonnière-class light cruiser – La Galissonnière.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 902010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "La Galissonnière", + "painting": "jialisuoniye", + "prefab": "jialisuoniye", + "rarity_bg": "", + "ship_group": 90201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 238, + "voice_actor_2": -1 + }, + "902011": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.628, + 1.235, + 0 + ] + ], + "cannon": [ + [ + 2.538, + 1.174, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.018, + 0 + ] + ], + "vicegun": [ + [ + 2.689, + 1.174, + 0 + ] + ] + }, + "desc": "Summertime means pool time! Oh, hey, Commander. What are you waiting for? Come over and let's have fun!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 902011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Pristine Piscene", + "painting": "jialisuoniye_2", + "prefab": "jialisuoniye_2", + "rarity_bg": "", + "ship_group": 90201, + "ship_l2d_id": "", + "shop_id": 70365, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 238, + "voice_actor_2": -1 + }, + "902012": { + "bg": "144", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.568, + 0.999, + 0 + ] + ], + "cannon": [ + [ + 1.578, + 0.995, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.007, + 0 + ] + ], + "vicegun": [ + [ + 1.571, + 1.009, + 0 + ] + ] + }, + "desc": "Happy New Year, again! So, you wanna try sharing this \"cross-cupped wine?\" What, it's not a drinking game? Welp, I guess I've still got a whole ton to learn about the Dragon Empery's customs~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 902012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 15, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lush Spring Dreams", + "painting": "jialisuoniye_4", + "prefab": "jialisuoniye_4", + "rarity_bg": "", + "ship_group": 90201, + "ship_l2d_id": "", + "shop_id": 70489, + "shop_type_id": 3, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.485, + 2.461, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 4 + ], + "time": "", + "voice_actor": 238, + "voice_actor_2": -1 + }, + "902013": { + "bg": "119", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.152, + 1.308, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 1.174, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.099, + 1.101, + 0 + ] + ] + }, + "desc": "If you ignore me, I'll use my black cat magic to turn you into a pumpkin! Is that Halloweeny enough? Ahahaha! I'm just messing! C'mon, let's go do somethin' fun tonight, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 902013, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 45, + -90, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Black Cat of All Hallows' Eve", + "painting": "jialisuoniye_3", + "prefab": "jialisuoniye_3", + "rarity_bg": "", + "ship_group": 90201, + "ship_l2d_id": "", + "shop_id": 70611, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.527, + 2.419, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 238, + "voice_actor_2": -1 + }, + "902020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.79, + 1.72, + 0 + ] + ], + "cannon": [ + [ + 1.675, + 1.314, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.62, + 1.4, + 0 + ] + ] + }, + "desc": "La Galissonnière-class light cruiser – Marseillaise.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 902020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Marseillaise", + "painting": "masaiqu", + "prefab": "masaiqu", + "rarity_bg": "", + "ship_group": 90202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 238, + "voice_actor_2": -1 + }, + "902021": { + "bg": "109", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.64, + 1.72, + 0 + ] + ], + "cannon": [ + [ + 1.71, + 1.29, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.57, + 1.47, + 0 + ] + ] + }, + "desc": "Alright, aim at this part of the ball, and drop my hips... Nngh?! I, I'm alright! The fighting angel, Marseillaise, will not be defeated by this... Hyeep?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 902021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fighting Angel's Regimen", + "painting": "masaiqu_2", + "prefab": "masaiqu_2", + "rarity_bg": "", + "ship_group": 90202, + "ship_l2d_id": "", + "shop_id": 70874, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + -208, + -698, + 0 + ], + [ + 0.54 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 238, + "voice_actor_2": -1 + }, + "903010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.165, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 1.33, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.31, + 0.92, + 0 + ] + ] + }, + "desc": "Suffren-class Heavy Cruiser—Foch", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 903010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Foch", + "painting": "fuxu", + "prefab": "fuxu", + "rarity_bg": "", + "ship_group": 90301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.279, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 292, + "voice_actor_2": -1 + }, + "903011": { + "bg": "105", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.165, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 1.33, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.31, + 0.92, + 0 + ] + ] + }, + "desc": "Yo, Commander, did I keep you waiting? Sorry 'bout that. You know how it goes, sometimes it's really hard for a girl to pick out the right thing to wear. Anyway, let's get going~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 903011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rainbow Rendezvous", + "painting": "fuxu_2", + "prefab": "fuxu_2", + "rarity_bg": "", + "ship_group": 90301, + "ship_l2d_id": "", + "shop_id": 70613, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.59, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 292, + "voice_actor_2": -1 + }, + "903012": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.165, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 1.33, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.31, + 0.92, + 0 + ] + ] + }, + "desc": "How are you today, Master? Your humble butler Foch patiently awaits your orders... Hahah! I sure look the part, don't I?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 903012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Majestic Majordomo", + "painting": "fuxu_3", + "prefab": "fuxu_3", + "rarity_bg": "", + "ship_group": 90301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.59, + 2.36, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 292, + "voice_actor_2": -1 + }, + "903020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.165, + 1.171, + 0 + ] + ], + "cannon": [ + [ + 1.286, + 1.192, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.019, + 0 + ] + ], + "vicegun": [ + [ + 1.212, + 1.225, + 0 + ] + ] + }, + "desc": "Algérie-class heavy cruiser – Algérie.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 903020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Algérie", + "painting": "aerjiliya", + "prefab": "aerjiliya", + "rarity_bg": "", + "ship_group": 90302, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.498, + 2.279, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 142, + "voice_actor_2": -1 + }, + "903021": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.308, + 1.234, + 0 + ] + ], + "cannon": [ + [ + 1.347, + 1.187, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.019, + 0 + ] + ], + "vicegun": [ + [ + 1.402, + 1.213, + 0 + ] + ] + }, + "desc": "Oh my, hehe... Are you enjoying the warmth of the sunlight here? I'm glad that you're finding some time to relax here, but wouldn't you rather come play with everyone else?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 903021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "White Sand Paradise", + "painting": "aerjiliya_2", + "prefab": "aerjiliya_2", + "rarity_bg": "", + "ship_group": 90302, + "ship_l2d_id": "", + "shop_id": 70363, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.498, + 2.252, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 142, + "voice_actor_2": -1 + }, + "903022": { + "bg": "158", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.693, + 1.042, + 0 + ] + ], + "cannon": [ + [ + 0.705, + 1.022, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.019, + 0 + ] + ], + "vicegun": [ + [ + 0.971, + 0.85, + 0 + ] + ] + }, + "desc": "Oh my, it seems that the one who ended up coming wasn't little Alice, but you instead... Do you plan to defy me as well, Commander? If so, I'll have to put you on trial for your sins... How was my acting just now? Hehe~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 903022, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Red Queen's Decree", + "painting": "aerjiliya_3", + "prefab": "aerjiliya_3", + "rarity_bg": "", + "ship_group": 90302, + "ship_l2d_id": "", + "shop_id": 70714, + "shop_type_id": 19, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.498, + 0.676, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 142, + "voice_actor_2": -1 + }, + "904010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.24, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.31, + 1.12, + 0 + ] + ], + "torpedo": [ + [ + 0.06, + 0.05, + 0 + ] + ], + "vicegun": [ + [ + 1.22, + 1.03, + 0 + ] + ] + }, + "desc": "Dunkerque-class battlecruiser – Dunkerque.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 904010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Dunkerque", + "painting": "dunkeerke", + "prefab": "dunkeerke", + "rarity_bg": "", + "ship_group": 90401, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 127, + "voice_actor_2": -1 + }, + "904011": { + "bg": "106", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.143, + 1.121, + 0 + ] + ], + "cannon": [ + [ + 1.08, + 1.2, + 0 + ] + ], + "torpedo": [ + [ + 0.141, + 0.019, + 0 + ] + ], + "vicegun": [ + [ + 0.99, + 0.98, + 0 + ] + ] + }, + "desc": "I've been waiting so long for summer... and it's so worth it - the sun, the sand, the waves, and everyone's laughter. Commander, why don't we take this opportunity to enjoy some crullers together?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 904011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_special", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "propose": 2.5 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -30, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Sucré", + "painting": "Dunkeerke_2", + "prefab": "Dunkeerke_2", + "rarity_bg": "", + "ship_group": 90401, + "ship_l2d_id": "", + "shop_id": 70086, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 127, + "voice_actor_2": -1 + }, + "904012": { + "bg": "116", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.95, + 1.16, + 0 + ] + ], + "cannon": [ + [ + 1.94, + 1.04, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.92, + 1.01, + 0 + ] + ] + }, + "desc": "Don't you simply adore the atmosphere in this place? It's one of my favorites. The desserts here are to die for. Would you like a taste?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 904012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Afternoon Venus", + "painting": "dunkeerke_3", + "prefab": "dunkeerke_3", + "rarity_bg": "", + "ship_group": 90401, + "ship_l2d_id": "", + "shop_id": 70199, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 127, + "voice_actor_2": -1 + }, + "905010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + -0.44, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 1.49, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + -0.09, + 0.11, + 0 + ] + ], + "vicegun": [ + [ + -0.42, + 0.85, + 0 + ] + ] + }, + "desc": "Richelieu-class battleship – Jean Bart.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 905010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jean Bart", + "painting": "rangbaer", + "prefab": "rangbaer", + "rarity_bg": "", + "ship_group": 90501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 148, + "voice_actor_2": -1 + }, + "905011": { + "bg": "115", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.66, + 0.97, + 0 + ] + ], + "cannon": [ + [ + 1.67, + 0.91, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.66, + 0.94, + 0 + ] + ] + }, + "desc": "The guest of honor shouldn't be wandering around looking for girls drinking alone... Hmph, might as well have a drink while you're here anyway.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 905011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Uninhibited Bloodstone", + "painting": "rangbaer_2", + "prefab": "rangbaer_2", + "rarity_bg": "", + "ship_group": 90501, + "ship_l2d_id": "", + "shop_id": 70243, + "shop_type_id": 7, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 148, + "voice_actor_2": -1 + }, + "905012": { + "bg": "133", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.445, + 0.649, + 0 + ] + ], + "cannon": [ + [ + 1.392, + 0.626, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.366, + 0.63, + 0 + ] + ] + }, + "desc": "You damn scalawag... You don't just sneak into someone's hideaway without consequences, ya know. Though, I found this place by pure chance too. Don't go tellin' anyone else about it!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 905012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 4.1, + "touch2": 0.3 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -20, + -70, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Private Après Midi", + "painting": "rangbaer_3", + "prefab": "rangbaer_3", + "rarity_bg": "", + "ship_group": 90501, + "ship_l2d_id": "", + "shop_id": 70358, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 148, + "voice_actor_2": -1 + }, + "905013": { + "bg": "126", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.703, + 1.093, + 0 + ] + ], + "cannon": [ + [ + 1.704, + 1.064, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.006, + 0 + ] + ], + "vicegun": [ + [ + 1.708, + 1.068, + 0 + ] + ] + }, + "desc": "Bonne année... Or rather, I should say \"Happy New Year\" here, yes? A year of peace and prosperity passes, and we are here to welcome another... and I must thank you for making that possible.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 3, + "gyro": 0, + "hand_id": 1, + "id": 905013, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -30, + 6 + ], + "ParamBodyAngleX": [ + -10, + 2 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "login": 7.17, + "mail": 0.3, + "main_1": 0.3, + "mission_complete": 0.3, + "touch2": 0.3 + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + -20, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "First Snow Upon the Cutlass's Edge", + "painting": "rangbaer_4", + "prefab": "rangbaer_4", + "rarity_bg": "", + "ship_group": 90501, + "ship_l2d_id": "", + "shop_id": 70460, + "shop_type_id": 2, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.534, + 2.44, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 148, + "voice_actor_2": -1 + }, + "905020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.2, + 1.35, + 0 + ] + ], + "cannon": [ + [ + 2.19, + 1.26, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 2.2, + 1.27, + 0 + ] + ] + }, + "desc": "Richelieu-class battleship – Clemenceau.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 905020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Clemenceau", + "painting": "kelaimengsuo", + "prefab": "kelaimengsuo", + "rarity_bg": "", + "ship_group": 90502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 377, + "voice_actor_2": -1 + }, + "905021": { + "bg": "118", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.43, + 0.92, + 0 + ] + ], + "cannon": [ + [ + 1.37, + 0.91, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.42, + 0.94, + 0 + ] + ] + }, + "desc": "The skies are blue and the wind is calm, a perfect day for golfing... Commander? I didn't bring you here just to watch the scenery, you know? Brace yourself, because you're in for a long day with me.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 905021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": [ + 0.5, + 1, + 1 + ], + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 60, + -40, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Splendid Breeze", + "painting": "kelaimengsuo_2", + "prefab": "kelaimengsuo_2", + "rarity_bg": "", + "ship_group": 90502, + "ship_l2d_id": [ + 9050211, + 9050212, + 9050213 + ], + "shop_id": 70890, + "shop_type_id": 13, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 377, + "voice_actor_2": -1 + }, + "905030": { + "bg": "121", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.135, + 0.929, + 0 + ] + ], + "cannon": [ + [ + 1.114, + 0.924, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + -0.02, + 0 + ] + ] + }, + "desc": "Gascogne module change process complete. New directive: sing for the world. Master's order is my will.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 905030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gascogne μ", + "painting": "jiasikenie_idol", + "prefab": "jiasikenie_idol", + "rarity_bg": "", + "ship_group": 90503, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.33, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 98, + "voice_actor_2": -1 + }, + "907010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.268, + 1.035, + 0 + ] + ], + "plane": [ + [ + 1.312, + 1.223, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Joffre-class aircraft carrier – Joffre.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 907010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Joffre", + "painting": "xiafei", + "prefab": "xiafei", + "rarity_bg": "", + "ship_group": 90701, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.422, + 2.117, + -1.85 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 187, + "voice_actor_2": -1 + }, + "907011": { + "bg": "158", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.268, + 0.995, + 0 + ] + ], + "plane": [ + [ + 1.129, + 1.054, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Were you planning on freeing me from this spell? Then I suppose you're prepared to lock lips with me. Even though I'm already awake, um... that's just part of the ritual.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 907011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ensorcelled Snow White", + "painting": "xiafei_2", + "prefab": "xiafei_2", + "rarity_bg": "", + "ship_group": 90701, + "ship_l2d_id": "", + "shop_id": 70711, + "shop_type_id": 19, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.482, + 2.205, + -1.85 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 187, + "voice_actor_2": -1 + }, + "907012": { + "bg": "167", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.268, + 0.995, + 0 + ] + ], + "plane": [ + [ + 1.129, + 1.054, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Do you feel refreshed? Even without a holy ritual, the Iris would be happy to know that I've managed to soothe you with this bath. Was it not enough? Then... Shall we go back in?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 907012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sublime Elysium", + "painting": "xiafei_3", + "prefab": "xiafei_3", + "rarity_bg": "", + "ship_group": 90701, + "ship_l2d_id": "", + "shop_id": 70836, + "shop_type_id": 22, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.482, + 2.205, + -1.85 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_xiafei_3", + [ + 627, + 228, + 0 + ], + [ + 1.05 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + 50, + -638, + 0 + ], + [ + 0.67 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 187, + "voice_actor_2": -1 + }, + "999010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.21, + 0.77, + 0 + ] + ], + "cannon": [ + [ + 1.24, + 0.79, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + 0.03, + 0 + ] + ] + }, + "desc": "Battleship – Gascogne.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 999010, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gascogne", + "painting": "jiasikenie", + "prefab": "jiasikenie", + "rarity_bg": "", + "ship_group": 99901, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.33, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 98, + "voice_actor_2": -1 + }, + "999011": { + "bg": "106", + "bg_sp": "1101", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.576, + 0.161, + 0 + ] + ], + "cannon": [ + [ + 1.5, + 0.72, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Gascogne uniform change complete. Directive assigned: have fun on the beach with Master. Requesting detailed instructions for how to \"have fun on the beach.\"", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 999011, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tropical Environs Acclimation Service Equipment", + "painting": "jiasikenie_2", + "prefab": "jiasikenie_2", + "rarity_bg": "", + "ship_group": 99901, + "ship_l2d_id": "", + "shop_id": 70213, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.51, + 2.33, + -0.16 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 98, + "voice_actor_2": -1 + }, + "999020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.676, + 0.962, + 0 + ] + ], + "torpedo": [ + [ + -0.019, + -0.011, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "Battleship – Flandre.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 999020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Flandre", + "painting": "fulandeer", + "prefab": "fulandeer", + "rarity_bg": "", + "ship_group": 99902, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 375, + "voice_actor_2": -1 + }, + "999021": { + "bg": "150", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.633, + 0.953, + 0 + ] + ], + "cannon": [ + [ + 1.728, + 0.557, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.69, + 0.924, + 0 + ] + ] + }, + "desc": "*sniffle*... Oh, Commander, what have I done...? I was supposed to serve You, and now I've committed a grave sin of messing everything up... Where did I go wrong...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 999021, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "If Love is a Sin, Thou Art Forgiven", + "painting": "fulandeer_2", + "prefab": "fulandeer_2", + "rarity_bg": "", + "ship_group": 99902, + "ship_l2d_id": "", + "shop_id": 70960, + "shop_type_id": 17, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.452, + 2.5, + -0.18 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 375, + "voice_actor_2": -1 + }, + "9600010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.4, + 0 + ] + ], + "cannon": [ + [ + 1.32, + 0.97, + 0 + ] + ], + "torpedo": [ + [ + 0.8, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.2, + 0.83, + 0 + ] + ] + }, + "desc": "Sailing frigate – Royal Fortune.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9600010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Royal Fortune", + "painting": "huangjiacaifu", + "prefab": "huangjiacaifu", + "rarity_bg": "", + "ship_group": 960001, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.8, + 1.49, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 346, + "voice_actor_2": -1 + }, + "9600011": { + "bg": "156", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.22, + 0.96, + 0 + ] + ], + "cannon": [ + [ + 1.21, + 0.79, + 0 + ] + ], + "torpedo": [ + [ + 0.79, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.2, + 0.83, + 0 + ] + ] + }, + "desc": "Tonight's dessert is not a cake or a pastry... What are you looking around for? YOU'RE my dessert! Heheh, scared you, didn't I?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 9600011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Treats from the Deep", + "painting": "huangjiacaifu_2", + "prefab": "huangjiacaifu_2", + "rarity_bg": "", + "ship_group": 960001, + "ship_l2d_id": "", + "shop_id": 70767, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.85, + 1.67, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 346, + "voice_actor_2": -1 + }, + "9600012": { + "bg": "168", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.22, + 0.96, + 0 + ] + ], + "cannon": [ + [ + 1.21, + 0.79, + 0 + ] + ], + "torpedo": [ + [ + 0.79, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 1.2, + 0.83, + 0 + ] + ] + }, + "desc": "Hell of a proposition, this. Keeping an eye on your booty for the whole day so nobody steals it. But I said I'd do it, and a real Tempesta always keeps her word. You're all mine for today♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 1, + "id": 9600012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Eyes on the Prize", + "painting": "huangjiacaifu_3", + "prefab": "huangjiacaifu_3", + "rarity_bg": "", + "ship_group": 960001, + "ship_l2d_id": "", + "shop_id": 70851, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.85, + 1.67, + 0 + ] + ] + ] + ] + ], + "special_effects": [ + "lihui_huangjiacaifu_3", + [ + 1309, + 21, + 0 + ], + [ + 1.1 + ] + ], + "spine_action_offset": false, + "spine_offset": [ + [ + -89, + -831, + 0 + ], + [ + 0.55 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 346, + "voice_actor_2": -1 + }, + "9600020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.188, + 1.161, + 0 + ] + ], + "cannon": [ + [ + 0.999, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.01, + 0 + ] + ], + "vicegun": [ + [ + 0.992, + 1.003, + 0 + ] + ] + }, + "desc": "Sailing frigate – São Martinho.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 3, + "id": 9600020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "São Martinho", + "painting": "shengmading", + "prefab": "shengmading", + "rarity_bg": "", + "ship_group": 960002, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.669, + 2.61, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 383, + "voice_actor_2": -1 + }, + "9600021": { + "bg": "174", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.24, + 0 + ] + ], + "cannon": [ + [ + 0.995, + 1.005, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.995, + 0.998, + 0 + ] + ] + }, + "desc": "Here you see the opposite side of the retainer of the golden light. Be not afraid. I am still me, and my feelings and my beliefs have not changed. Still, if it unnerves you, perhaps you should get to know me again?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 3, + "id": 9600021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Golden Shadow", + "painting": "shengmading_2", + "prefab": "shengmading_2", + "rarity_bg": "", + "ship_group": 960002, + "ship_l2d_id": "", + "shop_id": 70920, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.686, + 2.547, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 383, + "voice_actor_2": -1 + }, + "9600030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.178, + 1.165, + 0 + ] + ], + "cannon": [ + [ + 0.998, + 0.999, + 0 + ] + ], + "torpedo": [ + [ + 0.005, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.996, + 1.003, + 0 + ] + ] + }, + "desc": "Sailing frigate – Golden Hind.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9600030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Golden Hind", + "painting": "jinluhao", + "prefab": "jinluhao", + "rarity_bg": "", + "ship_group": 960003, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.698, + 2.467, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 384, + "voice_actor_2": -1 + }, + "9600031": { + "bg": "174", + "bg_sp": "1102", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.232, + 0 + ] + ], + "cannon": [ + [ + 1.001, + 1.008, + 0 + ] + ], + "torpedo": [ + [ + 0.007, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.003, + 1.004, + 0 + ] + ] + }, + "desc": "How do you feel about this look, my darling? ...Not scary enough? How odd... I thought Mary Celeste had the right idea. Wait, I know~ What if I hold this axe, hmm? ♡", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 9600031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": [ + 0.5, + 1, + 1 + ], + "l2d_ignore_drag": 0, + "l2d_para_range": { + "ParamAngleX": [ + -15, + 15 + ] + }, + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 45, + -183, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Forlorn Femme Fatale", + "painting": "jinluhao_2", + "prefab": "jinluhao_2", + "rarity_bg": "", + "ship_group": 960003, + "ship_l2d_id": [ + 96000311, + 96000312, + 96000313, + 96000314, + 96000315, + 96000316, + 96000317, + 96000318, + 96000319, + 96000320, + 96000321 + ], + "shop_id": 70921, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.702, + 2.419, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2 + ], + "time": "", + "voice_actor": 384, + "voice_actor_2": -1 + }, + "9600040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.287, + 0 + ] + ], + "cannon": [ + [ + 1.005, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0.019, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1, + 0.995, + 0 + ] + ] + }, + "desc": "Sailing frigate – Mary Celeste.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9600040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mary Celeste", + "painting": "mali", + "prefab": "mali", + "rarity_bg": "", + "ship_group": 960004, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.613, + 2.438, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 385, + "voice_actor_2": -1 + }, + "9600041": { + "bg": "174", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.185, + 1.19, + 0 + ] + ], + "cannon": [ + [ + 1.007, + 1.008, + 0 + ] + ], + "torpedo": [ + [ + 0.011, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.998, + 1, + 0 + ] + ] + }, + "desc": "I am Mary Celeste, the silent reaper of the moonless night... Aye, this attire befits a ghost ship such as I.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 9600041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Grim Night's Reaper", + "painting": "mali_2", + "prefab": "mali_2", + "rarity_bg": "", + "ship_group": 960004, + "ship_l2d_id": "", + "shop_id": 70922, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.321, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 385, + "voice_actor_2": -1 + }, + "9600050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.237, + 1.201, + 0 + ] + ], + "cannon": [ + [ + 1.006, + 1.014, + 0 + ] + ], + "torpedo": [ + [ + 0.007, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.011, + 1.015, + 0 + ] + ] + }, + "desc": "Sailing frigate – Whydah.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 5, + "id": 9600050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Whydah", + "painting": "weida", + "prefab": "weida", + "rarity_bg": "", + "ship_group": 960005, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.755, + 2.496, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 386, + "voice_actor_2": -1 + }, + "9600051": { + "bg": "174", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.27, + 0 + ] + ], + "cannon": [ + [ + 1.005, + 1.008, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.998, + 1, + 0 + ] + ] + }, + "desc": "You've summoned the angel of tricks and treats... Huh? Why am I dressed like this? Meh, it's too much of a pain to answer that... In any case, gimme candy or else! Commander, time is of the essence here. The sooner I can go home, the sooner I can continue my gaming session...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 5, + "id": 9600051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lazy Pirate Angel", + "painting": "weida_2", + "prefab": "weida_2", + "rarity_bg": "", + "ship_group": 960005, + "ship_l2d_id": "", + "shop_id": 70923, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.62, + 2.45, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + -174, + -269, + 0 + ], + [ + 1.9 + ] + ], + "tag": [ + 2, + 6 + ], + "time": "", + "voice_actor": 386, + "voice_actor_2": -1 + }, + "9600060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.162, + 1.158, + 0 + ] + ], + "cannon": [ + [ + 0.994, + 0.985, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.988, + 0.997, + 0 + ] + ] + }, + "desc": "Sailing frigate – Adventure Galley.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9600060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Adventure Galley", + "painting": "jialimaoxian", + "prefab": "jialimaoxian", + "rarity_bg": "", + "ship_group": 960006, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.656, + 2.436, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 387, + "voice_actor_2": -1 + }, + "9600061": { + "bg": "174", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.223, + 1.195, + 0 + ] + ], + "cannon": [ + [ + 0.987, + 1.001, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.996, + 1.004, + 0 + ] + ] + }, + "desc": "\"Ahahahah! I've finally found yooou, Master! Dinner is ready, so just follow me to the... You're not hungry? Aww, but the meat is fresh off the bone...\" Commander? Why are you backing away?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 9600061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Carnival Under the Blood Moon", + "painting": "jialimaoxian_2", + "prefab": "jialimaoxian_2", + "rarity_bg": "", + "ship_group": 960006, + "ship_l2d_id": "", + "shop_id": 70924, + "shop_type_id": 8, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.603, + 2.481, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 387, + "voice_actor_2": -1 + }, + "9701010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.6, + 1.23, + 0 + ] + ], + "cannon": [ + [ + 1.58, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0.19, + 0.02, + 0 + ] + ] + }, + "desc": "Greetings, Commander. I'm Hunter. I hunt, as you might've surmised. Is this place... my new base?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 9701010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hunter META", + "painting": "lieren_alter", + "prefab": "lieren_alter", + "rarity_bg": "", + "ship_group": 970101, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 170, + "voice_actor_2": -1 + }, + "9701020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.548, + 1.582, + 0 + ] + ], + "cannon": [ + [ + 1.593, + 1.214, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Well met, Commander. My name is Fortune. Please don't worry about these ch-chains... They're there to... keep my power in check.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 9701020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fortune META", + "painting": "mingyunnvshen_alter", + "prefab": "mingyunnvshen_alter", + "rarity_bg": "", + "ship_group": 970102, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.276, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 75, + "voice_actor_2": -1 + }, + "9701030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.548, + 1.582, + 0 + ] + ], + "cannon": [ + [ + 1.593, + 1.214, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "You're helpless... So helpless it's worrying me. Oh, also, no need to concern yourself with who I am. Just think of me as the one who'll help you get your act together.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 9701030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hatakaze META", + "painting": "qifeng_alter", + "prefab": "qifeng_alter", + "rarity_bg": "", + "ship_group": 970103, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.276, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "9701040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.63, + 1.56, + 0 + ] + ], + "cannon": [ + [ + 1.73, + 0.59, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "I am Kimberly of the Fletcher class, ready to serve. That should do it for introductions. What's important is that I am your sword – all you need to do is tell me what to cut.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 9701040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kimberly META", + "painting": "jinboli_alter", + "prefab": "jinboli_alter", + "rarity_bg": "", + "ship_group": 970104, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.29, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 168, + "voice_actor_2": -1 + }, + "9702010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.266, + 1.151, + 0 + ] + ], + "torpedo": [ + [ + 0.03, + 0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.301, + 1.144, + 0 + ] + ] + }, + "desc": "Were you looking for me? I am willing to lend you my power – provided that you promise not to hide anything from me.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 9702010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Helena META", + "painting": "hailunna_alter", + "prefab": "hailunna_alter", + "rarity_bg": "", + "ship_group": 970201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.596, + 2.323, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 34, + "voice_actor_2": -1 + }, + "9702020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.022, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.15, + 1.013, + 0 + ] + ] + }, + "desc": "I'm Memphis. You may not know me, but I know you and I know you well. Don't you worry, I'm not a threat – you can trust me. Today I assume the role of your right hand and bodyguard.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 9702020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Memphis META", + "painting": "mengfeisi_alter", + "prefab": "mengfeisi_alter", + "rarity_bg": "", + "ship_group": 970202, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.323, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 159, + "voice_actor_2": -1 + }, + "9702030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.022, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.15, + 1.013, + 0 + ] + ] + }, + "desc": "So you're the Commander... in other words, my Master. Alright, got it. The name's Sheffield, and the game's pointing my gun at vermin – Ah, please disregard that little gesture I made just now.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 9702030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sheffield META", + "painting": "xiefeierde_alter", + "prefab": "xiefeierde_alter", + "rarity_bg": "", + "ship_group": 970203, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.323, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 88, + "voice_actor_2": -1 + }, + "9702040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 1.022, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.15, + 1.013, + 0 + ] + ] + }, + "desc": "I'm La Galissonnière, the shipgirl from hell! I've come for your soul! ...Wow, didn't even flinch. Guess it's true that you don't fear death. Heheh, let's see if I can get a more interesting response out of you next time~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9702040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "La Galissonnière META", + "painting": "jialisuoniye_alter", + "prefab": "jialisuoniye_alter", + "rarity_bg": "", + "ship_group": 970204, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.323, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 238, + "voice_actor_2": -1 + }, + "9702050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.31, + 1.3, + 0 + ] + ], + "cannon": [ + [ + 1.1, + 0.998, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.15, + 1.013, + 0 + ] + ] + }, + "desc": "I am the light cruiser named Jintsuu. I take it you summoned me because you need help? ...Very well. Then I shall humbly devise plans that will serve your fleet.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 9702050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Jintsuu META", + "painting": "shentong_alter", + "prefab": "shentong_alter", + "rarity_bg": "", + "ship_group": 970205, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.323, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 77, + "voice_actor_2": -1 + }, + "9702060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.38, + 1.42, + 0 + ] + ], + "cannon": [ + [ + 2.43, + 1.38, + 0 + ] + ], + "torpedo": [ + [ + -0.188, + 0.156, + 0 + ] + ], + "vicegun": [ + [ + 2.61, + 1.39, + 0 + ] + ] + }, + "desc": "Tovarishch Ofitser, our meeting here will send trembles across the world! All my strength is yours to realize your ideals with. Let us fight, together!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9702060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kirov META", + "painting": "jiluofu_alter", + "prefab": "jiluofu_alter", + "rarity_bg": "", + "ship_group": 970206, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.21, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "9703010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.672, + 1.353, + 0 + ] + ], + "cannon": [ + [ + 1.357, + 0.865, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.008, + 0 + ] + ], + "vicegun": [ + [ + 1.365, + 0.856, + 0 + ] + ] + }, + "desc": "I am heavy cruiser Trento, and I will be your assistant. The best thing I could ask for is that my support helps you achieve your goals.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9703010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Trento META", + "painting": "teluntuo_alter", + "prefab": "teluntuo_alter", + "rarity_bg": "", + "ship_group": 970301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.806, + 1.9, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 224, + "voice_actor_2": -1 + }, + "9703020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.672, + 1.353, + 0 + ] + ], + "cannon": [ + [ + 1.357, + 0.865, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.008, + 0 + ] + ], + "vicegun": [ + [ + 1.365, + 0.856, + 0 + ] + ] + }, + "desc": "You must be the Commander. I am the heavy cruiser Algérie. So, what pleasures can I experience here? I do hope you won't disappoint me. Heehee~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9703020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Algérie META", + "painting": "aerjiliya_alter", + "prefab": "aerjiliya_alter", + "rarity_bg": "", + "ship_group": 970302, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.806, + 1.9, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 142, + "voice_actor_2": -1 + }, + "9704010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.47, + 1.3, + 0 + ] + ], + "cannon": [ + [ + 1.73, + 1.031, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.59, + 1.22, + 0 + ] + ] + }, + "desc": "You're... the Commander, right? In other words, the one with the authority to control me. Though I have no interest in you as an individual, I will still obey your orders... At least for the time being.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9704010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Gneisenau META", + "painting": "genaisennao_alter", + "prefab": "genaisennao_alter", + "rarity_bg": "", + "ship_group": 970401, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.49, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 26, + "voice_actor_2": -1 + }, + "9704020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.33, + 1.58, + 0 + ] + ], + "cannon": [ + [ + 1.57, + 0.95, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.31, + 0.96, + 0 + ] + ] + }, + "desc": "I'm Iron Blood battlecruiser Scharnhorst. I am keen to join forces with a Commander as talented as you. Don't let my expectations of you be misplaced.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9704020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Scharnhorst META", + "painting": "shaenhuosite_alter", + "prefab": "shaenhuosite_alter", + "rarity_bg": "", + "ship_group": 970402, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 38, + "voice_actor_2": -1 + }, + "9704030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.59, + 0.84, + 0 + ] + ], + "cannon": [ + [ + 1.53, + 0.76, + 0 + ] + ], + "vicegun": [ + [ + 1.57, + 0.86, + 0 + ] + ] + }, + "desc": "I'm Repulse, Renown-class battlecruiser. I've been through a lot... but that's in the past. Now, I'm a part of this port. Whenever you're in a pinch, come see me.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9704030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Repulse META", + "painting": "fanji_alter", + "prefab": "fanji_alter", + "rarity_bg": "", + "ship_group": 970403, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 41, + "voice_actor_2": -1 + }, + "9704040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.59, + 0.84, + 0 + ] + ], + "cannon": [ + [ + 1.53, + 0.76, + 0 + ] + ], + "vicegun": [ + [ + 1.57, + 0.86, + 0 + ] + ] + }, + "desc": "Salutations to you, Commander. I am battlecruiser Renown. I hope that this battle-worn blade can become your power.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9704040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Renown META", + "painting": "shengwang_alter", + "prefab": "shengwang_alter", + "rarity_bg": "", + "ship_group": 970404, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.39, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": 183 + }, + "9705010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.48, + 1.405, + 0 + ] + ], + "cannon": [ + [ + 1.907, + 1.031, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.59, + 1.39, + 0 + ] + ] + }, + "desc": "I am battleship Fusou. I have come to bring peace to this world's tormented souls. Commander, do you seek blessings... or redemption?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 9705010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fusou META", + "painting": "fusang_alter", + "prefab": "fusang_alter", + "rarity_bg": "", + "ship_group": 970501, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.42, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "9705020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.15, + 1.27, + 0 + ] + ], + "cannon": [ + [ + 1.28, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.04, + 1.16, + 0 + ] + ] + }, + "desc": "Are you this fleet's Commander, Milord? I see. You have great potential, but your skills need some refinement. I wonder what's the best way to train you... You'll see soon enough – stay alert until then!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 9705020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yamashiro META", + "painting": "shancheng_alter", + "prefab": "shancheng_alter", + "rarity_bg": "", + "ship_group": 970502, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.61, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 71, + "voice_actor_2": -1 + }, + "9705030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.34, + 1.36, + 0 + ] + ], + "cannon": [ + [ + 1.58, + 0.88, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.27, + 1.1, + 0 + ] + ] + }, + "desc": "I am Arizona... This may be improper of me, but is it really alright for me to stay here? ...Very well, Commander. If that is what you've decided...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9705030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Arizona META", + "painting": "yalisangna_alter", + "prefab": "yalisangna_alter", + "rarity_bg": "", + "ship_group": 970503, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.35, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 37, + "voice_actor_2": -1 + }, + "9705040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.64, + 1.59, + 0 + ] + ], + "cannon": [ + [ + 1.43, + 0.85, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.02, + 0 + ] + ], + "vicegun": [ + [ + 1.49, + 1.04, + 0 + ] + ] + }, + "desc": "So you are the Commander? Very well. From this point forth, you will use your courage and intellect for our purposes! ...We don't have all day, now. You are our servant, so this won't go anywhere until you swear your fealty.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 9705040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Queen Elizabeth META", + "painting": "yilishabai_alter", + "prefab": "yilishabai_alter", + "rarity_bg": "", + "ship_group": 970504, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.43, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 28, + "voice_actor_2": -1 + }, + "9706010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.137, + 1.334, + 0 + ] + ], + "cannon": [ + [ + 1.259, + 1.172, + 0 + ] + ], + "plane": [ + [ + 1.213, + 1.268, + 0 + ] + ] + }, + "desc": "Ahahahaha! The fact that you've chosen me means you clearly have a discerning eye. So, what now? Where's the enemy you need me to sink?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 9706010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hiyou META", + "painting": "feiying_alter", + "prefab": "feiying_alter", + "rarity_bg": "", + "ship_group": 970601, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.44, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 136, + "voice_actor_2": -1 + }, + "9706020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.137, + 1.334, + 0 + ] + ], + "cannon": [ + [ + 1.259, + 1.172, + 0 + ] + ], + "plane": [ + [ + 1.213, + 1.268, + 0 + ] + ] + }, + "desc": "I'm... Junyou. Please give me your orders... Commander.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 9706020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Junyou META", + "painting": "sunying_alter", + "prefab": "sunying_alter", + "rarity_bg": "", + "ship_group": 970602, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.386, + 2.378, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 136, + "voice_actor_2": -1 + }, + "9706030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.5, + 1.5, + 0 + ] + ], + "cannon": [ + [ + 1.7, + 1.07, + 0 + ] + ], + "plane": [ + [ + 1.81, + 0.96, + 0 + ] + ] + }, + "desc": "Aircraft carrier Princeton, reporting for duty. I'm afraid I'm still a bit disoriented... would you mind briefing me on the situation?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 9706030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Princeton META", + "painting": "pulinsidun_alter", + "prefab": "pulinsidun_alter", + "rarity_bg": "", + "ship_group": 970603, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.94, + 2.34, + -0.4 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 249, + "voice_actor_2": -1 + }, + "9707010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.01, + 1.56, + 0 + ] + ], + "cannon": [ + [ + 2.07, + 1.53, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 2.1, + 1.55, + 0 + ] + ] + }, + "desc": "I'm getting all fired up! The name's Hiryuu, Hiryuu from the 2nd CarDiv. As a member of this fleet, I'll obey your orders. I do hope that you are qualified to lead us.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 9707010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hiryuu META", + "painting": "feilong_alter", + "prefab": "feilong_alter", + "rarity_bg": "", + "ship_group": 970701, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 30, + "voice_actor_2": -1 + }, + "9707020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.01, + 1.56, + 0 + ] + ], + "cannon": [ + [ + 2.07, + 1.53, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 2.1, + 1.55, + 0 + ] + ] + }, + "desc": "Aircraft carrier Ark Royal, at your service. I hereby vow to lend you my strength for as long as you harbour honourable ambitions!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9707020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ark Royal META", + "painting": "huangjiafangzhou_alter", + "prefab": "huangjiafangzhou_alter", + "rarity_bg": "", + "ship_group": 970702, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 5, + "voice_actor_2": -1 + }, + "9707030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.01, + 1.56, + 0 + ] + ], + "cannon": [ + [ + 2.07, + 1.53, + 0 + ] + ], + "torpedo": [ + [ + 0.04, + -0.01, + 0 + ] + ], + "vicegun": [ + [ + 2.1, + 1.55, + 0 + ] + ] + }, + "desc": "I am Souryuu of the Sakura Empire's 2nd CarDiv. Let's skip the formalities and get to work right away.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 9707030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Souryuu META", + "painting": "canglong_alter", + "prefab": "canglong_alter", + "rarity_bg": "", + "ship_group": 970703, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 15, + "voice_actor_2": -1 + }, + "9708010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.01, + 1.2, + 0 + ] + ], + "cannon": [ + [ + 2.01, + 1.26, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.91, + 1.33, + 0 + ] + ] + }, + "desc": "U-556, the Parzival of the Seas, has arrived! Let's see if there's really anything I can help with here. Seeing as I'll be staying here – nice meeting you♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 9708010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "U-556 META", + "painting": "u556_alter", + "prefab": "u556_alter", + "rarity_bg": "", + "ship_group": 970801, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 1.94, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 38, + "voice_actor_2": -1 + }, + "9712010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.97, + 0.938, + 0 + ] + ], + "cannon": [ + [ + 1.02, + 0.938, + 0 + ] + ] + }, + "desc": "I... assume you're the Commander? Don't worry, I can see that you're in good health. I'm Vestal. Bring your sick to me, and I should be able to assist with treatment and repairs...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 9712010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vestal META", + "painting": "zaoshen_alter", + "prefab": "zaoshen_alter", + "rarity_bg": "", + "ship_group": 971201, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 365, + "voice_actor_2": -1 + }, + "9713010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.01, + 1.69, + 0 + ] + ], + "cannon": [ + [ + 1.78, + 1.27, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.84, + 1.16, + 0 + ] + ] + }, + "desc": "I have arrived, heeding your summon. Worry not, this isn't a nightmare, but rather a fateful mercy. Now, make a pact with me and become an acolyte of darkness.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 9713010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Erebus META", + "painting": "heianjie_alter", + "prefab": "heianjie_alter", + "rarity_bg": "", + "ship_group": 971301, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.56, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 40, + "voice_actor_2": -1 + }, + "10100010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 1.17, + 0 + ] + ], + "cannon": [ + [ + 1.01, + 1.21, + 0 + ] + ], + "torpedo": [ + [ + 0.21, + 0.09, + 0 + ] + ] + }, + "desc": "Heya! My name's Neptune! Nice to meet you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10100010, + "illustrator": 8, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Neptune", + "painting": "HDN101", + "prefab": "HDN101", + "rarity_bg": "neppurple", + "ship_group": 1010001, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 79, + "voice_actor_2": -1 + }, + "10100020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.73, + 0.81, + 0 + ] + ], + "cannon": [ + [ + 0.96, + 0.81, + 0 + ] + ], + "torpedo": [ + [ + 0.16, + 0.12, + 0 + ] + ] + }, + "desc": "Are you the commander? Hmm... Very well. I'm Noire. The CPU of Lastation. You can put your mind at ease now that I'm here.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10100020, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Noire", + "painting": "HDN201", + "prefab": "HDN201", + "rarity_bg": "nepblack", + "ship_group": 1010002, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 80, + "voice_actor_2": -1 + }, + "10100030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.05, + 1.13, + 0 + ] + ], + "cannon": [ + [ + 1.09, + 1.15, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.07, + 0 + ] + ] + }, + "desc": "I'm Blanc. Nice to meet you. Maybe you could introduce some intriguing books from this world to me...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10100030, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blanc", + "painting": "HDN301", + "prefab": "HDN301", + "rarity_bg": "nepwhite", + "ship_group": 1010003, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.64, + 2.65, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 81, + "voice_actor_2": -1 + }, + "10100040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.98, + 0.93, + 0 + ] + ], + "cannon": [ + [ + 0.92, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.08, + 0 + ] + ] + }, + "desc": "My name is Vert, I am the CPU of Leanbox. I'm very good at first-person shooters, so please let me handle all combat-related matters!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 10100040, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Vert", + "painting": "HDN401", + "prefab": "HDN401", + "rarity_bg": "nepgreen", + "ship_group": 1010004, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 65, + "voice_actor_2": -1 + }, + "10100050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.04, + 0.81, + 0 + ] + ], + "cannon": [ + [ + 1.11, + 0.82, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.08, + 0 + ] + ] + }, + "desc": "I am Purple Heart, the CPU of Planeptune. And you must be the commander. I will follow your orders from now.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 10100050, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Purple Heart", + "painting": "HDN102_1", + "prefab": "HDN102_1", + "rarity_bg": "neppurple", + "ship_group": 1010005, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 79, + "voice_actor_2": -1 + }, + "10100051": { + "bg": "201", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.94, + 1.07, + 0 + ] + ], + "cannon": [ + [ + 1.01, + 1.09, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.13, + 0 + ] + ] + }, + "desc": "Oh, Commander? Won't you join me in a short conversation? I'll tell you things about Planeptune. Oh, and I'm eagerly awaiting the day you come to Planeptune for a visit.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 10100051, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Goddesses' Promise", + "painting": "HDN102_2", + "prefab": "HDN102_2", + "rarity_bg": "neppurple", + "ship_group": 1010005, + "ship_l2d_id": "", + "shop_id": 70038, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 79, + "voice_actor_2": -1 + }, + "10100060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.73, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 0.99, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ] + }, + "desc": "I'm the CPU of Lastation, Black Heart. I've rushed here all the way from Gamindustri to lend you my aid. Be grateful.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 10100060, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Black Heart", + "painting": "HDN202_1", + "prefab": "HDN202_1", + "rarity_bg": "nepblack", + "ship_group": 1010006, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 80, + "voice_actor_2": -1 + }, + "10100061": { + "bg": "202", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.67, + 0.84, + 0 + ] + ], + "cannon": [ + [ + 0.84, + 0.93, + 0 + ] + ], + "torpedo": [ + [ + 0.2, + 0.1, + 0 + ] + ] + }, + "desc": "It's good to take it easy and celebrate once in a while, but especially in moments like these, you can't afford to let your guard down. Commander, why don't we spar for a bit? Don't even think about holding back - come at me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 10100061, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Goddesses' Smile", + "painting": "HDN202_2", + "prefab": "HDN202_2", + "rarity_bg": "nepblack", + "ship_group": 1010006, + "ship_l2d_id": "", + "shop_id": 70039, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 80, + "voice_actor_2": -1 + }, + "10100070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.87, + 1.28, + 0 + ] + ], + "cannon": [ + [ + 1.14, + 1.48, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.14, + 0 + ] + ] + }, + "desc": "I'm White Heart, the guardian CPU of Lowee. Pleased to meet you. I'm gonna give you a taste of a CPU's power!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10100070, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "White Heart", + "painting": "HDN302_1", + "prefab": "HDN302_1", + "rarity_bg": "nepwhite", + "ship_group": 1010007, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.28, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 81, + "voice_actor_2": -1 + }, + "10100071": { + "bg": "203", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.66, + 1.2, + 0 + ] + ], + "cannon": [ + [ + 0.72, + 1.42, + 0 + ] + ], + "torpedo": [ + [ + 0.12, + 0.08, + 0 + ] + ] + }, + "desc": "B-bastard! Where are you looking? I bet you're thinking I look like a kid! Eh....? They're just right? If Commander says something like that... I don't know how to react...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 10100071, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Goddesses' Humility", + "painting": "HDN302_2", + "prefab": "HDN302_2", + "rarity_bg": "nepwhite", + "ship_group": 1010007, + "ship_l2d_id": "", + "shop_id": 70040, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.52, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 81, + "voice_actor_2": -1 + }, + "10100080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.8, + 0.99, + 0 + ] + ], + "cannon": [ + [ + 0.97, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + 0.18, + 0.09, + 0 + ] + ] + }, + "desc": "I am the CPU of Leanbox, Green Heart. No matter who the enemy is, I will not hold back. Are you ready?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 10100080, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Green Heart", + "painting": "HDN402_1", + "prefab": "HDN402_1", + "rarity_bg": "nepgreen", + "ship_group": 1010008, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.41, + 2.38, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 65, + "voice_actor_2": -1 + }, + "10100081": { + "bg": "204", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.7, + 1.3, + 0 + ] + ], + "cannon": [ + [ + 0.84, + 1.38, + 0 + ] + ], + "torpedo": [ + [ + 0.17, + 0.04, + 0 + ] + ] + }, + "desc": "Commander, are you having a good time? Ehehe, I certainly am. It's not often that we get to relax like this. Why don't we head out and enjoy the breeze?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 10100081, + "illustrator": 1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Goddesses' Moment", + "painting": "HDN402_2", + "prefab": "HDN402_2", + "rarity_bg": "nepgreen", + "ship_group": 1010008, + "ship_l2d_id": "", + "shop_id": 70041, + "shop_type_id": 9999, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.34, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 65, + "voice_actor_2": -1 + }, + "10400010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.73, + 0.85, + 0 + ] + ], + "cannon": [ + [ + 0.99, + 0.98, + 0 + ] + ], + "torpedo": [ + [ + 0.15, + 0.1, + 0 + ] + ] + }, + "desc": "HAI DOMO! Kizuna AI here! Are you the commander I've heard rumors about? It's a pleasure to meet and work with you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10400010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kizuna AI", + "painting": "aijiangDD", + "prefab": "aijiangDD", + "rarity_bg": "", + "ship_group": 1040001, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 176, + "voice_actor_2": -1 + }, + "10400011": { + "bg": "114", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.17, + 0.57, + 0 + ] + ], + "cannon": [ + [ + 1.14, + 0.56, + 0 + ] + ], + "torpedo": [ + [ + 0.02, + 0.1, + 0 + ] + ] + }, + "desc": "The clothes from the Sakura Empire are so stylish! Commander, since it's a rare occasion, let's go take a look around! Ah, of course, don't forget to run the reel~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 10400011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Festive Kizuna AI", + "painting": "aijiangDD_2", + "prefab": "aijiangDD_2", + "rarity_bg": "", + "ship_group": 1040001, + "ship_l2d_id": "", + "shop_id": 70174, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.21, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2 + ], + "time": "", + "voice_actor": 176, + "voice_actor_2": -1 + }, + "10400020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.19, + 0.98, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.06, + 0 + ] + ] + }, + "desc": "Well met. I'm Kizuna AI, the new addition to your base. I will do all in my power to be at least of some use. It is a pleasure meeting you, Commander.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10400020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Elegant Kizuna AI", + "painting": "aijiangCL", + "prefab": "aijiangCL", + "rarity_bg": "", + "ship_group": 1040002, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 176, + "voice_actor_2": -1 + }, + "10400030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.83, + 0.9, + 0 + ] + ], + "cannon": [ + [ + 0.79, + 0.88, + 0 + ] + ], + "plane": [ + [ + 0.63, + 0.73, + 0 + ] + ], + "torpedo": [ + [ + 0.05, + 0.09, + 0 + ] + ] + }, + "desc": "Kizuna AI here, wearing a dress, coming at you! Be it concert or combat, I'll give it my all!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10400030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Anniversary Kizuna AI", + "painting": "aijiangCV", + "prefab": "aijiangCV", + "rarity_bg": "", + "ship_group": 1040003, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 176, + "voice_actor_2": -1 + }, + "10400040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.23, + 0.96, + 0 + ] + ], + "cannon": [ + [ + 1.28, + 0.94, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0.1, + 0 + ] + ] + }, + "desc": "HAI DOMO! Virtual Gamer Kizuna AI here! Don't worry, Commander, I've played AL a whole bunch before! ... Wait, I've become a ship now?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10400040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Super Gamer Kizuna AI", + "painting": "aijiangBB", + "prefab": "aijiangBB", + "rarity_bg": "", + "ship_group": 1040004, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 176, + "voice_actor_2": -1 + }, + "10500010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.374, + 1.117, + 0 + ] + ], + "cannon": [ + [ + 1.346, + 1.136, + 0 + ] + ], + "remote": [ + -50, + 0, + 0 + ], + "torpedo": [ + [ + 0.009, + 0.004, + 0 + ] + ] + }, + "desc": "We meet at last! I'm Hololive's virtual fox, Shirakami Fubuki! Commander, now that you've called me, we're gonna have a foxin' good time! Now then, let's get to work!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10500010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Shirakami Fubuki", + "painting": "vtuber_fubuki", + "prefab": "vtuber_fubuki", + "rarity_bg": "", + "ship_group": 1050001, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.386, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 206, + "voice_actor_2": -1 + }, + "10500011": { + "bg": "106", + "bg_sp": "", + "bgm": "holo-fbk", + "bound_bone": { + "antiaircraft": [ + [ + 1.071, + 1.072, + 0 + ] + ], + "cannon": [ + [ + 1.094, + 1.076, + 0 + ] + ], + "remote": [ + -50, + 0, + 0 + ], + "torpedo": [ + [ + 0.002, + 0.004, + 0 + ] + ] + }, + "desc": "Tada~! It's your favorite Shirakami Fubuki, Hololive Summer version! Commander, pleased to be your fox!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10500011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Beachside Fox", + "painting": "vtuber_fubuki_2", + "prefab": "vtuber_fubuki_2", + "rarity_bg": "", + "ship_group": 1050001, + "ship_l2d_id": "", + "shop_id": 70267, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.385, + 2.379, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 206, + "voice_actor_2": -1 + }, + "10500020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.181, + 1.153, + 0 + ] + ], + "cannon": [ + [ + 1.161, + 1.097, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + -0.001, + 0 + ] + ] + }, + "desc": "Hey Commander, it's nice to meet you~! I'm Tokino Sora, a virtual idol affiliated with Hololive! I'll do my absolute best here like I always do! I'll be in your care, so cheer me on, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10500020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tokino Sora", + "painting": "vtuber_sora", + "prefab": "vtuber_sora", + "rarity_bg": "", + "ship_group": 1050002, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 211, + "voice_actor_2": -1 + }, + "10500021": { + "bg": "106", + "bg_sp": "", + "bgm": "holo-sora", + "bound_bone": { + "antiaircraft": [ + [ + 1.236, + 1.2, + 0 + ] + ], + "cannon": [ + [ + 1.223, + 1.221, + 0 + ] + ], + "torpedo": [ + [ + -0.006, + 0.007, + 0 + ] + ] + }, + "desc": "\"Hello, my friends! I hope you're well~! This is Sora, on site at a beach in a slightly different world!\" Beach visits just feel so invigorating, don't they? On another note, I can't swim…", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10500021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Under the Clear Sky", + "painting": "vtuber_sora_2", + "prefab": "vtuber_sora_2", + "rarity_bg": "", + "ship_group": 1050002, + "ship_l2d_id": "", + "shop_id": 70272, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 211, + "voice_actor_2": -1 + }, + "10500030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.437, + 0.832, + 0 + ] + ], + "cannon": [ + [ + 1.561, + 0.849, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.062, + 0 + ] + ] + }, + "desc": "G-Good Aquafternoon...! I'm Minato Aqua, the Gamer Maid from Hololive~ U-Ugh... I didn't know I would have to introduce myself in this outfit!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10500030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Minato Aqua", + "painting": "vtuber_aqua", + "prefab": "vtuber_aqua", + "rarity_bg": "", + "ship_group": 1050003, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 208, + "voice_actor_2": -1 + }, + "10500031": { + "bg": "124", + "bg_sp": "", + "bgm": "holo-aqua", + "bound_bone": { + "antiaircraft": [ + [ + 1.447, + 0.927, + 0 + ] + ], + "cannon": [ + [ + 1.455, + 0.869, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.07, + 0 + ] + ] + }, + "desc": "Commander, good Aquafternoon~! Nice to meet you, it's Aqua, the Gamer Maid from Hololive! I'll show ya what the strongest maid can do!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10500031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Marine Maid", + "painting": "vtuber_aqua_2", + "prefab": "vtuber_aqua_2", + "rarity_bg": "", + "ship_group": 1050003, + "ship_l2d_id": "", + "shop_id": 70269, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.399, + 2.354, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 208, + "voice_actor_2": -1 + }, + "10500040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.169, + 1.101, + 0 + ] + ], + "cannon": [ + [ + 1.152, + 1.077, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + 0.01, + 0 + ] + ] + }, + "desc": "I'm the lovely high school girl affiliated with Hololive, Natsuiro Matsuri!! I love singing and having all kinds of lively conversations with people, so make sure to keep your eyes on me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10500040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Natsuiro Matsuri", + "painting": "vtuber_matsuri", + "prefab": "vtuber_matsuri", + "rarity_bg": "", + "ship_group": 1050004, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.493, + 2.318, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 207, + "voice_actor_2": -1 + }, + "10500041": { + "bg": "122", + "bg_sp": "", + "bgm": "holo-matsuri", + "bound_bone": { + "antiaircraft": [ + [ + 1.148, + 1.091, + 0 + ] + ], + "cannon": [ + [ + 1.113, + 1.098, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0.006, + 0 + ] + ] + }, + "desc": "I'm the lovely high school girl, now in her extra-pure pajamas, Natsuiro Matsuri! Hey hey, Commander, what do you think? Surprised? Don't gawk at me too much~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10500041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Matsuri's Day Off", + "painting": "vtuber_matsuri_2", + "prefab": "vtuber_matsuri_2", + "rarity_bg": "", + "ship_group": 1050004, + "ship_l2d_id": "", + "shop_id": 70268, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.476, + 2.366, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 207, + "voice_actor_2": -1 + }, + "10500050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.538, + 1.332, + 0 + ] + ], + "cannon": [ + [ + 1.566, + 1.322, + 0 + ] + ], + "torpedo": [ + [ + 0.002, + -0.001, + 0 + ] + ] + }, + "desc": "Be cheery, for here's Nakiri! Ay am Nakiri Ayame, Hololive's virtual demon! Ay have come from the great beyond with my accompanying spirits!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10500050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nakiri Ayame", + "painting": "vtuber_ayame", + "prefab": "vtuber_ayame", + "rarity_bg": "", + "ship_group": 1050005, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 210, + "voice_actor_2": -1 + }, + "10500051": { + "bg": "106", + "bg_sp": "", + "bgm": "holo-ayame", + "bound_bone": { + "antiaircraft": [ + [ + 1.407, + 1.254, + 0 + ] + ], + "cannon": [ + [ + 1.372, + 1.221, + 0 + ] + ], + "torpedo": [ + [ + -0.006, + 0.007, + 0 + ] + ] + }, + "desc": "Be cheery, for here's Nakiri~! Ay am not used to this outfit and am a little embarrassed... But Ay am Nakiri Ayame, Hololive's virtual demon!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10500051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summertime Nakiri", + "painting": "vtuber_ayame_2", + "prefab": "vtuber_ayame_2", + "rarity_bg": "", + "ship_group": 1050005, + "ship_l2d_id": "", + "shop_id": 70271, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 210, + "voice_actor_2": -1 + }, + "10500060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.477, + 1.156, + 0 + ] + ], + "cannon": [ + [ + 1.485, + 1.133, + 0 + ] + ], + "torpedo": [ + [ + 0.009, + -0.006, + 0 + ] + ] + }, + "desc": "I am the mastermind magician, Murasaki Shion! Come and be bewitched by my mature, seductive outfit!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10500060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Murasaki Shion", + "painting": "vtuber_shion", + "prefab": "vtuber_shion", + "rarity_bg": "", + "ship_group": 1050006, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.323, + 2.372, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 212, + "voice_actor_2": -1 + }, + "10500061": { + "bg": "123", + "bg_sp": "", + "bgm": "holo-shion", + "bound_bone": { + "antiaircraft": [ + [ + 1.254, + 1.152, + 0 + ] + ], + "cannon": [ + [ + 1.41, + 1.199, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Here comes Murasaki Shion, Hololive's famous virtual magician! This world will bear witness to my brilliance!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10500061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Virtual Magician", + "painting": "vtuber_shion_2", + "prefab": "vtuber_shion_2", + "rarity_bg": "", + "ship_group": 1050006, + "ship_l2d_id": "", + "shop_id": 70273, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 212, + "voice_actor_2": -1 + }, + "10500070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.454, + 1.151, + 0 + ] + ], + "cannon": [ + [ + 1.461, + 1.144, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + -0.006, + 0 + ] + ] + }, + "desc": "Good Miovening! I'm Ookami Mio. Over here, I seem to be... some sort of aircraft carrier. Let's get along well.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10500070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ookami Mio", + "painting": "vtuber_mio", + "prefab": "vtuber_mio", + "rarity_bg": "", + "ship_group": 1050007, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 209, + "voice_actor_2": -1 + }, + "10500071": { + "bg": "106", + "bg_sp": "", + "bgm": "holo-mio", + "bound_bone": { + "antiaircraft": [ + [ + 1.233, + 1.118, + 0 + ] + ], + "cannon": [ + [ + 1.211, + 1.144, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + 0, + 0 + ] + ] + }, + "desc": "I changed into my swimsuit, but I wonder if it looks right on me? An outfit like this might make you feel breezier just by looking at it~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10500071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Vacation", + "painting": "vtuber_mio_2", + "prefab": "vtuber_mio_2", + "rarity_bg": "", + "ship_group": 1050007, + "ship_l2d_id": "", + "shop_id": 70270, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 209, + "voice_actor_2": -1 + }, + "10600010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.607, + 1.125, + 0 + ] + ], + "cannon": [ + [ + 1.65, + 1.103, + 0 + ] + ], + "torpedo": [ + [ + 0.012, + -0.009, + 0 + ] + ] + }, + "desc": "Hello! Oh... What am I supposed to call you? \"Commander\"? Got it! My name is Marie Rose. Just call me Marie, okay? I'm counting on your support, Commander! ", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10600010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Marie Rose", + "painting": "maliluosi_doa", + "prefab": "maliluosi_doa", + "rarity_bg": "", + "ship_group": 1060001, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 252, + "voice_actor_2": -1 + }, + "10600011": { + "bg": "106", + "bg_sp": "", + "bgm": "doa_huanzhuang", + "bound_bone": { + "antiaircraft": [ + [ + 1.397, + 1.067, + 0 + ] + ], + "cannon": [ + [ + 1.461, + 1.074, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + 0.006, + 0 + ] + ] + }, + "desc": "Hmm, this swimsuit is pretty cute, but isn't it a bit childish? ...In any case, if you like it, then it's all good!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 10600011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Devilish Servant Against the Splashing Waves", + "painting": "maliluosi_2_DOA", + "prefab": "maliluosi_2_DOA", + "rarity_bg": "", + "ship_group": 1060001, + "ship_l2d_id": "", + "shop_id": 70445, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 252, + "voice_actor_2": -1 + }, + "10600012": { + "bg": "142", + "bg_sp": "", + "bgm": "doa_huanzhuang", + "bound_bone": { + "antiaircraft": [ + [ + 1.397, + 1.067, + 0 + ] + ], + "cannon": [ + [ + 1.461, + 1.074, + 0 + ] + ], + "torpedo": [ + [ + -0.003, + 0.006, + 0 + ] + ] + }, + "desc": "Phew... So warm and comfy~♪ Wanna join me, Commander? Oh... It's a little embarrassing, though, so... Don't look my way too much, okay?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 13, + "id": 10600012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": [ + "idle", + "main_1", + "main_2", + "main_3", + "mission", + "mission_complete", + "complete", + "login", + "home", + "mail", + "touch_body", + "touch_head" + ], + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": { + "use_event": true + }, + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 35, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Steamy Venus", + "painting": "maliluosi_3_doa", + "prefab": "maliluosi_3_doa", + "rarity_bg": "", + "ship_group": 1060001, + "ship_l2d_id": "", + "shop_id": 70838, + "shop_type_id": 22, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 1, + 2, + 5 + ], + "time": "", + "voice_actor": 252, + "voice_actor_2": -1 + }, + "10600020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.685, + 1.05, + 0 + ] + ], + "cannon": [ + [ + 1.663, + 1.036, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.002, + 0 + ] + ] + }, + "desc": "Um... Are you the Commander? Oh, perfect! It's nice to meet you. My name is Honoka! I don't know how much I'll be able to help, but... let's be friends!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10600020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Honoka", + "painting": "suixiang_doa", + "prefab": "suixiang_doa", + "rarity_bg": "", + "ship_group": 1060002, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 251, + "voice_actor_2": -1 + }, + "10600021": { + "bg": "106", + "bg_sp": "", + "bgm": "doa_huanzhuang", + "bound_bone": { + "antiaircraft": [ + [ + 1.619, + 1.074, + 0 + ] + ], + "cannon": [ + [ + 1.627, + 1.036, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.002, + 0 + ] + ] + }, + "desc": "Whoa, the sea is so pretty~! It's as beautiful as the Venus Islands! I'm so blown away, I don't even feel the heat anymore!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10600021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Angel on the Shore", + "painting": "suixiang_2_doa", + "prefab": "suixiang_2_doa", + "rarity_bg": "", + "ship_group": 1060002, + "ship_l2d_id": "", + "shop_id": 70447, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 251, + "voice_actor_2": -1 + }, + "10600030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "cannon": [ + [ + 1.482, + 1.069, + 0 + ] + ], + "torpedo": [ + [ + 0.003, + -0.002, + 0 + ] + ], + "vicegun": [ + [ + 1.524, + 1.077, + 0 + ] + ] + }, + "desc": "Are you the Owner of the port? The \"Commander\"? Hello. My name is Kasumi, I'll be staying here for the foreseeable future. I hope we can both get along on friendly terms.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10600030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kasumi", + "painting": "xia_DOA", + "prefab": "xia_DOA", + "rarity_bg": "", + "ship_group": 1060003, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.625, + 2.427, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 250, + "voice_actor_2": -1 + }, + "10600031": { + "bg": "142", + "bg_sp": "1102", + "bgm": "doa_huanzhuang", + "bound_bone": { + "cannon": [ + [ + 1.554, + 1.084, + 0 + ] + ], + "torpedo": [ + [ + -0.004, + 0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.473, + 1.041, + 0 + ] + ] + }, + "desc": "I was amazed to see the port had such a scenic place as this... Truly, you can't go without taking this view in. Right, Commander?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10600031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Springside Mist", + "painting": "xia_2_DOA", + "prefab": "xia_2_DOA", + "rarity_bg": "", + "ship_group": 1060003, + "ship_l2d_id": "", + "shop_id": 70446, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.429, + 2.543, + 0.14 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 250, + "voice_actor_2": -1 + }, + "10600040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.19, + 0.98, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.012, + 0 + ] + ] + }, + "desc": "It's nice to meet you! From what I've heard, you're the \"Commander,\" right? I'm Misaki. I have experience with various part-time jobs, so... I'm confident that I can be of help to you all. Let's do our best!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10600040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Misaki", + "painting": "haixiao_DOA", + "prefab": "haixiao_DOA", + "rarity_bg": "", + "ship_group": 1060004, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.33, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 144, + "voice_actor_2": -1 + }, + "10600041": { + "bg": "106", + "bg_sp": "", + "bgm": "doa_huanzhuang", + "bound_bone": { + "antiaircraft": [ + [ + 1.19, + 1.038, + 0 + ] + ], + "cannon": [ + [ + 1.16, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.012, + 0 + ] + ] + }, + "desc": "A photoshoot? That'd be similar to what I did before coming here, but... um, this swimsuit is a bit much... Commander, is this what you're into? Geez... It's so embarrassing...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10600041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Golden Photoshoot", + "painting": "haixiao_2_DOA", + "prefab": "haixiao_2_DOA", + "rarity_bg": "", + "ship_group": 1060004, + "ship_l2d_id": "", + "shop_id": 70448, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.482, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 144, + "voice_actor_2": -1 + }, + "10600050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.73, + 1.112, + 0 + ] + ], + "cannon": [ + [ + 1.758, + 1.049, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.009, + 0 + ] + ] + }, + "desc": "Are you the person who led Misaki to this port? You go by the name... \"Commander\"? Hmm... I don't know how you sweet-talked her into it, but you're not fooling me. The moment you do anything strange... you better be on guard! My name? It's Nagisa. You... silly dog!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10600050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nagisa", + "painting": "zhixiao_DOA", + "prefab": "zhixiao_DOA", + "rarity_bg": "", + "ship_group": 1060005, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 182, + "voice_actor_2": -1 + }, + "10600051": { + "bg": "106", + "bg_sp": "", + "bgm": "doa_huanzhuang", + "bound_bone": { + "antiaircraft": [ + [ + 1.665, + 1.098, + 0 + ] + ], + "cannon": [ + [ + 1.657, + 1.078, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.001, + 0 + ] + ] + }, + "desc": "Whew! The wind feels great! ...What are you staring at me like that for, you silly dog? You're the one who said you wanted to go to the beach, remember? To start with, how about... we take a stroll?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10600051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blue Skies, Good Vibes", + "painting": "zhixiao_2_DOA", + "prefab": "zhixiao_2_DOA", + "rarity_bg": "", + "ship_group": 1060005, + "ship_l2d_id": "", + "shop_id": 70449, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 182, + "voice_actor_2": -1 + }, + "10600060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.666, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.644, + 1.08, + 0 + ] + ], + "plane": [ + [ + 1.572, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + -0.002, + -0.005, + 0 + ] + ], + "vicegun": [ + [ + 1.666, + 1.08, + 0 + ] + ] + }, + "desc": "Oh? You don't seem to fear me... Who might you be? ...I see, so it is you who rules over this place. Then I shall call you \"Commander.\" I am Nyotengu. You would do best to keep me entertained, hehe.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 10600060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nyotengu", + "painting": "nvtiangou_DOA", + "prefab": "nvtiangou_DOA", + "rarity_bg": "", + "ship_group": 1060006, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.582, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 253, + "voice_actor_2": -1 + }, + "10600061": { + "bg": "142", + "bg_sp": "1102", + "bgm": "doa_huanzhuang", + "bound_bone": { + "antiaircraft": [ + [ + 1.104, + 1.08, + 0 + ] + ], + "cannon": [ + [ + 1.219, + 1.08, + 0 + ] + ], + "plane": [ + [ + 1.169, + 1.08, + 0 + ] + ], + "torpedo": [ + [ + -0.007, + -0.003, + 0 + ] + ], + "vicegun": [ + [ + 1.161, + 1.08, + 0 + ] + ] + }, + "desc": "Oho! To think there was a place with this much class... Not bad! I shall hereby be enjoying my hot springs vacation right here, hehehe.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 10600061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Scarlet-Tinged Hot Spring Vacation", + "painting": "nvtiangou_2_DOA", + "prefab": "nvtiangou_2_DOA", + "rarity_bg": "", + "ship_group": 1060006, + "ship_l2d_id": "", + "shop_id": 70450, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 253, + "voice_actor_2": -1 + }, + "10600070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.497, + 1.03, + 0 + ] + ], + "cannon": [ + [ + 1.471, + 0.967, + 0 + ] + ], + "plane": [ + [ + 1.492, + 0.976, + 0 + ] + ], + "torpedo": [ + [ + 0.007, + -0.004, + 0 + ] + ] + }, + "desc": "Are you the one in charge here? The \"Commander\"? I'm Monica, the dealer! Well, dealer-in-training. I know it's sudden, but would you care to gamble with me? The stakes will, of course, be high!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 1, + "id": 10600070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Monica", + "painting": "monika_DOA", + "prefab": "monika_DOA", + "rarity_bg": "", + "ship_group": 1060007, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 234, + "voice_actor_2": -1 + }, + "10600071": { + "bg": "106", + "bg_sp": "", + "bgm": "doa_huanzhuang", + "bound_bone": { + "antiaircraft": [ + [ + 1.221, + 1.067, + 0 + ] + ], + "cannon": [ + [ + 1.276, + 1.068, + 0 + ] + ], + "plane": [ + [ + 1.181, + 1.042, + 0 + ] + ], + "torpedo": [ + [ + -0.001, + -0.004, + 0 + ] + ] + }, + "desc": "\"Welcome to Monica's Fantabulous Casino! Where you can have your every whim satisfied!\" ...Oh, that doesn't sound very casino-managery? Heheh!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 1, + "id": 10600071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Ace of Hearts", + "painting": "monika_2_DOA", + "prefab": "monika_2_DOA", + "rarity_bg": "", + "ship_group": 1060007, + "ship_l2d_id": "", + "shop_id": 70451, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.39, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 234, + "voice_actor_2": -1 + }, + "10600080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.338, + 1.422, + 0 + ] + ], + "cannon": [ + [ + 1.233, + 0.971, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "H-hmm... Wh-where am I? ...Me? I'm Luna, a scholar. Umm... You go by the Commander? Well, I'm hungry... Do you have anything to eat? I'd prefer roasted sweet potatoes...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10600080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Luna", + "painting": "luna_doa", + "prefab": "luna_doa", + "rarity_bg": "", + "ship_group": 1060008, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.157, + 2.393, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 312, + "voice_actor_2": -1 + }, + "10600081": { + "bg": "106", + "bg_sp": "", + "bgm": "doa_huanzhuang", + "bound_bone": { + "antiaircraft": [ + [ + 1.338, + 1.422, + 0 + ] + ], + "cannon": [ + [ + 1.233, + 0.971, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Hmm... Commander, I'm tired from all this frolicking. How about we take a break, or have a snack? You know, nobody knows we're all alone right here... Heehee~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 10600081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Venus of the Beach", + "painting": "luna_2_doa", + "prefab": "luna_2_doa", + "rarity_bg": "", + "ship_group": 1060008, + "ship_l2d_id": "", + "shop_id": 70840, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.157, + 2.393, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": [ + [ + 150, + -878, + 0 + ], + [ + 1.1 + ] + ], + "tag": [ + 2, + 5, + 6 + ], + "time": "", + "voice_actor": 312, + "voice_actor_2": -1 + }, + "10600090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.338, + 1.422, + 0 + ] + ], + "cannon": [ + [ + 1.233, + 0.971, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Hmm? Where am I? Ohh, I get it now... I drank way too much yesterday... Ahahah. Oh well♪ There's tons of cuties here to keep me entertained❤ My name's Tamaki. It's a pleasure, Commander❤", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 10600090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Tamaki", + "painting": "huan_doa", + "prefab": "huan_doa", + "rarity_bg": "", + "ship_group": 1060009, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.157, + 2.393, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 87, + "voice_actor_2": -1 + }, + "10600091": { + "bg": "164", + "bg_sp": "", + "bgm": "doa_huanzhuang", + "bound_bone": { + "antiaircraft": [ + [ + 1.338, + 1.422, + 0 + ] + ], + "cannon": [ + [ + 1.233, + 0.971, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Heehee~ I've been waiting, Commander♪ Come on, there's no need to be shy♥ I'm going to show you a lovely time, darling, so you'd better get ready♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 10600091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Venus Shower Time", + "painting": "huan_2_doa", + "prefab": "huan_2_doa", + "rarity_bg": "", + "ship_group": 1060009, + "ship_l2d_id": "", + "shop_id": 70839, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.157, + 2.393, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 87, + "voice_actor_2": -1 + }, + "10700010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.333, + 1.006, + 0 + ] + ], + "cannon": [ + [ + 1.375, + 1.002, + 0 + ] + ], + "plane": [ + [ + 1.402, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Hello, Commander! I'm the idol, Haruka Amami! I'll do my best to share my dreams with everyone in port! Let's all have a great time together!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 10700010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Haruka Amami", + "painting": "chunxiang", + "prefab": "chunxiang", + "rarity_bg": "", + "ship_group": 1070001, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.515, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 94, + "voice_actor_2": -1 + }, + "10700011": { + "bg": "114", + "bg_sp": "1102", + "bgm": "idom-MainBGM", + "bound_bone": { + "antiaircraft": [ + [ + 1.333, + 1.006, + 0 + ] + ], + "cannon": [ + [ + 1.375, + 1.002, + 0 + ] + ], + "plane": [ + [ + 1.402, + 1, + 0 + ] + ], + "torpedo": [ + [ + 0.006, + -0.024, + 0 + ] + ] + }, + "desc": "Good evening, Commander! Are you also taking a break? If so, let's go get some candied apples and have a little chat~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 0, + "id": 10700011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Taste of Tranquility", + "painting": "chunxiang_2", + "prefab": "chunxiang_2", + "rarity_bg": "", + "ship_group": 1070001, + "ship_l2d_id": "", + "shop_id": 70572, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.515, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 94, + "voice_actor_2": -1 + }, + "10700020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.658, + 0.99, + 0 + ] + ], + "cannon": [ + [ + 1.647, + 0.992, + 0 + ] + ], + "plane": [ + [ + 1.673, + 1.011, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Pleased to meet you. My name is Chihaya Kisaragi. Are you the one in charge of this port? I look forward to working with you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 10700020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chihaya Kisaragi", + "painting": "qianzao", + "prefab": "qianzao", + "rarity_bg": "", + "ship_group": 1070002, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.567, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 80, + "voice_actor_2": -1 + }, + "10700021": { + "bg": "142", + "bg_sp": "1102", + "bgm": "idom-MainBGM", + "bound_bone": { + "antiaircraft": [ + [ + 1.658, + 0.99, + 0 + ] + ], + "cannon": [ + [ + 1.647, + 0.992, + 0 + ] + ], + "plane": [ + [ + 1.673, + 1.011, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Oh, the fireworks display is starting. I'm planning to meet up with the others after this, but... Why don't we spend some time enjoying the view here first?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 0, + "id": 10700021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Reflections of Heavenly Flowers", + "painting": "qianzao_2", + "prefab": "qianzao_2", + "rarity_bg": "", + "ship_group": 1070002, + "ship_l2d_id": "", + "shop_id": 70573, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.531, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 80, + "voice_actor_2": -1 + }, + "10700030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.665, + 1.001, + 0 + ] + ], + "cannon": [ + [ + 1.677, + 1.007, + 0 + ] + ], + "plane": [ + [ + 1.682, + 0.999, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.032, + 0 + ] + ] + }, + "desc": "Hello, hello~! My name is Iori Minase! It's such a pleasure to meet you! ...Huh? There's no need for me to force myself...? Hey, wait a second, what do you mean by that?!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 10700030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Iori Minase", + "painting": "yizhi", + "prefab": "yizhi", + "rarity_bg": "", + "ship_group": 1070003, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.34, + 2.662, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "10700031": { + "bg": "142", + "bg_sp": "1102", + "bgm": "idom-MainBGM", + "bound_bone": { + "antiaircraft": [ + [ + 1.681, + 1.001, + 0 + ] + ], + "cannon": [ + [ + 1.701, + 1.007, + 0 + ] + ], + "plane": [ + [ + 1.684, + 1.008, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.009, + 0 + ] + ] + }, + "desc": "Blowing bubbles while sitting on a swing... It might seem a bit childish, but there's nothing wrong with enjoying activities like these every so often.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 0, + "id": 10700031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Little Evening Secret", + "painting": "yizhi_2", + "prefab": "yizhi_2", + "rarity_bg": "", + "ship_group": 1070003, + "ship_l2d_id": "", + "shop_id": 70574, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.641, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 89, + "voice_actor_2": -1 + }, + "10700040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.21, + 0.999, + 0 + ] + ], + "cannon": [ + [ + 1.24, + 1.005, + 0 + ] + ], + "plane": [ + [ + 1.234, + 0.999, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Why hello, my name's Azusa Miura~ Um, this is a port, right? And these are... shipgirls? Um~ Where exactly am I?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 10700040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Azusa Miura", + "painting": "zi", + "prefab": "zi", + "rarity_bg": "", + "ship_group": 1070004, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.586, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 58, + "voice_actor_2": -1 + }, + "10700041": { + "bg": "142", + "bg_sp": "", + "bgm": "idom-MainBGM", + "bound_bone": { + "antiaircraft": [ + [ + 1.2, + 0.999, + 0 + ] + ], + "cannon": [ + [ + 1.21, + 1.005, + 0 + ] + ], + "plane": [ + [ + 1.204, + 1.014, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.03, + 0 + ] + ] + }, + "desc": "Listening to the wind flow through the chimes on the porch seems to carry the summer heat right away. Commander, would you also like to come unwind with me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 0, + "id": 10700041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Midsummer Relaxation", + "painting": "zi_2", + "prefab": "zi_2", + "rarity_bg": "", + "ship_group": 1070004, + "ship_l2d_id": "", + "shop_id": 70575, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.526, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 58, + "voice_actor_2": -1 + }, + "10700050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.322, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.316, + 1.012, + 0 + ] + ], + "plane": [ + [ + 1.355, + 1.016, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.033, + 0 + ] + ] + }, + "desc": "Pleased to meet you. My name is Ritsuko Akizuki. I was wondering what was going to happen to me when I suddenly got blown away, but... In any case, I'm pleased to make your acquaintance!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 10700050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ritsuko Akizuki", + "painting": "lvzi", + "prefab": "lvzi", + "rarity_bg": "", + "ship_group": 1070005, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.607, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 281, + "voice_actor_2": -1 + }, + "10700051": { + "bg": "142", + "bg_sp": "1102", + "bgm": "idom-MainBGM", + "bound_bone": { + "antiaircraft": [ + [ + 1.305, + 1, + 0 + ] + ], + "cannon": [ + [ + 1.296, + 1.012, + 0 + ] + ], + "plane": [ + [ + 1.26, + 0.999, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Sorry, what? A paddle showdown? Commander, please... You play that in a kimono, not a yutaka. But if you insist... If I win, you're buying me an ice cream!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 0, + "id": 10700051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Paddle Showdown - Summer Formation", + "painting": "lvzi_2", + "prefab": "lvzi_2", + "rarity_bg": "", + "ship_group": 1070005, + "ship_l2d_id": "", + "shop_id": 70576, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.457, + 2.572, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 281, + "voice_actor_2": -1 + }, + "10700060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.019, + 1.013, + 0 + ] + ], + "cannon": [ + [ + 1.017, + 1.013, + 0 + ] + ], + "plane": [ + [ + 1.028, + 1.008, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Nihihi! I'm the idol, Ami Futami! This place seems awfully lively, just perfect for pranking~! See you around, Commander!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 10700060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ami Futami", + "painting": "yamei", + "prefab": "yamei", + "rarity_bg": "", + "ship_group": 1070006, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.475, + 2.547, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "10700061": { + "bg": "114", + "bg_sp": "1102", + "bgm": "idom-MainBGM", + "bound_bone": { + "antiaircraft": [ + [ + 1.025, + 1.013, + 0 + ] + ], + "cannon": [ + [ + 1.013, + 1.013, + 0 + ] + ], + "plane": [ + [ + 1.01, + 0.999, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Summer's all about the festivals, and Ami Futami's the queen of festivals! Even the fireworks soaring through the sky can't hold a candle to how brilliant Ami is, so keep your eyes on me, Commander~♪", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 0, + "id": 10700061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Summer Flowers and Sizzling Beats", + "painting": "yamei_2", + "prefab": "yamei_2", + "rarity_bg": "", + "ship_group": 1070006, + "ship_l2d_id": "", + "shop_id": 70577, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.475, + 2.562, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "10700070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.256, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 1.225, + 0.997, + 0 + ] + ], + "plane": [ + [ + 1.261, + 0.995, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.155, + 0 + ] + ] + }, + "desc": "Nihihi~♪ I'm the idol, Mami Futami! You'll get to feast your eyes on how alluring Mami is, so look forward to it, Commander~!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 0, + "id": 10700070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mami Futami", + "painting": "zhenmei", + "prefab": "zhenmei", + "rarity_bg": "", + "ship_group": 1070007, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.565, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "10700071": { + "bg": "114", + "bg_sp": "1102", + "bgm": "idom-MainBGM", + "bound_bone": { + "antiaircraft": [ + [ + 1.236, + 1.005, + 0 + ] + ], + "cannon": [ + [ + 1.26, + 0.992, + 0 + ] + ], + "plane": [ + [ + 1.251, + 0.995, + 0 + ] + ], + "torpedo": [ + [ + 0, + -0.125, + 0 + ] + ] + }, + "desc": "Woah~! They're starting to send up the huge fireworks! ...Hey, Commander, just where are you looking? Did Mami's alluring yukata make you go crazy with desire~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 0, + "id": 10700071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Alluring Festival", + "painting": "zhenmei_2", + "prefab": "zhenmei_2", + "rarity_bg": "", + "ship_group": 1070007, + "ship_l2d_id": "", + "shop_id": 70578, + "shop_type_id": 10, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.6, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 72, + "voice_actor_2": -1 + }, + "10800010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.05, + 0.86, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 0.85, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Um, my name is Rikka Takarada. I'm still a bit confused about what's going on, but... I guess for the time being, I'm in good hands.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10800010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rikka Takarada", + "painting": "baoduoliuhua", + "prefab": "baoduoliuhua", + "rarity_bg": "", + "ship_group": 1080001, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.515, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 293, + "voice_actor_2": -1 + }, + "10800011": { + "bg": "112", + "bg_sp": "1101", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 0.95, + 0.95, + 0 + ] + ], + "cannon": [ + [ + 0.97, + 0.89, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "The train still isn't here yet? ...Oh, what a coincidence to see you here, Commander. Where were you headed?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10800011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blue Sky Station", + "painting": "baoduoliuhua_2", + "prefab": "baoduoliuhua_2", + "rarity_bg": "", + "ship_group": 1080001, + "ship_l2d_id": "", + "shop_id": 70616, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.515, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 293, + "voice_actor_2": -1 + }, + "10800012": { + "bg": "109", + "bg_sp": "", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 0.95, + 0.95, + 0 + ] + ], + "cannon": [ + [ + 0.97, + 0.89, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Ack, Commander?! Geez, look, I at least want to be able to relax in my own room. Let it go just this once, okay?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 10800012, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bedroom Attire", + "painting": "baoduoliuhua_3", + "prefab": "baoduoliuhua_3", + "rarity_bg": "", + "ship_group": 1080001, + "ship_l2d_id": "", + "shop_id": 70870, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.47, + 2.515, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 293, + "voice_actor_2": -1 + }, + "10800020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.28, + 2.25, + 0 + ] + ], + "cannon": [ + [ + 1.47, + 2.25, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Hey there, the name's Akane Shinjo. This rigging looks super cool, like it's right out of a mecha. Now if only there were some kaiju around, that'd be the best...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10800020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Akane Shinjo", + "painting": "qian", + "prefab": "qian", + "rarity_bg": "", + "ship_group": 1080002, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.33, + 2.57, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 108, + "voice_actor_2": -1 + }, + "10800021": { + "bg": "109", + "bg_sp": "", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 2.46, + 2.13, + 0 + ] + ], + "cannon": [ + [ + 2.48, + 1.98, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Welcome back, Commander. You sure brought a lot of goodies back for me, huh? Now then, don't just keep standing there, hurry and come to me~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10800021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Vacation Just for Two", + "painting": "qian_2", + "prefab": "qian_2", + "rarity_bg": "", + "ship_group": 1080002, + "ship_l2d_id": "", + "shop_id": 70617, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + 0.64, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 108, + "voice_actor_2": -1 + }, + "10800022": { + "bg": "109", + "bg_sp": "1102", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 2.46, + 2.13, + 0 + ] + ], + "cannon": [ + [ + 2.48, + 1.98, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Hey, Commander, what's up~? You're not intoxicated by my good looks, are you? Pssh, lighten up, I'm kidding~", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 10800022, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Room of Secrets", + "painting": "qian_3", + "prefab": "qian_3", + "rarity_bg": "", + "ship_group": 1080002, + "ship_l2d_id": "", + "shop_id": 70872, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + 0.64, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 108, + "voice_actor_2": -1 + }, + "10800030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1, + 1.06, + 0 + ] + ], + "cannon": [ + [ + 0.93, + 0.92, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Hello, I'm Hass. I was suddenly blown away to this strange place... But, I guess it seems interesting enough here. By the way, is it okay to shoot some videos here?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10800030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Hass", + "painting": "lian", + "prefab": "lian", + "rarity_bg": "", + "ship_group": 1080003, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.46, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 82, + "voice_actor_2": -1 + }, + "10800031": { + "bg": "148", + "bg_sp": "1102", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 0.94, + 1.06, + 0 + ] + ], + "cannon": [ + [ + 0.95, + 1.1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Hass here. Tonight, we're going to take a walk around the port at night. Aaaand, we even have a special guest– the Commander! ...Psst, hey, look at the camera real quick!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10800031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Seaside Scoop!", + "painting": "lian_2", + "prefab": "lian_2", + "rarity_bg": "", + "ship_group": 1080003, + "ship_l2d_id": "", + "shop_id": 70620, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.6, + 2.35, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 82, + "voice_actor_2": -1 + }, + "10800040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.7, + 0.97, + 0 + ] + ], + "cannon": [ + [ + 0.74, + 0.95, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Heyyo, it's Namiko! Uhh, wait, is this that whole getting-reincarnated-in-another-world thing that's been super popular? ...It's not, huh. Well, in any case, nice to meet you!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10800040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Namiko", + "painting": "naimeizi", + "prefab": "naimeizi", + "rarity_bg": "", + "ship_group": 1080004, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.48, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 294, + "voice_actor_2": -1 + }, + "10800041": { + "bg": "148", + "bg_sp": "1102", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 0.75, + 1.05, + 0 + ] + ], + "cannon": [ + [ + 0.82, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Woo, you're here! So, how was it? This meeting spot was pretty easy to find, right? Welp, let's get going then!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10800041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Miss Street-Wise", + "painting": "naimeizi_2", + "prefab": "naimeizi_2", + "rarity_bg": "", + "ship_group": 1080004, + "ship_l2d_id": "", + "shop_id": 70621, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.44, + 2.56, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 294, + "voice_actor_2": -1 + }, + "10800050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 0.92, + 1.15, + 0 + ] + ], + "cannon": [ + [ + 1.01, + 1.02, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Hello, my name is Yume Minami. I've ended up in this world for whatever reason. I'll do my best to contribute to the fleet as a heavy cruiser.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10800050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yume Minami", + "painting": "mengya", + "prefab": "mengya", + "rarity_bg": "", + "ship_group": 1080005, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.4, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 295, + "voice_actor_2": -1 + }, + "10800051": { + "bg": "", + "bg_sp": "", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 0.92, + 0 + ] + ], + "cannon": [ + [ + 1.05, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "How lovely. From here, you can see across the entire port, as well as the shimmering ocean... Oh, Commander, here to enjoy the view with me?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10800051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Dream Upon an Open Windowsill", + "painting": "mengya_2", + "prefab": "mengya_2", + "rarity_bg": "", + "ship_group": 1080005, + "ship_l2d_id": "", + "shop_id": 70618, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.49, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 5 + ], + "time": "", + "voice_actor": 295, + "voice_actor_2": -1 + }, + "10800052": { + "bg": "109", + "bg_sp": "", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 1.01, + 0.92, + 0 + ] + ], + "cannon": [ + [ + 1.05, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "You're wondering why I'm so carefree? Uhh... Because I'm comfortable with you... Let's leave it at that.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 10800052, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Morning Routine", + "painting": "mengya_3", + "prefab": "mengya_3", + "rarity_bg": "", + "ship_group": 1080005, + "ship_l2d_id": "", + "shop_id": 70871, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.49, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 295, + "voice_actor_2": -1 + }, + "10800060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.27, + 1.05, + 0 + ] + ], + "cannon": [ + [ + 1.9, + 1.3, + 0 + ] + ], + "plane": [ + [ + 1.16, + 1.73, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.38, + 1.26, + 0 + ] + ] + }, + "desc": "Woahhh, I somehow ended up in a totally unknown place... Oh, um, my name's Chise Asukagawa! Since I might be here for a while, thanks for looking after me!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10800060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Chise Asukagawa", + "painting": "qianlai", + "prefab": "qianlai", + "rarity_bg": "", + "ship_group": 1080006, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + 0.97, + 1.37, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 296, + "voice_actor_2": -1 + }, + "10800061": { + "bg": "105", + "bg_sp": "", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 1.34, + 0.99, + 0 + ] + ], + "cannon": [ + [ + 1.86, + 1.35, + 0 + ] + ], + "plane": [ + [ + 1.169, + 1.68, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.47, + 1.08, + 0 + ] + ] + }, + "desc": "Woaah, the sun's coming out! It feels so great outside after the rain... Oh, Commander! Let's take a stroll through the sky together!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 10800061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Together, Swimming through the Sky", + "painting": "qianlai_2", + "prefab": "qianlai_2", + "rarity_bg": "", + "ship_group": 1080006, + "ship_l2d_id": "", + "shop_id": 70619, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + 0.98, + 1.54, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 296, + "voice_actor_2": -1 + }, + "10800062": { + "bg": "109", + "bg_sp": "", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 1.34, + 0.99, + 0 + ] + ], + "cannon": [ + [ + 1.86, + 1.35, + 0 + ] + ], + "plane": [ + [ + 1.169, + 1.68, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.47, + 1.08, + 0 + ] + ] + }, + "desc": "Aww man, I hate to be seen in such a lazy-looking outfit. It's embarrassing, y'know~?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 2, + "gyro": 0, + "hand_id": 14, + "id": 10800062, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Laundry Day", + "painting": "qianlai_3", + "prefab": "qianlai_3", + "rarity_bg": "", + "ship_group": 1080006, + "ship_l2d_id": "", + "shop_id": 70873, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + 0.98, + 1.54, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 296, + "voice_actor_2": -1 + }, + "10800070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.33, + 1.38, + 0 + ] + ], + "cannon": [ + [ + 1.38, + 1.1, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Kaiju Eugenicist, Mujina. I suppose I'm a battleship now. Just asking to be sure... There are no kaiju in your world, correct?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 10800070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Mujina", + "painting": "he", + "prefab": "he", + "rarity_bg": "", + "ship_group": 1080007, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + 0.68, + 2.85, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 86, + "voice_actor_2": -1 + }, + "10800071": { + "bg": "105", + "bg_sp": "1101", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 1.14, + 1.33, + 0 + ] + ], + "cannon": [ + [ + 1.45, + 1.07, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "You've come as well, Commander? In that case, let's accompany each other back while watching the gingko leaves fall.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 10800071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Golden Promenade", + "painting": "he_2", + "prefab": "he_2", + "rarity_bg": "", + "ship_group": 1080007, + "ship_l2d_id": "", + "shop_id": 70622, + "shop_type_id": 9, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.43, + 2.5, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 86, + "voice_actor_2": -1 + }, + "10800080": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.46, + 2.13, + 0 + ] + ], + "cannon": [ + [ + 2.48, + 1.98, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Oh, where am I now... Ah. Good to meet you. Call me The 2nd. I'm with the Gridknight Alliance... Not that it matters in this world, I'd assume.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 10800080, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The 2nd", + "painting": "erdaimu", + "prefab": "erdaimu", + "rarity_bg": "", + "ship_group": 1080008, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + 0.64, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 376, + "voice_actor_2": -1 + }, + "10800081": { + "bg": "109", + "bg_sp": "", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 2.46, + 2.13, + 0 + ] + ], + "cannon": [ + [ + 2.48, + 1.98, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Would you mind waiting a moment? I just have this one report. Oh, and can I interest you in coffee, Commander? Ah... Sorry, this is my only mug. We could... share it?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 10800081, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Private Time", + "painting": "erdaimu_2", + "prefab": "erdaimu_2", + "rarity_bg": "", + "ship_group": 1080008, + "ship_l2d_id": "", + "shop_id": 70869, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + 0.64, + 2.2, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 376, + "voice_actor_2": -1 + }, + "10800090": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.196, + 1.241, + 0 + ] + ], + "cannon": [ + [ + 0.872, + 0.632, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.887, + 0.654, + 0 + ] + ] + }, + "desc": "What? Where am I? Oh, umm, what may you need of me, young one? ...You don't need anything? Ahahah... Well met, person from this strange land. My name is... You know what, just call me \"Princess Hime.\"", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 10800090, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Princess Hime", + "painting": "gongzhu", + "prefab": "gongzhu", + "rarity_bg": "", + "ship_group": 1080009, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.723, + 1.671, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 182, + "voice_actor_2": -1 + }, + "10800091": { + "bg": "142", + "bg_sp": "", + "bgm": "ssss-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 1.196, + 1.241, + 0 + ] + ], + "cannon": [ + [ + 0.872, + 0.632, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 0.887, + 0.654, + 0 + ] + ] + }, + "desc": "Oh! Guess you found me... Look, it doesn't matter what I wear when I'm drinking at home... What's that? Does me being a bit flushed from the drinks really get you that fired up?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 10800091, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Nightcap Time", + "painting": "gongzhu_2", + "prefab": "gongzhu_2", + "rarity_bg": "", + "ship_group": 1080009, + "ship_l2d_id": "", + "shop_id": 70868, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.723, + 1.671, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 182, + "voice_actor_2": -1 + }, + "10800100": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.05, + 0.86, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 0.85, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Augment Module Effect", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10800100, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Augment Module", + "painting": "gulite_robot3", + "prefab": "gulite_robot3", + "rarity_bg": "", + "ship_group": 1080010, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.515, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "10800110": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.05, + 0.86, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 0.85, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Augment Module Effect", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10800110, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Augment Module", + "painting": "gulite_robot4", + "prefab": "gulite_robot4", + "rarity_bg": "", + "ship_group": 1080011, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.515, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "10800120": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.05, + 0.86, + 0 + ] + ], + "cannon": [ + [ + 1.03, + 0.85, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Augment Module Effect", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 10800120, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rogue Kaiser Gridman", + "painting": "gulite_robot1", + "prefab": "gulite_robot1", + "rarity_bg": "", + "ship_group": 1080012, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.515, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": -1, + "voice_actor_2": -1 + }, + "10900010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.153, + 1.15, + 0 + ] + ], + "cannon": [ + [ + 1.02, + 0.816, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10900010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Reisalin Stout", + "painting": "laisha", + "prefab": "laisha", + "rarity_bg": "", + "ship_group": 1090001, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.293, + 2.451, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 348, + "voice_actor_2": -1 + }, + "10900011": { + "bg": "", + "bg_sp": "1102", + "bgm": "ryza-az-pv", + "bound_bone": { + "antiaircraft": [ + [ + 1.085, + 1.199, + 0 + ] + ], + "cannon": [ + [ + 1.02, + 0.816, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Hey there, Commander! Hehe, it's been a long while since I had a sleepover with someone. You know, I've really been looking forward to today. So, what would you like to do first?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 10900011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Late-Night Alchemist", + "painting": "laisha_2", + "prefab": "laisha_2", + "rarity_bg": "", + "ship_group": 1090001, + "ship_l2d_id": "", + "shop_id": 70768, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.322, + 2.345, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 5 + ], + "time": "", + "voice_actor": 348, + "voice_actor_2": -1 + }, + "10900020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.338, + 1.422, + 0 + ] + ], + "cannon": [ + [ + 1.233, + 0.971, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10900020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Klaudia Valentz", + "painting": "keluodiya", + "prefab": "keluodiya", + "rarity_bg": "", + "ship_group": 1090002, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.157, + 2.393, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 188, + "voice_actor_2": -1 + }, + "10900021": { + "bg": "163", + "bg_sp": "", + "bgm": "ryza-az-pv", + "bound_bone": { + "antiaircraft": [ + [ + 1.318, + 1.335, + 0 + ] + ], + "cannon": [ + [ + 1.272, + 1.02, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Hehe, today was such a fun day... Oh, good evening, Commander. I was just writing my diary entry for the day. Since you're here, why don't you help me out?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 10900021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Bedtime Memories", + "painting": "keluodiya_2", + "prefab": "keluodiya_2", + "rarity_bg": "", + "ship_group": 1090002, + "ship_l2d_id": "", + "shop_id": 70769, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.245, + 2.296, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 188, + "voice_actor_2": -1 + }, + "10900030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.338, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.622, + 1.253, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10900030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Patricia Abelheim", + "painting": "patelixia", + "prefab": "patelixia", + "rarity_bg": "", + "ship_group": 1090003, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.07, + 2.345, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 241, + "voice_actor_2": -1 + }, + "10900031": { + "bg": "163", + "bg_sp": "", + "bgm": "ryza-az-pv", + "bound_bone": { + "antiaircraft": [ + [ + 1.338, + 1.14, + 0 + ] + ], + "cannon": [ + [ + 1.622, + 1.253, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Phew, that's everything taken care of for the day... Huh?! Commander, how long have you been there?! I-I apologize for letting you see my slovenly side... Please, just come over here for now.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 10900031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Rest Betwixt Dreams and Reality", + "painting": "patelixia_2", + "prefab": "patelixia_2", + "rarity_bg": "", + "ship_group": 1090003, + "ship_l2d_id": "", + "shop_id": 70770, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.109, + 2.345, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 241, + "voice_actor_2": -1 + }, + "10900040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.347, + 1.15, + 0 + ] + ], + "cannon": [ + [ + 1.35, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10900040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Lila Decyrus", + "painting": "lila", + "prefab": "lila", + "rarity_bg": "", + "ship_group": 1090004, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.225, + 2.296, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 349, + "voice_actor_2": -1 + }, + "10900041": { + "bg": "156", + "bg_sp": "", + "bgm": "ryza-az-pv", + "bound_bone": { + "antiaircraft": [ + [ + 1.347, + 1.15, + 0 + ] + ], + "cannon": [ + [ + 1.35, + 1.01, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "You shouldn't be up this late. What, you can't sleep? You want to stay up with me? ...Fine, I'll keep you company. I haven't been able to get a wink of sleep anyway.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 10900041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Moonlit Encounter", + "painting": "lila_2", + "prefab": "lila_2", + "rarity_bg": "", + "ship_group": 1090004, + "ship_l2d_id": "", + "shop_id": 70771, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.177, + 2.335, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 349, + "voice_actor_2": -1 + }, + "10900050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.27, + 1.033, + 0 + ] + ], + "cannon": [ + [ + 1.127, + 1.02, + 0 + ] + ], + "plane": [ + [ + 1.396, + 1.189, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10900050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Serri Glaus", + "painting": "saili", + "prefab": "saili", + "rarity_bg": "", + "ship_group": 1090005, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.264, + 2.247, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 326, + "voice_actor_2": -1 + }, + "10900051": { + "bg": "158", + "bg_sp": "", + "bgm": "ryza-az-pv", + "bound_bone": { + "antiaircraft": [ + [ + 1.27, + 1.033, + 0 + ] + ], + "cannon": [ + [ + 1.127, + 1.02, + 0 + ] + ], + "plane": [ + [ + 1.396, + 1.189, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "An elegant verdure, a pellucid azure. I never knew there was such a lovely place at this port... Oh Commander, are you also out on a nighttime stroll?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 13, + "id": 10900051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fairy Dreamer Beneath the Starry Sky", + "painting": "saili_2", + "prefab": "saili_2", + "rarity_bg": "", + "ship_group": 1090005, + "ship_l2d_id": "", + "shop_id": 70772, + "shop_type_id": 20, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.264, + 2.247, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 326, + "voice_actor_2": -1 + }, + "10900060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.338, + 1.131, + 0 + ] + ], + "cannon": [ + [ + 1.321, + 0.855, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 13, + "id": 10900060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Kala Ideas", + "painting": "kala", + "prefab": "kala", + "rarity_bg": "", + "ship_group": 1090006, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.079, + 2.228, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 350, + "voice_actor_2": -1 + }, + "11000010": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.41, + 1.59, + 0 + ] + ], + "cannon": [ + [ + 1.36, + 1.04, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Hello! I'm Asuka, second-year student at the Hanzō Academy! Wait... this isn't the new shinobi base at all! This place is your port, you say? Okay then... Well, no matter where I end up, I'll always train as best as I can!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 11000010, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Asuka", + "painting": "feiniao", + "prefab": "feiniao", + "rarity_bg": "", + "ship_group": 1100001, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 388, + "voice_actor_2": -1 + }, + "11000011": { + "bg": "168", + "bg_sp": "", + "bgm": "sk-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 1.41, + 1.59, + 0 + ] + ], + "cannon": [ + [ + 1.36, + 1.04, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Blue skies, white sands, and oceans that stretch as far as the eye can see... I've seen this on TV before – this place is heaven on earth! Thanks so much for inviting me here, Commander! Now, it's time to have fun!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 11000011, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blue Oceans", + "painting": "feiniao_2", + "prefab": "feiniao_2", + "rarity_bg": "", + "ship_group": 1100001, + "ship_l2d_id": "", + "shop_id": 70928, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 388, + "voice_actor_2": -1 + }, + "11000020": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.59, + 1.74, + 0 + ] + ], + "cannon": [ + [ + 1.63, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "I am Ikaruga, a third-year student at the Hanzō National Academy, serving as the shinobi class representative. How should I conduct myself in this foreign place? I would be most grateful if you would provide me with your assistance.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 11000020, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Ikaruga", + "painting": "banjiu", + "prefab": "banjiu", + "rarity_bg": "", + "ship_group": 1100002, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 80, + "voice_actor_2": -1 + }, + "11000021": { + "bg": "133", + "bg_sp": "", + "bgm": "sk-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 1.59, + 1.74, + 0 + ] + ], + "cannon": [ + [ + 1.63, + 1.16, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ] + }, + "desc": "Wow! The fish are so cute! The water's so clear that you can see everything under the waves! I've never seen an ocean like this before, and being able to relax while rocking back and forth on the water... is just like one of those \"vacation paradises\" I've read about in various books!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 11000021, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "A Moment of Peace", + "painting": "banjiu_2", + "prefab": "banjiu_2", + "rarity_bg": "", + "ship_group": 1100002, + "ship_l2d_id": "", + "shop_id": 70929, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.57, + 2.3, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 80, + "voice_actor_2": -1 + }, + "11000030": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.44, + 1.9, + 0 + ] + ], + "cannon": [ + [ + 1.36, + 0.79, + 0 + ] + ], + "torpedo": [ + [ + 1.12, + 0.26, + 0 + ] + ], + "vicegun": [ + [ + 1.27, + 0.7, + 0 + ] + ] + }, + "desc": "My name's Homura. I'm the leader of Homura's Crimson Squad. I was once affiliated with a school, like many others, but... stuff happened. Anyway, don't let that bother you.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 17, + "id": 11000030, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Homura", + "painting": "yan", + "prefab": "yan", + "rarity_bg": "", + "ship_group": 1100003, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.09, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 76, + "voice_actor_2": -1 + }, + "11000031": { + "bg": "133", + "bg_sp": "", + "bgm": "sk-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 1.44, + 1.9, + 0 + ] + ], + "cannon": [ + [ + 1.36, + 0.79, + 0 + ] + ], + "torpedo": [ + [ + 1.12, + 0.26, + 0 + ] + ], + "vicegun": [ + [ + 1.27, + 0.7, + 0 + ] + ] + }, + "desc": "Fish! Heheh, that's a biggun! We'll be eating good tonight... Wait, I guess I don't need to worry about food now. Old habits die hard, it seems... Commander! Hey! I know you're over there! I'm gonna let you have a taste, so stop staring all enviously like that!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 17, + "id": 11000031, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Shinobi Angler", + "painting": "yan_2", + "prefab": "yan_2", + "rarity_bg": "", + "ship_group": 1100003, + "ship_l2d_id": "", + "shop_id": 70930, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.48, + 2.09, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 76, + "voice_actor_2": -1 + }, + "11000040": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.9, + 1.56, + 0 + ] + ], + "cannon": [ + [ + 1.81, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.65, + 1.06, + 0 + ] + ] + }, + "desc": "I am Yumi, third-year student at the Gessen Girls' Academy. Though I know not why I was brought here, I am committed to justice, no matter where I go.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 11000040, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yumi", + "painting": "xuequan", + "prefab": "xuequan", + "rarity_bg": "", + "ship_group": 1100004, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.27, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 254, + "voice_actor_2": -1 + }, + "11000041": { + "bg": "133", + "bg_sp": "", + "bgm": "sk-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 1.9, + 1.56, + 0 + ] + ], + "cannon": [ + [ + 1.81, + 1.06, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.65, + 1.06, + 0 + ] + ] + }, + "desc": "Here, Commander – shaved ice. Say \"aah\"... Heehee. I've not fed someone like this many times before, so please don't get mad in the event that I spill some.", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 11000041, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Afternoon Teatime", + "painting": "xuequan_2", + "prefab": "xuequan_2", + "rarity_bg": "", + "ship_group": 1100004, + "ship_l2d_id": "", + "shop_id": 70931, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.27, + 2.24, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 254, + "voice_actor_2": -1 + }, + "11000050": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 2.01, + 1.2, + 0 + ] + ], + "cannon": [ + [ + 2.01, + 1.26, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.91, + 1.33, + 0 + ] + ] + }, + "desc": "I am named Fubuki. I try to keep out of the public eye, so how have I wound up in this strange place? Also, you may want to leave me to my own devices. If you wonder why, well...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 2, + "id": 11000050, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Fubuki", + "painting": "xuebugui", + "prefab": "xuebugui", + "rarity_bg": "", + "ship_group": 1100005, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 81, + "voice_actor_2": -1 + }, + "11000051": { + "bg": "164", + "bg_sp": "", + "bgm": "sk-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 2.01, + 1.2, + 0 + ] + ], + "cannon": [ + [ + 2.01, + 1.26, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.91, + 1.33, + 0 + ] + ] + }, + "desc": "Ohh, it's so wonderful, being in the calm water with you, Commander... Eek! What's this?! A fish hook's caught on to me... Please stop reeling it in, or my swimsuit will untie itself!", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 2, + "id": 11000051, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Sunset Witch", + "painting": "xuebugui_2", + "prefab": "xuebugui_2", + "rarity_bg": "", + "ship_group": 1100005, + "ship_l2d_id": "", + "shop_id": 70932, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.42, + 2.26, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 81, + "voice_actor_2": -1 + }, + "11000060": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.98, + 1.64, + 0 + ] + ], + "cannon": [ + [ + 1.68, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.08, + 0 + ] + ] + }, + "desc": "I'm Murasaki... from Hebijo Clandestine Girls' Academy. Umm... what is this place? I'd like to go home now... The outdoors are scary...", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 14, + "id": 11000060, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Murasaki", + "painting": "zi_shanluan", + "prefab": "zi_shanluan", + "rarity_bg": "", + "ship_group": 1100006, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 214, + "voice_actor_2": -1 + }, + "11000061": { + "bg": "164", + "bg_sp": "1102", + "bgm": "sk-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 1.98, + 1.64, + 0 + ] + ], + "cannon": [ + [ + 1.68, + 1.03, + 0 + ] + ], + "torpedo": [ + [ + 0.13, + 0.08, + 0 + ] + ] + }, + "desc": "When you're in a swimsuit, listening to the waves, eating ice cream, and playing a beach game... can't you say it counts as being on the beach, even if you're indoors?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 14, + "id": 11000061, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "The Shut-In Princess's Lament", + "painting": "zi_2_shanluan", + "prefab": "zi_2_shanluan", + "rarity_bg": "", + "ship_group": 1100006, + "ship_l2d_id": "", + "shop_id": 70933, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.46, + 2.31, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 214, + "voice_actor_2": -1 + }, + "11000070": { + "bg": "", + "bg_sp": "", + "bgm": "", + "bound_bone": { + "antiaircraft": [ + [ + 1.71, + 2.12, + 0 + ] + ], + "cannon": [ + [ + 1.62, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.54, + 1.21, + 0 + ] + ] + }, + "desc": "My name is Yūyaki... and I'm the leader of the Tohno Tengu Shinobi Group... To be honest, I'm not great around water... Bad things always happen when I'm around it... And this place is a whole ocean, right? What should I do...?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 0, + "gyro": 0, + "hand_id": 17, + "id": 11000070, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Yūyaki", + "painting": "xishao", + "prefab": "xishao", + "rarity_bg": "", + "ship_group": 1100007, + "ship_l2d_id": "", + "shop_id": 0, + "shop_type_id": 0, + "show_skin": "stand", + "skin_type": -1, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [], + "time": "", + "voice_actor": 202, + "voice_actor_2": -1 + }, + "11000071": { + "bg": "168", + "bg_sp": "", + "bgm": "sk-az-story", + "bound_bone": { + "antiaircraft": [ + [ + 1.71, + 2.12, + 0 + ] + ], + "cannon": [ + [ + 1.62, + 1.25, + 0 + ] + ], + "torpedo": [ + [ + 0, + 0, + 0 + ] + ], + "vicegun": [ + [ + 1.54, + 1.21, + 0 + ] + ] + }, + "desc": "Phew... Nothing beats a cold shower. I'm still not great with water, but this cool and soothing sensation really makes me feel refreshed. Commander, do you want to join in?", + "fx_container": [ + [ + 0, + 1.99185, + 1.15 + ], + [ + 0, + 0, + 0 + ], + [ + 0, + 0.75, + -1.299 + ], + [ + 0, + 0, + 0 + ] + ], + "group_index": 1, + "gyro": 0, + "hand_id": 17, + "id": 11000071, + "illustrator": -1, + "illustrator2": -1, + "l2d_animations": "", + "l2d_drag_rate": "", + "l2d_ignore_drag": 0, + "l2d_para_range": "", + "l2d_se": "", + "l2d_voice_calibrate": "", + "lip_smoothing": 0, + "lip_sync_gain": 0, + "live2d_offset": [ + 0, + 0, + 0 + ], + "live2d_offset_profile": "", + "main_UI_FX": "", + "name": "Blue Sky Lagoon", + "painting": "xishao_2", + "prefab": "xishao_2", + "rarity_bg": "", + "ship_group": 1100007, + "ship_l2d_id": "", + "shop_id": 70934, + "shop_type_id": 6, + "show_skin": "stand", + "skin_type": 0, + "smoke": [ + [ + 50, + [ + [ + "smoke", + [ + -0.54, + 2.32, + 0 + ] + ] + ] + ] + ], + "special_effects": "", + "spine_action_offset": false, + "spine_offset": "", + "tag": [ + 2, + 5 + ], + "time": "", + "voice_actor": 202, + "voice_actor_2": -1 + } +} \ No newline at end of file diff --git a/BLHX.Server.Game/Commands/Command.cs b/BLHX.Server.Game/Commands/Command.cs index cc2d713..1083fb7 100644 --- a/BLHX.Server.Game/Commands/Command.cs +++ b/BLHX.Server.Game/Commands/Command.cs @@ -1,4 +1,5 @@ using BLHX.Server.Common.Utils; +using BLHX.Server.Game.Handlers; using System.Reflection; namespace BLHX.Server.Game.Commands; @@ -77,6 +78,11 @@ public abstract class Command Execute(args); } + public virtual void NotifySuccess(Connection connection) + { + connection.SendSystemMsg($"{GetType().Name} success!"); + } + protected T Parse(string? value, T fallback = default!) { var tryParseMethod = typeof(T).GetMethod("TryParse", [typeof(string), typeof(T).MakeByRefType()]); diff --git a/BLHX.Server.Game/Commands/HelpCommand.cs b/BLHX.Server.Game/Commands/HelpCommand.cs index b1553d6..fccf0e2 100644 --- a/BLHX.Server.Game/Commands/HelpCommand.cs +++ b/BLHX.Server.Game/Commands/HelpCommand.cs @@ -25,7 +25,7 @@ public class HelpCommand : Command } if (attr != null) - sb.AppendLine($" {attr.Name} - {attr.Description} (Example: {attr.Example}), Usage: {command.Usage}"); + sb.AppendLine($" {attr.Name} - {attr.Description} (Example: {attr.Example})"); } Console.Write(sb.ToString()); diff --git a/BLHX.Server.Game/Commands/SkinCommand.cs b/BLHX.Server.Game/Commands/SkinCommand.cs new file mode 100644 index 0000000..7b1645c --- /dev/null +++ b/BLHX.Server.Game/Commands/SkinCommand.cs @@ -0,0 +1,54 @@ +using BLHX.Server.Common.Data; +using BLHX.Server.Common.Database; +using BLHX.Server.Common.Proto.common; +using BLHX.Server.Game.Handlers; + +namespace BLHX.Server.Game.Commands +{ + [CommandHandler("skin", "Unlock skins of a character or all characters", "skin unlock=all")] + public class SkinCommand : Command + { + [Argument("unlock")] + public string? Unlock { get; set; } + + public override void Execute(Dictionary args, Connection connection) + { + base.Execute(args); + + if (Unlock is not null) + { + if (Unlock.Equals("all", StringComparison.CurrentCultureIgnoreCase)) + { + connection.player.ShipSkins = connection.player.Ships.SelectMany(x => + { + ShipDataTemplate? template = Data.ShipDataTemplate.FirstOrDefault(y => y.Value.Id == x.TemplateId).Value; + return Data.ShipSkinTemplate.Where(x => x.Value.ShipGroup == template.GroupType).Select(x => new Idtimeinfo() { Id = x.Value.Id }); + }).DistinctBy(x => x.Id).ToList(); + } + else + { + var shipId = Parse(Unlock, uint.MinValue); + if (connection.player.Ships.Any(x => x.TemplateId == shipId)) + { + ShipDataTemplate? template = Data.ShipDataTemplate.FirstOrDefault(y => y.Value.Id == shipId).Value; + connection.player.ShipSkins.AddRange(Data.ShipSkinTemplate.Where(x => x.Value.ShipGroup == template.GroupType).Select(x => new Idtimeinfo() { Id = x.Value.Id })); + } + else + { + if (!Data.ShipSkinTemplate.Any(x => x.Value.ShipGroup == shipId)) + { + connection.SendSystemMsg($"You don't own a ship with a template/group id of {shipId}"); + return; + } + + connection.player.ShipSkins.AddRange(Data.ShipSkinTemplate.Where(x => x.Value.ShipGroup == shipId).Select(x => new Idtimeinfo() { Id = x.Value.Id })); + } + } + connection.NotifyShipSkinData(); + } + + base.NotifySuccess(connection); + DBManager.PlayerContext.Save(); + } + } +} diff --git a/BLHX.Server.Game/Connection.cs b/BLHX.Server.Game/Connection.cs index 9b2f6d3..7898c0a 100644 --- a/BLHX.Server.Game/Connection.cs +++ b/BLHX.Server.Game/Connection.cs @@ -139,16 +139,19 @@ namespace BLHX.Server.Game public void Tick() { - foreach (var resourceField in player.ResourceFields) + if (player is not null) { - resourceField.CalculateYield(); - } + foreach (var resourceField in player.ResourceFields) + { + resourceField.CalculateYield(); + } - DBManager.PlayerContext.Save(); - this.NotifyResourceList(); + DBManager.PlayerContext.Save(); + this.NotifyResourceList(); #if DEBUG - c.Log("Ticked!"); + c.Log("Ticked!"); #endif + } } public void InitClientData() @@ -172,6 +175,7 @@ namespace BLHX.Server.Game this.NotifyActivityData(); this.NotifyDormData(); this.NotifyNavalAcademy(); + this.NotifyWorldData(); } public void SendHttpResponse(string rsp, string type = "text/plain") diff --git a/BLHX.Server.Game/Handlers/P10.cs b/BLHX.Server.Game/Handlers/P10.cs index 05790ba..a9796b7 100644 --- a/BLHX.Server.Game/Handlers/P10.cs +++ b/BLHX.Server.Game/Handlers/P10.cs @@ -113,7 +113,7 @@ namespace BLHX.Server.Game.Handlers connection.Send(rsp); } - [PacketHandler(Command.Cs10100)] + [PacketHandler(Command.Cs10100, IsNotifyHandler = true)] static void HeartbeatHandler(Connection connection, Packet packet) { connection.Send(new Sc10101() { State = 1 }); diff --git a/BLHX.Server.Game/Handlers/P12.cs b/BLHX.Server.Game/Handlers/P12.cs index 72eb4ba..7812d9a 100644 --- a/BLHX.Server.Game/Handlers/P12.cs +++ b/BLHX.Server.Game/Handlers/P12.cs @@ -1,4 +1,6 @@ -using BLHX.Server.Common.Proto; +using BLHX.Server.Common.Data; +using BLHX.Server.Common.Proto; +using BLHX.Server.Common.Proto.common; using BLHX.Server.Common.Proto.p12; namespace BLHX.Server.Game.Handlers @@ -18,6 +20,16 @@ namespace BLHX.Server.Game.Handlers connection.Send(new Sc12103()); } + + [PacketHandler(Command.Cs12202, SaveDataAfterRun = true)] + 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()); + } } static class P12ConnectionNotifyExtensions @@ -35,7 +47,7 @@ namespace BLHX.Server.Game.Handlers public static void NotifyShipSkinData(this Connection connection) { - connection.Send(new Sc12201()); + connection.Send(new Sc12201() { SkinLists = connection.player.ShipSkins }); } public static void NotifyFleetData(this Connection connection) diff --git a/BLHX.Server.Game/Handlers/P33.cs b/BLHX.Server.Game/Handlers/P33.cs new file mode 100644 index 0000000..45d1537 --- /dev/null +++ b/BLHX.Server.Game/Handlers/P33.cs @@ -0,0 +1,18 @@ +using BLHX.Server.Common.Proto.p33; + +namespace BLHX.Server.Game.Handlers +{ + internal class P33 + { + } + static class P33ConnectionNotifyExtensions + { + public static void NotifyWorldData(this Connection connection) + { + connection.Send(new Sc33114() + { + IsWorldOpen = 1 + }); + } + } +} diff --git a/BLHX.Server.Game/Handlers/P34.cs b/BLHX.Server.Game/Handlers/P34.cs index 080205f..9d35921 100644 --- a/BLHX.Server.Game/Handlers/P34.cs +++ b/BLHX.Server.Game/Handlers/P34.cs @@ -14,5 +14,11 @@ namespace BLHX.Server.Game.Handlers MetaShipLists = req.GroupIds.Select(x => new MetaShipInfo() { GroupId = x }).ToList() }); } + + [PacketHandler(Command.Cs34501)] + static void GetWorldBossHandler(Connection connection, Packet packet) + { + connection.Send(new Sc34502()); + } } }