diff --git a/GC-local-server-rewrite.sln.DotSettings b/GC-local-server-rewrite.sln.DotSettings index 60e7921..83b5519 100644 --- a/GC-local-server-rewrite.sln.DotSettings +++ b/GC-local-server-rewrite.sln.DotSettings @@ -1,3 +1,6 @@  + True True - True \ No newline at end of file + True + True + True \ No newline at end of file diff --git a/GC-local-server-rewrite/common/Configs.cs b/GC-local-server-rewrite/common/Configs.cs index fbc94d6..39422d3 100644 --- a/GC-local-server-rewrite/common/Configs.cs +++ b/GC-local-server-rewrite/common/Configs.cs @@ -126,7 +126,8 @@ public static class Configs public const string RANK_STATUS_XPATH = $"{ROOT_XPATH}/ranking_status"; - public const int CONFIG_PCOL1 = 0; + public const int FIRST_CONFIG_PCOL1 = 0; + public const int SECOND_CONFIG_PCOL1 = 1; public const int CONFIG_PCOL2 = 0; public const int CONFIG_PCOL3 = 0; diff --git a/GC-local-server-rewrite/controllers/ApiController.cs b/GC-local-server-rewrite/controllers/ApiController.cs index 5186ca0..2dc5923 100644 --- a/GC-local-server-rewrite/controllers/ApiController.cs +++ b/GC-local-server-rewrite/controllers/ApiController.cs @@ -65,26 +65,38 @@ public class ApiController : WebApiController // ReSharper disable once UnusedMember.Global public bool SetPlayOption([JsonData] PlayOption data) { - var existing = cardSqLiteConnection.Table() + var firstConfig = cardSqLiteConnection.Table() .Where(detail => detail.CardId == data.CardId - && detail.Pcol1 == Configs.CONFIG_PCOL1 + && detail.Pcol1 == Configs.FIRST_CONFIG_PCOL1 + && detail.Pcol2 == Configs.CONFIG_PCOL2 + && detail.Pcol3 == Configs.CONFIG_PCOL3); + + var secondConfig = cardSqLiteConnection.Table() + .Where(detail => detail.CardId == data.CardId + && detail.Pcol1 == Configs.SECOND_CONFIG_PCOL1 && detail.Pcol2 == Configs.CONFIG_PCOL2 && detail.Pcol3 == Configs.CONFIG_PCOL3); - if (!existing.Any()) + if (!firstConfig.Any() || !secondConfig.Any()) { $"Trying to update non existing card's config! Card id {data.CardId}".Warn(); return false; } - var cardDetail = existing.First(); - cardDetail.ScoreUi1 = (long)data.FastSlowIndicator; - cardDetail.ScoreUi2 = (long)data.FeverTrance; - - var result = cardSqLiteConnection.Update(cardDetail); + var firstDetail = firstConfig.First(); + firstDetail.ScoreUi1 = (long)data.FastSlowIndicator; + firstDetail.ScoreUi2 = (long)data.FeverTrance; + firstDetail.ScoreI1 = data.AvatarId; + firstDetail.Fcol2 = (int)data.TitleId; - return result == 1; + var secondDetail = secondConfig.First(); + secondDetail.ScoreI1 = data.NavigatorId; + + var firstResult = cardSqLiteConnection.Update(firstDetail); + var secondResult = cardSqLiteConnection.Update(secondDetail); + + return firstResult == 1 && secondResult == 1; } [Route(HttpVerbs.Get, "/UserDetail/{cardId}")] @@ -125,16 +137,26 @@ public class ApiController : WebApiController private void ProcessCardDetail(UserDetail userDetail, IDictionary songPlayDataDict) { - var option = cardSqLiteConnection.Table() - .FirstOrDefault(detail => detail.CardId == userDetail.CardId - && detail.Pcol1 == Configs.CONFIG_PCOL1 + var firstOption = cardSqLiteConnection.Table() + .FirstOrDefault(detail => detail.CardId == userDetail.CardId + && detail.Pcol1 == Configs.FIRST_CONFIG_PCOL1 && detail.Pcol2 == Configs.CONFIG_PCOL2 && detail.Pcol3 == Configs.CONFIG_PCOL3 - , new CardDetail - { - CardId = userDetail.CardId - }); - SetOptions(option, userDetail); + , new CardDetail + { + CardId = userDetail.CardId + }); + var secondOption = cardSqLiteConnection.Table() + .FirstOrDefault(detail => detail.CardId == userDetail.CardId + && detail.Pcol1 == Configs.SECOND_CONFIG_PCOL1 + && detail.Pcol2 == Configs.CONFIG_PCOL2 + && detail.Pcol3 == Configs.CONFIG_PCOL3 + , new CardDetail + { + CardId = userDetail.CardId + }); + + SetOptions(firstOption, secondOption, userDetail); var songCounts = cardSqLiteConnection.Table() .Where(detail => detail.CardId == userDetail.CardId && detail.Pcol1 == Configs.COUNT_PCOL1); @@ -162,10 +184,10 @@ public class ApiController : WebApiController } } - private static void SetOptions(CardDetail cardDetail, UserDetail userDetail) + private static void SetOptions(CardDetail firstOptionCardDetail, CardDetail secondOptionCardDetail, UserDetail userDetail) { - var fastSlow = (int)cardDetail.ScoreUi1; - var feverTrance = (int)cardDetail.ScoreUi2; + var fastSlow = (int)firstOptionCardDetail.ScoreUi1; + var feverTrance = (int)firstOptionCardDetail.ScoreUi2; if (!Enum.IsDefined(typeof(PlayOptions.FastSlowIndicator), fastSlow)) { @@ -179,9 +201,12 @@ public class ApiController : WebApiController userDetail.PlayOption = new PlayOption { - CardId = cardDetail.CardId, + CardId = firstOptionCardDetail.CardId, FastSlowIndicator = (PlayOptions.FastSlowIndicator)fastSlow, - FeverTrance = (PlayOptions.FeverTranceShow)feverTrance + FeverTrance = (PlayOptions.FeverTranceShow)feverTrance, + AvatarId = firstOptionCardDetail.ScoreI1, + TitleId = firstOptionCardDetail.Fcol2, + NavigatorId = secondOptionCardDetail.ScoreI1 }; } private void SetDetails(CardDetail cardDetail, IDictionary songPlayDataDict, @@ -241,6 +266,7 @@ public class ApiController : WebApiController } songPlayDetailData.PlayCount = (int)cardDetail.ScoreUi1; + songPlayDetailData.LastPlayTime = cardDetail.LastPlayTime; songPlayDetailData.ClearState = ClearState.Failed; userDetail.PlayedStageCount++; diff --git a/GC-local-server-rewrite/controllers/CardServiceController.cs b/GC-local-server-rewrite/controllers/CardServiceController.cs index 55a2ee1..26eecf1 100644 --- a/GC-local-server-rewrite/controllers/CardServiceController.cs +++ b/GC-local-server-rewrite/controllers/CardServiceController.cs @@ -40,14 +40,14 @@ public class CardServiceController : WebApiController { if (!Enum.IsDefined(typeof(Command), cmdType)) { - throw new ArgumentOutOfRangeException(nameof(cmdType), cmdType, "Cmd type is unknown!"); + throw new ArgumentOutOfRangeException(nameof(cmdType), cmdType, $"Cmd type is unknown!\n Data is {xmlData}"); } var command = (Command)cmdType; return command switch { - Command.CardRequest => ProcessCardRequest(mac, cardId, xmlData, type), + Command.CardReadRequest or Command.CardWriteRequest => ProcessCardRequest(mac, cardId, xmlData, type), Command.ReissueRequest => ProcessReissueRequest(), Command.RegisterRequest => ProcessRegisterRequest(cardId, xmlData), _ => throw new ArgumentOutOfRangeException(nameof(command), command, "Command unknown, should never happen!") @@ -66,7 +66,7 @@ public class CardServiceController : WebApiController "Get reissue request, returning not reissue".Info(); return ConstructResponse("", ReturnCode.NotReissue); } - + private string ProcessCardRequest(string mac, long cardId, string xmlData, int type) { if (!Enum.IsDefined(typeof(CardRequestType), type)) @@ -534,35 +534,56 @@ public class CardServiceController : WebApiController $"Updated card play count, current count is {data.PlayCount}".Info(); } - private void WriteCardDetail(long cardId, string xmlData) + private void WriteCardDetail(long cardId, string xmlData) { var result = cardSqLiteConnection.Table() .Where(detail => detail.CardId == cardId); - // Unlock all unlockable songs in card details table when write for the first time + // Unlock all unlockable songs in card details table when write card detail for the first time if (!result.Any()) { - var unlockableSongIds = Configs.SETTINGS.UnlockableSongIds; - - if (unlockableSongIds is null) - { - unlockableSongIds = Configs.DEFAULT_UNLOCKABLE_SONGS; - } - var detailList = unlockableSongIds.Select(id => new CardDetail - { - CardId = cardId, - Pcol1 = 10, - Pcol2 = id, - Pcol3 = 0, - ScoreUi2 = 1, - ScoreUi6 = 1 - }) - .ToList(); - - cardSqLiteConnection.InsertOrIgnoreAll(detailList); + UnlockSongs(cardId); } - Write(cardId, xmlData); + var reader = new ChoXmlReader(new StringReader(xmlData)).WithXPath(Configs.DATA_XPATH); + var cardDetail = reader.Read(); + + if (cardDetail is null) + { + throw new HttpRequestException("Write object is null"); + } + + cardDetail.SetCardId(cardId); + cardDetail.LastPlayTime = DateTime.Now; + var rowsAffected = cardSqLiteConnection.InsertOrReplace(cardDetail); + if (rowsAffected == 0) + { + throw new ApplicationException("Update database failed!"); + } + + "Updated card detail".Info(); + } + private void UnlockSongs(long cardId) + { + var unlockableSongIds = Configs.SETTINGS.UnlockableSongIds; + + if (unlockableSongIds is null) + { + unlockableSongIds = Configs.DEFAULT_UNLOCKABLE_SONGS; + } + var detailList = unlockableSongIds.Select(id => new CardDetail + { + CardId = cardId, + Pcol1 = 10, + Pcol2 = id, + Pcol3 = 0, + ScoreUi2 = 1, + ScoreUi6 = 1, + LastPlayTime = DateTime.Now + }) + .ToList(); + + cardSqLiteConnection.InsertOrIgnoreAll(detailList); } #endregion @@ -612,7 +633,8 @@ public class CardServiceController : WebApiController private enum Command { - CardRequest = 256, + CardReadRequest = 256, + CardWriteRequest = 768, RegisterRequest = 512, ReissueRequest = 1536 } diff --git a/GC-local-server-rewrite/models/CardDetail.cs b/GC-local-server-rewrite/models/CardDetail.cs index ad2cd56..49e7f6e 100644 --- a/GC-local-server-rewrite/models/CardDetail.cs +++ b/GC-local-server-rewrite/models/CardDetail.cs @@ -90,6 +90,10 @@ public class CardDetail : Record, ICardIdModel [ChoXmlElementRecordField(FieldName = "fcol3")] [XmlElement("fcol3")] public int Fcol3 { get; set; } + + [Column("last_play_time")] + [XmlIgnore] + public DateTime LastPlayTime { get; set; } = DateTime.MinValue; public void SetCardId(long cardId) { diff --git a/MudAdmin/MudAdmin.csproj b/MudAdmin/MudAdmin.csproj index 55f89f4..88d99c7 100644 --- a/MudAdmin/MudAdmin.csproj +++ b/MudAdmin/MudAdmin.csproj @@ -36,5 +36,9 @@ + + + + \ No newline at end of file diff --git a/MudAdmin/Pages/User.razor b/MudAdmin/Pages/User.razor index 30e1c09..527f9e7 100644 --- a/MudAdmin/Pages/User.razor +++ b/MudAdmin/Pages/User.razor @@ -1,209 +1,206 @@ @page "/user/{CardId:long}" @using SharedProject.models @using SharedProject.enums -@using SharedProject.common -@inject HttpClient Client -@inject IDialogService DialogService -@inject ILogger Logger User -@if (userDetail == null) -{ - - - -} -else -{ - - - - Player Name: @userDetail.PlayerName - Total Score: @userDetail.TotalScore - Average Score: @userDetail.AverageScore - Played Song Count: @userDetail.PlayedSongCount / @userDetail.TotalSongCount - Cleared Stage Count: @userDetail.ClearedStageCount / @userDetail.TotalStageCount - No Miss Stage Count: @userDetail.NoMissStageCount / @userDetail.TotalStageCount - Full Chain Stage Count: @userDetail.FullChainStageCount / @userDetail.TotalStageCount - Perfect Stage Count: @userDetail.PerfectStageCount / @userDetail.TotalStageCount - S and Above Stage Count: @userDetail.SAboveStageCount / @userDetail.TotalStageCount - S+ and Above Stage Count: @userDetail.SPlusAboveStageCount / @userDetail.TotalStageCount - S++ and Above Stage Count: @userDetail.SPlusPlusAboveStageCount / @userDetail.TotalStageCount - - - - - @foreach (var item in Enum.GetValues()) - { - @item.GetHelpText() - } - - - - @foreach (var item in Enum.GetValues()) - { - @item.GetHelpText() - } - - - - @if (isSavingOptions) - { - - Saving... - } - else - { - - Save - } - - - - - - Played Songs - - - - - - @(context.Item.ShowDetails ? "Hide" : "Show") Song Play Details - - - - - - - - - - - - - - @if (context.ShowDetails) - { - - - - - - Song Play Details - - - - - - Difficulty - Clear State - Play Count - Rating - Score - Max Chain - - - @SongPlayDetail.Difficulty - - @(SongPlayDetail.Score != 1000000 ? SongPlayDetail.ClearState : ClearState.Perfect) - - @SongPlayDetail.PlayCount - @CalculateRating(SongPlayDetail.Score) - @SongPlayDetail.Score - @SongPlayDetail.MaxChain - - - - - - - } - - - - - - - -} - - -@code { - - [Parameter] - public long CardId { get; set; } - - private PlayOptions.FeverTranceShow feverTranceShow; - - private PlayOptions.FastSlowIndicator fastSlowIndicator; - - private UserDetail? userDetail; - - private List songPlayDataList = new(); - - private bool isSavingOptions; - - protected override async Task OnInitializedAsync() + @if (pageLoading) { - await base.OnInitializedAsync(); - userDetail = await Client.GetFromJsonAsync($"api/UserDetail/{CardId}") ?? new(); - songPlayDataList = userDetail.SongPlayDataList ?? new List(); - feverTranceShow = userDetail.PlayOption.FeverTrance; - fastSlowIndicator = userDetail.PlayOption.FastSlowIndicator; + + + } - - private void OnShowDetailsClick(SongPlayData data) + else { - data.ShowDetails = !data.ShowDetails; - } - - private async Task SaveOptions() - { - isSavingOptions = true; - var postData = new PlayOption + if (userDetail is null) { - CardId = CardId, - FastSlowIndicator = fastSlowIndicator, - FeverTrance = feverTranceShow - }; - var result = await Client.PostAsJsonAsync("api/UserDetail/SetPlayOption", postData); - isSavingOptions = false; - } - - private static string CalculateRating(int score) - { - var grade = SharedConstants.GRADES.Where(g => g.Score <= score).Select(g => g.Grade).Last(); - return grade; - } - - private async Task OnFavoriteToggled(SongPlayData data) - { - var options = new DialogOptions - { - CloseOnEscapeKey = false, - DisableBackdropClick = true, - FullWidth = true - }; - var parameters = new DialogParameters(); - parameters.Add("Data", data); - parameters.Add("CardId", CardId); - var dialog = DialogService.Show("Favorite", parameters, options); - var result = await dialog.Result; - - if (result.Cancelled) - { - return; + No Data } - - if ((bool)result.Data) + else { - Logger.LogInformation("Changed!"); - data.IsFavorite = !data.IsFavorite; + + + + Player Name: @userDetail.PlayerName + Total Score: @userDetail.TotalScore + Average Score: @userDetail.AverageScore + Played Song Count: @userDetail.PlayedSongCount / @userDetail.TotalSongCount + Cleared Stage Count: @userDetail.ClearedStageCount / @userDetail.TotalStageCount + No Miss Stage Count: @userDetail.NoMissStageCount / @userDetail.TotalStageCount + Full Chain Stage Count: @userDetail.FullChainStageCount / @userDetail.TotalStageCount + Perfect Stage Count: @userDetail.PerfectStageCount / @userDetail.TotalStageCount + S and Above Stage Count: @userDetail.SAboveStageCount / @userDetail.TotalStageCount + S+ and Above Stage Count: @userDetail.SPlusAboveStageCount / @userDetail.TotalStageCount + S++ and Above Stage Count: @userDetail.SPlusPlusAboveStageCount / @userDetail.TotalStageCount + + + + + @foreach (var item in Enum.GetValues()) + { + @item.GetHelpText() + } + + + + @foreach (var item in Enum.GetValues()) + { + @item.GetHelpText() + } + + + + + @* + Load more options + *@ + + Only first 50 items are displayed + + + + + + + @* + Load more options + *@ + + Only first 50 items are displayed + + + + + + + @* + Load more options + *@ + + Only first 50 items are displayed + + + + + + @if (isSavingOptions) + { + + Saving... + } + else + { + + Save + } + + + + + + Played Songs + + + + + + @(context.Item.ShowDetails ? "Hide" : "Show") Song Play Details + + + + + + + + + + + + + + + @if (context.ShowDetails) + { + + + + + + Song Play Details + + + + + + Difficulty + Clear State + Play Count + Rating + Score + Max Chain + Last Play Time + + + @SongPlayDetail.Difficulty + + @(SongPlayDetail.Score != 1000000 ? SongPlayDetail.ClearState : ClearState.Perfect) + + @SongPlayDetail.PlayCount + @CalculateRating(SongPlayDetail.Score) + @SongPlayDetail.Score + @SongPlayDetail.MaxChain + @SongPlayDetail.LastPlayTime + + + + + + + } + + + + + + + } } -} \ No newline at end of file + \ No newline at end of file diff --git a/MudAdmin/Pages/User.razor.cs b/MudAdmin/Pages/User.razor.cs new file mode 100644 index 0000000..1d79a1a --- /dev/null +++ b/MudAdmin/Pages/User.razor.cs @@ -0,0 +1,163 @@ +using System.Net.Http.Json; +using Microsoft.AspNetCore.Components; +using MudBlazor; +using SharedProject.common; +using SharedProject.models; + +namespace MudAdmin.Pages; + +public partial class User +{ + + [Inject] + public HttpClient Client { get; set; } = null!; + + [Inject] + public IDialogService DialogService { get; set; } = null!; + + [Inject] + public ILogger Logger { get; set; } = null!; + + [Parameter] + public long CardId { get; set; } + + private PlayOption playOption = new(); + + private UserDetail? userDetail; + + private List songPlayDataList = new(); + + private Dictionary navigatorDictionary = new(); + + private Dictionary titleDictionary = new(); + + private Dictionary avatarDictionary = new(); + + private bool isSavingOptions; + + private int avatarMaxItems = 50; + + private bool pageLoading = true; + + protected override async Task OnInitializedAsync() + { + await base.OnInitializedAsync(); + userDetail = await Client.GetFromJsonAsync($"api/UserDetail/{CardId}"); + if (userDetail is null) + { + pageLoading = false; + return; + } + songPlayDataList = userDetail.SongPlayDataList ?? new List(); + playOption = userDetail.PlayOption; + + var navigators = await Client.GetFromJsonAsync("data/navigator.json"); + if (navigators?.NavigatorList != null) + { + this.navigatorDictionary = navigators.NavigatorList.ToDictionary(navigator => (long)navigator.Id); + } + var avatars = await Client.GetFromJsonAsync("data/avatar.json"); + if (avatars != null) + { + this.avatarDictionary = avatars.ToDictionary(avatar => (long)avatar.Id); + } + var titles = await Client.GetFromJsonAsync("data/title.json"); + if (titles != null) + { + this.titleDictionary = titles.ToDictionary(title => (long)title.Id); + } + pageLoading = false; + } + + private void OnShowDetailsClick(SongPlayData data) + { + data.ShowDetails = !data.ShowDetails; + } + + private async Task SaveOptions() + { + isSavingOptions = true; + var postData = new PlayOption + { + CardId = CardId, + FastSlowIndicator = playOption.FastSlowIndicator, + FeverTrance = playOption.FeverTrance, + AvatarId = playOption.AvatarId, + NavigatorId = playOption.NavigatorId, + TitleId = playOption.TitleId + }; + var result = await Client.PostAsJsonAsync("api/UserDetail/SetPlayOption", postData); + isSavingOptions = false; + } + + private static string CalculateRating(int score) + { + var grade = SharedConstants.GRADES.Where(g => g.Score <= score).Select(g => g.Grade).Last(); + return grade; + } + + private async Task OnFavoriteToggled(SongPlayData data) + { + var options = new DialogOptions + { + CloseOnEscapeKey = false, + DisableBackdropClick = true, + FullWidth = true + }; + var parameters = new DialogParameters(); + parameters.Add("Data", data); + parameters.Add("CardId", CardId); + var dialog = DialogService.Show("Favorite", parameters, options); + var result = await dialog.Result; + + if (result.Cancelled) + { + return; + } + + if ((bool)result.Data) + { + Logger.LogInformation("Changed!"); + data.IsFavorite = !data.IsFavorite; + } + } + + private Task> SearchAvatar(string value) + { + var result = string.IsNullOrEmpty(value) ? + avatarDictionary.Keys : + avatarDictionary.Where(pair => pair.Value.ToString().Contains(value, StringComparison.InvariantCultureIgnoreCase)).Select(pair => pair.Key); + return Task.FromResult(result); + } + + private Task> SearchTitle(string value) + { + var result = string.IsNullOrEmpty(value) ? + titleDictionary.Keys : + titleDictionary.Where(pair => pair.Value.ToString().Contains(value, StringComparison.InvariantCultureIgnoreCase)).Select(pair => pair.Key); + return Task.FromResult(result); + } + + private Task> SearchNavigator(string value) + { + var result = string.IsNullOrEmpty(value) ? + navigatorDictionary.Keys : + navigatorDictionary.Where(pair => pair.Value.ToString().Contains(value, StringComparison.InvariantCultureIgnoreCase)).Select(pair => pair.Key); + return Task.FromResult(result); + } + + private string AvatarIdToString(long id) + { + return avatarDictionary.ContainsKey(id) ? avatarDictionary[id].ToString() : $"No Data for {id}!"; + } + + private string NavigatorIdToString(long id) + { + return navigatorDictionary.ContainsKey(id) ? navigatorDictionary[id].ToString() : $"No Data for {id}!"; + } + + private string TitleIdToString(long id) + { + return titleDictionary.ContainsKey(id) ? titleDictionary[id].ToString() : $"No Data for {id}!"; + } +} \ No newline at end of file diff --git a/MudAdmin/Pages/Users.razor b/MudAdmin/Pages/Users.razor index a486c2b..e760d28 100644 --- a/MudAdmin/Pages/Users.razor +++ b/MudAdmin/Pages/Users.razor @@ -30,7 +30,7 @@ } } - else if (!(users.Count == 0)) + else if (users.Count != 0) { @foreach (var user in users) diff --git a/MudAdmin/Utils/MockDataRepo.cs b/MudAdmin/Utils/MockDataRepo.cs deleted file mode 100644 index 4e852a6..0000000 --- a/MudAdmin/Utils/MockDataRepo.cs +++ /dev/null @@ -1,105 +0,0 @@ -using SharedProject.models; -using GenFu; -using SharedProject.enums; - -namespace MudAdmin.Utils; - -public class MockDataRepo -{ - private static readonly MockDataRepo INSTANCE = new MockDataRepo(); - - public List Users { get; } - - public List UserDetails { get; private set; } = null!; - - public List SongPlayDataList { get; private set; } = null!; - - private MockDataRepo() - { - ConfigureGenFu(); - Users = GenFu.GenFu.ListOf(10); - GenerateUserDetails(); - GenerateSongPlayData(); - } - - private void GenerateSongPlayData() - { - SongPlayDataList = GenFu.GenFu.ListOf(); - - foreach (var songPlayData in SongPlayDataList) - { - var subDataList = new List(); - var random = new Random(); - - foreach (var difficulty in Enum.GetValues()) - { - if (random.Next() <= int.MaxValue / 2) - { - continue; - } - - var subData = GenFu.GenFu.New(); - subData.Difficulty = difficulty; - - if (subData.ClearState == ClearState.Perfect) - { - subData.ClearState = ClearState.FullChain; - } - subDataList.Add(subData); - } - - songPlayData.SongPlaySubDataList = subDataList.ToArray(); - } - - } - - private void GenerateUserDetails() - { - UserDetails = new List(); - - foreach (var user in Users) - { - var detail = GenFu.GenFu.New(); - detail.CardId = user.CardId; - detail.PlayerName = user.PlayerName; - detail.PlayOption = new PlayOption - { - CardId = user.CardId, - FeverTrance = PlayOptions.FeverTranceShow.Show, - FastSlowIndicator = PlayOptions.FastSlowIndicator.NotUsed - }; - detail.AverageScore = 900000; - detail.TotalScore = 10000000; - detail.TotalSongCount = 123; - detail.TotalStageCount = 390; - UserDetails.Add(detail); - } - } - - public static MockDataRepo GetMockDataRepo() - { - return INSTANCE; - } - - private void ConfigureGenFu() - { - GenFu.GenFu.Configure() - .Fill(user => user.CardId, () => new Random().NextInt64(7000000000000000, 8000000000000000)); - - GenFu.GenFu.Configure() - .Fill(detail => detail.PlayedSongCount).WithinRange(100, 123) - .Fill(detail => detail.ClearedStageCount).WithinRange(300, 390) - .Fill(detail => detail.NoMissStageCount).WithinRange(200, 300) - .Fill(detail => detail.FullChainStageCount).WithinRange(100, 200) - .Fill(detail => detail.PerfectStageCount).WithinRange(0, 100) - .Fill(detail => detail.SAboveStageCount).WithinRange(200, 300) - .Fill(detail => detail.SPlusAboveStageCount).WithinRange(100, 200) - .Fill(detail => detail.SPlusPlusAboveStageCount).WithinRange(0, 100); - - GenFu.GenFu.Configure() - .Fill(data => data.Score).WithinRange(0, 1000001); - GenFu.GenFu.Configure() - .Fill(data => data.ShowDetails, false); - - } -} \ No newline at end of file diff --git a/MudAdmin/wwwroot/data/avatar.json b/MudAdmin/wwwroot/data/avatar.json new file mode 100644 index 0000000..0c3439b --- /dev/null +++ b/MudAdmin/wwwroot/data/avatar.json @@ -0,0 +1,2850 @@ +[ + { + "Id": 0, + "IdString": "crab", + "FullName": "CRAB", + "Name": "CRAB", + "Variant": "", + "AcquireMethod": "Part of the default set" + }, + { + "Id": 1, + "IdString": "bird", + "FullName": "BIRD", + "Name": "BIRD", + "Variant": "", + "AcquireMethod": "Part of the default set" + }, + { + "Id": 2, + "IdString": "dolphin", + "FullName": "DOLPHIN", + "Name": "DOLPHIN", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 3, + "IdString": "butterfly", + "FullName": "BUTTERFLY", + "Name": "BUTTERFLY", + "Variant": "", + "AcquireMethod": "Part of the default set" + }, + { + "Id": 4, + "IdString": "energy", + "FullName": "ENERGY", + "Name": "ENERGY", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 5, + "IdString": "goldfish", + "FullName": "GOLDFISH", + "Name": "GOLDFISH", + "Variant": "", + "AcquireMethod": "Part of the default set" + }, + { + "Id": 6, + "IdString": "light", + "FullName": "LIGHT", + "Name": "LIGHT", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 7, + "IdString": "octopus", + "FullName": "OCTOPUS", + "Name": "OCTOPUS", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 8, + "IdString": "human", + "FullName": "HUMAN", + "Name": "HUMAN", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 9, + "IdString": "rapid", + "FullName": "RAPID", + "Name": "RAPID", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 10, + "IdString": "squid", + "FullName": "SQUID", + "Name": "SQUID", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 11, + "IdString": "spark", + "FullName": "SPARK", + "Name": "SPARK", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 12, + "IdString": "gene", + "FullName": "GENE", + "Name": "GENE", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 13, + "IdString": "ufo", + "FullName": "UFO", + "Name": "UFO", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 14, + "IdString": "phoenix", + "FullName": "PHOENIX", + "Name": "PHOENIX", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 15, + "IdString": "ene", + "FullName": "ENE", + "Name": "ENE", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 16, + "IdString": "tv", + "FullName": "niconicoTVchan", + "Name": "niconico", + "Variant": "TVchan", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 17, + "IdString": "ene3d", + "FullName": "ENE(3D)", + "Name": "ENE(3D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 18, + "IdString": "silverhawk", + "FullName": "SILVER HAWK", + "Name": "SILVER", + "Variant": "HAWK", + "AcquireMethod": "Part of the default set" + }, + { + "Id": 19, + "IdString": "headphone", + "FullName": "HEADPHONE CRAB", + "Name": "HEADPHONE", + "Variant": "CRAB", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 20, + "IdString": "rgray", + "FullName": "R-GRAY0", + "Name": "R-GRAY0", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 21, + "IdString": "horse", + "FullName": "HORSE", + "Name": "HORSE", + "Variant": "", + "AcquireMethod": "2014 (Horse) anniversary avatar" + }, + { + "Id": 22, + "IdString": "fb777", + "FullName": "FB777", + "Name": "FB777", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 23, + "IdString": "kikkun", + "FullName": "KIKKUN", + "Name": "KIKKUN", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 24, + "IdString": "aroma", + "FullName": "aromahot", + "Name": "aromahot", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 25, + "IdString": "eoheoh", + "FullName": "eoheoh", + "Name": "eoheoh", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 26, + "IdString": "pegasus", + "FullName": "PEGASUS", + "Name": "PEGASUS", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 27, + "IdString": "marisa", + "FullName": "MARISA", + "Name": "MARISA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 28, + "IdString": "elen", + "FullName": "EREN", + "Name": "EREN", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 29, + "IdString": "taokaka", + "FullName": "TAOKAKA", + "Name": "TAOKAKA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 30, + "IdString": "nu13", + "FullName": "NU-13", + "Name": "NU-13", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 31, + "IdString": "rgray1", + "FullName": "R-GRAY1", + "Name": "R-GRAY1", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 32, + "IdString": "rain", + "FullName": "RAIN", + "Name": "RAIN", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 33, + "IdString": "kumi", + "FullName": "KUMI", + "Name": "KUMI", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 34, + "IdString": "metadra", + "FullName": "KING METAL DRAGON", + "Name": "KING METAL", + "Variant": "DRAGON", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 35, + "IdString": "tamadra", + "FullName": "TAMADRA", + "Name": "TAMADRA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 36, + "IdString": "rivai", + "FullName": "hito2", + "Name": "hito2", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 37, + "IdString": "helicopter", + "FullName": "HELICOPTER", + "Name": "HELICOPTER", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 38, + "IdString": "kikousyu", + "FullName": "hito3", + "Name": "hito3", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 39, + "IdString": "reimu", + "FullName": "REIMU", + "Name": "REIMU", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 40, + "IdString": "ufoco", + "FullName": "UFO-CO", + "Name": "UFO-CO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 41, + "IdString": "dragon", + "FullName": "DRAGON", + "Name": "DRAGON", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 42, + "IdString": "knitty", + "FullName": "KNITTY", + "Name": "KNITTY", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 43, + "IdString": "ninjaslayer", + "FullName": "NINJA SLAYER", + "Name": "NINJA", + "Variant": "SLAYER", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 44, + "IdString": "legend", + "FullName": "SILVER HAWK(L)", + "Name": "SILVER", + "Variant": "HAWK(L)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 45, + "IdString": "next", + "FullName": "SILVER HAWK(N)", + "Name": "SILVER", + "Variant": "HAWK(N)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 46, + "IdString": "formula", + "FullName": "SILVER HAWK(F)", + "Name": "SILVER", + "Variant": "HAWK(F)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 47, + "IdString": "assault", + "FullName": "SILVER HAWK(A)", + "Name": "SILVER", + "Variant": "HAWK(A)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 48, + "IdString": "rgray2", + "FullName": "R-GRAY2", + "Name": "R-GRAY2", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 49, + "IdString": "miria", + "FullName": "MIRIA", + "Name": "MIRIA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 50, + "IdString": "origami", + "FullName": "PAPER CRANE", + "Name": "PAPER", + "Variant": "CRANE", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 51, + "IdString": "sheep", + "FullName": "SHEEP", + "Name": "SHEEP", + "Variant": "", + "AcquireMethod": "2015 (Sheep) anniversary avatar" + }, + { + "Id": 52, + "IdString": "chiruno", + "FullName": "CIRNO", + "Name": "CIRNO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 53, + "IdString": "sakuya", + "FullName": "SAKUYA", + "Name": "SAKUYA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 54, + "IdString": "fb777_rpg", + "FullName": "FB777(RPG)", + "Name": "FB777", + "Variant": "(RPG)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 55, + "IdString": "kikkun_rpg", + "FullName": "KIKKUN(RPG)", + "Name": "KIKKUN", + "Variant": "(RPG)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 56, + "IdString": "aromahot_rpg", + "FullName": "aromahot(RPG)", + "Name": "aromahot", + "Variant": "(RPG)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 57, + "IdString": "eoheoh_rpg", + "FullName": "eoheoh(RPG)", + "Name": "eoheoh", + "Variant": "(RPG)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 58, + "IdString": "gcoctopus", + "FullName": "HEADPHONE OCTOPUS", + "Name": "HEADPHONE", + "Variant": "OCTOPUS", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 59, + "IdString": "ia", + "FullName": "IA(2D)", + "Name": "IA(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 60, + "IdString": "sayo", + "FullName": "SAYO", + "Name": "SAYO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 61, + "IdString": "bubblen", + "FullName": "BUBBLEN", + "Name": "BUBBLEN", + "Variant": "", + "AcquireMethod": "Part of the default set" + }, + { + "Id": 62, + "IdString": "hinatadenkou", + "FullName": "HITO", + "Name": "HITO", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 63, + "IdString": "spica", + "FullName": "SPICA", + "Name": "SPICA", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 64, + "IdString": "bobblen", + "FullName": "BOBBLEN", + "Name": "BOBBLEN", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 65, + "IdString": "space_invaders", + "FullName": "SPACE INVADERS", + "Name": "SPACE", + "Variant": "INVADERS", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 66, + "IdString": "cannon", + "FullName": "CANNON", + "Name": "CANNON", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 67, + "IdString": "gc_squid", + "FullName": "HEADPHONE SQUID", + "Name": "HEADPHONE", + "Variant": "SQUID", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 68, + "IdString": "fessupkun", + "FullName": "Fess up", + "Name": "Fess up", + "Variant": "", + "AcquireMethod": "Get via a campaign / Mypage" + }, + { + "Id": 69, + "IdString": "ia3d", + "FullName": "IA(3D)", + "Name": "IA(3D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 70, + "IdString": "ironfossil", + "FullName": "Iron Fossil", + "Name": "Iron Fossil", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 71, + "IdString": "skull", + "FullName": "SKULL", + "Name": "SKULL", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 72, + "IdString": "intergray", + "FullName": "INTER GRAY", + "Name": "INTER GRAY", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 73, + "IdString": "ouroboros", + "FullName": "OUROBOROS", + "Name": "OUROBOROS", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 74, + "IdString": "rachel", + "FullName": "RACHEL", + "Name": "RACHEL", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 75, + "IdString": "miku3d", + "FullName": "HATSUNE MIKU(3D)", + "Name": "HATSUNE ", + "Variant": "MIKU(3D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 76, + "IdString": "miku", + "FullName": "HATSUNE MIKU(2D)", + "Name": "HATSUNE ", + "Variant": "MIKU(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 77, + "IdString": "cosio", + "FullName": "COSIO", + "Name": "COSIO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 78, + "IdString": "shohei", + "FullName": "SHOHEI", + "Name": "SHOHEI", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 79, + "IdString": "fighting_thunder", + "FullName": "FIGHTING THUNDER", + "Name": "FIGHTING", + "Variant": "THUNDER", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 80, + "IdString": "nico", + "FullName": "NICO", + "Name": "NICO", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 81, + "IdString": "ti2", + "FullName": "Ti2", + "Name": "Ti2", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 82, + "IdString": "ti2overclock", + "FullName": "Ti2Overclock", + "Name": "Ti2", + "Variant": "Overclock", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 83, + "IdString": "blackfly", + "FullName": "BLACK FLY", + "Name": "BLACK FLY", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 84, + "IdString": "babi", + "FullName": "BABI", + "Name": "BABI", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 85, + "IdString": "sanae", + "FullName": "SANAE", + "Name": "SANAE", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 86, + "IdString": "youmu", + "FullName": "YOUMU", + "Name": "YOUMU", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 87, + "IdString": "rin", + "FullName": "KAGAMINE RIN", + "Name": "KAGAMINE", + "Variant": "RIN", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 88, + "IdString": "len", + "FullName": "KAGAMINE LEN", + "Name": "KAGAMINE", + "Variant": "LEN", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 89, + "IdString": "otomon", + "FullName": "OTOMON", + "Name": "OTOMON", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 90, + "IdString": "gurdian", + "FullName": "GUARDIAN", + "Name": "GUARDIAN", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 91, + "IdString": "march_arch", + "FullName": "March & Arch", + "Name": "March", + "Variant": "& Arch", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 92, + "IdString": "candice", + "FullName": "CANDICE BONBON", + "Name": "CANDICE", + "Variant": "BONBON", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 93, + "IdString": "ronmei", + "FullName": "RONMEI", + "Name": "RONMEI", + "Variant": "", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 94, + "IdString": "zundoko", + "FullName": "FULLMETAL ZUNDOKO", + "Name": "FULLMETAL", + "Variant": "ZUNDOKO", + "AcquireMethod": "Get by Mypage" + }, + { + "Id": 95, + "IdString": "omake", + "FullName": "OMAKE", + "Name": "OMAKE", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 96, + "IdString": "syameimaru", + "FullName": "SYAMEIMARU", + "Name": "SYAMEIMARU", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 97, + "IdString": "seaturtle", + "FullName": "SEA TURTLE", + "Name": "SEA", + "Variant": "TURTLE", + "AcquireMethod": "Trophy reward" + }, + { + "Id": 98, + "IdString": "frandoll", + "FullName": "FRANDRE SCARLET", + "Name": "FRANDRE", + "Variant": "SCARLET", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 99, + "IdString": "mosyune", + "FullName": "MOSYNE(HUMANOID)", + "Name": "MOSYNE", + "Variant": "(HUMANOID)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 100, + "IdString": "carte", + "FullName": "Carte", + "Name": "Carte", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 101, + "IdString": "monkey", + "FullName": "MONKEY", + "Name": "MONKEY", + "Variant": "", + "AcquireMethod": "2016 (Monkey) anniversary avatar" + }, + { + "Id": 102, + "IdString": "mirin", + "FullName": "MIRIN", + "Name": "MIRIN", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 103, + "IdString": "mosyune_c", + "FullName": "MOSYNE(FLIGHT)", + "Name": "MOSYNE", + "Variant": "(FLIGHT)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 104, + "IdString": "sato", + "FullName": "EDM BOW", + "Name": "EDM BOW", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 105, + "IdString": "ranko", + "FullName": "RANKO", + "Name": "RANKO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 106, + "IdString": "t+pazolite", + "FullName": "t+pazolite", + "Name": "t+pazolite", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 107, + "IdString": "massive-new-krew", + "FullName": "Massive-New-Krew", + "Name": "Massive", + "Variant": "New Krew", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 108, + "IdString": "risa", + "FullName": "RISA", + "Name": "RISA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 109, + "IdString": "nemu", + "FullName": "NEMU", + "Name": "NEMU", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 110, + "IdString": "eimi", + "FullName": "EIMI", + "Name": "EIMI", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 111, + "IdString": "moga", + "FullName": "MOGA", + "Name": "MOGA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 112, + "IdString": "ayane", + "FullName": "AYANE", + "Name": "AYANE", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 113, + "IdString": "linka", + "FullName": "LINKA", + "Name": "LINKA", + "Variant": "", + "AcquireMethod": "Trophy reward" + }, + { + "Id": 114, + "IdString": "kaidan", + "FullName": "SPOOKY STORY", + "Name": "SPOOKY", + "Variant": "STORY", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 115, + "IdString": "cadence", + "FullName": "CADENCE", + "Name": "CADENCE", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 116, + "IdString": "skeleton", + "FullName": "SKELETON", + "Name": "SKELETON", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 117, + "IdString": "shopkeeper", + "FullName": "SHOPKEEPER", + "Name": "SHOPKEEPER", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 118, + "IdString": "monokuma", + "FullName": "MONOKUMA", + "Name": "MONOKUMA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 119, + "IdString": "naegi", + "FullName": "MAKOTO NAEGI", + "Name": "MAKOTO", + "Variant": "NAEGI", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 120, + "IdString": "enosima", + "FullName": "JUNKO ENOSHIMA", + "Name": "JUNKO", + "Variant": "ENOSHIMA", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 121, + "IdString": "murakumo", + "FullName": "SILVER HAWK(M)", + "Name": "SILVER", + "Variant": "HAWK(M)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 122, + "IdString": "gumi3d", + "FullName": "GUMI(3D)", + "Name": "GUMI(3D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 123, + "IdString": "gumi", + "FullName": "GUMI(2D)", + "Name": "GUMI(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 124, + "IdString": "deltasword", + "FullName": "Deltasword", + "Name": "Deltasword", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 125, + "IdString": "strania", + "FullName": "STRANIA", + "Name": "STRANIA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 126, + "IdString": "gumi_guitar", + "FullName": "GUMI(Guitar)", + "Name": "GUMI(Guitar)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 127, + "IdString": "reimu_2d", + "FullName": "REIMU(2D)", + "Name": "REIMU(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 128, + "IdString": "marisa_2d", + "FullName": "MARISA(2D)", + "Name": "MARISA(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 129, + "IdString": "sanae_2d", + "FullName": "SANAE(2D)", + "Name": "SANAE(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 130, + "IdString": "3d_ufo", + "FullName": "UFO(3D)", + "Name": "UFO(3D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 131, + "IdString": "one", + "FullName": "ONE(2D)", + "Name": "ONE(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 132, + "IdString": "one3d", + "FullName": "ONE(3D)", + "Name": "ONE(3D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 133, + "IdString": "akatuki3d", + "FullName": "AKATSUKI(3D)", + "Name": "AKATSUKI", + "Variant": "(3D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 134, + "IdString": "sun3d", + "FullName": "SUN(3D)", + "Name": "SUN(3D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 135, + "IdString": "masaki", + "FullName": "MASAKI", + "Name": "MASAKI", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 136, + "IdString": "miku_dot", + "FullName": "HATSUNE MIKU(2Ddot)", + "Name": "HATSUNE", + "Variant": "MIKU(2Ddot)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 137, + "IdString": "luka", + "FullName": "MEGURINE LUKA(2D)", + "Name": "MEGURINE", + "Variant": "LUKA(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 138, + "IdString": "luka3d", + "FullName": "MEGURINE LUKA(3D)", + "Name": "MEGURINE", + "Variant": "LUKA(3D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 139, + "IdString": "takuyayuki", + "FullName": "TAKUYA & YUKI", + "Name": "TAKUYA", + "Variant": "& YUKI", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 140, + "IdString": "alice_2d", + "FullName": "ALICE(2D)", + "Name": "ALICE(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 141, + "IdString": "nitori_2d", + "FullName": "NITORI(2D)", + "Name": "NITORI(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 142, + "IdString": "ken", + "FullName": "KEN", + "Name": "KEN", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 143, + "IdString": "keine_2d", + "FullName": "KEINE(2D)", + "Name": "KEINE(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 144, + "IdString": "yuugi", + "FullName": "YUGI", + "Name": "YUGI", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 145, + "IdString": "mini_linka", + "FullName": "CHIBI LINKA", + "Name": "CHIBI", + "Variant": " LINKA", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 146, + "IdString": "mini_ronmei", + "FullName": "CHIBI RONMEI", + "Name": "CHIBI", + "Variant": " RONMEI", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 147, + "IdString": "mini_ken", + "FullName": "CHIBI KEN", + "Name": "CHIBI", + "Variant": "KEN", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 148, + "IdString": "mini_zundoko", + "FullName": "CHIBI ZUNDOKO", + "Name": "CHIBI", + "Variant": "ZUNDOKO", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 149, + "IdString": "mini_dontuku", + "FullName": "CHIBI DONTSUKU", + "Name": "CHIBI", + "Variant": "DONTSUKU", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 150, + "IdString": "sidune_2d", + "FullName": "SIDUNE(2D)", + "Name": "SIDUNE(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 151, + "IdString": "dogumamaguma_2d", + "FullName": "DOGUMA & MAGUMA(2D)", + "Name": "DOGUMA & ", + "Variant": "MAGUMA(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 152, + "IdString": "remy_2d", + "FullName": "REMY(2D)", + "Name": "REMY(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 153, + "IdString": "kyoka_2d", + "FullName": "KYOKA(2D)", + "Name": "KYOKA(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 154, + "IdString": "sidune", + "FullName": "SIDUNE", + "Name": "SIDUNE", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 155, + "IdString": "hiyoko", + "FullName": "CHICK", + "Name": "CHICK", + "Variant": "", + "AcquireMethod": "2017 (Bird) anniversary avatar" + }, + { + "Id": 156, + "IdString": "rin_dot", + "FullName": "KAGAMINE RIN(2D)", + "Name": "KAGAMINE", + "Variant": "RIN(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 157, + "IdString": "len_dot", + "FullName": "KAGAMINE LEN(2D)", + "Name": "KAGAMINE", + "Variant": "LEN(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 158, + "IdString": "yume", + "FullName": "YUME", + "Name": "YUME", + "Variant": "", + "AcquireMethod": "Part of the default set" + }, + { + "Id": 159, + "IdString": "dontuku", + "FullName": "POLYVINYL DONTSUKU", + "Name": "POLYVINYL", + "Variant": "DONTSUKU", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 160, + "IdString": "youmu_2d", + "FullName": "YOUMU(2D)", + "Name": "YOUMU(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 161, + "IdString": "toyosatomimi_2d", + "FullName": "MIKO(2D)", + "Name": "MIKO(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 162, + "IdString": "vocaloid_nemu", + "FullName": "VOCALOID NEMU", + "Name": "VOCALOID", + "Variant": "NEMU", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 163, + "IdString": "tanukyun", + "FullName": "tanuQn", + "Name": "tanuQn", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 164, + "IdString": "remilia", + "FullName": "REMILIA SCARLET", + "Name": "REMILIA", + "Variant": "SCARLET", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 165, + "IdString": "yuyuko_2d", + "FullName": "YUYUKO(2D)", + "Name": "YUYUKO(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 166, + "IdString": "kanako_2d", + "FullName": "KANAKO(2D)", + "Name": "KANAKO(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 167, + "IdString": "ranko_2d", + "FullName": "RANKO(2D)", + "Name": "RANKO", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 168, + "IdString": "comp_2d", + "FullName": "COMP(2D)", + "Name": "COMP", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 169, + "IdString": "paprika_2d", + "FullName": "PAPRIKA(2D)", + "Name": "PAPRIKA", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 170, + "IdString": "rankonoane_2d", + "FullName": "RANKO no ANE(2D)", + "Name": "RANKO", + "Variant": "no ANE(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 171, + "IdString": "chibi_miku", + "FullName": "CHIBI MIKU", + "Name": "CHIBI", + "Variant": "MIKU", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 172, + "IdString": "chibi_luke", + "FullName": "CHIBI LUKA", + "Name": "CHIBI", + "Variant": "LUKA", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 173, + "IdString": "chibi_rin", + "FullName": "CHIBI RIN", + "Name": "CHIBI", + "Variant": "RIN", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 174, + "IdString": "chibi_len", + "FullName": "CHIBI LEN", + "Name": "CHIBI", + "Variant": "LEN", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 175, + "IdString": "chibi_meiko", + "FullName": "CHIBI MEIKO", + "Name": "CHIBI", + "Variant": "MEIKO", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 176, + "IdString": "chibi_kaito", + "FullName": "CHIBI KAITO", + "Name": "CHIBI", + "Variant": "KAITO", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 177, + "IdString": "miku3d_run", + "FullName": "HATSUNE MIKU(3Drun)", + "Name": "HATSUNE ", + "Variant": "MIKU(3Drun)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 178, + "IdString": "tonesphere_Cube_1", + "FullName": "Tone Sphere Cricro", + "Name": "Tone Sphere", + "Variant": "Cricro", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 179, + "IdString": "tonesphere_Cube_2", + "FullName": "Tone Sphere Tessera", + "Name": "Tone Sphere", + "Variant": "Tessera", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 180, + "IdString": "cessna_plane", + "FullName": "BIPLANE", + "Name": "BIPLANE", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 181, + "IdString": "redalice", + "FullName": "REDALiCE", + "Name": "REDALiCE", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 182, + "IdString": "genki", + "FullName": "DJ Genki", + "Name": "DJ Genki", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 183, + "IdString": "usao", + "FullName": "USAO", + "Name": "USAO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 184, + "IdString": "myosuke", + "FullName": "DJ Myosuke", + "Name": "DJ Myosuke", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 185, + "IdString": "aran", + "FullName": "aran", + "Name": "aran", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 186, + "IdString": "vkl503p", + "FullName": "VKL5.03(P)", + "Name": "VKL5.03(P)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 187, + "IdString": "2foot", + "FullName": "2Foot", + "Name": "2Foot", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 188, + "IdString": "windia", + "FullName": "WINDIA", + "Name": "WINDIA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 189, + "IdString": "casper", + "FullName": "CASPER", + "Name": "CASPER", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 190, + "IdString": "riga", + "FullName": "RIGA", + "Name": "RIGA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 191, + "IdString": "cirno_2d", + "FullName": "CIRNO(2D)", + "Name": "CIRNO", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 192, + "IdString": "cirno_2dtan", + "FullName": "CIRNO(2D,TAN)", + "Name": "CIRNO", + "Variant": "(2D,TAN)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 193, + "IdString": "cirno_chirupa", + "FullName": "CIRNO(CHIRUPA)", + "Name": "CIRNO", + "Variant": "(CHIRUPA)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 194, + "IdString": "sukuna", + "FullName": "SHINMYOUMARU", + "Name": "SHINMYOU", + "Variant": "MARU", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 195, + "IdString": "horikawa_2d", + "FullName": "RAIKO(2D)", + "Name": "RAIKO(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 196, + "IdString": "sakuya_2d", + "FullName": "SAKUYA(2D)", + "Name": "SAKUYA(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 197, + "IdString": "yume_summer", + "FullName": "YUME(summer)", + "Name": "YUME", + "Variant": "(summer)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 198, + "IdString": "atmlogo", + "FullName": "ATTACK THE MUSIC", + "Name": "ATTACK", + "Variant": "THE MUSIC", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 199, + "IdString": "wr-02r", + "FullName": "WR-02R", + "Name": "WR-02R", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 200, + "IdString": "tonakai", + "FullName": "Reindeer", + "Name": "Reindeer", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 201, + "IdString": "dog", + "FullName": "DOG", + "Name": "DOG", + "Variant": "", + "AcquireMethod": "2018 (DOG) anniversary avatar" + }, + { + "Id": 202, + "IdString": "linka_santa", + "FullName": "LINKA(Christmas)", + "Name": "LINKA", + "Variant": "(Christmas)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 203, + "IdString": "yume_santa", + "FullName": "YUME(Christmas)", + "Name": "YUME", + "Variant": "(Christmas)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 204, + "IdString": "ia_ninja", + "FullName": "IA(ninja)", + "Name": "IA", + "Variant": "(ninja)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 205, + "IdString": "one_ninja", + "FullName": "ONE(ninja)", + "Name": "ONE", + "Variant": "(ninja)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 206, + "IdString": "sutadontan", + "FullName": "SUTADONTAN", + "Name": "SUTADONTAN", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 207, + "IdString": "seija", + "FullName": "Xenoa", + "Name": "Xenoa", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 208, + "IdString": "gumi_panda", + "FullName": "GUMI(goggles)", + "Name": "GUMI", + "Variant": "(goggles)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 209, + "IdString": "gumi_datte", + "FullName": "GUMI(school)", + "Name": "GUMI", + "Variant": "(school)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 210, + "IdString": "dog_dot", + "FullName": "DOG(2D)", + "Name": "DOG", + "Variant": "(2D)", + "AcquireMethod": "2018 (DOG) anniversary avatar" + }, + { + "Id": 211, + "IdString": "linka_miko", + "FullName": "LINKA(MIKO)", + "Name": "LINKA", + "Variant": "(MIKO)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 212, + "IdString": "hina", + "FullName": "HINA", + "Name": "HINA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 213, + "IdString": "seine", + "FullName": "SEINE", + "Name": "SEINE", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 214, + "IdString": "mirin_s", + "FullName": "MIRIN(S)", + "Name": "MIRIN", + "Variant": "(S)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 215, + "IdString": "risa_s", + "FullName": "RISA(S)", + "Name": "RISA", + "Variant": "(S)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 216, + "IdString": "nemu_s", + "FullName": "NEMU(S)", + "Name": "NEMU", + "Variant": "(S)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 217, + "IdString": "eimi_s", + "FullName": "EIMI(S)", + "Name": "EIMI", + "Variant": "(S)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 218, + "IdString": "ayane_s", + "FullName": "AYANE(S)", + "Name": "AYANE", + "Variant": "(S)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 219, + "IdString": "rin_s", + "FullName": "RIN(S)", + "Name": "RIN", + "Variant": "(S)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 220, + "IdString": "nagi_s", + "FullName": "NAGI(S)", + "Name": "NAGI", + "Variant": "(S)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 221, + "IdString": "miku_10th", + "FullName": "HATSUNE MIKU(10th)", + "Name": "HATSUNE", + "Variant": "MIKU(10th)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 222, + "IdString": "chen_2d", + "FullName": "CHEN(2D)", + "Name": "CHEN(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 223, + "IdString": "kogasa_2d", + "FullName": "KOGASA(2D)", + "Name": "KOGASA(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 224, + "IdString": "ritmo", + "FullName": "RITMO", + "Name": "RITMO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 225, + "IdString": "figica", + "FullName": "FISICA", + "Name": "FISICA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 226, + "IdString": "linka_school", + "FullName": "LINKA(SCHOOL)", + "Name": "LINKA", + "Variant": "(SCHOOL)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 227, + "IdString": "yume_school", + "FullName": "YUME(SCHOOL)", + "Name": "YUME", + "Variant": "(SCHOOL)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 228, + "IdString": "seine_school", + "FullName": "SEINE(SCHOOL)", + "Name": "SEINE", + "Variant": "(SCHOOL)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 229, + "IdString": "frandre_2d", + "FullName": "FRANDRE(2D)", + "Name": "FRANDRE", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 230, + "IdString": "udongein_2d", + "FullName": "UDONGEIN(2D)", + "Name": "UDONGEIN", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 231, + "IdString": "gear", + "FullName": "GEAR", + "Name": "GEAR", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 232, + "IdString": "scissors", + "FullName": "SCISSORS", + "Name": "SCISSORS", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 233, + "IdString": "bbkkbkk", + "FullName": "B.B.K.K.B.K.K. 1", + "Name": "B.B.K.K.", + "Variant": "B.K.K. 1", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 234, + "IdString": "bbkkbkk2", + "FullName": "B.B.K.K.B.K.K. 2", + "Name": "B.B.K.K.", + "Variant": "B.K.K. 2", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 235, + "IdString": "fb777_phoenix", + "FullName": "FB777(Phoenix)", + "Name": "FB777", + "Variant": "(Phoenix)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 236, + "IdString": "kikkun_phoenix", + "FullName": "KIKKUN(Phoenix)", + "Name": "KIKKUN", + "Variant": "(Phoenix)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 237, + "IdString": "aromahot_phoenix", + "FullName": "aromahot(Phoenix)", + "Name": "aromahot", + "Variant": "(Phoenix)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 238, + "IdString": "eoheoh_phoenix", + "FullName": "eoheoh(Phoenix)", + "Name": "eoheoh", + "Variant": "(Phoenix)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 239, + "IdString": "akane_dot", + "FullName": "AKANE (2Ddot)", + "Name": "AKANE", + "Variant": "(2Ddot)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 240, + "IdString": "aoi_dot", + "FullName": "AOI(2Ddot)", + "Name": "AOI", + "Variant": "(2Ddot)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 241, + "IdString": "akane", + "FullName": "AKANE(Seyana.)", + "Name": "AKANE", + "Variant": "(Seyana.)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 242, + "IdString": "yukari", + "FullName": "YUKARI(Seyana.)", + "Name": "YUKARI", + "Variant": "(Seyana.)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 243, + "IdString": "miku_2018", + "FullName": "HATSUNE MIKU(2018)", + "Name": "HATSUNE", + "Variant": "MIKU(2018)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 244, + "IdString": "jyunko_2d", + "FullName": "JUNKO(2D)", + "Name": "JUNKO(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 245, + "IdString": "mikoko_2d", + "FullName": "MIKOKO(2D)", + "Name": "MIKOKO(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 246, + "IdString": "13", + "FullName": "13", + "Name": "13", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 247, + "IdString": "ririka", + "FullName": "Rilyca", + "Name": "Rilyca", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 248, + "IdString": "gustav", + "FullName": "Gustav Heydrich", + "Name": "Gustav", + "Variant": "Heydrich", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 249, + "IdString": "voidoll", + "FullName": "Voidoll", + "Name": "Voidoll", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 250, + "IdString": "nojarori", + "FullName": "MIKOKO(3D)", + "Name": "MIKOKO(3D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 251, + "IdString": "udongein", + "FullName": "UDONGEIN", + "Name": "UDONGEIN", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 252, + "IdString": "oukokuflag", + "FullName": "Kemomimi Oukoku Flag", + "Name": "Kemomimi", + "Variant": "Oukoku Flag", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 253, + "IdString": "spr_f_maincharad", + "FullName": "Human UNDERTALE", + "Name": "Human", + "Variant": "UNDERTALE", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 254, + "IdString": "spr_flowey", + "FullName": "Flowey UNDERTALE", + "Name": "Flowey", + "Variant": "UNDERTALE", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 255, + "IdString": "spr_heart", + "FullName": "SOUL UNDERTALE", + "Name": "SOUL", + "Variant": "UNDERTALE", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 256, + "IdString": "una_spicy", + "FullName": "OTOMACHI UNA SPICY", + "Name": "OTOMACHI", + "Variant": "UNA(SPICY)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 257, + "IdString": "una_sugar", + "FullName": "OTOMACHI UNA SUGAR", + "Name": "OTOMACHI", + "Variant": "UNA(SUGAR)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 258, + "IdString": "una", + "FullName": "OTOMACHI UNA", + "Name": "OTOMACHI", + "Variant": "UNA", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 259, + "IdString": "kefia", + "FullName": "KEFIR", + "Name": "KEFIR", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 260, + "IdString": "boar", + "FullName": "BOAR", + "Name": "BOAR", + "Variant": "", + "AcquireMethod": "2019 (BOAR) anniversary avatar" + }, + { + "Id": 261, + "IdString": "seine_santa", + "FullName": "SEINE(Christmas)", + "Name": "SEINE", + "Variant": "(Christmas)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 262, + "IdString": "suwako_2d", + "FullName": "SUWAKO(2D)", + "Name": "SUWAKO(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 263, + "IdString": "hikari", + "FullName": "HIKARI", + "Name": "HIKARI", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 264, + "IdString": "tairitsu", + "FullName": "TAIRITSU", + "Name": "TAIRITSU", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 265, + "IdString": "boar_linka", + "FullName": "LINKA&BOAR", + "Name": "LINKA&BOAR", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 266, + "IdString": "ia_cheer", + "FullName": "IA(Cheerleader)", + "Name": "IA", + "Variant": "(Cheerleader)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 267, + "IdString": "one_cheer", + "FullName": "ONE(Cheerleader)", + "Name": "ONE", + "Variant": "(Cheerleader)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 268, + "IdString": "really", + "FullName": "Rarari Really", + "Name": "Rarari Really", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 269, + "IdString": "fairy", + "FullName": "Lalari Fairy", + "Name": "Lalari Fairy", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 270, + "IdString": "clear", + "FullName": "El Clear", + "Name": "El Clear", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 271, + "IdString": "fail", + "FullName": "El Fail", + "Name": "El Fail", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 272, + "IdString": "yuzuki", + "FullName": "YUKARI(2Ddot)", + "Name": "YUKARI", + "Variant": "(2Ddot)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 273, + "IdString": "greatthing", + "FullName": "Great Thing", + "Name": "Great Thing", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 274, + "IdString": "nayutan", + "FullName": "ANDROMEDAKO", + "Name": "ANDRO", + "Variant": "MEDAKO", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 275, + "IdString": "djnobunaga", + "FullName": "DJ NOBUNAGA", + "Name": "DJ", + "Variant": " NOBUNAGA", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 276, + "IdString": "sarasshi", + "FullName": "SARASSY", + "Name": "SARASSY", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 277, + "IdString": "linka_cranky", + "FullName": "LINKA(Cranky)", + "Name": "LINKA", + "Variant": "(Cranky)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 278, + "IdString": "yume_cranky", + "FullName": "YUME(Cranky)", + "Name": "YUME", + "Variant": "(Cranky)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 279, + "IdString": "seine_cranky", + "FullName": "SEINE(Cranky)", + "Name": "SEINE", + "Variant": "(Cranky)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 280, + "IdString": "annoying_dog", + "FullName": "ANNOYING DOG", + "Name": "ANNOYING", + "Variant": "DOG", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 281, + "IdString": "napstablook", + "FullName": "NAPSTA BLOOK", + "Name": "NAPSTA", + "Variant": "BLOOK", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 282, + "IdString": "temmie", + "FullName": "TEMMIE", + "Name": "TEMMIE", + "Variant": "", + "AcquireMethod": "Get via a campaign\nTemmie avatar courtesy of\nTemmie Chang and Betty Kwong." + }, + { + "Id": 283, + "IdString": "reimu_headphone_2d", + "FullName": "REIMU(headphone)", + "Name": "REIMU", + "Variant": "(headphone)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 284, + "IdString": "bun_2d", + "FullName": "SYAMEIMARU(2D)", + "Name": "SYAMEIMARU", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 285, + "IdString": "ito_2d", + "FullName": "SIYO", + "Name": "SIYO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 286, + "IdString": "nero_2d", + "FullName": "NERO", + "Name": "NERO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 287, + "IdString": "okina_2d", + "FullName": "OKINA(2D)", + "Name": "OKINA(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 288, + "IdString": "rino_mai_2d", + "FullName": "SATONO&MAI(2D)", + "Name": "SATONO&MAI", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 289, + "IdString": "rossa_2d", + "FullName": "ROSSA", + "Name": "ROSSA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 290, + "IdString": "siyo_2d", + "FullName": "ITO", + "Name": "ITO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 291, + "IdString": "sui_2d", + "FullName": "SUI", + "Name": "SUI", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 292, + "IdString": "yukari_y_2d", + "FullName": "YUKARI.Y (2D)", + "Name": "YUKARI.Y", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 293, + "IdString": "swallowtail", + "FullName": "swallowtail", + "Name": "swallowtail", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 294, + "IdString": "himetanaka", + "FullName": "HIME TANAKA", + "Name": "HIME", + "Variant": "TANAKA", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 295, + "IdString": "hinasuzuki", + "FullName": "HINA SUZUKI", + "Name": "HINA", + "Variant": "SUZUKI", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 296, + "IdString": "miraiakari_2d", + "FullName": "MIRAI AKARI", + "Name": "MIRAI", + "Variant": "AKARI", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 297, + "IdString": "elizabeth_2d", + "FullName": "ELIZABETH", + "Name": "ELIZABETH", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 298, + "IdString": "akarikizuna_2d", + "FullName": "AKARI KIZUNA", + "Name": "AKARI", + "Variant": "KIZUNA", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 299, + "IdString": "flower_2d", + "FullName": "flower", + "Name": "flower", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 300, + "IdString": "mouse_2d", + "FullName": "LINKA&MOUSE", + "Name": "LINKA", + "Variant": "&MOUSE", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 301, + "IdString": "linka_miko2", + "FullName": "LINKA (MIKO)", + "Name": "LINKA", + "Variant": "(MIKO)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 302, + "IdString": "yume_miko", + "FullName": "YUME (MIKO)", + "Name": "YUME", + "Variant": "(MIKO)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 303, + "IdString": "seine_miko", + "FullName": "SEINE (MIKO)", + "Name": "SEINE", + "Variant": "(MIKO)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 304, + "IdString": "noa_2d", + "FullName": "NoA", + "Name": "NoA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 305, + "IdString": "io_2d", + "FullName": "Io", + "Name": "Io", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 306, + "IdString": "mana_2d", + "FullName": "Mana", + "Name": "Mana", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 307, + "IdString": "meiling_2d", + "FullName": "MEILING(2D)", + "Name": "MEILING", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 308, + "IdString": "patchouli_2d", + "FullName": "PATCHOULI(2D)", + "Name": "PATCHOULI", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 309, + "IdString": "remilia_2d", + "FullName": "REMILIA(2D)", + "Name": "REMILIA", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 310, + "IdString": "saki_2d", + "FullName": "SAKI(2D)", + "Name": "SAKI", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 311, + "IdString": "keiki_2d", + "FullName": "KEIKI(2D)", + "Name": "KEIKI", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 312, + "IdString": "mayumi_2d", + "FullName": "MAYUMI(2D)", + "Name": "MAYUMI", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 313, + "IdString": "luna", + "FullName": "LUNA", + "Name": "LUNA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 314, + "IdString": "buro_2d", + "FullName": "BURO", + "Name": "BURO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 315, + "IdString": "rin_2d", + "FullName": "RIN", + "Name": "RIN", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 316, + "IdString": "marija_2d", + "FullName": "MARIJA", + "Name": "MARIJA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 317, + "IdString": "ymir_2d", + "FullName": "YMIR", + "Name": "YMIR", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 318, + "IdString": "d_siro_2019", + "FullName": "SIRO", + "Name": "SIRO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 319, + "IdString": "mito_tkn", + "FullName": "MITO", + "Name": "MITO", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 320, + "IdString": "lily_2d", + "FullName": "LILY", + "Name": "LILY", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 321, + "IdString": "teruyama_2d", + "FullName": "TERUYAMA", + "Name": "TERUYAMA", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 322, + "IdString": "haneru_2d", + "FullName": "HANERU HIDA", + "Name": "HANERU", + "Variant": "HIDA", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 323, + "IdString": "chuni_2d", + "FullName": "CHUNI PENGUIN", + "Name": "CHUNI", + "Variant": "PENGUIN", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 324, + "IdString": "richt_2d", + "FullName": "RICHTSHUTZE", + "Name": "RICHT", + "Variant": "SHUTZE", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 325, + "IdString": "magellan_2d", + "FullName": "MAGELLAN MAGELLAN", + "Name": "MAGELLAN", + "Variant": "MAGELLAN", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 326, + "IdString": "sakuramiko_2d", + "FullName": "MIKO SAKURA", + "Name": "MIKO", + "Variant": "SAKURA", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 327, + "IdString": "fubuki_2d", + "FullName": "FUBUKI SHIRAKAMI", + "Name": "FUBUKI", + "Variant": "SHIRAKAMI", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 328, + "IdString": "matsuri_2d", + "FullName": "MATSURI NATSUIRO", + "Name": "MATSURI", + "Variant": "NATSUIRO", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 329, + "IdString": "marine_2d", + "FullName": "MARINE HOUSHOU", + "Name": "MARINE", + "Variant": "HOUSHOU", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 330, + "IdString": "satori_2d", + "FullName": "SATORI(2D)", + "Name": "SATORI(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 331, + "IdString": "koishi_2d", + "FullName": "KOISHI(2D)", + "Name": "KOISHI(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 332, + "IdString": "orin_2d", + "FullName": "ORIN(2D)", + "Name": "ORIN(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 333, + "IdString": "utsuho_2d", + "FullName": "UTSUHO(2D)", + "Name": "UTSUHO(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 334, + "IdString": "p4all", + "FullName": "P4ALL(2D)", + "Name": "P4ALL(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 335, + "IdString": "linka10th_2d", + "FullName": "LINKA(Fairy)", + "Name": "LINKA", + "Variant": "(Fairy)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 336, + "IdString": "yume10th_2d", + "FullName": "YUME(Fairy)", + "Name": "YUME", + "Variant": "(Fairy)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 337, + "IdString": "seine10th_2d", + "FullName": "SEINE(Fairy)", + "Name": "SEINE", + "Variant": "(Fairy)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 338, + "IdString": "hime2_2d", + "FullName": "HIME(Ver.2)", + "Name": "HIME", + "Variant": "(Ver.2)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 339, + "IdString": "hina2_2d", + "FullName": "HINA(Ver.2)", + "Name": "HINA", + "Variant": "(Ver.2)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 340, + "IdString": "rinku_2d", + "FullName": "RINKU AIMOTO", + "Name": "RINKU", + "Variant": "AIMOTO", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 341, + "IdString": "kyoko_2d", + "FullName": "KYOKO YAMATE", + "Name": "KYOKO", + "Variant": "YAMATE", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 342, + "IdString": "shouni_2d", + "FullName": "SHONI PENGUIN", + "Name": "SHONI", + "Variant": "PENGUIN", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 343, + "IdString": "survivalzundoko_2d", + "FullName": "SURVIVAL ZUNDOKO", + "Name": "SURVIVAL", + "Variant": "ZUNDOKO", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 344, + "IdString": "nekomiyahinata", + "FullName": "HINATA(2D)", + "Name": "HINATA(2D)", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 345, + "IdString": "hinatavr", + "FullName": "HINATA(VirtuaREAL)", + "Name": "HINATA", + "Variant": "(VirtuaREAL)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 346, + "IdString": "pikameevr", + "FullName": "PIKAMEE(VirtuaREAL)", + "Name": "PIKAMEE", + "Variant": "(VirtuaREAL)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 347, + "IdString": "tomoshikavr", + "FullName": "TOMOSHIKA(VirtuaREAL)", + "Name": "TOMOSHIKA", + "Variant": "(VirtuaREAL)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 348, + "IdString": "akarihoshizaki", + "FullName": "AKARI HOSHIZAKI", + "Name": "AKARI", + "Variant": "HOSHIZAKI", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 349, + "IdString": "yuzufujisawa", + "FullName": "YUZU FUJISAWA", + "Name": "YUZU", + "Variant": "FUJISAWA", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 350, + "IdString": "aoimisumi", + "FullName": "AOI MISUMI", + "Name": "AOI", + "Variant": "MISUMI", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 351, + "IdString": "setsunasumeragi", + "FullName": "SETSUNA SUMERAGI", + "Name": "SETSUNA", + "Variant": "SUMERAGI", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 352, + "IdString": "navinyan", + "FullName": "NAVINYAN", + "Name": "NAVINYAN", + "Variant": "", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 353, + "IdString": "kaguranana", + "FullName": "KAGURANANA(2D)", + "Name": "KAGURANANA", + "Variant": "(2D)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 354, + "IdString": "nanavr", + "FullName": "KAGURANANA(VirtuaREAL)", + "Name": "KAGURANANA", + "Variant": "(VirtuaREAL)", + "AcquireMethod": "Get via a campaign" + }, + { + "Id": 355, + "IdString": "kyovr", + "FullName": "KYO(VirtuaREAL)", + "Name": "KYO", + "Variant": "(VirtuaREAL)", + "AcquireMethod": "Get via a campaign" + } +] \ No newline at end of file diff --git a/MudAdmin/wwwroot/data/navigator.json b/MudAdmin/wwwroot/data/navigator.json new file mode 100644 index 0000000..a92679c --- /dev/null +++ b/MudAdmin/wwwroot/data/navigator.json @@ -0,0 +1,2483 @@ +{ + "Count": 118, + "NavigatorList": [ + { + "Id": 0, + "IdString": "nv001", + "FileName": "yume", + "NameEntry0": { + "NameWithVariant": "YUME", + "NameWithoutVariant": "YUME", + "Variant": "", + "IllustrationCredit": "illustration by 未早" + }, + "NameEntry1": { + "NameWithVariant": "YUME", + "NameWithoutVariant": "YUME", + "Variant": "", + "IllustrationCredit": "illustration by 未早" + }, + "Genre": 1, + "DefaultAvailability": 1, + "ToolTipJp": "ナビゲーターをユメに変更します\nボイスを変更します(CV:高橋菜々美)", + "ToolTipEn": "Change the navigator to YUME\nCV: Nanami Takahashi" + }, + { + "Id": 1, + "IdString": "nv002", + "FileName": "linka", + "NameEntry0": { + "NameWithVariant": "LINKA", + "NameWithoutVariant": "LINKA", + "Variant": "", + "IllustrationCredit": "illustration by ヤスダスズヒト" + }, + "NameEntry1": { + "NameWithVariant": "LINKA", + "NameWithoutVariant": "LINKA", + "Variant": "", + "IllustrationCredit": "illustration by ヤスダスズヒト" + }, + "Genre": 1, + "DefaultAvailability": 2, + "ToolTipJp": "ナビゲーターをリンカに変更します\nボイスを変更します(CV:豊田萌絵)", + "ToolTipEn": "Change the navigator to LINKA\nCV: Jenny Shima" + }, + { + "Id": 2, + "IdString": "nv003", + "FileName": "zundoko", + "NameEntry0": { + "NameWithVariant": "ZUNDOKO", + "NameWithoutVariant": "ZUNDOKO", + "Variant": "", + "IllustrationCredit": "illustration by 雉本ユーヒ" + }, + "NameEntry1": { + "NameWithVariant": "ZUNDOKO", + "NameWithoutVariant": "ZUNDOKO", + "Variant": "", + "IllustrationCredit": "illustration by 雉本ユーヒ" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをフルメタル ずんど子ちゃんに\n変更します\nボイスを変更します(CV:ちよこ)", + "ToolTipEn": "Change the navigator to ZUNDOKO\nCV: Chiyoko" + }, + { + "Id": 3, + "IdString": "nv004", + "FileName": "dontsuku", + "NameEntry0": { + "NameWithVariant": "DONTSUKU", + "NameWithoutVariant": "DONTSUKU", + "Variant": "", + "IllustrationCredit": "illustration by 雉本ユーヒ" + }, + "NameEntry1": { + "NameWithVariant": "DONTSUKU", + "NameWithoutVariant": "DONTSUKU", + "Variant": "", + "IllustrationCredit": "illustration by 雉本ユーヒ" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをポリビニル どんつくくんに\n変更します\nボイスを変更します(CV:さきぴょ)", + "ToolTipEn": "Change the navigator to DONTSUKU\nCV: Sakipyo" + }, + { + "Id": 4, + "IdString": "nv005", + "FileName": "ronmei", + "NameEntry0": { + "NameWithVariant": "RONMEI", + "NameWithoutVariant": "RONMEI", + "Variant": "", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "RONMEI", + "NameWithoutVariant": "RONMEI", + "Variant": "", + "IllustrationCredit": "" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをカンフーガール・ロンメイに\n変更します", + "ToolTipEn": "Change the navigator to RONMEI" + }, + { + "Id": 5, + "IdString": "nv006", + "FileName": "ken", + "NameEntry0": { + "NameWithVariant": "KEN", + "NameWithoutVariant": "KEN", + "Variant": "", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "KEN", + "NameWithoutVariant": "KEN", + "Variant": "", + "IllustrationCredit": "" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをカンフーマスター・拳に\n変更します", + "ToolTipEn": "Change the navigator to KEN" + }, + { + "Id": 6, + "IdString": "nv007", + "FileName": "clb_tomoka", + "NameEntry0": { + "NameWithVariant": "TOMOKA", + "NameWithoutVariant": "TOMOKA", + "Variant": "", + "IllustrationCredit": "illustration by 曽我部修司(FiFS)\n「ピリオドゼロ」より" + }, + "NameEntry1": { + "NameWithVariant": "TOMOKA", + "NameWithoutVariant": "TOMOKA", + "Variant": "", + "IllustrationCredit": "illustration by 曽我部修司(FiFS)\n「ピリオドゼロ」より" + }, + "Genre": 3, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをトモカに変更します\nボイスを変更します(CV:水瀬いのり)", + "ToolTipEn": "Change the navigator to TOMOKA\nCV: Inori Minase" + }, + { + "Id": 7, + "IdString": "nv008", + "FileName": "th_reimu", + "NameEntry0": { + "NameWithVariant": "REIMU", + "NameWithoutVariant": "REIMU", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "REIMU", + "NameWithoutVariant": "REIMU", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを博麗霊夢に変更します", + "ToolTipEn": "Change the navigator to REIMU" + }, + { + "Id": 8, + "IdString": "nv009", + "FileName": "th_marisa", + "NameEntry0": { + "NameWithVariant": "MARISA", + "NameWithoutVariant": "MARISA", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "MARISA", + "NameWithoutVariant": "MARISA", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを霧雨魔理沙に変更します", + "ToolTipEn": "Change the navigator to MARISA" + }, + { + "Id": 9, + "IdString": "nv010", + "FileName": "vl_mikuwinter", + "NameEntry0": { + "NameWithVariant": "MIKU(WINTER)", + "NameWithoutVariant": "MIKU", + "Variant": "(WINTER)", + "IllustrationCredit": "illustration by へちま\n「初音ミク四季シリーズ」より" + }, + "NameEntry1": { + "NameWithVariant": "MIKU(WINTER)", + "NameWithoutVariant": "MIKU", + "Variant": "(WINTER)", + "IllustrationCredit": "illustration by へちま\n「初音ミク四季シリーズ」より" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを初音ミク(冬Ver.)に変更します\nボイスを変更します(ボイスアクター:藤田咲)", + "ToolTipEn": "Change the navigator to MIKU(WINTER)\nCV: Saki Fujita" + }, + { + "Id": 10, + "IdString": "nv011", + "FileName": "vl_nemu", + "NameEntry0": { + "NameWithVariant": "NEMU(VOCALOID)", + "NameWithoutVariant": "NEMU", + "Variant": "(VOCALOID)", + "IllustrationCredit": "illustration by 堀口悠紀子" + }, + "NameEntry1": { + "NameWithVariant": "NEMU(VOCALOID)", + "NameWithoutVariant": "NEMU", + "Variant": "(VOCALOID)", + "IllustrationCredit": "illustration by 堀口悠紀子" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを夢眠ネム(VOCALOID)\nに変更します\nボイスを変更します(CV:夢眠ネム)", + "ToolTipEn": "Change the navigator to NEMU(VOCALOID)\nCV: NEMU(VOCALOID)" + }, + { + "Id": 11, + "IdString": "nv012", + "FileName": "nadia", + "NameEntry0": { + "NameWithVariant": "NADIA", + "NameWithoutVariant": "NADIA", + "Variant": "VIVIE", + "IllustrationCredit": "illustration by 秦 南乃花\n(Nanoha Hata)\n「アルカノイドvsインベーダー」より" + }, + "NameEntry1": { + "NameWithVariant": "NADIA", + "NameWithoutVariant": "NADIA", + "Variant": "VIVIE", + "IllustrationCredit": "illustration by 秦 南乃花\n(Nanoha Hata)\n「アルカノイドvsインベーダー」より" + }, + "Genre": 3, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをナティア・\nヴィヴィーに変更します\nボイスを変更します(CV:嶋澤奈津子)", + "ToolTipEn": "Change the navigator to NADIA VIVIE\nCV: Natsuko Shimazawa" + }, + { + "Id": 12, + "IdString": "nv013", + "FileName": "vl_mikusummer", + "NameEntry0": { + "NameWithVariant": "MIKU(SUMMER)", + "NameWithoutVariant": "MIKU", + "Variant": "(SUMMER)", + "IllustrationCredit": "illustration by さいとうなおき\n「初音ミク四季シリーズ」より" + }, + "NameEntry1": { + "NameWithVariant": "MIKU(SUMMER)", + "NameWithoutVariant": "MIKU", + "Variant": "(SUMMER)", + "IllustrationCredit": "illustration by さいとうなおき\n「初音ミク四季シリーズ」より" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを初音ミク(夏Ver.)に変更します\nボイスを変更します(ボイスアクター:藤田咲)", + "ToolTipEn": "Change the navigator to MIKU(SUMMER)\nCV: Saki Fujita" + }, + { + "Id": 13, + "IdString": "nv014", + "FileName": "doroc", + "NameEntry0": { + "NameWithVariant": "DORO*C", + "NameWithoutVariant": "DORO*C", + "Variant": "", + "IllustrationCredit": "illustration by KEI\n「HARDCORE TANO*C」より" + }, + "NameEntry1": { + "NameWithVariant": "DORO*C", + "NameWithoutVariant": "DORO*C", + "Variant": "", + "IllustrationCredit": "illustration by KEI\n「HARDCORE TANO*C」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをDORO*Cに\n変更します", + "ToolTipEn": "Change the navigator to DORO*C" + }, + { + "Id": 14, + "IdString": "nv015", + "FileName": "th_youmu", + "NameEntry0": { + "NameWithVariant": "YOUMU", + "NameWithoutVariant": "YOUMU ", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "YOUMU", + "NameWithoutVariant": "YOUMU ", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを魂魄妖夢に変更します", + "ToolTipEn": "Change the navigator to YOUMU" + }, + { + "Id": 15, + "IdString": "nv016", + "FileName": "th_sakuya", + "NameEntry0": { + "NameWithVariant": "SAKUYA", + "NameWithoutVariant": "SAKUYA", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "SAKUYA", + "NameWithoutVariant": "SAKUYA", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを十六夜咲夜に変更します", + "ToolTipEn": "Change the navigator to SAKUYA" + }, + { + "Id": 16, + "IdString": "nv017", + "FileName": "miyabi", + "NameEntry0": { + "NameWithVariant": "MIYABI", + "NameWithoutVariant": "MIYABI", + "Variant": "", + "IllustrationCredit": "illustration by Nidy-2D-\n「フィギュアヘッズ エース」より" + }, + "NameEntry1": { + "NameWithVariant": "MIYABI", + "NameWithoutVariant": "MIYABI", + "Variant": "", + "IllustrationCredit": "illustration by Nidy-2D-\n「フィギュアヘッズ エース」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを雅に変更します\nボイスを変更します(CV:高野麻里佳)", + "ToolTipEn": "Change the navigator to MIYABI\nCV: Marika Kouno" + }, + { + "Id": 17, + "IdString": "nv018", + "FileName": "kagura", + "NameEntry0": { + "NameWithVariant": "KAGURA", + "NameWithoutVariant": "KAGURA", + "Variant": "", + "IllustrationCredit": "illustration by Nidy-2D-\n「フィギュアヘッズ エース」より" + }, + "NameEntry1": { + "NameWithVariant": "KAGURA", + "NameWithoutVariant": "KAGURA", + "Variant": "", + "IllustrationCredit": "illustration by Nidy-2D-\n「フィギュアヘッズ エース」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを神楽に変更します\nボイスを変更します(CV:本渡楓)", + "ToolTipEn": "Change the navigator to KAGURA\nCV: Kaede Hondo" + }, + { + "Id": 18, + "IdString": "nv019", + "FileName": "casper", + "NameEntry0": { + "NameWithVariant": "CASPER", + "NameWithoutVariant": "CASPER", + "Variant": "", + "IllustrationCredit": "illustration by 井上淳哉\n「デススマイルズ」より" + }, + "NameEntry1": { + "NameWithVariant": "CASPER", + "NameWithoutVariant": "CASPER", + "Variant": "", + "IllustrationCredit": "illustration by 井上淳哉\n「デススマイルズ」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをキャスパーに変更します", + "ToolTipEn": "Change the navigator to CASPER" + }, + { + "Id": 19, + "IdString": "nv020", + "FileName": "adele", + "NameEntry0": { + "NameWithVariant": "ADELE\u3000FRIEDRICH", + "NameWithoutVariant": "ADELE", + "Variant": "FRIEDRICH", + "IllustrationCredit": "illustration by 山本七式\n「アンダーディフィート」より" + }, + "NameEntry1": { + "NameWithVariant": "ADELE\u3000FRIEDRICH", + "NameWithoutVariant": "ADELE", + "Variant": "FRIEDRICH", + "IllustrationCredit": "illustration by 山本七式\n「アンダーディフィート」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをアデーレ・フリードリッヒ\nに変更します", + "ToolTipEn": "Change the navigator to ADELE FRIEDRICH" + }, + { + "Id": 20, + "IdString": "nv021", + "FileName": "eshiria", + "NameEntry0": { + "NameWithVariant": "ESHIRIA\u3000PORTMAN", + "NameWithoutVariant": "ESHIRIA", + "Variant": "PORTMAN", + "IllustrationCredit": "illustration by ことぶきつかさ\n「雷電Ⅴ」より" + }, + "NameEntry1": { + "NameWithVariant": "ESHIRIA\u3000PORTMAN", + "NameWithoutVariant": "ESHIRIA", + "Variant": "PORTMAN", + "IllustrationCredit": "illustration by ことぶきつかさ\n「雷電Ⅴ」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをエシリア・ポートマン\nに変更します", + "ToolTipEn": "Change the navigator to ESHIRIA PORTMAN" + }, + { + "Id": 21, + "IdString": "nv022", + "FileName": "cirno9", + "NameEntry0": { + "NameWithVariant": "CIRNO (CHIRUPA)", + "NameWithoutVariant": "CIRNO", + "Variant": " (CHIRUPA)", + "IllustrationCredit": "illustration by モタ\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "CIRNO (CHIRUPA)", + "NameWithoutVariant": "CIRNO", + "Variant": " (CHIRUPA)", + "IllustrationCredit": "illustration by モタ\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをチルノ(チルパバージョン)\nに変更します", + "ToolTipEn": "Change the navigator to CIRNO(CHIRUPA)" + }, + { + "Id": 22, + "IdString": "nv023", + "FileName": "yumeschool", + "NameEntry0": { + "NameWithVariant": "YUME (SCHOOL)", + "NameWithoutVariant": "YUME", + "Variant": "(SCHOOL)", + "IllustrationCredit": "illustration by 未早" + }, + "NameEntry1": { + "NameWithVariant": "YUME (SCHOOL)", + "NameWithoutVariant": "YUME", + "Variant": "(SCHOOL)", + "IllustrationCredit": "illustration by 未早" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをユメ(学生服)に変更します\nボイスを変更します(CV:高橋菜々美)", + "ToolTipEn": "Change the navigator to YUME(SCHOOL)\nCV: Nanami Takahashi" + }, + { + "Id": 23, + "IdString": "nv024", + "FileName": "th_shinmyoumaru", + "NameEntry0": { + "NameWithVariant": "SHINMYOUMARU", + "NameWithoutVariant": "SHINMYOU", + "Variant": "MARU", + "IllustrationCredit": "illustration by Kenichirou Furuya\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "SHINMYOUMARU", + "NameWithoutVariant": "SHINMYOU", + "Variant": "MARU", + "IllustrationCredit": "illustration by Kenichirou Furuya\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを少名針妙丸に変更します", + "ToolTipEn": "Change the navigator to SHINMYOUMARU" + }, + { + "Id": 24, + "IdString": "nv025", + "FileName": "th_sanae", + "NameEntry0": { + "NameWithVariant": "SANAE", + "NameWithoutVariant": "SANAE", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "SANAE", + "NameWithoutVariant": "SANAE", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを東風谷早苗に変更します", + "ToolTipEn": "Change the navigator to SANAE" + }, + { + "Id": 25, + "IdString": "nv026", + "FileName": "sutadontan", + "NameEntry0": { + "NameWithVariant": "SUTADONTAN", + "NameWithoutVariant": "SUTADONTAN", + "Variant": "", + "IllustrationCredit": "illustration by 雉本ユーヒ" + }, + "NameEntry1": { + "NameWithVariant": "SUTADONTAN", + "NameWithoutVariant": "SUTADONTAN", + "Variant": "", + "IllustrationCredit": "illustration by 雉本ユーヒ" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをすたどんたん殿下に\n変更します\nボイスを変更します(CV:山本椛)", + "ToolTipEn": "Change the navigator to SUTADONTAN\nCV: Momiji Yamamoto" + }, + { + "Id": 26, + "IdString": "nv027", + "FileName": "yumechristmas", + "NameEntry0": { + "NameWithVariant": "YUME (Xmas)", + "NameWithoutVariant": "YUME", + "Variant": "(Xmas)", + "IllustrationCredit": "illustration by 未早" + }, + "NameEntry1": { + "NameWithVariant": "YUME (Xmas)", + "NameWithoutVariant": "YUME", + "Variant": "(Xmas)", + "IllustrationCredit": "illustration by 未早" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをユメ(クリスマス)に変更します\nボイスを変更します(CV:高橋菜々美)", + "ToolTipEn": "Change the navigator to YUME(Xmas)\nCV: Nanami Takahashi" + }, + { + "Id": 27, + "IdString": "nv028", + "FileName": "vl_ia", + "NameEntry0": { + "NameWithVariant": "IA", + "NameWithoutVariant": "IA", + "Variant": "", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "IA", + "NameWithoutVariant": "IA", + "Variant": "", + "IllustrationCredit": "" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをIAに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to IA" + }, + { + "Id": 28, + "IdString": "nv029", + "FileName": "vl_one", + "NameEntry0": { + "NameWithVariant": "ONE", + "NameWithoutVariant": "ONE", + "Variant": "", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "ONE", + "NameWithoutVariant": "ONE", + "Variant": "", + "IllustrationCredit": "" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをONEに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to ONE" + }, + { + "Id": 29, + "IdString": "nv030", + "FileName": "seija", + "NameEntry0": { + "NameWithVariant": "Xenoa", + "NameWithoutVariant": "Xenoa", + "Variant": "", + "IllustrationCredit": "illustration by AO" + }, + "NameEntry1": { + "NameWithVariant": "Xenoa", + "NameWithoutVariant": "Xenoa", + "Variant": "", + "IllustrationCredit": "illustration by AO" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをゼノアに\n変更します", + "ToolTipEn": "Change the navigator to Xenoa" + }, + { + "Id": 30, + "IdString": "nv031", + "FileName": "clb_mirai", + "NameEntry0": { + "NameWithVariant": "MIRAI", + "NameWithoutVariant": "MIRAI", + "Variant": "", + "IllustrationCredit": "illustration by 曽我部修司(FiFS)\n「ピリオドゼロ」より" + }, + "NameEntry1": { + "NameWithVariant": "MIRAI", + "NameWithoutVariant": "MIRAI", + "Variant": "", + "IllustrationCredit": "illustration by 曽我部修司(FiFS)\n「ピリオドゼロ」より" + }, + "Genre": 3, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをミライに変更します\nボイスを変更します(CV:松田利冴)", + "ToolTipEn": "Change the navigator to MIRAI\nCV: Risae Matsuda" + }, + { + "Id": 31, + "IdString": "nv032", + "FileName": "clb_merlin", + "NameEntry0": { + "NameWithVariant": "NAVI_OWL", + "NameWithoutVariant": "NAVI_OWL", + "Variant": "", + "IllustrationCredit": "illustration by 曽我部修司(FiFS)\n「ピリオドゼロ」より" + }, + "NameEntry1": { + "NameWithVariant": "NAVI_OWL", + "NameWithoutVariant": "NAVI_OWL", + "Variant": "", + "IllustrationCredit": "illustration by 曽我部修司(FiFS)\n「ピリオドゼロ」より" + }, + "Genre": 3, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをナビウルに変更します\nボイスを変更します(CV:田中あいみ)", + "ToolTipEn": "Change the navigator to navi_Owl\nCV: Aimi Tanaka" + }, + { + "Id": 32, + "IdString": "nv033", + "FileName": "vl_gumi", + "NameEntry0": { + "NameWithVariant": "GUMI", + "NameWithoutVariant": "GUMI", + "Variant": "", + "IllustrationCredit": "illustration by ゆうき まさみ\n\u3000(C) INTERNET Co., Ltd." + }, + "NameEntry1": { + "NameWithVariant": "GUMI", + "NameWithoutVariant": "GUMI", + "Variant": "", + "IllustrationCredit": "illustration by ゆうき まさみ\n\u3000(C) INTERNET Co., Ltd." + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをGUMIに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to GUMI" + }, + { + "Id": 33, + "IdString": "nv034", + "FileName": "seine", + "NameEntry0": { + "NameWithVariant": "SEINE", + "NameWithoutVariant": "SEINE", + "Variant": "", + "IllustrationCredit": "illustration by 未早" + }, + "NameEntry1": { + "NameWithVariant": "SEINE", + "NameWithoutVariant": "SEINE", + "Variant": "", + "IllustrationCredit": "illustration by 未早" + }, + "Genre": 1, + "DefaultAvailability": 1, + "ToolTipJp": "ナビゲーターをセイネに変更します\nボイスを変更します(CV:河上英里子)", + "ToolTipEn": "Change the navigator to SEINE" + }, + { + "Id": 34, + "IdString": "nv035", + "FileName": "mirin", + "NameEntry0": { + "NameWithVariant": "MIRIN", + "NameWithoutVariant": "MIRIN", + "Variant": "", + "IllustrationCredit": "illustration by 雉本ユーヒ" + }, + "NameEntry1": { + "NameWithVariant": "MIRIN", + "NameWithoutVariant": "MIRIN", + "Variant": "", + "IllustrationCredit": "illustration by 雉本ユーヒ" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを古川未鈴に変更します\nボイスを変更します(CV:古川未鈴)", + "ToolTipEn": "Change the navigator to MIRIN\nCV: Mirin Furukawa" + }, + { + "Id": 35, + "IdString": "nv036", + "FileName": "chen", + "NameEntry0": { + "NameWithVariant": "CHEN", + "NameWithoutVariant": "CHEN", + "Variant": "", + "IllustrationCredit": "illustration by Kenichirou Furuya\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "CHEN", + "NameWithoutVariant": "CHEN", + "Variant": "", + "IllustrationCredit": "illustration by Kenichirou Furuya\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを橙に変更します", + "ToolTipEn": "Change the navigator to CHEN" + }, + { + "Id": 36, + "IdString": "nv037", + "FileName": "kogasa", + "NameEntry0": { + "NameWithVariant": "KOGASA", + "NameWithoutVariant": "KOGASA", + "Variant": "", + "IllustrationCredit": "illustration by 秦 南乃花\n(Nanoha Hata)\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "KOGASA", + "NameWithoutVariant": "KOGASA", + "Variant": "", + "IllustrationCredit": "illustration by 秦 南乃花\n(Nanoha Hata)\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを多々良小傘に変更します", + "ToolTipEn": "Change the navigator to KOGASA" + }, + { + "Id": 37, + "IdString": "nv038", + "FileName": "vl_miku10th", + "NameEntry0": { + "NameWithVariant": "MIKU(10th)", + "NameWithoutVariant": "MIKU", + "Variant": "(10th)", + "IllustrationCredit": "illustration by 左" + }, + "NameEntry1": { + "NameWithVariant": "MIKU(10th)", + "NameWithoutVariant": "MIKU", + "Variant": "(10th)", + "IllustrationCredit": "illustration by 左" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを\n初音ミク(10周年タイトーオリジナルVer.)\nに変更します\nボイスを変更します(ボイスアクター:藤田咲)", + "ToolTipEn": "Change the navigator to MIKU(10th)\nCV: Saki Fujita" + }, + { + "Id": 38, + "IdString": "nv039", + "FileName": "seinebikini", + "NameEntry0": { + "NameWithVariant": "SEINE(BIKINI)", + "NameWithoutVariant": "SEINE", + "Variant": "(BIKINI)", + "IllustrationCredit": "illustration by 未早" + }, + "NameEntry1": { + "NameWithVariant": "SEINE(BIKINI)", + "NameWithoutVariant": "SEINE", + "Variant": "(BIKINI)", + "IllustrationCredit": "illustration by 未早" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをセイネ(ビキニ)\nに変更します\nボイスを変更します(CV:河上英里子)", + "ToolTipEn": "Change the navigator to SEINE(BIKINI)\nCV: Eriko Kawakami" + }, + { + "Id": 39, + "IdString": "nv040", + "FileName": "frandre", + "NameEntry0": { + "NameWithVariant": "FRANDRE", + "NameWithoutVariant": "FRANDRE", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "FRANDRE", + "NameWithoutVariant": "FRANDRE", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをフランドール・スカーレット\nに変更します", + "ToolTipEn": "Change the navigator to FRANDRE" + }, + { + "Id": 40, + "IdString": "nv041", + "FileName": "vl_akane", + "NameEntry0": { + "NameWithVariant": "AKANE GYARI Ver.", + "NameWithoutVariant": "AKANE", + "Variant": "GYARI Ver.", + "IllustrationCredit": "illustration by GYARI" + }, + "NameEntry1": { + "NameWithVariant": "AKANE GYARI Ver.", + "NameWithoutVariant": "AKANE", + "Variant": "GYARI Ver.", + "IllustrationCredit": "illustration by GYARI" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを琴葉茜(GYARI Ver.)\nに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to AKANE(GYARI Ver.)" + }, + { + "Id": 41, + "IdString": "nv042", + "FileName": "vl_gumi_hatsuko", + "NameEntry0": { + "NameWithVariant": "GUMI hatsuko Ver.", + "NameWithoutVariant": "GUMI", + "Variant": "hatsuko Ver.", + "IllustrationCredit": "illustration by hatsuko\n\u3000(C) INTERNET Co., Ltd." + }, + "NameEntry1": { + "NameWithVariant": "GUMI hatsuko Ver.", + "NameWithoutVariant": "GUMI", + "Variant": "hatsuko Ver.", + "IllustrationCredit": "illustration by hatsuko\n\u3000(C) INTERNET Co., Ltd." + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをGUMI(hatsuko Ver.)に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to GUMI(hatsuko Ver.)" + }, + { + "Id": 42, + "IdString": "nv043", + "FileName": "seinegyari", + "NameEntry0": { + "NameWithVariant": "SEINE GYARI Ver.", + "NameWithoutVariant": "SEINE", + "Variant": "GYARI Ver.", + "IllustrationCredit": "illustration by GYARI" + }, + "NameEntry1": { + "NameWithVariant": "SEINE GYARI Ver.", + "NameWithoutVariant": "SEINE", + "Variant": "GYARI Ver.", + "IllustrationCredit": "illustration by GYARI" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをセイネ(GYARI Ver.)\nに変更します\nボイスを変更します(CV:河上英里子)", + "ToolTipEn": "Change the navigator to SEINE(GYARI Ver.)\nCV: Eriko Kawakami" + }, + { + "Id": 43, + "IdString": "nv044", + "FileName": "mikoko", + "NameEntry0": { + "NameWithVariant": "MIKOKO", + "NameWithoutVariant": "MIKOKO", + "Variant": "", + "IllustrationCredit": "illustration by ねこます" + }, + "NameEntry1": { + "NameWithVariant": "MIKOKO", + "NameWithoutVariant": "MIKOKO", + "Variant": "", + "IllustrationCredit": "illustration by ねこます" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをみここに変更します\nボイスを変更します(CV:ねこます)", + "ToolTipEn": "Change the navigator to MIKOKO\nCV: Nekomasu" + }, + { + "Id": 44, + "IdString": "nv045", + "FileName": "voidoll", + "NameEntry0": { + "NameWithVariant": "Voidoll", + "NameWithoutVariant": "Voidoll", + "Variant": "", + "IllustrationCredit": "illustration by ちゃもーい\n「#コンパス\n戦闘摂理解析システム」より" + }, + "NameEntry1": { + "NameWithVariant": "Voidoll", + "NameWithoutVariant": "Voidoll", + "Variant": "", + "IllustrationCredit": "illustration by ちゃもーい\n「#コンパス\n戦闘摂理解析システム」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをVoidollに変更します", + "ToolTipEn": "Change the navigator to Voidoll" + }, + { + "Id": 45, + "IdString": "nv046", + "FileName": "13", + "NameEntry0": { + "NameWithVariant": "13", + "NameWithoutVariant": "13", + "Variant": "", + "IllustrationCredit": "illustration by 緋紅 & NHN PlayArt\n「#コンパス\n戦闘摂理解析システム」より" + }, + "NameEntry1": { + "NameWithVariant": "13", + "NameWithoutVariant": "13", + "Variant": "", + "IllustrationCredit": "illustration by 緋紅 & NHN PlayArt\n「#コンパス\n戦闘摂理解析システム」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを\n13+サーティーン+に変更します", + "ToolTipEn": "Change the navigator to 13" + }, + { + "Id": 46, + "IdString": "nv047", + "FileName": "vl_mikumm", + "NameEntry0": { + "NameWithVariant": "MIKU(MAGICAL MIRAI)", + "NameWithoutVariant": "MIKU", + "Variant": "MagicalMirai", + "IllustrationCredit": "illustration by Mika Pikazo" + }, + "NameEntry1": { + "NameWithVariant": "MIKU(MAGICAL MIRAI)", + "NameWithoutVariant": "MIKU", + "Variant": "MagicalMirai", + "IllustrationCredit": "illustration by Mika Pikazo" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを\n初音ミク(マジカルミライ2018 Ver.)\nに変更します\nボイスを変更します(ボイスアクター:藤田咲)", + "ToolTipEn": "Change the navigator to\nMIKU(MAGICAL MIRAI)\nCV: Saki Fujita" + }, + { + "Id": 47, + "IdString": "nv048", + "FileName": "udonge", + "NameEntry0": { + "NameWithVariant": "UDONGEIN", + "NameWithoutVariant": "UDONGEIN", + "Variant": "", + "IllustrationCredit": "illustration by Sara Matsuura\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "UDONGEIN", + "NameWithoutVariant": "UDONGEIN", + "Variant": "", + "IllustrationCredit": "illustration by Sara Matsuura\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを鈴仙・優曇華院・イナバ\nに変更します", + "ToolTipEn": "Change the navigator to UDONGEIN" + }, + { + "Id": 48, + "IdString": "nv049", + "FileName": "jyunko", + "NameEntry0": { + "NameWithVariant": "JUNKO", + "NameWithoutVariant": "JUNKO", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "JUNKO", + "NameWithoutVariant": "JUNKO", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを純狐に変更します", + "ToolTipEn": "Change the navigator to JUNKO" + }, + { + "Id": 49, + "IdString": "nv050", + "FileName": "kefir", + "NameEntry0": { + "NameWithVariant": "KEFIR KOIZUMI", + "NameWithoutVariant": "KEFIR", + "Variant": "KOIZUMI", + "IllustrationCredit": "illustration by ひろひろき" + }, + "NameEntry1": { + "NameWithVariant": "KEFIR KOIZUMI", + "NameWithoutVariant": "KEFIR", + "Variant": "KOIZUMI", + "IllustrationCredit": "illustration by ひろひろき" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを小泉ケフィアに変更します", + "ToolTipEn": "Change the navigator to KEFIA KOIZUMI" + }, + { + "Id": 50, + "IdString": "nv051", + "FileName": "vl_una", + "NameEntry0": { + "NameWithVariant": "UNA OTOMACHI", + "NameWithoutVariant": "UNA", + "Variant": "OTOMACHI", + "IllustrationCredit": "(C)MTK / INTERNET Co., Ltd." + }, + "NameEntry1": { + "NameWithVariant": "UNA OTOMACHI", + "NameWithoutVariant": "UNA", + "Variant": "OTOMACHI", + "IllustrationCredit": "(C)MTK / INTERNET Co., Ltd." + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを音街ウナに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to UNA OTOMACHI" + }, + { + "Id": 51, + "IdString": "nv052", + "FileName": "seine5th", + "NameEntry0": { + "NameWithVariant": "SEINE (PRINCESS)", + "NameWithoutVariant": "SEINE", + "Variant": "(PRINCESS)", + "IllustrationCredit": "illustration by 未早" + }, + "NameEntry1": { + "NameWithVariant": "SEINE (PRINCESS)", + "NameWithoutVariant": "SEINE", + "Variant": "(PRINCESS)", + "IllustrationCredit": "illustration by 未早" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをセイネ(プリンセス)\nに変更します\nボイスを変更します(CV:河上英里子)", + "ToolTipEn": "Change the navigator to SEINE(PRINCESS)\nCV: Eriko Kawakami" + }, + { + "Id": 52, + "IdString": "nv053", + "FileName": "suwako", + "NameEntry0": { + "NameWithVariant": "SUWAKO", + "NameWithoutVariant": "SUWAKO", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "SUWAKO", + "NameWithoutVariant": "SUWAKO", + "Variant": "", + "IllustrationCredit": "illustration by Sody\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを洩矢諏訪子\nに変更します", + "ToolTipEn": "Change the navigator to SUWAKO" + }, + { + "Id": 53, + "IdString": "nv054", + "FileName": "sans", + "NameEntry0": { + "NameWithVariant": "Sans", + "NameWithoutVariant": "Sans", + "Variant": "", + "IllustrationCredit": "「UNDERTALE」より" + }, + "NameEntry1": { + "NameWithVariant": "Sans", + "NameWithoutVariant": "Sans", + "Variant": "", + "IllustrationCredit": "「UNDERTALE」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをサンズに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to Sans" + }, + { + "Id": 54, + "IdString": "nv055", + "FileName": "hikari", + "NameEntry0": { + "NameWithVariant": "HIKARI", + "NameWithoutVariant": "HIKARI", + "Variant": "", + "IllustrationCredit": "「Arcaea」より\n(C)lowiro 2019" + }, + "NameEntry1": { + "NameWithVariant": "HIKARI", + "NameWithoutVariant": "HIKARI", + "Variant": "", + "IllustrationCredit": "「Arcaea」より\n(C)lowiro 2019" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを光に変更します", + "ToolTipEn": "Change the navigator to Hikari" + }, + { + "Id": 55, + "IdString": "nv056", + "FileName": "tairitsu", + "NameEntry0": { + "NameWithVariant": "TAIRITSU", + "NameWithoutVariant": "TAIRITSU", + "Variant": "", + "IllustrationCredit": "「Arcaea」より\n(C)lowiro 2019" + }, + "NameEntry1": { + "NameWithVariant": "TAIRITSU", + "NameWithoutVariant": "TAIRITSU", + "Variant": "", + "IllustrationCredit": "「Arcaea」より\n(C)lowiro 2019" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを対立に変更します", + "ToolTipEn": "Change the navigator to Tairitsu" + }, + { + "Id": 56, + "IdString": "nv057", + "FileName": "really", + "NameEntry0": { + "NameWithVariant": "Rarari Really", + "NameWithoutVariant": "Rarari", + "Variant": "Really", + "IllustrationCredit": "illustration by ひろひろき" + }, + "NameEntry1": { + "NameWithVariant": "Rarari Really", + "NameWithoutVariant": "Rarari", + "Variant": "Really", + "IllustrationCredit": "illustration by ひろひろき" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをRa々理りありに変更します", + "ToolTipEn": "Change the navigator to Rarari Really" + }, + { + "Id": 57, + "IdString": "nv058", + "FileName": "fairy", + "NameEntry0": { + "NameWithVariant": "Lalari Fairy", + "NameWithoutVariant": "Lalari", + "Variant": "Fairy", + "IllustrationCredit": "illustration by ひろひろき" + }, + "NameEntry1": { + "NameWithVariant": "Lalari Fairy", + "NameWithoutVariant": "Lalari", + "Variant": "Fairy", + "IllustrationCredit": "illustration by ひろひろき" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをLa々理ふぇありに変更します", + "ToolTipEn": "Change the navigator to Lalari Fairy" + }, + { + "Id": 58, + "IdString": "nv059", + "FileName": "sakuyacc", + "NameEntry0": { + "NameWithVariant": "SAKUYA(Cool&Create)", + "NameWithoutVariant": "SAKUYA", + "Variant": "Cool&Create", + "IllustrationCredit": "illustration by 未影\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "SAKUYA(Cool&Create)", + "NameWithoutVariant": "SAKUYA", + "Variant": "Cool&Create", + "IllustrationCredit": "illustration by 未影\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを十六夜咲夜\n(COOL&CREATE Ver.)\nに変更します", + "ToolTipEn": "Change the navigator to SAKUYA\n(COOL&CREATE Ver.)" + }, + { + "Id": 59, + "IdString": "nv060", + "FileName": "clear", + "NameEntry0": { + "NameWithVariant": "EL CLEAR", + "NameWithoutVariant": "EL CLEAR", + "Variant": "", + "IllustrationCredit": "「DJMAX RESPECT」より" + }, + "NameEntry1": { + "NameWithVariant": "EL CLEAR", + "NameWithoutVariant": "EL CLEAR", + "Variant": "", + "IllustrationCredit": "「DJMAX RESPECT」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをエル・クレアに変更します", + "ToolTipEn": "Change the navigator to El Clear" + }, + { + "Id": 60, + "IdString": "nv061", + "FileName": "fail", + "NameEntry0": { + "NameWithVariant": "EL FAIL", + "NameWithoutVariant": "EL FAIL", + "Variant": "", + "IllustrationCredit": "「DJMAX RESPECT」より" + }, + "NameEntry1": { + "NameWithVariant": "EL FAIL", + "NameWithoutVariant": "EL FAIL", + "Variant": "", + "IllustrationCredit": "「DJMAX RESPECT」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをエル・フェイルに変更します", + "ToolTipEn": "Change the navigator to El Fail" + }, + { + "Id": 61, + "IdString": "nv062", + "FileName": "vl_yukari", + "NameEntry0": { + "NameWithVariant": "YUKARI YUZUKI", + "NameWithoutVariant": "YUKARI", + "Variant": "YUZUKI", + "IllustrationCredit": "(c)VOCALOMAKETS Powered by \nBumpy Factory Corporation." + }, + "NameEntry1": { + "NameWithVariant": "YUKARI YUZUKI", + "NameWithoutVariant": "YUKARI", + "Variant": "YUZUKI", + "IllustrationCredit": "(c)VOCALOMAKETS Powered by \nBumpy Factory Corporation." + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを結月ゆかりに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to YUKARI YUZUKI" + }, + { + "Id": 62, + "IdString": "nv063", + "FileName": "andromedako", + "NameEntry0": { + "NameWithVariant": "ANDROMEDAKO", + "NameWithoutVariant": "ANDRO", + "Variant": "MEDAKO", + "IllustrationCredit": "illustration by NayutalieN" + }, + "NameEntry1": { + "NameWithVariant": "ANDROMEDAKO", + "NameWithoutVariant": "ANDRO", + "Variant": "MEDAKO", + "IllustrationCredit": "illustration by NayutalieN" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをアンドロメダ子に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to ANDROMEDAKO" + }, + { + "Id": 63, + "IdString": "nv064", + "FileName": "seinenayutan", + "NameEntry0": { + "NameWithVariant": "SEINE NAYUTAN Ver.", + "NameWithoutVariant": "SEINE", + "Variant": "NAYUTANver.", + "IllustrationCredit": "illustration by Kenichirou Furuya\nsupervised by NayutalieN" + }, + "NameEntry1": { + "NameWithVariant": "SEINE NAYUTAN Ver.", + "NameWithoutVariant": "SEINE", + "Variant": "NAYUTANver.", + "IllustrationCredit": "illustration by Kenichirou Furuya\nsupervised by NayutalieN" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをセイネ\n(ナユタン星人Ver.)に変更します\nボイスを変更します(CV:河上英里子)", + "ToolTipEn": "Change the navigator to SEINE(NAYUTANver.)\nCV: Eriko Kawakami" + }, + { + "Id": 64, + "IdString": "nv065", + "FileName": "cirnosun", + "NameEntry0": { + "NameWithVariant": "CIRNO (SUNTAN)", + "NameWithoutVariant": "CIRNO", + "Variant": "SUNTAN", + "IllustrationCredit": "illustration by Tomoko Tachibana\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "CIRNO (SUNTAN)", + "NameWithoutVariant": "CIRNO", + "Variant": "SUNTAN", + "IllustrationCredit": "illustration by Tomoko Tachibana\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを日焼けしたチルノに変更します", + "ToolTipEn": "Change the navigator to CIRNO\n(SUNTAN)" + }, + { + "Id": 65, + "IdString": "nv066", + "FileName": "sui", + "NameEntry0": { + "NameWithVariant": "SUI", + "NameWithoutVariant": "SUI", + "Variant": "", + "IllustrationCredit": "「DJMAX RESPECT」より" + }, + "NameEntry1": { + "NameWithVariant": "SUI", + "NameWithoutVariant": "SUI", + "Variant": "", + "IllustrationCredit": "「DJMAX RESPECT」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをスイに変更します", + "ToolTipEn": "Change the navigator to Sui" + }, + { + "Id": 66, + "IdString": "nv067", + "FileName": "papyrus", + "NameEntry0": { + "NameWithVariant": "Papyrus", + "NameWithoutVariant": "Papyrus", + "Variant": "", + "IllustrationCredit": "「UNDERTALE」より" + }, + "NameEntry1": { + "NameWithVariant": "Papyrus", + "NameWithoutVariant": "Papyrus", + "Variant": "", + "IllustrationCredit": "「UNDERTALE」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをパピルスに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to Papyrus" + }, + { + "Id": 67, + "IdString": "nv068", + "FileName": "okina", + "NameEntry0": { + "NameWithVariant": "OKINA", + "NameWithoutVariant": "OKINA", + "Variant": "", + "IllustrationCredit": "illustration by 秦 南乃花\n(Nanoha Hata)\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "OKINA", + "NameWithoutVariant": "OKINA", + "Variant": "", + "IllustrationCredit": "illustration by 秦 南乃花\n(Nanoha Hata)\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを摩多羅隠岐奈に変更します", + "ToolTipEn": "Change the navigator to OKINA" + }, + { + "Id": 68, + "IdString": "nv069", + "FileName": "ritmo", + "NameEntry0": { + "NameWithVariant": "RITMO", + "NameWithoutVariant": "RITMO", + "Variant": "", + "IllustrationCredit": "「Lanota」より" + }, + "NameEntry1": { + "NameWithVariant": "RITMO", + "NameWithoutVariant": "RITMO", + "Variant": "", + "IllustrationCredit": "「Lanota」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをリツモに変更します", + "ToolTipEn": "Change the navigator to Ritomo" + }, + { + "Id": 69, + "IdString": "nv070", + "FileName": "fisica", + "NameEntry0": { + "NameWithVariant": "FISICA", + "NameWithoutVariant": "FISICA", + "Variant": "", + "IllustrationCredit": "「Lanota」より" + }, + "NameEntry1": { + "NameWithVariant": "FISICA", + "NameWithoutVariant": "FISICA", + "Variant": "", + "IllustrationCredit": "「Lanota」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをフィシカに変更します", + "ToolTipEn": "Change the navigator to Fisica" + }, + { + "Id": 70, + "IdString": "nv071", + "FileName": "yukari", + "NameEntry0": { + "NameWithVariant": "YUKARI YAKUMO", + "NameWithoutVariant": "YUKARI", + "Variant": "YAKUMO", + "IllustrationCredit": "illustration by 未影\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "YUKARI YAKUMO", + "NameWithoutVariant": "YUKARI", + "Variant": "YAKUMO", + "IllustrationCredit": "illustration by 未影\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを八雲紫に変更します", + "ToolTipEn": "Change the navigator to YUKARI YAKUMO" + }, + { + "Id": 71, + "IdString": "nv072", + "FileName": "himetanaka", + "NameEntry0": { + "NameWithVariant": "HIME TANAKA", + "NameWithoutVariant": "HIME", + "Variant": "TANAKA", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "HIME TANAKA", + "NameWithoutVariant": "HIME", + "Variant": "TANAKA", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを田中ヒメに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to HIME TANAKA" + }, + { + "Id": 72, + "IdString": "nv073", + "FileName": "hinasuzuki", + "NameEntry0": { + "NameWithVariant": "HINA SUZUKI", + "NameWithoutVariant": "HINA", + "Variant": "SUZUKI", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "HINA SUZUKI", + "NameWithoutVariant": "HINA", + "Variant": "SUZUKI", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを鈴木ヒナに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to HINA SUZUKI" + }, + { + "Id": 73, + "IdString": "nv074", + "FileName": "reimu_tsb", + "NameEntry0": { + "NameWithVariant": "REIMU (TSB)", + "NameWithoutVariant": "REIMU", + "Variant": "(TSB)", + "IllustrationCredit": "illustration by 藤ちょこ\n「東方スペルバブル」より" + }, + "NameEntry1": { + "NameWithVariant": "REIMU (TSB)", + "NameWithoutVariant": "REIMU", + "Variant": "(TSB)", + "IllustrationCredit": "illustration by 藤ちょこ\n「東方スペルバブル」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを博麗霊夢\n(東方スペルバブル)に変更します", + "ToolTipEn": "Change the navigator to REIMU (TSB)" + }, + { + "Id": 74, + "IdString": "nv075", + "FileName": "marisa_tsb", + "NameEntry0": { + "NameWithVariant": "MARISA (TSB)", + "NameWithoutVariant": "MARISA", + "Variant": "(TSB)", + "IllustrationCredit": "illustration by 荻pote\n「東方スペルバブル」より" + }, + "NameEntry1": { + "NameWithVariant": "MARISA (TSB)", + "NameWithoutVariant": "MARISA", + "Variant": "(TSB)", + "IllustrationCredit": "illustration by 荻pote\n「東方スペルバブル」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを霧雨魔理沙\n(東方スペルバブル)に変更します", + "ToolTipEn": "Change the navigator to MARISA (TSB)" + }, + { + "Id": 75, + "IdString": "nv076", + "FileName": "miraiakari", + "NameEntry0": { + "NameWithVariant": "MIRAI AKARI", + "NameWithoutVariant": "MIRAI", + "Variant": "AKARI", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "MIRAI AKARI", + "NameWithoutVariant": "MIRAI", + "Variant": "AKARI", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをミライアカリに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to MIRAI AKARI" + }, + { + "Id": 76, + "IdString": "nv077", + "FileName": "elizabeth", + "NameEntry0": { + "NameWithVariant": "ELIZABETH", + "NameWithoutVariant": "ELIZABETH", + "Variant": "", + "IllustrationCredit": "illustration by LAM\n「WACCA」より" + }, + "NameEntry1": { + "NameWithVariant": "ELIZABETH", + "NameWithoutVariant": "ELIZABETH", + "Variant": "", + "IllustrationCredit": "illustration by LAM\n「WACCA」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをエリザベスに変更します\nボイスを変更します(CV:大西沙織)", + "ToolTipEn": "Change the navigator to ELIZABETH\nCV: Saori Onishi" + }, + { + "Id": 77, + "IdString": "nv078", + "FileName": "akarikizuna", + "NameEntry0": { + "NameWithVariant": "KIZUNA AKARI", + "NameWithoutVariant": "KIZUNA", + "Variant": "AKARI", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "KIZUNA AKARI", + "NameWithoutVariant": "KIZUNA", + "Variant": "AKARI", + "IllustrationCredit": "" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを紲星あかりに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to KIZUNA AKARI" + }, + { + "Id": 78, + "IdString": "nv079", + "FileName": "flower_v4", + "NameEntry0": { + "NameWithVariant": "FLOWER (V4)", + "NameWithoutVariant": "FLOWER", + "Variant": "(V4)", + "IllustrationCredit": "illustration by △〇□×" + }, + "NameEntry1": { + "NameWithVariant": "FLOWER (V4)", + "NameWithoutVariant": "FLOWER", + "Variant": "(V4)", + "IllustrationCredit": "illustration by △〇□×" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをflower(V4)に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to flower(V4)" + }, + { + "Id": 79, + "IdString": "nv080", + "FileName": "flower_talk", + "NameEntry0": { + "NameWithVariant": "FLOWER (Talk)", + "NameWithoutVariant": "FLOWER", + "Variant": "(Talk)", + "IllustrationCredit": "illustration by △〇□×" + }, + "NameEntry1": { + "NameWithVariant": "FLOWER (Talk)", + "NameWithoutVariant": "FLOWER", + "Variant": "(Talk)", + "IllustrationCredit": "illustration by △〇□×" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをflower(Talk)に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to flower(Talk)" + }, + { + "Id": 80, + "IdString": "nv081", + "FileName": "noa", + "NameEntry0": { + "NameWithVariant": "NoA", + "NameWithoutVariant": "NoA", + "Variant": "", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "NoA", + "NameWithoutVariant": "NoA", + "Variant": "", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをNoAに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to NoA" + }, + { + "Id": 81, + "IdString": "nv082", + "FileName": "io", + "NameEntry0": { + "NameWithVariant": "Io", + "NameWithoutVariant": "Io", + "Variant": "", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "Io", + "NameWithoutVariant": "Io", + "Variant": "", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをIoに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to Io" + }, + { + "Id": 82, + "IdString": "nv083", + "FileName": "mana", + "NameEntry0": { + "NameWithVariant": "Mana", + "NameWithoutVariant": "Mana", + "Variant": "", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "Mana", + "NameWithoutVariant": "Mana", + "Variant": "", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをManaに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to Mana" + }, + { + "Id": 83, + "IdString": "nv084", + "FileName": "remilia", + "NameEntry0": { + "NameWithVariant": "REMILIA", + "NameWithoutVariant": "REMILIA", + "Variant": "", + "IllustrationCredit": "illustration by Kenichirou Furuya\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "REMILIA", + "NameWithoutVariant": "REMILIA", + "Variant": "", + "IllustrationCredit": "illustration by Kenichirou Furuya\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをレミリア・\nスカーレットに変更します", + "ToolTipEn": "Change the navigator to REMILIA" + }, + { + "Id": 84, + "IdString": "nv085", + "FileName": "luna", + "NameEntry0": { + "NameWithVariant": "LUNA", + "NameWithoutVariant": "LUNA", + "Variant": "", + "IllustrationCredit": "「Arcaea」より\n(C)lowiro 2020" + }, + "NameEntry1": { + "NameWithVariant": "LUNA", + "NameWithoutVariant": "LUNA", + "Variant": "", + "IllustrationCredit": "「Arcaea」より\n(C)lowiro 2020" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをルナに変更します", + "ToolTipEn": "Change the navigator to Luna" + }, + { + "Id": 85, + "IdString": "nv086", + "FileName": "vl_aoi", + "NameEntry0": { + "NameWithVariant": "AOI GYARI Ver.", + "NameWithoutVariant": "AOI", + "Variant": "GYARI Ver.", + "IllustrationCredit": "illustration by GYARI" + }, + "NameEntry1": { + "NameWithVariant": "AOI GYARI Ver.", + "NameWithoutVariant": "AOI", + "Variant": "GYARI Ver.", + "IllustrationCredit": "illustration by GYARI" + }, + "Genre": 5, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを琴葉葵(GYARI Ver.)\nに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to AOI(GYARI Ver.)" + }, + { + "Id": 86, + "IdString": "nv087", + "FileName": "saki", + "NameEntry0": { + "NameWithVariant": "SAKI", + "NameWithoutVariant": "SAKI", + "Variant": "", + "IllustrationCredit": "illustration by MAKI\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "SAKI", + "NameWithoutVariant": "SAKI", + "Variant": "", + "IllustrationCredit": "illustration by MAKI\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを驪駒早鬼に変更します", + "ToolTipEn": "Change the navigator to SAKI" + }, + { + "Id": 87, + "IdString": "nv088", + "FileName": "buro", + "NameEntry0": { + "NameWithVariant": "BURO", + "NameWithoutVariant": "BURO", + "Variant": "", + "IllustrationCredit": "「Muse Dash」より" + }, + "NameEntry1": { + "NameWithVariant": "BURO", + "NameWithoutVariant": "BURO", + "Variant": "", + "IllustrationCredit": "「Muse Dash」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをブロウに変更します\nボイスを変更します(CV:甘束まお)", + "ToolTipEn": "Change the navigator to BURO\nCV: Mao Amatsuka" + }, + { + "Id": 88, + "IdString": "nv089", + "FileName": "ymir", + "NameEntry0": { + "NameWithVariant": "YMIR", + "NameWithoutVariant": "YMIR", + "Variant": "", + "IllustrationCredit": "illustration by 未早" + }, + "NameEntry1": { + "NameWithVariant": "YMIR", + "NameWithoutVariant": "YMIR", + "Variant": "", + "IllustrationCredit": "illustration by 未早" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをユミルに変更します", + "ToolTipEn": "Change the navigator to Ymir" + }, + { + "Id": 89, + "IdString": "nv090", + "FileName": "siro", + "NameEntry0": { + "NameWithVariant": "SIRO", + "NameWithoutVariant": "SIRO", + "Variant": "", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "SIRO", + "NameWithoutVariant": "SIRO", + "Variant": "", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを電脳少女シロに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to SIRO" + }, + { + "Id": 90, + "IdString": "nv091", + "FileName": "mito", + "NameEntry0": { + "NameWithVariant": "MITO TSUKINO", + "NameWithoutVariant": "MITO", + "Variant": "TSUKINO", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "MITO TSUKINO", + "NameWithoutVariant": "MITO", + "Variant": "TSUKINO", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを月ノ美兎に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to MITO TSUKINO" + }, + { + "Id": 91, + "IdString": "nv092", + "FileName": "lily", + "NameEntry0": { + "NameWithVariant": "LILY", + "NameWithoutVariant": "LILY", + "Variant": "", + "IllustrationCredit": "illustration by LAM\n「WACCA」より" + }, + "NameEntry1": { + "NameWithVariant": "LILY", + "NameWithoutVariant": "LILY", + "Variant": "", + "IllustrationCredit": "illustration by LAM\n「WACCA」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをリリィに変更します\nボイスを変更します(CV:青木志貴)", + "ToolTipEn": "Change the navigator to LILY\nCV: Shiki Aoki" + }, + { + "Id": 92, + "IdString": "nv093", + "FileName": "reimu_lw", + "NameEntry0": { + "NameWithVariant": "REIMU(TouhouLW)", + "NameWithoutVariant": "REIMU", + "Variant": "(TouhouLW)", + "IllustrationCredit": "illustration by 夢野ろて\n「東方LostWord」より\n(C)上海アリス幻樂団 (C)GSC/NN" + }, + "NameEntry1": { + "NameWithVariant": "REIMU(TouhouLW)", + "NameWithoutVariant": "REIMU", + "Variant": "(TouhouLW)", + "IllustrationCredit": "illustration by 夢野ろて\n「東方LostWord」より\n(C)上海アリス幻樂団 (C)GSC/NN" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを博麗霊夢\n(東方LostWord)に変更します", + "ToolTipEn": "Change the navigator to REIMU(TouhouLW)" + }, + { + "Id": 93, + "IdString": "nv094", + "FileName": "marisa_lw", + "NameEntry0": { + "NameWithVariant": "MARISA(TouhouLW)", + "NameWithoutVariant": "MARISA", + "Variant": "(TouhouLW)", + "IllustrationCredit": "illustration by 夢野ろて\n「東方LostWord」より\n(C)上海アリス幻樂団 (C)GSC/NN" + }, + "NameEntry1": { + "NameWithVariant": "MARISA(TouhouLW)", + "NameWithoutVariant": "MARISA", + "Variant": "(TouhouLW)", + "IllustrationCredit": "illustration by 夢野ろて\n「東方LostWord」より\n(C)上海アリス幻樂団 (C)GSC/NN" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを霧雨魔理沙\n(東方LostWord)に変更します", + "ToolTipEn": "Change the navigator to MARISA(TouhouLW)" + }, + { + "Id": 94, + "IdString": "nv095", + "FileName": "chuni", + "NameEntry0": { + "NameWithVariant": "CHUNI PENGUIN", + "NameWithoutVariant": "CHUNI", + "Variant": "PENGUIN", + "IllustrationCredit": "illustration by SEGA\n「CHUNITHM」より" + }, + "NameEntry1": { + "NameWithVariant": "CHUNI PENGUIN", + "NameWithoutVariant": "CHUNI", + "Variant": "PENGUIN", + "IllustrationCredit": "illustration by SEGA\n「CHUNITHM」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをチュウニペンギンに\n変更します", + "ToolTipEn": "Change the navigator to CHUNI PENGUIN" + }, + { + "Id": 95, + "IdString": "nv096", + "FileName": "richt", + "NameEntry0": { + "NameWithVariant": "RICHTSHUTZE", + "NameWithoutVariant": "RICHT", + "Variant": "SHUTZE", + "IllustrationCredit": "illustration by タカヤマトシアキ\n「CHUNITHM」より" + }, + "NameEntry1": { + "NameWithVariant": "RICHTSHUTZE", + "NameWithoutVariant": "RICHT", + "Variant": "SHUTZE", + "IllustrationCredit": "illustration by タカヤマトシアキ\n「CHUNITHM」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをリヒトシュッツェに\n変更します", + "ToolTipEn": "Change the navigator to RICHTSHUTZE" + }, + { + "Id": 96, + "IdString": "nv097", + "FileName": "magellan", + "NameEntry0": { + "NameWithVariant": "MAGELLAN MAGELLAN", + "NameWithoutVariant": "MAGELLAN", + "Variant": "MAGELLAN", + "IllustrationCredit": "illustration by ちゃもーい\n「CHUNITHM」より" + }, + "NameEntry1": { + "NameWithVariant": "MAGELLAN MAGELLAN", + "NameWithoutVariant": "MAGELLAN", + "Variant": "MAGELLAN", + "IllustrationCredit": "illustration by ちゃもーい\n「CHUNITHM」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをマゼラン・マゼランに\n変更します", + "ToolTipEn": "Change the navigator to\nMAGELLAN MAGELLAN" + }, + { + "Id": 97, + "IdString": "nv098", + "FileName": "sakuramiko", + "NameEntry0": { + "NameWithVariant": "MIKO SAKURA", + "NameWithoutVariant": "MIKO", + "Variant": "SAKURA", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "MIKO SAKURA", + "NameWithoutVariant": "MIKO", + "Variant": "SAKURA", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをさくらみこに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator \nto MIKO SAKURA" + }, + { + "Id": 98, + "IdString": "nv099", + "FileName": "fubuki", + "NameEntry0": { + "NameWithVariant": "FUBUKI SHIRAKAMI", + "NameWithoutVariant": "FUBUKI", + "Variant": "SHIRAKAMI", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "FUBUKI SHIRAKAMI", + "NameWithoutVariant": "FUBUKI", + "Variant": "SHIRAKAMI", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを白上フブキに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator \nto FUBUKI SHIRAKAMI" + }, + { + "Id": 99, + "IdString": "nv100", + "FileName": "matsuri", + "NameEntry0": { + "NameWithVariant": "MATSURI NATSUIRO", + "NameWithoutVariant": "MATSURI", + "Variant": "NATSUIRO", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "MATSURI NATSUIRO", + "NameWithoutVariant": "MATSURI", + "Variant": "NATSUIRO", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを夏色まつりに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator \nto MATSURI NATSUIRO" + }, + { + "Id": 100, + "IdString": "nv101", + "FileName": "marine", + "NameEntry0": { + "NameWithVariant": "MARINE HOUSHOU", + "NameWithoutVariant": "MARINE", + "Variant": "HOUSHOU", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "MARINE HOUSHOU", + "NameWithoutVariant": "MARINE", + "Variant": "HOUSHOU", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを宝鐘マリンに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator \nto MARINE HOUSHOU" + }, + { + "Id": 101, + "IdString": "nv102", + "FileName": "satori", + "NameEntry0": { + "NameWithVariant": "SATORI", + "NameWithoutVariant": "SATORI", + "Variant": "", + "IllustrationCredit": "illustration by めばる\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "SATORI", + "NameWithoutVariant": "SATORI", + "Variant": "", + "IllustrationCredit": "illustration by めばる\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを古明地さとりに変更します", + "ToolTipEn": "Change the navigator to SATORI" + }, + { + "Id": 102, + "IdString": "nv103", + "FileName": "koishi", + "NameEntry0": { + "NameWithVariant": "KOISHI", + "NameWithoutVariant": "KOISHI", + "Variant": "", + "IllustrationCredit": "illustration by 西沢5㍉\n「東方Project」より" + }, + "NameEntry1": { + "NameWithVariant": "KOISHI", + "NameWithoutVariant": "KOISHI", + "Variant": "", + "IllustrationCredit": "illustration by 西沢5㍉\n「東方Project」より" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを古明地こいしに変更します", + "ToolTipEn": "Change the navigator to KOISHI" + }, + { + "Id": 103, + "IdString": "nv104", + "FileName": "linka10th", + "NameEntry0": { + "NameWithVariant": "LINKA(Fairy)", + "NameWithoutVariant": "LINKA", + "Variant": "(Fairy)", + "IllustrationCredit": "illustration by 未早" + }, + "NameEntry1": { + "NameWithVariant": "LINKA(Fairy)", + "NameWithoutVariant": "LINKA", + "Variant": "(Fairy)", + "IllustrationCredit": "illustration by 未早" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをリンカ\n(Fairy)に変更します\nボイスを変更します(CV:豊田萌絵)", + "ToolTipEn": "Change the navigator to LINKA(Fairy)\nCV: Moe Toyota" + }, + { + "Id": 104, + "IdString": "nv105", + "FileName": "yume10th", + "NameEntry0": { + "NameWithVariant": "YUME(Fairy)", + "NameWithoutVariant": "YUME", + "Variant": "(Fairy)", + "IllustrationCredit": "illustration by 未早" + }, + "NameEntry1": { + "NameWithVariant": "YUME(Fairy)", + "NameWithoutVariant": "YUME", + "Variant": "(Fairy)", + "IllustrationCredit": "illustration by 未早" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをユメ\n(Fairy)に変更します\nボイスを変更します(CV:高橋菜々美)", + "ToolTipEn": "Change the navigator to YUME(Fairy)\nCV: Nanami Takahashi" + }, + { + "Id": 105, + "IdString": "nv106", + "FileName": "seine10th", + "NameEntry0": { + "NameWithVariant": "SEINE(Fairy)", + "NameWithoutVariant": "SEINE", + "Variant": "(Fairy)", + "IllustrationCredit": "illustration by 未早" + }, + "NameEntry1": { + "NameWithVariant": "SEINE(Fairy)", + "NameWithoutVariant": "SEINE", + "Variant": "(Fairy)", + "IllustrationCredit": "illustration by 未早" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをセイネ\n(Fairy)に変更します\nボイスを変更します(CV:河上英里子)", + "ToolTipEn": "Change the navigator to SEINE(Fairy)\nCV: Eriko Kawakami" + }, + { + "Id": 106, + "IdString": "nv107", + "FileName": "reimu_dk", + "NameEntry0": { + "NameWithVariant": "REIMU(TouhouDK)", + "NameWithoutVariant": "REIMU", + "Variant": "(TouhouDK)", + "IllustrationCredit": "「東方ダンマクカグラ」より\n(C)上海アリス幻樂団" + }, + "NameEntry1": { + "NameWithVariant": "REIMU(TouhouDK)", + "NameWithoutVariant": "REIMU", + "Variant": "(TouhouDK)", + "IllustrationCredit": "「東方ダンマクカグラ」より\n(C)上海アリス幻樂団" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを博麗霊夢\n(東方ダンマクカグラ)に変更します", + "ToolTipEn": "Change the navigator to\nREIMU(TouhouDK)" + }, + { + "Id": 107, + "IdString": "nv108", + "FileName": "marisa_dk", + "NameEntry0": { + "NameWithVariant": "MARISA(TouhouDK)", + "NameWithoutVariant": "MARISA", + "Variant": "(TouhouDK)", + "IllustrationCredit": "「東方ダンマクカグラ」より\n(C)上海アリス幻樂団" + }, + "NameEntry1": { + "NameWithVariant": "MARISA(TouhouDK)", + "NameWithoutVariant": "MARISA", + "Variant": "(TouhouDK)", + "IllustrationCredit": "「東方ダンマクカグラ」より\n(C)上海アリス幻樂団" + }, + "Genre": 4, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを霧雨魔理沙\n(東方ダンマクカグラ)に変更します", + "ToolTipEn": "Change the navigator to\nMARISA(TouhouDK)" + }, + { + "Id": 108, + "IdString": "nv109", + "FileName": "himemrvirtual", + "NameEntry0": { + "NameWithVariant": "HIME(Ver.2)", + "NameWithoutVariant": "HIME", + "Variant": "(Ver.2)", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "HIME(Ver.2)", + "NameWithoutVariant": "HIME", + "Variant": "(Ver.2)", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを田中ヒメ\n(Mr.VIRTUALIZER)に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to\nHIME(Mr.VIRTUALIZER)" + }, + { + "Id": 109, + "IdString": "nv110", + "FileName": "hinamrvirtual", + "NameEntry0": { + "NameWithVariant": "HINA(Ver.2)", + "NameWithoutVariant": "HINA", + "Variant": "(Ver.2)", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "HINA(Ver.2)", + "NameWithoutVariant": "HINA", + "Variant": "(Ver.2)", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを鈴木ヒナ\n(Mr.VIRTUALIZER)に変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to \nHINA(Mr.VIRTUALIZER)" + }, + { + "Id": 110, + "IdString": "nv111", + "FileName": "rinku", + "NameEntry0": { + "NameWithVariant": "RINKU AIMOTO", + "NameWithoutVariant": "RINKU", + "Variant": "AIMOTO", + "IllustrationCredit": "「D4DJ Groovy Mix」より" + }, + "NameEntry1": { + "NameWithVariant": "RINKU AIMOTO", + "NameWithoutVariant": "RINKU", + "Variant": "AIMOTO", + "IllustrationCredit": "「D4DJ Groovy Mix」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを愛本りんくに変更します\nボイスを変更します(CV:西尾夕香)", + "ToolTipEn": "Change the navigator to \nRinku Aimoto\nCV: Yuka Nishio" + }, + { + "Id": 111, + "IdString": "nv112", + "FileName": "kyoko", + "NameEntry0": { + "NameWithVariant": "KYOKO YAMATE", + "NameWithoutVariant": "KYOKO", + "Variant": "YAMATE", + "IllustrationCredit": "「D4DJ Groovy Mix」より" + }, + "NameEntry1": { + "NameWithVariant": "KYOKO YAMATE", + "NameWithoutVariant": "KYOKO", + "Variant": "YAMATE", + "IllustrationCredit": "「D4DJ Groovy Mix」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを山手響子に変更します\nボイスを変更します(CV:愛美)", + "ToolTipEn": "Change the navigator to \nKyoko Yamate\nCV: Aimi" + }, + { + "Id": 112, + "IdString": "nv113", + "FileName": "shouni", + "NameEntry0": { + "NameWithVariant": "SHONI PENGUIN", + "NameWithoutVariant": "SHONI", + "Variant": "PENGUIN", + "IllustrationCredit": "illustration by SEGA\n「CHUNITHM」より" + }, + "NameEntry1": { + "NameWithVariant": "SHONI PENGUIN", + "NameWithoutVariant": "SHONI", + "Variant": "PENGUIN", + "IllustrationCredit": "illustration by SEGA\n「CHUNITHM」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをショウニペンギンに\n変更します", + "ToolTipEn": "Change the navigator to SHONI PENGUIN" + }, + { + "Id": 113, + "IdString": "nv114", + "FileName": "svzundoko", + "NameEntry0": { + "NameWithVariant": "SURVIVAL ZUNDOKO", + "NameWithoutVariant": "SURVIVAL", + "Variant": "ZUNDOKO", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "SURVIVAL ZUNDOKO", + "NameWithoutVariant": "SURVIVAL", + "Variant": "ZUNDOKO", + "IllustrationCredit": "" + }, + "Genre": 2, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをサバイバル ずんど子ちゃん\nに変更します\nボイスを変更します(CV:ちよこ)", + "ToolTipEn": "Change the navigator to\nSURVIVAL ZUNDOKO CHAN\nCV: Chiyoko" + }, + { + "Id": 114, + "IdString": "nv115", + "FileName": "hinata", + "NameEntry0": { + "NameWithVariant": "HINATA NEKOMIYA", + "NameWithoutVariant": "HINATA", + "Variant": "NEKOMIYA", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "HINATA NEKOMIYA", + "NameWithoutVariant": "HINATA", + "Variant": "NEKOMIYA", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを猫宮ひなたに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to\nHINATA NEKOMIYA" + }, + { + "Id": 115, + "IdString": "nv116", + "FileName": "akari", + "NameEntry0": { + "NameWithVariant": "AKARI HOSHIZAKI", + "NameWithoutVariant": "AKARI", + "Variant": "HOSHIZAKI", + "IllustrationCredit": "illustration by SEGA\n「オンゲキ」より" + }, + "NameEntry1": { + "NameWithVariant": "AKARI HOSHIZAKI", + "NameWithoutVariant": "AKARI", + "Variant": "HOSHIZAKI", + "IllustrationCredit": "illustration by SEGA\n「オンゲキ」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを星咲あかりに変更します\nボイスを変更します(CV:赤尾ひかる)", + "ToolTipEn": "Change the navigator to\nAKARI HOSHIZAKI\nCV: Hikaru Akao" + }, + { + "Id": 116, + "IdString": "nv117", + "FileName": "setsuna", + "NameEntry0": { + "NameWithVariant": "SETSUNA SUMERAGI", + "NameWithoutVariant": "SETSUNA", + "Variant": "SUMERAGI", + "IllustrationCredit": "illustration by SEGA\n「オンゲキ」より" + }, + "NameEntry1": { + "NameWithVariant": "SETSUNA SUMERAGI", + "NameWithoutVariant": "SETSUNA", + "Variant": "SUMERAGI", + "IllustrationCredit": "illustration by SEGA\n「オンゲキ」より" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターを皇城セツナに変更します\nボイスを変更します(CV:八巻アンナ)", + "ToolTipEn": "Change the navigator to\nSETSUNA SUMERAGI\nCV: Anna Yamaki" + }, + { + "Id": 117, + "IdString": "nv118", + "FileName": "nana", + "NameEntry0": { + "NameWithVariant": "KAGURANANA", + "NameWithoutVariant": "KAGURANANA", + "Variant": "", + "IllustrationCredit": "" + }, + "NameEntry1": { + "NameWithVariant": "KAGURANANA", + "NameWithoutVariant": "KAGURANANA", + "Variant": "", + "IllustrationCredit": "" + }, + "Genre": 6, + "DefaultAvailability": 0, + "ToolTipJp": "ナビゲーターをカグラナナに変更します\nボイスを変更します", + "ToolTipEn": "Change the navigator to\nKAGURANANA" + } + ] +} \ No newline at end of file diff --git a/MudAdmin/wwwroot/data/title.json b/MudAdmin/wwwroot/data/title.json new file mode 100644 index 0000000..0baeecc --- /dev/null +++ b/MudAdmin/wwwroot/data/title.json @@ -0,0 +1,49772 @@ +[ + { + "Id": 0, + "IdString": "s001", + "NameJp": "GROOVER", + "NameEng": "GROOVER", + "UnlockRequirementJp": "初期状態から所持", + "UnlockRequirementEng": "Part of the default set", + "Type": 1 + }, + { + "Id": 1, + "IdString": "s002", + "NameJp": "初代E CLASS", + "NameEng": "初代E CLASS", + "UnlockRequirementJp": "レベル10に昇格", + "UnlockRequirementEng": "Reach level 10", + "Type": 27 + }, + { + "Id": 2, + "IdString": "s003", + "NameJp": "初代D CLASS", + "NameEng": "初代D CLASS", + "UnlockRequirementJp": "レベル20に昇格", + "UnlockRequirementEng": "Reach level 20", + "Type": 27 + }, + { + "Id": 3, + "IdString": "s004", + "NameJp": "初代C CLASS", + "NameEng": "初代C CLASS", + "UnlockRequirementJp": "レベル30に昇格", + "UnlockRequirementEng": "Reach level 30", + "Type": 27 + }, + { + "Id": 4, + "IdString": "s005", + "NameJp": "初代B CLASS", + "NameEng": "初代B CLASS", + "UnlockRequirementJp": "レベル40に昇格", + "UnlockRequirementEng": "Reach level 40", + "Type": 27 + }, + { + "Id": 5, + "IdString": "s006", + "NameJp": "初代A CLASS", + "NameEng": "初代A CLASS", + "UnlockRequirementJp": "レベル50に昇格", + "UnlockRequirementEng": "Reach level 50", + "Type": 27 + }, + { + "Id": 6, + "IdString": "s007", + "NameJp": "初代AA CLASS", + "NameEng": "初代AA CLASS", + "UnlockRequirementJp": "レベル60に昇格", + "UnlockRequirementEng": "Reach level 60", + "Type": 27 + }, + { + "Id": 7, + "IdString": "s008", + "NameJp": "初代AAA CLASS", + "NameEng": "初代AAA CLASS", + "UnlockRequirementJp": "レベル70に昇格", + "UnlockRequirementEng": "Reach level 70", + "Type": 27 + }, + { + "Id": 8, + "IdString": "s009", + "NameJp": "初代S CLASS", + "NameEng": "初代S CLASS", + "UnlockRequirementJp": "レベル80に昇格", + "UnlockRequirementEng": "Reach level 80", + "Type": 27 + }, + { + "Id": 9, + "IdString": "s010", + "NameJp": "初代SS CLASS", + "NameEng": "初代SS CLASS", + "UnlockRequirementJp": "レベル90に昇格", + "UnlockRequirementEng": "Reach level 90", + "Type": 27 + }, + { + "Id": 10, + "IdString": "s011", + "NameJp": "初代SSS CLASS", + "NameEng": "初代SSS CLASS", + "UnlockRequirementJp": "レベル100に昇格", + "UnlockRequirementEng": "Reach level 100", + "Type": 27 + }, + { + "Id": 11, + "IdString": "s012", + "NameJp": "初代ELITE", + "NameEng": "初代ELITE", + "UnlockRequirementJp": "レベル200に昇格", + "UnlockRequirementEng": "Reach level 200", + "Type": 27 + }, + { + "Id": 12, + "IdString": "s013", + "NameJp": "初代DREAMER", + "NameEng": "初代DREAMER", + "UnlockRequirementJp": "レベル300に昇格", + "UnlockRequirementEng": "Reach level 300", + "Type": 27 + }, + { + "Id": 13, + "IdString": "s014", + "NameJp": "初代COOL", + "NameEng": "初代COOL", + "UnlockRequirementJp": "レベル400に昇格", + "UnlockRequirementEng": "Reach level 400", + "Type": 27 + }, + { + "Id": 14, + "IdString": "s015", + "NameJp": "初代BOOSTER", + "NameEng": "初代BOOSTER", + "UnlockRequirementJp": "レベル500に昇格", + "UnlockRequirementEng": "Reach level 500", + "Type": 27 + }, + { + "Id": 15, + "IdString": "s016", + "NameJp": "初代ANTHEM", + "NameEng": "初代ANTHEM", + "UnlockRequirementJp": "レベル600に昇格", + "UnlockRequirementEng": "Reach level 600", + "Type": 27 + }, + { + "Id": 16, + "IdString": "s017", + "NameJp": "初代SPECIALIST", + "NameEng": "初代SPECIALIST", + "UnlockRequirementJp": "レベル700に昇格", + "UnlockRequirementEng": "Reach level 700", + "Type": 27 + }, + { + "Id": 17, + "IdString": "s018", + "NameJp": "初代EXPERT", + "NameEng": "初代EXPERT", + "UnlockRequirementJp": "レベル800に昇格", + "UnlockRequirementEng": "Reach level 800", + "Type": 27 + }, + { + "Id": 18, + "IdString": "s019", + "NameJp": "初代PERFECT", + "NameEng": "初代PERFECT", + "UnlockRequirementJp": "レベル900に昇格", + "UnlockRequirementEng": "Reach level 900", + "Type": 27 + }, + { + "Id": 19, + "IdString": "s020", + "NameJp": "初代MASTER", + "NameEng": "初代MASTER", + "UnlockRequirementJp": "レベル999に昇格", + "UnlockRequirementEng": "Reach level 999", + "Type": 27 + }, + { + "Id": 20, + "IdString": "s021", + "NameJp": "ルーキー", + "NameEng": "ルーキー", + "UnlockRequirementJp": "5ステージクリア", + "UnlockRequirementEng": "Cleared 5 stages", + "Type": 2 + }, + { + "Id": 21, + "IdString": "s022", + "NameJp": "駆け出し", + "NameEng": "駆け出し", + "UnlockRequirementJp": "10ステージクリア", + "UnlockRequirementEng": "Cleared 10 stages", + "Type": 2 + }, + { + "Id": 22, + "IdString": "s023", + "NameJp": "練習中", + "NameEng": "練習中", + "UnlockRequirementJp": "30ステージクリア", + "UnlockRequirementEng": "Cleared 30 stages", + "Type": 2 + }, + { + "Id": 23, + "IdString": "s024", + "NameJp": "中級者", + "NameEng": "中級者", + "UnlockRequirementJp": "50ステージクリア", + "UnlockRequirementEng": "Cleared 50 stages", + "Type": 2 + }, + { + "Id": 24, + "IdString": "s025", + "NameJp": "一人前", + "NameEng": "一人前", + "UnlockRequirementJp": "100ステージクリア", + "UnlockRequirementEng": "Cleared 100 stages", + "Type": 2 + }, + { + "Id": 25, + "IdString": "s026", + "NameJp": "上級者", + "NameEng": "上級者", + "UnlockRequirementJp": "150ステージクリア", + "UnlockRequirementEng": "Cleared 150 stages", + "Type": 2 + }, + { + "Id": 26, + "IdString": "s027", + "NameJp": "ベテラン", + "NameEng": "ベテラン", + "UnlockRequirementJp": "200ステージクリア", + "UnlockRequirementEng": "Cleared 200 stages", + "Type": 2 + }, + { + "Id": 27, + "IdString": "s028", + "NameJp": "大物", + "NameEng": "大物", + "UnlockRequirementJp": "250ステージクリア", + "UnlockRequirementEng": "Cleared 250 stages", + "Type": 2 + }, + { + "Id": 28, + "IdString": "s029", + "NameJp": "大御所", + "NameEng": "大御所", + "UnlockRequirementJp": "300ステージクリア", + "UnlockRequirementEng": "Cleared 300 stages", + "Type": 2 + }, + { + "Id": 29, + "IdString": "s030", + "NameJp": "GREAT", + "NameEng": "GREAT", + "UnlockRequirementJp": "1ステージで50チェイン達成", + "UnlockRequirementEng": "Got 50 chains in 1 stages", + "Type": 14 + }, + { + "Id": 30, + "IdString": "s031", + "NameJp": "WONDERFUL", + "NameEng": "WONDERFUL", + "UnlockRequirementJp": "1ステージで100チェイン達成", + "UnlockRequirementEng": "Got 100 chains in 1 stages", + "Type": 14 + }, + { + "Id": 31, + "IdString": "s032", + "NameJp": "MARVELOUS", + "NameEng": "MARVELOUS", + "UnlockRequirementJp": "1ステージで300チェイン達成", + "UnlockRequirementEng": "Got 300 chains in 1 stages", + "Type": 14 + }, + { + "Id": 32, + "IdString": "s033", + "NameJp": "FEVER", + "NameEng": "FEVER", + "UnlockRequirementJp": "1ステージで500チェイン達成", + "UnlockRequirementEng": "Got 500 chains in 1 stages", + "Type": 14 + }, + { + "Id": 33, + "IdString": "s034", + "NameJp": "COMPLETE", + "NameEng": "COMPLETE", + "UnlockRequirementJp": "1ステージで1000チェイン達成", + "UnlockRequirementEng": "Got 1,000 chains in 1 stages", + "Type": 14 + }, + { + "Id": 34, + "IdString": "s035", + "NameJp": "INFINITY", + "NameEng": "INFINITY", + "UnlockRequirementJp": "1ステージで1500チェイン達成", + "UnlockRequirementEng": "Got 1,500 chains in 1 stages", + "Type": 14 + }, + { + "Id": 35, + "IdString": "s036", + "NameJp": "S級幼稚園児", + "NameEng": "S級幼稚園児", + "UnlockRequirementJp": "S評価をSIMPLE1ステージで達成", + "UnlockRequirementEng": "Got an S for 1 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 36, + "IdString": "s037", + "NameJp": "S級小学生", + "NameEng": "S級小学生", + "UnlockRequirementJp": "S評価をSIMPLE5ステージで達成", + "UnlockRequirementEng": "Got an S for 5 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 37, + "IdString": "s038", + "NameJp": "S級中学生", + "NameEng": "S級中学生", + "UnlockRequirementJp": "S評価をSIMPLE10ステージで達成", + "UnlockRequirementEng": "Got an S for 10 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 38, + "IdString": "s039", + "NameJp": "S級高校生", + "NameEng": "S級高校生", + "UnlockRequirementJp": "S評価をSIMPLE20ステージで達成", + "UnlockRequirementEng": "Got an S for 20 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 39, + "IdString": "s040", + "NameJp": "S級準学士", + "NameEng": "S級準学士", + "UnlockRequirementJp": "S評価をSIMPLE30ステージで達成", + "UnlockRequirementEng": "Got an S for 30 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 40, + "IdString": "s041", + "NameJp": "S級学士", + "NameEng": "S級学士", + "UnlockRequirementJp": "S評価をSIMPLE50ステージで達成", + "UnlockRequirementEng": "Got an S for 50 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 41, + "IdString": "s042", + "NameJp": "S級修士", + "NameEng": "S級修士", + "UnlockRequirementJp": "S評価をSIMPLE70ステージで達成", + "UnlockRequirementEng": "Got an S for 70 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 42, + "IdString": "s043", + "NameJp": "S級博士", + "NameEng": "S級博士", + "UnlockRequirementJp": "S評価をSIMPLE90ステージで達成", + "UnlockRequirementEng": "Got an S for 90 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 43, + "IdString": "s044", + "NameJp": "S級名誉博士", + "NameEng": "S級名誉博士", + "UnlockRequirementJp": "S評価をSIMPLE100ステージで達成", + "UnlockRequirementEng": "Got an S for 100 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 44, + "IdString": "s045", + "NameJp": "S級少尉", + "NameEng": "S級少尉", + "UnlockRequirementJp": "S評価をNORMAL1ステージで達成", + "UnlockRequirementEng": "Got an S for 1 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 45, + "IdString": "s046", + "NameJp": "S級中尉", + "NameEng": "S級中尉", + "UnlockRequirementJp": "S評価をNORMAL5ステージで達成", + "UnlockRequirementEng": "Got an S for 5 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 46, + "IdString": "s047", + "NameJp": "S級大尉", + "NameEng": "S級大尉", + "UnlockRequirementJp": "S評価をNORMAL10ステージで達成", + "UnlockRequirementEng": "Got an S for 10 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 47, + "IdString": "s048", + "NameJp": "S級少佐", + "NameEng": "S級少佐", + "UnlockRequirementJp": "S評価をNORMAL20ステージで達成", + "UnlockRequirementEng": "Got an S for 20 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 48, + "IdString": "s049", + "NameJp": "S級中佐", + "NameEng": "S級中佐", + "UnlockRequirementJp": "S評価をNORMAL30ステージで達成", + "UnlockRequirementEng": "Got an S for 30 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 49, + "IdString": "s050", + "NameJp": "S級大佐", + "NameEng": "S級大佐", + "UnlockRequirementJp": "S評価をNORMAL50ステージで達成", + "UnlockRequirementEng": "Got an S for 50 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 50, + "IdString": "s051", + "NameJp": "S級少将", + "NameEng": "S級少将", + "UnlockRequirementJp": "S評価をNORMAL70ステージで達成", + "UnlockRequirementEng": "Got an S for 70 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 51, + "IdString": "s052", + "NameJp": "S級中将", + "NameEng": "S級中将", + "UnlockRequirementJp": "S評価をNORMAL90ステージで達成", + "UnlockRequirementEng": "Got an S for 90 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 52, + "IdString": "s053", + "NameJp": "S級大将", + "NameEng": "S級大将", + "UnlockRequirementJp": "S評価をNORMAL100ステージで達成", + "UnlockRequirementEng": "Got an S for 100 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 53, + "IdString": "s054", + "NameJp": "S級凡人", + "NameEng": "S級凡人", + "UnlockRequirementJp": "S評価をHARD1ステージで達成", + "UnlockRequirementEng": "Got an S for 1 stages in HARD mode", + "Type": 7 + }, + { + "Id": 54, + "IdString": "s055", + "NameJp": "S級名人", + "NameEng": "S級名人", + "UnlockRequirementJp": "S評価をHARD5ステージで達成", + "UnlockRequirementEng": "Got an S for 5 stages in HARD mode", + "Type": 7 + }, + { + "Id": 55, + "IdString": "s056", + "NameJp": "S級達人", + "NameEng": "S級達人", + "UnlockRequirementJp": "S評価をHARD10ステージで達成", + "UnlockRequirementEng": "Got an S for 10 stages in HARD mode", + "Type": 7 + }, + { + "Id": 56, + "IdString": "s057", + "NameJp": "S級超人", + "NameEng": "S級超人", + "UnlockRequirementJp": "S評価をHARD20ステージで達成", + "UnlockRequirementEng": "Got an S for 20 stages in HARD mode", + "Type": 7 + }, + { + "Id": 57, + "IdString": "s058", + "NameJp": "S級仙人", + "NameEng": "S級仙人", + "UnlockRequirementJp": "S評価をHARD30ステージで達成", + "UnlockRequirementEng": "Got an S for 30 stages in HARD mode", + "Type": 7 + }, + { + "Id": 58, + "IdString": "s059", + "NameJp": "S級鬼神", + "NameEng": "S級鬼神", + "UnlockRequirementJp": "S評価をHARD50ステージで達成", + "UnlockRequirementEng": "Got an S for 50 stages in HARD mode", + "Type": 7 + }, + { + "Id": 59, + "IdString": "s060", + "NameJp": "S級修羅", + "NameEng": "S級修羅", + "UnlockRequirementJp": "S評価をHARD70ステージで達成", + "UnlockRequirementEng": "Got an S for 70 stages in HARD mode", + "Type": 7 + }, + { + "Id": 60, + "IdString": "s061", + "NameJp": "S級羅刹", + "NameEng": "S級羅刹", + "UnlockRequirementJp": "S評価をHARD90ステージで達成", + "UnlockRequirementEng": "Got an S for 90 stages in HARD mode", + "Type": 7 + }, + { + "Id": 61, + "IdString": "s062", + "NameJp": "S級神", + "NameEng": "S級神", + "UnlockRequirementJp": "S評価をHARD100ステージで達成", + "UnlockRequirementEng": "Got an S for 100 stages in HARD mode", + "Type": 7 + }, + { + "Id": 62, + "IdString": "s063", + "NameJp": "グルーヴ一級", + "NameEng": "グルーヴ一級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n1曲で達成", + "UnlockRequirementEng": "Got an S for 1 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 63, + "IdString": "s064", + "NameJp": "グルーヴ初段", + "NameEng": "グルーヴ初段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n5曲で達成", + "UnlockRequirementEng": "Got an S for 5 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 64, + "IdString": "s065", + "NameJp": "グルーヴ二段", + "NameEng": "グルーヴ二段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n10曲で達成", + "UnlockRequirementEng": "Got an S for 10 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 65, + "IdString": "s066", + "NameJp": "グルーヴ三段", + "NameEng": "グルーヴ三段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n20曲で達成", + "UnlockRequirementEng": "Got an S for 20 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 66, + "IdString": "s067", + "NameJp": "グルーヴ四段", + "NameEng": "グルーヴ四段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n30曲で達成", + "UnlockRequirementEng": "Got an S for 30 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 67, + "IdString": "s068", + "NameJp": "グルーヴ五段", + "NameEng": "グルーヴ五段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n40曲で達成", + "UnlockRequirementEng": "Got an S for 40 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 68, + "IdString": "s069", + "NameJp": "グルーヴ六段", + "NameEng": "グルーヴ六段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n50曲で達成", + "UnlockRequirementEng": "Got an S for 50 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 69, + "IdString": "s070", + "NameJp": "グルーヴ七段", + "NameEng": "グルーヴ七段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n60曲で達成", + "UnlockRequirementEng": "Got an S for 60 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 70, + "IdString": "s071", + "NameJp": "グルーヴ八段", + "NameEng": "グルーヴ八段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n70曲で達成", + "UnlockRequirementEng": "Got an S for 70 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 71, + "IdString": "s072", + "NameJp": "グルーヴ九段", + "NameEng": "グルーヴ九段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n80曲で達成", + "UnlockRequirementEng": "Got an S for 80 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 72, + "IdString": "s073", + "NameJp": "グルーヴ十段", + "NameEng": "グルーヴ十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n90曲で達成", + "UnlockRequirementEng": "Got an S for 90 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 73, + "IdString": "s074", + "NameJp": "グルーヴ皆伝", + "NameEng": "グルーヴ皆伝", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n100曲で達成", + "UnlockRequirementEng": "Got an S for 100 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 74, + "IdString": "s075", + "NameJp": "PAWN", + "NameEng": "PAWN", + "UnlockRequirementJp": "NO\u3000MISSを1ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1 stages", + "Type": 3 + }, + { + "Id": 75, + "IdString": "s076", + "NameJp": "KNIGHT", + "NameEng": "KNIGHT", + "UnlockRequirementJp": "NO\u3000MISSを10ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 10 stages", + "Type": 3 + }, + { + "Id": 76, + "IdString": "s077", + "NameJp": "BISHOP", + "NameEng": "BISHOP", + "UnlockRequirementJp": "NO\u3000MISSを30ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 30 stages", + "Type": 3 + }, + { + "Id": 77, + "IdString": "s078", + "NameJp": "ROOK", + "NameEng": "ROOK", + "UnlockRequirementJp": "NO\u3000MISSを50ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 50 stages", + "Type": 3 + }, + { + "Id": 78, + "IdString": "s079", + "NameJp": "PRINCESS", + "NameEng": "PRINCESS", + "UnlockRequirementJp": "NO\u3000MISSを100ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 100 stages", + "Type": 3 + }, + { + "Id": 79, + "IdString": "s080", + "NameJp": "PRINCE", + "NameEng": "PRINCE", + "UnlockRequirementJp": "NO\u3000MISSを150ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 150 stages", + "Type": 3 + }, + { + "Id": 80, + "IdString": "s081", + "NameJp": "QUEEN", + "NameEng": "QUEEN", + "UnlockRequirementJp": "NO\u3000MISSを200ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 200 stages", + "Type": 3 + }, + { + "Id": 81, + "IdString": "s082", + "NameJp": "KING", + "NameEng": "KING", + "UnlockRequirementJp": "NO\u3000MISSを250ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 250 stages", + "Type": 3 + }, + { + "Id": 82, + "IdString": "s083", + "NameJp": "MUSICIAN", + "NameEng": "MUSICIAN", + "UnlockRequirementJp": "FULL\u3000CHAINを1ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1 stages", + "Type": 4 + }, + { + "Id": 83, + "IdString": "s084", + "NameJp": "ARTIST", + "NameEng": "ARTIST", + "UnlockRequirementJp": "FULL\u3000CHAINを10ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 10 stages", + "Type": 4 + }, + { + "Id": 84, + "IdString": "s085", + "NameJp": "TECHNICIAN", + "NameEng": "TECHNICIAN", + "UnlockRequirementJp": "FULL\u3000CHAINを20ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 20 stages", + "Type": 4 + }, + { + "Id": 85, + "IdString": "s086", + "NameJp": "MAGICIAN", + "NameEng": "MAGICIAN", + "UnlockRequirementJp": "FULL\u3000CHAINを30ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 30 stages", + "Type": 4 + }, + { + "Id": 86, + "IdString": "s087", + "NameJp": "PRO", + "NameEng": "PRO", + "UnlockRequirementJp": "FULL\u3000CHAINを50ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 50 stages", + "Type": 4 + }, + { + "Id": 87, + "IdString": "s088", + "NameJp": "STAR", + "NameEng": "STAR", + "UnlockRequirementJp": "FULL\u3000CHAINを100ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 100 stages", + "Type": 4 + }, + { + "Id": 88, + "IdString": "s089", + "NameJp": "BIG STAR", + "NameEng": "BIG STAR", + "UnlockRequirementJp": "FULL\u3000CHAINを150ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 150 stages", + "Type": 4 + }, + { + "Id": 89, + "IdString": "s090", + "NameJp": "SUPER STAR", + "NameEng": "SUPER STAR", + "UnlockRequirementJp": "FULL\u3000CHAINを200ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 200 stages", + "Type": 4 + }, + { + "Id": 90, + "IdString": "s091", + "NameJp": "FANTASISTA", + "NameEng": "FANTASISTA", + "UnlockRequirementJp": "FULL\u3000CHAINを250ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 250 stages", + "Type": 4 + }, + { + "Id": 91, + "IdString": "s092", + "NameJp": "GHOST", + "NameEng": "NO MISSES x 5", + "UnlockRequirementJp": "MISS\u30000を5ステージ連続で達成", + "UnlockRequirementEng": "Cleared 5 consecutive stages\nwith no misses", + "Type": 16 + }, + { + "Id": 92, + "IdString": "s093", + "NameJp": "SPIRIT", + "NameEng": "NO MISSES x 10", + "UnlockRequirementJp": "MISS\u30000を10ステージ連続で達成", + "UnlockRequirementEng": "Cleared 10 consecutive stages\nwith no misses", + "Type": 16 + }, + { + "Id": 93, + "IdString": "s094", + "NameJp": "FAIRY", + "NameEng": "NO MISSES x 20", + "UnlockRequirementJp": "MISS\u30000を20ステージ連続で達成", + "UnlockRequirementEng": "Cleared 20 consecutive stages\nwith no misses", + "Type": 16 + }, + { + "Id": 94, + "IdString": "s095", + "NameJp": "PHANTOM", + "NameEng": "NO MISSES x 30", + "UnlockRequirementJp": "MISS\u30000を30ステージ連続で達成", + "UnlockRequirementEng": "Cleared 30 consecutive stages\nwith no misses", + "Type": 16 + }, + { + "Id": 95, + "IdString": "s096", + "NameJp": "DEVIL", + "NameEng": "NO MISSES x 40", + "UnlockRequirementJp": "MISS\u30000を40ステージ連続で達成", + "UnlockRequirementEng": "Cleared 40 consecutive stages\nwith no misses", + "Type": 16 + }, + { + "Id": 96, + "IdString": "s097", + "NameJp": "DEATH", + "NameEng": "NO MISSES x 50", + "UnlockRequirementJp": "MISS\u30000を50ステージ連続で達成", + "UnlockRequirementEng": "Cleared 50 consecutive stages\nwith no misses", + "Type": 16 + }, + { + "Id": 97, + "IdString": "s098", + "NameJp": "HELL", + "NameEng": "NO MISSES x 60", + "UnlockRequirementJp": "MISS\u30000を60ステージ連続で達成", + "UnlockRequirementEng": "Cleared 60 consecutive stages\nwith no misses", + "Type": 16 + }, + { + "Id": 98, + "IdString": "s099", + "NameJp": "SATAN", + "NameEng": "NO MISSES x 70", + "UnlockRequirementJp": "MISS\u30000を70ステージ連続で達成", + "UnlockRequirementEng": "Cleared 70 consecutive stages\nwith no misses", + "Type": 16 + }, + { + "Id": 99, + "IdString": "s100", + "NameJp": "ANGEL", + "NameEng": "NO MISSES x 80", + "UnlockRequirementJp": "MISS\u30000を80ステージ連続で達成", + "UnlockRequirementEng": "Cleared 80 consecutive stages\nwith no misses", + "Type": 16 + }, + { + "Id": 100, + "IdString": "s101", + "NameJp": "HEAVEN", + "NameEng": "NO MISSES x 90", + "UnlockRequirementJp": "MISS\u30000を90ステージ連続で達成", + "UnlockRequirementEng": "Cleared 90 consecutive stages\nwith no misses", + "Type": 16 + }, + { + "Id": 101, + "IdString": "s102", + "NameJp": "GOD", + "NameEng": "NO MISSES x 100", + "UnlockRequirementJp": "MISS\u30000を100ステージ連続で達成", + "UnlockRequirementEng": "Cleared 100 consecutive stages\nwith no misses", + "Type": 16 + }, + { + "Id": 102, + "IdString": "s103", + "NameJp": "アドリブ調査員", + "NameEng": "アドリブ調査員", + "UnlockRequirementJp": "ターゲットのない場所で10回以上タップ", + "UnlockRequirementEng": "Tapped places with no targets\n10 or more times", + "Type": 15 + }, + { + "Id": 103, + "IdString": "s104", + "NameJp": "アドリブ社員", + "NameEng": "アドリブ社員", + "UnlockRequirementJp": "アドリブ成功数の合計が10を超える", + "UnlockRequirementEng": "Performed 10 or more\nad-libs successfully", + "Type": 15 + }, + { + "Id": 104, + "IdString": "s105", + "NameJp": "アドリブ係長", + "NameEng": "アドリブ係長", + "UnlockRequirementJp": "アドリブ成功数の合計が50を超える", + "UnlockRequirementEng": "Performed 50 or more\nad-libs successfully", + "Type": 15 + }, + { + "Id": 105, + "IdString": "s106", + "NameJp": "アドリブ課長", + "NameEng": "アドリブ課長", + "UnlockRequirementJp": "アドリブ成功数の合計が100を超える", + "UnlockRequirementEng": "Performed 100 or more\nad-libs successfully", + "Type": 15 + }, + { + "Id": 106, + "IdString": "s107", + "NameJp": "アドリブ部長", + "NameEng": "アドリブ部長", + "UnlockRequirementJp": "アドリブ成功数の合計が200を超える", + "UnlockRequirementEng": "Performed 200 or more\nad-libs successfully", + "Type": 15 + }, + { + "Id": 107, + "IdString": "s108", + "NameJp": "アドリブ社長", + "NameEng": "アドリブ社長", + "UnlockRequirementJp": "アドリブ成功数の合計が300を超える", + "UnlockRequirementEng": "Performed 300 or more\nad-libs successfully", + "Type": 15 + }, + { + "Id": 108, + "IdString": "s109", + "NameJp": "アドリブ会長", + "NameEng": "アドリブ会長", + "UnlockRequirementJp": "アドリブ成功数の合計が500を超える", + "UnlockRequirementEng": "Performed 500 or more\nad-libs successfully", + "Type": 15 + }, + { + "Id": 109, + "IdString": "s110", + "NameJp": "アバター自慢", + "NameEng": "アバター自慢", + "UnlockRequirementJp": "アバターを5種類集める", + "UnlockRequirementEng": "Collected 5 avatars", + "Type": 18 + }, + { + "Id": 110, + "IdString": "s111", + "NameJp": "アバターコレクター", + "NameEng": "アバターコレクター", + "UnlockRequirementJp": "アバターを10種類集める", + "UnlockRequirementEng": "Collected 10 avatars", + "Type": 18 + }, + { + "Id": 111, + "IdString": "s112", + "NameJp": "アバターマニア", + "NameEng": "アバターマニア", + "UnlockRequirementJp": "アバターを20種類集める", + "UnlockRequirementEng": "Collected 20 avatars", + "Type": 18 + }, + { + "Id": 112, + "IdString": "s113", + "NameJp": "アバターマスター", + "NameEng": "アバターマスター", + "UnlockRequirementJp": "アバターを30種類集める", + "UnlockRequirementEng": "Collected 30 avatars", + "Type": 18 + }, + { + "Id": 113, + "IdString": "s114", + "NameJp": "初代店内勝者", + "NameEng": "初代店内勝者", + "UnlockRequirementJp": "店内対戦プレイで累計星10個獲得", + "UnlockRequirementEng": "Got 10 stars in multiplayer matches", + "Type": 19 + }, + { + "Id": 114, + "IdString": "s115", + "NameJp": "初代店内番長", + "NameEng": "初代店内番長", + "UnlockRequirementJp": "店内対戦プレイで累計星25個獲得", + "UnlockRequirementEng": "Got 25 stars in multiplayer matches", + "Type": 19 + }, + { + "Id": 115, + "IdString": "s116", + "NameJp": "初代店内大王", + "NameEng": "初代店内大王", + "UnlockRequirementJp": "店内対戦プレイで累計星50個獲得", + "UnlockRequirementEng": "Got 50 stars in multiplayer matches", + "Type": 19 + }, + { + "Id": 116, + "IdString": "s117", + "NameJp": "初代店内覇者", + "NameEng": "初代店内覇者", + "UnlockRequirementJp": "店内対戦プレイで累計星75個獲得", + "UnlockRequirementEng": "Got 75 stars in multiplayer matches", + "Type": 19 + }, + { + "Id": 117, + "IdString": "s118", + "NameJp": "初代店内覇王", + "NameEng": "初代店内覇王", + "UnlockRequirementJp": "店内対戦プレイで累計星100個獲得", + "UnlockRequirementEng": "Got 100 stars in multiplayer matches", + "Type": 19 + }, + { + "Id": 118, + "IdString": "s119", + "NameJp": "初代店内帝王", + "NameEng": "初代店内帝王", + "UnlockRequirementJp": "店内対戦プレイで累計星200個獲得", + "UnlockRequirementEng": "Got 200 stars in multiplayer matches", + "Type": 19 + }, + { + "Id": 119, + "IdString": "s120", + "NameJp": "初代店内皇帝", + "NameEng": "初代店内皇帝", + "UnlockRequirementJp": "店内対戦プレイで累計星300個獲得", + "UnlockRequirementEng": "Got 300 stars in multiplayer matches", + "Type": 19 + }, + { + "Id": 120, + "IdString": "s121", + "NameJp": "初代☆", + "NameEng": "初代☆", + "UnlockRequirementJp": "店内対戦プレイ1曲で星5個獲得", + "UnlockRequirementEng": "Got 5 stars for 1 song in multiplayer", + "Type": 19 + }, + { + "Id": 121, + "IdString": "s122", + "NameJp": "初代☆☆", + "NameEng": "初代☆☆", + "UnlockRequirementJp": "店内対戦プレイ1曲で星10個獲得", + "UnlockRequirementEng": "Got 10 stars for 1 song in multiplayer", + "Type": 19 + }, + { + "Id": 122, + "IdString": "s123", + "NameJp": "初代☆☆☆", + "NameEng": "初代☆☆☆", + "UnlockRequirementJp": "店内対戦プレイ1曲で星12個獲得", + "UnlockRequirementEng": "Got 12 stars for 1 song in multiplayer", + "Type": 19 + }, + { + "Id": 123, + "IdString": "s124", + "NameJp": "初代☆☆☆☆", + "NameEng": "初代☆☆☆☆", + "UnlockRequirementJp": "店内対戦プレイ1曲で星15個獲得", + "UnlockRequirementEng": "Got 15 stars for 1 song in multiplayer", + "Type": 19 + }, + { + "Id": 124, + "IdString": "s125", + "NameJp": "初代☆☆☆☆☆", + "NameEng": "初代☆☆☆☆☆", + "UnlockRequirementJp": "店内対戦プレイ1曲で星18個獲得", + "UnlockRequirementEng": "Got 18 stars for 1 song in multiplayer", + "Type": 19 + }, + { + "Id": 125, + "IdString": "s126", + "NameJp": "アイテム試し中", + "NameEng": "アイテム試し中", + "UnlockRequirementJp": "アイテムを使って1回クリア", + "UnlockRequirementEng": "Cleared 1 stages using items", + "Type": 17 + }, + { + "Id": 126, + "IdString": "s127", + "NameJp": "アイテム使い", + "NameEng": "アイテム使い", + "UnlockRequirementJp": "アイテムを使って10回クリア", + "UnlockRequirementEng": "Cleared 10 stages using items", + "Type": 17 + }, + { + "Id": 127, + "IdString": "s128", + "NameJp": "アイテムマスター", + "NameEng": "アイテムマスター", + "UnlockRequirementJp": "アイテムを使って50回クリア", + "UnlockRequirementEng": "Cleared 50 stages using items", + "Type": 17 + }, + { + "Id": 128, + "IdString": "s129", + "NameJp": "大金持ち", + "NameEng": "大金持ち", + "UnlockRequirementJp": "アイテムを使って100回クリア", + "UnlockRequirementEng": "Cleared 100 stages using items", + "Type": 17 + }, + { + "Id": 129, + "IdString": "s130", + "NameJp": "セレブ", + "NameEng": "セレブ", + "UnlockRequirementJp": "アイテムを使って200回クリア", + "UnlockRequirementEng": "Cleared 200 stages using items", + "Type": 17 + }, + { + "Id": 130, + "IdString": "s131", + "NameJp": "V.I.P", + "NameEng": "V.I.P", + "UnlockRequirementJp": "アイテムを使って300回クリア", + "UnlockRequirementEng": "Cleared 300 stages using items", + "Type": 17 + }, + { + "Id": 131, + "IdString": "s132", + "NameJp": "大富豪", + "NameEng": "大富豪", + "UnlockRequirementJp": "アイテムを使って400回クリア", + "UnlockRequirementEng": "Cleared 400 stages using items", + "Type": 17 + }, + { + "Id": 132, + "IdString": "s133", + "NameJp": "億万長者", + "NameEng": "億万長者", + "UnlockRequirementJp": "アイテムを使って500回クリア", + "UnlockRequirementEng": "Cleared 500 stages using items", + "Type": 17 + }, + { + "Id": 133, + "IdString": "s134", + "NameJp": "鏡の通", + "NameEng": "鏡の通", + "UnlockRequirementJp": "「MIRROR」を使って1回クリア", + "UnlockRequirementEng": "Cleared 1 stages using MIRROR", + "Type": 17 + }, + { + "Id": 134, + "IdString": "s135", + "NameJp": "鏡の専門家", + "NameEng": "鏡の専門家", + "UnlockRequirementJp": "「MIRROR」を使って10回クリア", + "UnlockRequirementEng": "Cleared 10 stages using MIRROR", + "Type": 17 + }, + { + "Id": 135, + "IdString": "s136", + "NameJp": "鏡の熟練者", + "NameEng": "鏡の熟練者", + "UnlockRequirementJp": "「MIRROR」を使って30回クリア", + "UnlockRequirementEng": "Cleared 30 stages using MIRROR", + "Type": 17 + }, + { + "Id": 136, + "IdString": "s137", + "NameJp": "鏡の王", + "NameEng": "鏡の王", + "UnlockRequirementJp": "「MIRROR」を使って50回クリア", + "UnlockRequirementEng": "Cleared 50 stages using MIRROR", + "Type": 17 + }, + { + "Id": 137, + "IdString": "s138", + "NameJp": "道なき道の挑戦者", + "NameEng": "道なき道の挑戦者", + "UnlockRequirementJp": "「NO\u3000WAY」を使って1回クリア", + "UnlockRequirementEng": "Cleared 1 stages using NO WAY", + "Type": 17 + }, + { + "Id": 138, + "IdString": "s139", + "NameJp": "道なき道の開拓者", + "NameEng": "道なき道の開拓者", + "UnlockRequirementJp": "「NO\u3000WAY」を使って10回クリア", + "UnlockRequirementEng": "Cleared 10 stages using NO WAY", + "Type": 17 + }, + { + "Id": 139, + "IdString": "s140", + "NameJp": "道なき道の案内人", + "NameEng": "道なき道の案内人", + "UnlockRequirementJp": "「NO\u3000WAY」を使って30回クリア", + "UnlockRequirementEng": "Cleared 30 stages using NO WAY", + "Type": 17 + }, + { + "Id": 140, + "IdString": "s141", + "NameJp": "道なき道の王", + "NameEng": "道なき道の王", + "UnlockRequirementJp": "「NO\u3000WAY」を使って50回クリア", + "UnlockRequirementEng": "Cleared 50 stages using NO WAY", + "Type": 17 + }, + { + "Id": 141, + "IdString": "s142", + "NameJp": "裏番長", + "NameEng": "裏番長", + "UnlockRequirementJp": "「REVERSE」を使って1回クリア", + "UnlockRequirementEng": "Cleared 1 stages using REVERSE", + "Type": 17 + }, + { + "Id": 142, + "IdString": "s143", + "NameJp": "裏ボス", + "NameEng": "裏ボス", + "UnlockRequirementJp": "「REVERSE」を使って10回クリア", + "UnlockRequirementEng": "Cleared 10 stages using REVERSE", + "Type": 17 + }, + { + "Id": 143, + "IdString": "s144", + "NameJp": "裏将軍", + "NameEng": "裏将軍", + "UnlockRequirementJp": "「REVERSE」を使って30回クリア", + "UnlockRequirementEng": "Cleared 30 stages using REVERSE", + "Type": 17 + }, + { + "Id": 144, + "IdString": "s145", + "NameJp": "裏皇帝", + "NameEng": "裏皇帝", + "UnlockRequirementJp": "「REVERSE」を使って50回クリア", + "UnlockRequirementEng": "Cleared 50 stages using REVERSE", + "Type": 17 + }, + { + "Id": 145, + "IdString": "s146", + "NameJp": "隠れた逸材", + "NameEng": "隠れた逸材", + "UnlockRequirementJp": "「HIDDEN」を使って1回クリア", + "UnlockRequirementEng": "Cleared 1 stages using HIDDEN", + "Type": 17 + }, + { + "Id": 146, + "IdString": "s147", + "NameJp": "隠れた強者", + "NameEng": "隠れた強者", + "UnlockRequirementJp": "「HIDDEN」を使って10回クリア", + "UnlockRequirementEng": "Cleared 10 stages using HIDDEN", + "Type": 17 + }, + { + "Id": 147, + "IdString": "s148", + "NameJp": "隠れた猛者", + "NameEng": "隠れた猛者", + "UnlockRequirementJp": "「HIDDEN」を使って30回クリア", + "UnlockRequirementEng": "Cleared 30 stages using HIDDEN", + "Type": 17 + }, + { + "Id": 148, + "IdString": "s149", + "NameJp": "隠れた覇者", + "NameEng": "隠れた覇者", + "UnlockRequirementJp": "「HIDDEN」を使って50回クリア", + "UnlockRequirementEng": "Cleared 50 stages using HIDDEN", + "Type": 17 + }, + { + "Id": 149, + "IdString": "s150", + "NameJp": "鋭い反射神経", + "NameEng": "鋭い反射神経", + "UnlockRequirementJp": "「SUDDEN」を使って1回クリア", + "UnlockRequirementEng": "Cleared 1 stages using SUDDEN", + "Type": 17 + }, + { + "Id": 150, + "IdString": "s151", + "NameJp": "抜群の反射神経", + "NameEng": "抜群の反射神経", + "UnlockRequirementJp": "「SUDDEN」を使って10回クリア", + "UnlockRequirementEng": "Cleared 10 stages using SUDDEN", + "Type": 17 + }, + { + "Id": 151, + "IdString": "s152", + "NameJp": "音速の反射神経", + "NameEng": "音速の反射神経", + "UnlockRequirementJp": "「SUDDEN」を使って30回クリア", + "UnlockRequirementEng": "Cleared 30 stages using SUDDEN", + "Type": 17 + }, + { + "Id": 152, + "IdString": "s153", + "NameJp": "光速の反射神経", + "NameEng": "光速の反射神経", + "UnlockRequirementJp": "「SUDDEN」を使って50回クリア", + "UnlockRequirementEng": "Cleared 50 stages using SUDDEN", + "Type": 17 + }, + { + "Id": 153, + "IdString": "s154", + "NameJp": "リズム感の妖精", + "NameEng": "リズム感の妖精", + "UnlockRequirementJp": "「JUST」を使って1回クリア", + "UnlockRequirementEng": "Cleared 1 stages using JUST", + "Type": 17 + }, + { + "Id": 154, + "IdString": "s155", + "NameJp": "リズム感の鬼", + "NameEng": "リズム感の鬼", + "UnlockRequirementJp": "「JUST」を使って10回クリア", + "UnlockRequirementEng": "Cleared 10 stages using JUST", + "Type": 17 + }, + { + "Id": 155, + "IdString": "s156", + "NameJp": "リズム感の化物", + "NameEng": "リズム感の化物", + "UnlockRequirementJp": "「JUST」を使って30回クリア", + "UnlockRequirementEng": "Cleared 30 stages using JUST", + "Type": 17 + }, + { + "Id": 156, + "IdString": "s157", + "NameJp": "リズム感の怪物", + "NameEng": "リズム感の怪物", + "UnlockRequirementJp": "「JUST」を使って50回クリア", + "UnlockRequirementEng": "Cleared 50 stages using JUST", + "Type": 17 + }, + { + "Id": 157, + "IdString": "s158", + "NameJp": "ステルスクリア", + "NameEng": "ステルスクリア", + "UnlockRequirementJp": "「STEALTH」を使って1回クリア", + "UnlockRequirementEng": "Cleared 1 stages using STEALTH", + "Type": 17 + }, + { + "Id": 158, + "IdString": "s159", + "NameJp": "ステルスマニア", + "NameEng": "ステルスマニア", + "UnlockRequirementJp": "「STEALTH」を使って10回クリア", + "UnlockRequirementEng": "Cleared 10 stages using STEALTH", + "Type": 17 + }, + { + "Id": 159, + "IdString": "s160", + "NameJp": "ステルスマスター", + "NameEng": "ステルスマスター", + "UnlockRequirementJp": "「STEALTH」を使って30回クリア", + "UnlockRequirementEng": "Cleared 30 stages using STEALTH", + "Type": 17 + }, + { + "Id": 160, + "IdString": "s161", + "NameJp": "ステルスキング", + "NameEng": "ステルスキング", + "UnlockRequirementJp": "「STEALTH」を使って50回クリア", + "UnlockRequirementEng": "Cleared 50 stages using STEALTH", + "Type": 17 + }, + { + "Id": 161, + "IdString": "s162", + "NameJp": "おはようございます", + "NameEng": "おはようございます", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 162, + "IdString": "s163", + "NameJp": "こんにちは", + "NameEng": "こんにちは", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 163, + "IdString": "s164", + "NameJp": "こんばんは", + "NameEng": "こんばんは", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 164, + "IdString": "s165", + "NameJp": "おやすみなさい", + "NameEng": "おやすみなさい", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 165, + "IdString": "s166", + "NameJp": "モーニンググルーバー", + "NameEng": "モーニンググルーバー", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 166, + "IdString": "s167", + "NameJp": "デイグルーバー", + "NameEng": "デイグルーバー", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 167, + "IdString": "s168", + "NameJp": "イヴニンググルーバー", + "NameEng": "イヴニンググルーバー", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 168, + "IdString": "s169", + "NameJp": "ナイトグルーバー", + "NameEng": "ナイトグルーバー", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 169, + "IdString": "s170", + "NameJp": "エニタイムグルーバー", + "NameEng": "エニタイムグルーバー", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 170, + "IdString": "s171", + "NameJp": "エブリデイグルーバー", + "NameEng": "エブリデイグルーバー", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 171, + "IdString": "s172", + "NameJp": "北海道勢", + "NameEng": "北海道勢", + "UnlockRequirementJp": "北海道でプレイ", + "UnlockRequirementEng": "Played in Hokkaido", + "Type": 13 + }, + { + "Id": 172, + "IdString": "s173", + "NameJp": "青森勢", + "NameEng": "青森勢", + "UnlockRequirementJp": "青森県でプレイ", + "UnlockRequirementEng": "Played in Aomori Prefecture", + "Type": 13 + }, + { + "Id": 173, + "IdString": "s174", + "NameJp": "岩手勢", + "NameEng": "岩手勢", + "UnlockRequirementJp": "岩手県でプレイ", + "UnlockRequirementEng": "Played in Iwate Prefecture", + "Type": 13 + }, + { + "Id": 174, + "IdString": "s175", + "NameJp": "宮城勢", + "NameEng": "宮城勢", + "UnlockRequirementJp": "宮城県でプレイ", + "UnlockRequirementEng": "Played in Miyagi Prefecture", + "Type": 13 + }, + { + "Id": 175, + "IdString": "s176", + "NameJp": "秋田勢", + "NameEng": "秋田勢", + "UnlockRequirementJp": "秋田県でプレイ", + "UnlockRequirementEng": "Played in Akita Prefecture", + "Type": 13 + }, + { + "Id": 176, + "IdString": "s177", + "NameJp": "山形勢", + "NameEng": "山形勢", + "UnlockRequirementJp": "山形県でプレイ", + "UnlockRequirementEng": "Played in Yamagata Prefecture", + "Type": 13 + }, + { + "Id": 177, + "IdString": "s178", + "NameJp": "福島勢", + "NameEng": "福島勢", + "UnlockRequirementJp": "福島県でプレイ", + "UnlockRequirementEng": "Played in Fukushima Prefecture", + "Type": 13 + }, + { + "Id": 178, + "IdString": "s179", + "NameJp": "茨城勢", + "NameEng": "茨城勢", + "UnlockRequirementJp": "茨城県でプレイ", + "UnlockRequirementEng": "Played in Ibaraki Prefecture", + "Type": 13 + }, + { + "Id": 179, + "IdString": "s180", + "NameJp": "栃木勢", + "NameEng": "栃木勢", + "UnlockRequirementJp": "栃木県でプレイ", + "UnlockRequirementEng": "Played in Tochigi Prefecture", + "Type": 13 + }, + { + "Id": 180, + "IdString": "s181", + "NameJp": "群馬勢", + "NameEng": "群馬勢", + "UnlockRequirementJp": "群馬県でプレイ", + "UnlockRequirementEng": "Played in Gunma Prefecture", + "Type": 13 + }, + { + "Id": 181, + "IdString": "s182", + "NameJp": "埼玉勢", + "NameEng": "埼玉勢", + "UnlockRequirementJp": "埼玉県でプレイ", + "UnlockRequirementEng": "Played in Saitama Prefecture", + "Type": 13 + }, + { + "Id": 182, + "IdString": "s183", + "NameJp": "千葉勢", + "NameEng": "千葉勢", + "UnlockRequirementJp": "千葉県でプレイ", + "UnlockRequirementEng": "Played in Chiba Prefecture", + "Type": 13 + }, + { + "Id": 183, + "IdString": "s184", + "NameJp": "東京勢", + "NameEng": "東京勢", + "UnlockRequirementJp": "東京都でプレイ", + "UnlockRequirementEng": "Played in Tokyo.", + "Type": 13 + }, + { + "Id": 184, + "IdString": "s185", + "NameJp": "神奈川勢", + "NameEng": "神奈川勢", + "UnlockRequirementJp": "神奈川県でプレイ", + "UnlockRequirementEng": "Played in Kanagawa Prefecture", + "Type": 13 + }, + { + "Id": 185, + "IdString": "s186", + "NameJp": "山梨勢", + "NameEng": "山梨勢", + "UnlockRequirementJp": "山梨県でプレイ", + "UnlockRequirementEng": "Played in Yamanashi Prefecture", + "Type": 13 + }, + { + "Id": 186, + "IdString": "s187", + "NameJp": "長野勢", + "NameEng": "長野勢", + "UnlockRequirementJp": "長野県でプレイ", + "UnlockRequirementEng": "Played in Nagano Prefecture", + "Type": 13 + }, + { + "Id": 187, + "IdString": "s188", + "NameJp": "新潟勢", + "NameEng": "新潟勢", + "UnlockRequirementJp": "新潟県でプレイ", + "UnlockRequirementEng": "Played in Niigata Prefecture", + "Type": 13 + }, + { + "Id": 188, + "IdString": "s189", + "NameJp": "富山勢", + "NameEng": "富山勢", + "UnlockRequirementJp": "富山県でプレイ", + "UnlockRequirementEng": "Played in Toyama Prefecture", + "Type": 13 + }, + { + "Id": 189, + "IdString": "s190", + "NameJp": "石川勢", + "NameEng": "石川勢", + "UnlockRequirementJp": "石川県でプレイ", + "UnlockRequirementEng": "Played in Ishikawa Prefecture", + "Type": 13 + }, + { + "Id": 190, + "IdString": "s191", + "NameJp": "福井勢", + "NameEng": "福井勢", + "UnlockRequirementJp": "福井県でプレイ", + "UnlockRequirementEng": "Played in Fukui Prefecture", + "Type": 13 + }, + { + "Id": 191, + "IdString": "s192", + "NameJp": "静岡勢", + "NameEng": "静岡勢", + "UnlockRequirementJp": "静岡県でプレイ", + "UnlockRequirementEng": "Played in Shizuoka Prefecture", + "Type": 13 + }, + { + "Id": 192, + "IdString": "s193", + "NameJp": "愛知勢", + "NameEng": "愛知勢", + "UnlockRequirementJp": "愛知県でプレイ", + "UnlockRequirementEng": "Played in Aichi Prefecture", + "Type": 13 + }, + { + "Id": 193, + "IdString": "s194", + "NameJp": "岐阜勢", + "NameEng": "岐阜勢", + "UnlockRequirementJp": "岐阜県でプレイ", + "UnlockRequirementEng": "Played in Gifu Prefecture", + "Type": 13 + }, + { + "Id": 194, + "IdString": "s195", + "NameJp": "三重勢", + "NameEng": "三重勢", + "UnlockRequirementJp": "三重県でプレイ", + "UnlockRequirementEng": "Played in Mie Prefecture", + "Type": 13 + }, + { + "Id": 195, + "IdString": "s196", + "NameJp": "滋賀勢", + "NameEng": "滋賀勢", + "UnlockRequirementJp": "滋賀県でプレイ", + "UnlockRequirementEng": "Played in Shiga Prefecture", + "Type": 13 + }, + { + "Id": 196, + "IdString": "s197", + "NameJp": "京都勢", + "NameEng": "京都勢", + "UnlockRequirementJp": "京都府でプレイ", + "UnlockRequirementEng": "Played in Kyoto Prefecture", + "Type": 13 + }, + { + "Id": 197, + "IdString": "s198", + "NameJp": "大阪勢", + "NameEng": "大阪勢", + "UnlockRequirementJp": "大阪府でプレイ", + "UnlockRequirementEng": "Played in Osaka Prefecture", + "Type": 13 + }, + { + "Id": 198, + "IdString": "s199", + "NameJp": "兵庫勢", + "NameEng": "兵庫勢", + "UnlockRequirementJp": "兵庫県でプレイ", + "UnlockRequirementEng": "Played in Hyogo Prefecture", + "Type": 13 + }, + { + "Id": 199, + "IdString": "s200", + "NameJp": "奈良勢", + "NameEng": "奈良勢", + "UnlockRequirementJp": "奈良県でプレイ", + "UnlockRequirementEng": "Played in Nara Prefecture", + "Type": 13 + }, + { + "Id": 200, + "IdString": "s201", + "NameJp": "和歌山勢", + "NameEng": "和歌山勢", + "UnlockRequirementJp": "和歌山県でプレイ", + "UnlockRequirementEng": "Played in Wakayama Prefecture", + "Type": 13 + }, + { + "Id": 201, + "IdString": "s202", + "NameJp": "岡山勢", + "NameEng": "岡山勢", + "UnlockRequirementJp": "岡山県でプレイ", + "UnlockRequirementEng": "Played in Okayama Prefecture", + "Type": 13 + }, + { + "Id": 202, + "IdString": "s203", + "NameJp": "広島勢", + "NameEng": "広島勢", + "UnlockRequirementJp": "広島県でプレイ", + "UnlockRequirementEng": "Played in Hiroshima Prefecture", + "Type": 13 + }, + { + "Id": 203, + "IdString": "s204", + "NameJp": "鳥取勢", + "NameEng": "鳥取勢", + "UnlockRequirementJp": "鳥取県でプレイ", + "UnlockRequirementEng": "Played in Tottori Prefecture", + "Type": 13 + }, + { + "Id": 204, + "IdString": "s205", + "NameJp": "島根勢", + "NameEng": "島根勢", + "UnlockRequirementJp": "島根県でプレイ", + "UnlockRequirementEng": "Played in Shimane Prefecture", + "Type": 13 + }, + { + "Id": 205, + "IdString": "s206", + "NameJp": "山口勢", + "NameEng": "山口勢", + "UnlockRequirementJp": "山口県でプレイ", + "UnlockRequirementEng": "Played in Yamaguchi Prefecture", + "Type": 13 + }, + { + "Id": 206, + "IdString": "s207", + "NameJp": "徳島勢", + "NameEng": "徳島勢", + "UnlockRequirementJp": "徳島県でプレイ", + "UnlockRequirementEng": "Played in Tokushima Prefecture", + "Type": 13 + }, + { + "Id": 207, + "IdString": "s208", + "NameJp": "香川勢", + "NameEng": "香川勢", + "UnlockRequirementJp": "香川県でプレイ", + "UnlockRequirementEng": "Played in Kagawa Prefecture", + "Type": 13 + }, + { + "Id": 208, + "IdString": "s209", + "NameJp": "愛媛勢", + "NameEng": "愛媛勢", + "UnlockRequirementJp": "愛媛県でプレイ", + "UnlockRequirementEng": "Played in Ehime Prefecture", + "Type": 13 + }, + { + "Id": 209, + "IdString": "s210", + "NameJp": "高知勢", + "NameEng": "高知勢", + "UnlockRequirementJp": "高知県でプレイ", + "UnlockRequirementEng": "Played in Kochi Prefecture", + "Type": 13 + }, + { + "Id": 210, + "IdString": "s211", + "NameJp": "福岡勢", + "NameEng": "福岡勢", + "UnlockRequirementJp": "福岡県でプレイ", + "UnlockRequirementEng": "Played in Fukuoka Prefecture", + "Type": 13 + }, + { + "Id": 211, + "IdString": "s212", + "NameJp": "佐賀勢", + "NameEng": "佐賀勢", + "UnlockRequirementJp": "佐賀県でプレイ", + "UnlockRequirementEng": "Played in Saga Prefecture", + "Type": 13 + }, + { + "Id": 212, + "IdString": "s213", + "NameJp": "長崎勢", + "NameEng": "長崎勢", + "UnlockRequirementJp": "長崎県でプレイ", + "UnlockRequirementEng": "Played in Nagasaki Prefecture", + "Type": 13 + }, + { + "Id": 213, + "IdString": "s214", + "NameJp": "熊本勢", + "NameEng": "熊本勢", + "UnlockRequirementJp": "熊本県でプレイ", + "UnlockRequirementEng": "Played in Kumamoto Prefecture", + "Type": 13 + }, + { + "Id": 214, + "IdString": "s215", + "NameJp": "大分勢", + "NameEng": "大分勢", + "UnlockRequirementJp": "大分県でプレイ", + "UnlockRequirementEng": "Played in Oita Prefecture", + "Type": 13 + }, + { + "Id": 215, + "IdString": "s216", + "NameJp": "宮崎勢", + "NameEng": "宮崎勢", + "UnlockRequirementJp": "宮崎県でプレイ", + "UnlockRequirementEng": "Played in Miyazaki Prefecture", + "Type": 13 + }, + { + "Id": 216, + "IdString": "s217", + "NameJp": "鹿児島勢", + "NameEng": "鹿児島勢", + "UnlockRequirementJp": "鹿児島県でプレイ", + "UnlockRequirementEng": "Played in Kagoshima Prefecture", + "Type": 13 + }, + { + "Id": 217, + "IdString": "s218", + "NameJp": "沖縄勢", + "NameEng": "沖縄勢", + "UnlockRequirementJp": "沖縄県でプレイ", + "UnlockRequirementEng": "Played in Okinawa Prefecture", + "Type": 13 + }, + { + "Id": 218, + "IdString": "s219", + "NameJp": "海外遠征勢", + "NameEng": "海外遠征勢", + "UnlockRequirementJp": "初期登録を行った国とは別の国でプレイ", + "UnlockRequirementEng": "Played outside the country initially registered", + "Type": 13 + }, + { + "Id": 219, + "IdString": "s220", + "NameJp": "遠征", + "NameEng": "遠征", + "UnlockRequirementJp": "3都道府県でプレイ", + "UnlockRequirementEng": "Played in 3 prefectures", + "Type": 13 + }, + { + "Id": 220, + "IdString": "s221", + "NameJp": "地域制覇", + "NameEng": "地域制覇", + "UnlockRequirementJp": "5都道府県でプレイ", + "UnlockRequirementEng": "Played in 5 prefectures", + "Type": 13 + }, + { + "Id": 221, + "IdString": "s222", + "NameJp": "旅人", + "NameEng": "旅人", + "UnlockRequirementJp": "10都道府県でプレイ", + "UnlockRequirementEng": "Played in 10 prefectures", + "Type": 13 + }, + { + "Id": 222, + "IdString": "s223", + "NameJp": "全国行脚中", + "NameEng": "全国行脚中", + "UnlockRequirementJp": "15都道府県でプレイ", + "UnlockRequirementEng": "Played in 15 prefectures", + "Type": 13 + }, + { + "Id": 223, + "IdString": "s224", + "NameJp": "日本半周", + "NameEng": "日本半周", + "UnlockRequirementJp": "20都道府県でプレイ", + "UnlockRequirementEng": "Played in 20 prefectures", + "Type": 13 + }, + { + "Id": 224, + "IdString": "s225", + "NameJp": "日本一周", + "NameEng": "日本一周", + "UnlockRequirementJp": "25都道府県でプレイ", + "UnlockRequirementEng": "Played in 25 prefectures", + "Type": 13 + }, + { + "Id": 225, + "IdString": "s226", + "NameJp": "天下統一", + "NameEng": "天下統一", + "UnlockRequirementJp": "30都道府県でプレイ", + "UnlockRequirementEng": "Played in 30 prefectures", + "Type": 13 + }, + { + "Id": 226, + "IdString": "s227", + "NameJp": "行脚王", + "NameEng": "行脚王", + "UnlockRequirementJp": "35都道府県でプレイ", + "UnlockRequirementEng": "Played in 35 prefectures", + "Type": 13 + }, + { + "Id": 227, + "IdString": "s228", + "NameJp": "行脚神", + "NameEng": "行脚神", + "UnlockRequirementJp": "40都道府県でプレイ", + "UnlockRequirementEng": "Played in 40 prefectures", + "Type": 13 + }, + { + "Id": 228, + "IdString": "s229", + "NameJp": "全都道府県完全制覇", + "NameEng": "全都道府県完全制覇", + "UnlockRequirementJp": "47都道府県でプレイ", + "UnlockRequirementEng": "Played in 47 prefectures", + "Type": 13 + }, + { + "Id": 229, + "IdString": "s230", + "NameJp": "日本勢", + "NameEng": "日本勢", + "UnlockRequirementJp": "日本でプレイ", + "UnlockRequirementEng": "Played in Japan", + "Type": 13 + }, + { + "Id": 230, + "IdString": "s231", + "NameJp": "香港勢", + "NameEng": "香港勢", + "UnlockRequirementJp": "香港でプレイ", + "UnlockRequirementEng": "Played in Hong Kong", + "Type": 13 + }, + { + "Id": 231, + "IdString": "s232", + "NameJp": "韓国勢", + "NameEng": "韓国勢", + "UnlockRequirementJp": "韓国でプレイ", + "UnlockRequirementEng": "Played in South Korea", + "Type": 13 + }, + { + "Id": 232, + "IdString": "s233", + "NameJp": "シンガポール勢", + "NameEng": "シンガポール勢", + "UnlockRequirementJp": "シンガポールでプレイ", + "UnlockRequirementEng": "Played in Singapore", + "Type": 13 + }, + { + "Id": 233, + "IdString": "s234", + "NameJp": "台湾勢", + "NameEng": "台湾勢", + "UnlockRequirementJp": "台湾でプレイ", + "UnlockRequirementEng": "Played in Taiwan", + "Type": 13 + }, + { + "Id": 234, + "IdString": "s235", + "NameJp": "タイ勢", + "NameEng": "タイ勢", + "UnlockRequirementJp": "タイでプレイ", + "UnlockRequirementEng": "Played in Thailand", + "Type": 13 + }, + { + "Id": 235, + "IdString": "s236", + "NameJp": "マレーシア勢", + "NameEng": "マレーシア勢", + "UnlockRequirementJp": "マレーシアでプレイ", + "UnlockRequirementEng": "Played in Malaysia", + "Type": 13 + }, + { + "Id": 236, + "IdString": "s237", + "NameJp": "インドネシア勢", + "NameEng": "インドネシア勢", + "UnlockRequirementJp": "インドネシアでプレイ", + "UnlockRequirementEng": "Played in Indonesia", + "Type": 13 + }, + { + "Id": 237, + "IdString": "s238", + "NameJp": "メカクシ団", + "NameEng": "メカクシ団", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 238, + "IdString": "s239", + "NameJp": "閃光の舞姫", + "NameEng": "閃光の舞姫", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 239, + "IdString": "s240", + "NameJp": "ガンスト大好き!", + "NameEng": "ガンスト大好き!", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 240, + "IdString": "s241", + "NameJp": "ここがグルーヴの中心よ!", + "NameEng": "ここがグルーヴの中心よ!", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 241, + "IdString": "s242", + "NameJp": "銃撃音楽隊", + "NameEng": "銃撃音楽隊", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 242, + "IdString": "s243", + "NameJp": "ノリノリンガーストラトス", + "NameEng": "ノリノリンガーストラトス", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 243, + "IdString": "s244", + "NameJp": "意識高いガンスト勢", + "NameEng": "意識高いガンスト勢", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 244, + "IdString": "s245", + "NameJp": "二丁拳銃の申し子", + "NameEng": "二丁拳銃の申し子", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 245, + "IdString": "s246", + "NameJp": "ガンスト勢", + "NameEng": "ガンスト勢", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 246, + "IdString": "s247", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 247, + "IdString": "s248", + "NameJp": "タイトーLOVE", + "NameEng": "タイトーLOVE", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 248, + "IdString": "s249", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 249, + "IdString": "s250", + "NameJp": "中二病", + "NameEng": "中二病", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 250, + "IdString": "s251", + "NameJp": "漆黒の堕天使", + "NameEng": "漆黒の堕天使", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 251, + "IdString": "s252", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 252, + "IdString": "s253", + "NameJp": "すぽぉぉぉぉぉん", + "NameEng": "すぽぉぉぉぉぉん", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 253, + "IdString": "s254", + "NameJp": "BB勢", + "NameEng": "BB勢", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 254, + "IdString": "s255", + "NameJp": "刻の幻影", + "NameEng": "刻の幻影", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 255, + "IdString": "s256", + "NameJp": "死神", + "NameEng": "死神", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 256, + "IdString": "s257", + "NameJp": "蒼の魔道書", + "NameEng": "蒼の魔道書", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 257, + "IdString": "s258", + "NameJp": "世界虚空情報統制機構", + "NameEng": "世界虚空情報統制機構", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 258, + "IdString": "s259", + "NameJp": "調査兵団", + "NameEng": "調査兵団", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 259, + "IdString": "s260", + "NameJp": "イェーガー", + "NameEng": "イェーガー", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 260, + "IdString": "s261", + "NameJp": "「『友達』になろう。」", + "NameEng": "「『友達』になろう。」", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 261, + "IdString": "s262", + "NameJp": "使用不可「行こうか、今日も戦争だ」", + "NameEng": "使用不可「行こうか、今日も戦争だ」", + "UnlockRequirementJp": "使用不可プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 262, + "IdString": "s263", + "NameJp": "悲劇の「女王」", + "NameEng": "悲劇の「女王」", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 263, + "IdString": "s264", + "NameJp": "I LOVE カゲプロ", + "NameEng": "I LOVE カゲプロ", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 264, + "IdString": "s265", + "NameJp": "自然の敵", + "NameEng": "自然の敵", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 265, + "IdString": "s266", + "NameJp": "そんなんARIKA", + "NameEng": "そんなんARIKA", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 266, + "IdString": "s267", + "NameJp": "Sampling Masters", + "NameEng": "Sampling Masters", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 267, + "IdString": "s268", + "NameJp": "GAME MUSIC TRIANGLER", + "NameEng": "GAME MUSIC TRIANGLER", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 268, + "IdString": "s269", + "NameJp": "GMT MASTER", + "NameEng": "GMT MASTER", + "UnlockRequirementJp": "プレゼントキャンペーンで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 269, + "IdString": "s270", + "NameJp": "ガンスト愛殿堂入り", + "NameEng": "ガンスト愛殿堂入り", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 270, + "IdString": "s271", + "NameJp": "音×銃スリンガー", + "NameEng": "音×銃スリンガー", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 271, + "IdString": "s272", + "NameJp": "ガンストの伝道師", + "NameEng": "ガンストの伝道師", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 272, + "IdString": "s273", + "NameJp": "天空音楽祭", + "NameEng": "天空音楽祭", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 273, + "IdString": "s274", + "NameJp": "ガンストから来ました", + "NameEng": "ガンストから来ました", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 274, + "IdString": "s275", + "NameJp": "よく銃ばったでしょう", + "NameEng": "よく銃ばったでしょう", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 275, + "IdString": "s276", + "NameJp": "試し撃ち", + "NameEng": "試し撃ち", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 276, + "IdString": "s277", + "NameJp": "NEO グルコサ民", + "NameEng": "NEO グルコサ民", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 277, + "IdString": "s278", + "NameJp": "はじめてのぐるこす", + "NameEng": "はじめてのぐるこす", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 278, + "IdString": "s279", + "NameJp": "本職はガンスリンガー", + "NameEng": "本職はガンスリンガー", + "UnlockRequirementJp": "『ガンスリンガー ストラトス2』\nコラボ称号", + "UnlockRequirementEng": "Collaboration title", + "Type": 12 + }, + { + "Id": 279, + "IdString": "s280", + "NameJp": "究極進化!", + "NameEng": "究極進化!", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 280, + "IdString": "s281", + "NameJp": "覚醒!", + "NameEng": "覚醒!", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 281, + "IdString": "s282", + "NameJp": "パズドラマニア降臨!", + "NameEng": "パズドラマニア降臨!", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 282, + "IdString": "s283", + "NameJp": "ピュアスマイル", + "NameEng": "ピュアスマイル", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 283, + "IdString": "s284", + "NameJp": "キングメタルドラゴン", + "NameEng": "キングメタルドラゴン", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 284, + "IdString": "s285", + "NameJp": "激レア!", + "NameEng": "激レア!", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 285, + "IdString": "s286", + "NameJp": "I LOVE パズドラ", + "NameEng": "I LOVE パズドラ", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 286, + "IdString": "s287", + "NameJp": "メタドラ大発生!", + "NameEng": "メタドラ大発生!", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 287, + "IdString": "s288", + "NameJp": "たまぁ~♪", + "NameEng": "たまぁ~♪", + "UnlockRequirementJp": "『パスル&ドラゴンズ』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 288, + "IdString": "s289", + "NameJp": "「行こうか、今日も戦争だ」", + "NameEng": "「行こうか、今日も戦争だ」", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 289, + "IdString": "s290", + "NameJp": "「本日、地球は終わります。」", + "NameEng": "「本日、地球は終わります。」", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 290, + "IdString": "s291", + "NameJp": "「クールに行こう。」", + "NameEng": "「クールに行こう。」", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 291, + "IdString": "s292", + "NameJp": "ニジオタコミュショーヒキニート", + "NameEng": "ニジオタコミュショーヒキニート", + "UnlockRequirementJp": "『カゲロウプロジェクト』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 292, + "IdString": "s293", + "NameJp": "団長", + "NameEng": "団長", + "UnlockRequirementJp": "『進撃の巨人』\nイベント報酬", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 293, + "IdString": "s294", + "NameJp": "訓練兵", + "NameEng": "訓練兵", + "UnlockRequirementJp": "『進撃の巨人』\nイベント報酬", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 294, + "IdString": "s295", + "NameJp": "何の成果も!!得られませんでした!!", + "NameEng": "何の成果も!!得られませんでした!!", + "UnlockRequirementJp": "『進撃の巨人』\nイベント報酬", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 295, + "IdString": "s296", + "NameJp": "死に急ぎ野郎", + "NameEng": "死に急ぎ野郎", + "UnlockRequirementJp": "『進撃の巨人』\nイベント報酬", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 296, + "IdString": "s297", + "NameJp": "兵士長", + "NameEng": "兵士長", + "UnlockRequirementJp": "『進撃の巨人』\nイベント報酬", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 297, + "IdString": "s298", + "NameJp": "奇行種", + "NameEng": "奇行種", + "UnlockRequirementJp": "『進撃の巨人』\nイベント報酬", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 298, + "IdString": "s299", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 299, + "IdString": "s300", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 300, + "IdString": "s301", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 301, + "IdString": "s302", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 302, + "IdString": "s303", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 303, + "IdString": "s304", + "NameJp": "グルーヴ二十段", + "NameEng": "グルーヴ二十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n110曲で達成", + "UnlockRequirementEng": "Got an S for 110 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 304, + "IdString": "s305", + "NameJp": "グルーヴ三十段", + "NameEng": "グルーヴ三十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n120曲で達成", + "UnlockRequirementEng": "Got an S for 120 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 305, + "IdString": "s306", + "NameJp": "グルーヴ四十段", + "NameEng": "グルーヴ四十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n130曲で達成", + "UnlockRequirementEng": "Got an S for 130 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 306, + "IdString": "s307", + "NameJp": "グルーヴ五十段", + "NameEng": "グルーヴ五十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n140曲で達成", + "UnlockRequirementEng": "Got an S for 140 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 307, + "IdString": "s308", + "NameJp": "グルーヴ六十段", + "NameEng": "グルーヴ六十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n150曲で達成", + "UnlockRequirementEng": "Got an S for 150 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 308, + "IdString": "s309", + "NameJp": "グルーヴ七十段", + "NameEng": "グルーヴ七十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n160曲で達成", + "UnlockRequirementEng": "Got an S for 160 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 309, + "IdString": "s310", + "NameJp": "グルーヴ八十段", + "NameEng": "グルーヴ八十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n170曲で達成", + "UnlockRequirementEng": "Got an S for 170 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 310, + "IdString": "s311", + "NameJp": "グルーヴ九十段", + "NameEng": "グルーヴ九十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n180曲で達成", + "UnlockRequirementEng": "Got an S for 180 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 311, + "IdString": "s312", + "NameJp": "グルーヴ百段", + "NameEng": "グルーヴ百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n190曲で達成", + "UnlockRequirementEng": "Got an S for 190 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 312, + "IdString": "s313", + "NameJp": "グルーヴ二百段", + "NameEng": "グルーヴ二百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n200曲で達成", + "UnlockRequirementEng": "Got an S for 200 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 313, + "IdString": "s314", + "NameJp": "グルーヴ三百段", + "NameEng": "グルーヴ三百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n210曲で達成", + "UnlockRequirementEng": "Got an S for 210 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 314, + "IdString": "s315", + "NameJp": "グルーヴ四百段", + "NameEng": "グルーヴ四百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n220曲で達成", + "UnlockRequirementEng": "Got an S for 220 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 315, + "IdString": "s316", + "NameJp": "グルーヴ五百段", + "NameEng": "グルーヴ五百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n230曲で達成", + "UnlockRequirementEng": "Got an S for 230 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 316, + "IdString": "s317", + "NameJp": "グルーヴ六百段", + "NameEng": "グルーヴ六百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n240曲で達成", + "UnlockRequirementEng": "Got an S for 240 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 317, + "IdString": "s318", + "NameJp": "グルーヴ七百段", + "NameEng": "グルーヴ七百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n250曲で達成", + "UnlockRequirementEng": "Got an S for 250 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 318, + "IdString": "s319", + "NameJp": "グルーヴ八百段", + "NameEng": "グルーヴ八百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n260曲で達成", + "UnlockRequirementEng": "Got an S for 260 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 319, + "IdString": "s320", + "NameJp": "グルーヴ九百段", + "NameEng": "グルーヴ九百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n270曲で達成", + "UnlockRequirementEng": "Got an S for 270 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 320, + "IdString": "s321", + "NameJp": "グルーヴ千段", + "NameEng": "グルーヴ千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n280曲で達成", + "UnlockRequirementEng": "Got an S for 280 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 321, + "IdString": "s322", + "NameJp": "グルーヴ二千段", + "NameEng": "グルーヴ二千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n290曲で達成", + "UnlockRequirementEng": "Got an S for 290 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 322, + "IdString": "s323", + "NameJp": "グルーヴ三千段", + "NameEng": "グルーヴ三千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n300曲で達成", + "UnlockRequirementEng": "Got an S for 300 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 323, + "IdString": "s324", + "NameJp": "S+級パン", + "NameEng": "S+級パン", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n1曲で達成", + "UnlockRequirementEng": "Got an S+ for 1 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 324, + "IdString": "s325", + "NameJp": "S+級サラダ", + "NameEng": "S+級サラダ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n10曲で達成", + "UnlockRequirementEng": "Got an S+ for 10 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 325, + "IdString": "s326", + "NameJp": "S+級コーヒー", + "NameEng": "S+級コーヒー", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n20曲で達成", + "UnlockRequirementEng": "Got an S+ for 20 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 326, + "IdString": "s327", + "NameJp": "S+級ラーメン", + "NameEng": "S+級ラーメン", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n30曲で達成", + "UnlockRequirementEng": "Got an S+ for 30 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 327, + "IdString": "s328", + "NameJp": "S+級カレー", + "NameEng": "S+級カレー", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n40曲で達成", + "UnlockRequirementEng": "Got an S+ for 40 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 328, + "IdString": "s329", + "NameJp": "S+級パスタ", + "NameEng": "S+級パスタ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n50曲で達成", + "UnlockRequirementEng": "Got an S+ for 50 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 329, + "IdString": "s330", + "NameJp": "S+級ケーキ", + "NameEng": "S+級ケーキ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n60曲で達成", + "UnlockRequirementEng": "Got an S+ for 60 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 330, + "IdString": "s331", + "NameJp": "S+級そば", + "NameEng": "S+級そば", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n70曲で達成", + "UnlockRequirementEng": "Got an S+ for 70 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 331, + "IdString": "s332", + "NameJp": "S+級プリン", + "NameEng": "S+級プリン", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n80曲で達成", + "UnlockRequirementEng": "Got an S+ for 80 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 332, + "IdString": "s333", + "NameJp": "S+級オムライス", + "NameEng": "S+級オムライス", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n90曲で達成", + "UnlockRequirementEng": "Got an S+ for 90 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 333, + "IdString": "s334", + "NameJp": "S+級うどん", + "NameEng": "S+級うどん", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n100曲で達成", + "UnlockRequirementEng": "Got an S+ for 100 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 334, + "IdString": "s335", + "NameJp": "S+級チョコレート", + "NameEng": "S+級チョコレート", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n110曲で達成", + "UnlockRequirementEng": "Got an S+ for 110 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 335, + "IdString": "s336", + "NameJp": "S+級からあげ", + "NameEng": "S+級からあげ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n120曲で達成", + "UnlockRequirementEng": "Got an S+ for 120 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 336, + "IdString": "s337", + "NameJp": "S+級ピザ", + "NameEng": "S+級ピザ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n130曲で達成", + "UnlockRequirementEng": "Got an S+ for 130 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 337, + "IdString": "s338", + "NameJp": "S+級焼肉", + "NameEng": "S+級焼肉", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n140曲で達成", + "UnlockRequirementEng": "Got an S+ for 140 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 338, + "IdString": "s339", + "NameJp": "S+級クレープ", + "NameEng": "S+級クレープ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n150曲で達成", + "UnlockRequirementEng": "Got an S+ for 150 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 339, + "IdString": "s340", + "NameJp": "S+級ハンバーグ", + "NameEng": "S+級ハンバーグ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n160曲で達成", + "UnlockRequirementEng": "Got an S+ for 160 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 340, + "IdString": "s341", + "NameJp": "S+級すき焼き", + "NameEng": "S+級すき焼き", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n170曲で達成", + "UnlockRequirementEng": "Got an S+ for 170 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 341, + "IdString": "s342", + "NameJp": "S+級パフェ", + "NameEng": "S+級パフェ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n180曲で達成", + "UnlockRequirementEng": "Got an S+ for 180 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 342, + "IdString": "s343", + "NameJp": "S+級牛丼", + "NameEng": "S+級牛丼", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n190曲で達成", + "UnlockRequirementEng": "Got an S+ for 190 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 343, + "IdString": "s344", + "NameJp": "S+級グラタン", + "NameEng": "S+級グラタン", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n200曲で達成", + "UnlockRequirementEng": "Got an S+ for 200 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 344, + "IdString": "s345", + "NameJp": "S+級おでん", + "NameEng": "S+級おでん", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n210曲で達成", + "UnlockRequirementEng": "Got an S+ for 210 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 345, + "IdString": "s346", + "NameJp": "S+級焼きそば", + "NameEng": "S+級焼きそば", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n220曲で達成", + "UnlockRequirementEng": "Got an S+ for 220 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 346, + "IdString": "s347", + "NameJp": "S+級キャンディー", + "NameEng": "S+級キャンディー", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n230曲で達成", + "UnlockRequirementEng": "Got an S+ for 230 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 347, + "IdString": "s348", + "NameJp": "S+級チャーハン", + "NameEng": "S+級チャーハン", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n240曲で達成", + "UnlockRequirementEng": "Got an S+ for 240 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 348, + "IdString": "s349", + "NameJp": "S+級天ぷら", + "NameEng": "S+級天ぷら", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n250曲で達成", + "UnlockRequirementEng": "Got an S+ for 250 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 349, + "IdString": "s350", + "NameJp": "S+級ハンバーガー", + "NameEng": "S+級ハンバーガー", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n260曲で達成", + "UnlockRequirementEng": "Got an S+ for 260 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 350, + "IdString": "s351", + "NameJp": "S+級スープ", + "NameEng": "S+級スープ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n270曲で達成", + "UnlockRequirementEng": "Got an S+ for 270 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 351, + "IdString": "s352", + "NameJp": "S+級すし", + "NameEng": "S+級すし", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n280曲で達成", + "UnlockRequirementEng": "Got an S+ for 280 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 352, + "IdString": "s353", + "NameJp": "S+級ステーキ", + "NameEng": "S+級ステーキ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n290曲で達成", + "UnlockRequirementEng": "Got an S+ for 290 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 353, + "IdString": "s354", + "NameJp": "S+級ごはん", + "NameEng": "S+級ごはん", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n300曲で達成", + "UnlockRequirementEng": "Got an S+ for 300 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 354, + "IdString": "s355", + "NameJp": "真・十級", + "NameEng": "真・十級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n1曲で達成", + "UnlockRequirementEng": "Got an S++ for 1 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 355, + "IdString": "s356", + "NameJp": "真・九級", + "NameEng": "真・九級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n10曲で達成", + "UnlockRequirementEng": "Got an S++ for 10 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 356, + "IdString": "s357", + "NameJp": "真・八級", + "NameEng": "真・八級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n20曲で達成", + "UnlockRequirementEng": "Got an S++ for 20 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 357, + "IdString": "s358", + "NameJp": "真・七級", + "NameEng": "真・七級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n30曲で達成", + "UnlockRequirementEng": "Got an S++ for 30 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 358, + "IdString": "s359", + "NameJp": "真・六級", + "NameEng": "真・六級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n40曲で達成", + "UnlockRequirementEng": "Got an S++ for 40 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 359, + "IdString": "s360", + "NameJp": "真・五級", + "NameEng": "真・五級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n50曲で達成", + "UnlockRequirementEng": "Got an S++ for 50 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 360, + "IdString": "s361", + "NameJp": "真・四級", + "NameEng": "真・四級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n60曲で達成", + "UnlockRequirementEng": "Got an S++ for 60 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 361, + "IdString": "s362", + "NameJp": "真・三級", + "NameEng": "真・三級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n70曲で達成", + "UnlockRequirementEng": "Got an S++ for 70 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 362, + "IdString": "s363", + "NameJp": "真・二級", + "NameEng": "真・二級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n80曲で達成", + "UnlockRequirementEng": "Got an S++ for 80 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 363, + "IdString": "s364", + "NameJp": "真・一級", + "NameEng": "真・一級", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n90曲で達成", + "UnlockRequirementEng": "Got an S++ for 90 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 364, + "IdString": "s365", + "NameJp": "真・初段", + "NameEng": "真・初段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n100曲で達成", + "UnlockRequirementEng": "Got an S++ for 100 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 365, + "IdString": "s366", + "NameJp": "真・二段", + "NameEng": "真・二段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n110曲で達成", + "UnlockRequirementEng": "Got an S++ for 110 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 366, + "IdString": "s367", + "NameJp": "真・三段", + "NameEng": "真・三段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n120曲で達成", + "UnlockRequirementEng": "Got an S++ for 120 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 367, + "IdString": "s368", + "NameJp": "真・四段", + "NameEng": "真・四段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n130曲で達成", + "UnlockRequirementEng": "Got an S++ for 130 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 368, + "IdString": "s369", + "NameJp": "真・五段", + "NameEng": "真・五段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n140曲で達成", + "UnlockRequirementEng": "Got an S++ for 140 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 369, + "IdString": "s370", + "NameJp": "真・六段", + "NameEng": "真・六段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n150曲で達成", + "UnlockRequirementEng": "Got an S++ for 150 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 370, + "IdString": "s371", + "NameJp": "真・七段", + "NameEng": "真・七段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n160曲で達成", + "UnlockRequirementEng": "Got an S++ for 160 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 371, + "IdString": "s372", + "NameJp": "真・八段", + "NameEng": "真・八段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n170曲で達成", + "UnlockRequirementEng": "Got an S++ for 170 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 372, + "IdString": "s373", + "NameJp": "真・九段", + "NameEng": "真・九段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n180曲で達成", + "UnlockRequirementEng": "Got an S++ for 180 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 373, + "IdString": "s374", + "NameJp": "真・十段", + "NameEng": "真・十段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n190曲で達成", + "UnlockRequirementEng": "Got an S++ for 190 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 374, + "IdString": "s375", + "NameJp": "真・百段", + "NameEng": "真・百段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n200曲で達成", + "UnlockRequirementEng": "Got an S++ for 200 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 375, + "IdString": "s376", + "NameJp": "真・千段", + "NameEng": "真・千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n210曲で達成", + "UnlockRequirementEng": "Got an S++ for 210 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 376, + "IdString": "s377", + "NameJp": "真・一万段", + "NameEng": "真・一万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n220曲で達成", + "UnlockRequirementEng": "Got an S++ for 220 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 377, + "IdString": "s378", + "NameJp": "真・十万段", + "NameEng": "真・十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n230曲で達成", + "UnlockRequirementEng": "Got an S++ for 230 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 378, + "IdString": "s379", + "NameJp": "真・百万段", + "NameEng": "真・百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n240曲で達成", + "UnlockRequirementEng": "Got an S++ for 240 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 379, + "IdString": "s380", + "NameJp": "真・千万段", + "NameEng": "真・千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n250曲で達成", + "UnlockRequirementEng": "Got an S++ for 250 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 380, + "IdString": "s381", + "NameJp": "真・一億段", + "NameEng": "真・一億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n260曲で達成", + "UnlockRequirementEng": "Got an S++ for 260 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 381, + "IdString": "s382", + "NameJp": "真・十億段", + "NameEng": "真・十億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n270曲で達成", + "UnlockRequirementEng": "Got an S++ for 270 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 382, + "IdString": "s383", + "NameJp": "真・百億段", + "NameEng": "真・百億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n280曲で達成", + "UnlockRequirementEng": "Got an S++ for 280 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 383, + "IdString": "s384", + "NameJp": "真・千億段", + "NameEng": "真・千億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n290曲で達成", + "UnlockRequirementEng": "Got an S++ for 290 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 384, + "IdString": "s385", + "NameJp": "真・一兆段", + "NameEng": "真・一兆段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n300曲で達成", + "UnlockRequirementEng": "Got an S++ for 300 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 385, + "IdString": "s386", + "NameJp": "アドリブ村長", + "NameEng": "アドリブ村長", + "UnlockRequirementJp": "アドリブ成功数の合計が700を超える", + "UnlockRequirementEng": "Performed 700 or more\nad-libs successfully", + "Type": 15 + }, + { + "Id": 386, + "IdString": "s387", + "NameJp": "アドリブ町長", + "NameEng": "アドリブ町長", + "UnlockRequirementJp": "アドリブ成功数の合計が1000を超える", + "UnlockRequirementEng": "Performed 1,000 or more\nad-libs successfully", + "Type": 15 + }, + { + "Id": 387, + "IdString": "s388", + "NameJp": "アドリブ市長", + "NameEng": "アドリブ市長", + "UnlockRequirementJp": "アドリブ成功数の合計が1500を超える", + "UnlockRequirementEng": "Performed 1,500 or more\nad-libs successfully", + "Type": 15 + }, + { + "Id": 388, + "IdString": "s389", + "NameJp": "アドリブ知事", + "NameEng": "アドリブ知事", + "UnlockRequirementJp": "アドリブ成功数の合計が2000を超える", + "UnlockRequirementEng": "Performed 2,000 or more\nad-libs successfully", + "Type": 15 + }, + { + "Id": 389, + "IdString": "s390", + "NameJp": "アドリブ大臣", + "NameEng": "アドリブ大臣", + "UnlockRequirementJp": "アドリブ成功数の合計が2500を超える", + "UnlockRequirementEng": "Performed 2,500 or more\nad-libs successfully", + "Type": 15 + }, + { + "Id": 390, + "IdString": "s391", + "NameJp": "アドリブ首相", + "NameEng": "アドリブ首相", + "UnlockRequirementJp": "アドリブ成功数の合計が3000を超える", + "UnlockRequirementEng": "Performed 3,000 or more\nad-libs successfully", + "Type": 15 + }, + { + "Id": 391, + "IdString": "s392", + "NameJp": "ケルベロス", + "NameEng": "ケルベロス", + "UnlockRequirementJp": "NO\u3000MISSを300ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 300 stages", + "Type": 3 + }, + { + "Id": 392, + "IdString": "s393", + "NameJp": "ハ-ピー", + "NameEng": "ハ-ピー", + "UnlockRequirementJp": "NO\u3000MISSを350ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 350 stages", + "Type": 3 + }, + { + "Id": 393, + "IdString": "s394", + "NameJp": "ユニコーン", + "NameEng": "ユニコーン", + "UnlockRequirementJp": "NO\u3000MISSを400ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 400 stages", + "Type": 3 + }, + { + "Id": 394, + "IdString": "s395", + "NameJp": "セイレーン", + "NameEng": "セイレーン", + "UnlockRequirementJp": "NO\u3000MISSを450ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 450 stages", + "Type": 3 + }, + { + "Id": 395, + "IdString": "s396", + "NameJp": "ラミア", + "NameEng": "ラミア", + "UnlockRequirementJp": "NO\u3000MISSを500ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 500 stages", + "Type": 3 + }, + { + "Id": 396, + "IdString": "s397", + "NameJp": "サイクロプス", + "NameEng": "サイクロプス", + "UnlockRequirementJp": "NO\u3000MISSを550ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 550 stages", + "Type": 3 + }, + { + "Id": 397, + "IdString": "s398", + "NameJp": "ケンタウロス", + "NameEng": "ケンタウロス", + "UnlockRequirementJp": "NO\u3000MISSを600ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 600 stages", + "Type": 3 + }, + { + "Id": 398, + "IdString": "s399", + "NameJp": "メデューサ", + "NameEng": "メデューサ", + "UnlockRequirementJp": "NO\u3000MISSを650ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 650 stages", + "Type": 3 + }, + { + "Id": 399, + "IdString": "s400", + "NameJp": "ミノタウロス", + "NameEng": "ミノタウロス", + "UnlockRequirementJp": "NO\u3000MISSを700ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 700 stages", + "Type": 3 + }, + { + "Id": 400, + "IdString": "s401", + "NameJp": "グリフォン", + "NameEng": "グリフォン", + "UnlockRequirementJp": "NO\u3000MISSを750ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 750 stages", + "Type": 3 + }, + { + "Id": 401, + "IdString": "s402", + "NameJp": "ヒュドラ", + "NameEng": "ヒュドラ", + "UnlockRequirementJp": "NO\u3000MISSを800ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 800 stages", + "Type": 3 + }, + { + "Id": 402, + "IdString": "s403", + "NameJp": "テュポーン", + "NameEng": "テュポーン", + "UnlockRequirementJp": "NO\u3000MISSを850ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 850 stages", + "Type": 3 + }, + { + "Id": 403, + "IdString": "s404", + "NameJp": "オルトロス", + "NameEng": "オルトロス", + "UnlockRequirementJp": "NO\u3000MISSを900ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 900 stages", + "Type": 3 + }, + { + "Id": 404, + "IdString": "s405", + "NameJp": "エキドナ", + "NameEng": "エキドナ", + "UnlockRequirementJp": "NO\u3000MISSを950ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 950 stages", + "Type": 3 + }, + { + "Id": 405, + "IdString": "s406", + "NameJp": "スフィンクス", + "NameEng": "スフィンクス", + "UnlockRequirementJp": "NO\u3000MISSを1000ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1000 stages", + "Type": 3 + }, + { + "Id": 406, + "IdString": "s407", + "NameJp": "フェニックス", + "NameEng": "フェニックス", + "UnlockRequirementJp": "FULL\u3000CHAINを300ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 300 stages", + "Type": 4 + }, + { + "Id": 407, + "IdString": "s408", + "NameJp": "ピクシー", + "NameEng": "ピクシー", + "UnlockRequirementJp": "FULL\u3000CHAINを350ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 350 stages", + "Type": 4 + }, + { + "Id": 408, + "IdString": "s409", + "NameJp": "マーメイド", + "NameEng": "マーメイド", + "UnlockRequirementJp": "FULL\u3000CHAINを400ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 400 stages", + "Type": 4 + }, + { + "Id": 409, + "IdString": "s410", + "NameJp": "ウンディーネ", + "NameEng": "ウンディーネ", + "UnlockRequirementJp": "FULL\u3000CHAINを450ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 450 stages", + "Type": 4 + }, + { + "Id": 410, + "IdString": "s411", + "NameJp": "バジリスク", + "NameEng": "バジリスク", + "UnlockRequirementJp": "FULL\u3000CHAINを500ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 500 stages", + "Type": 4 + }, + { + "Id": 411, + "IdString": "s412", + "NameJp": "クラーケン", + "NameEng": "クラーケン", + "UnlockRequirementJp": "FULL\u3000CHAINを550ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 550 stages", + "Type": 4 + }, + { + "Id": 412, + "IdString": "s413", + "NameJp": "ヨルムンガンド", + "NameEng": "ヨルムンガンド", + "UnlockRequirementJp": "FULL\u3000CHAINを600ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 600 stages", + "Type": 4 + }, + { + "Id": 413, + "IdString": "s414", + "NameJp": "フェンリル", + "NameEng": "フェンリル", + "UnlockRequirementJp": "FULL\u3000CHAINを650ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 650 stages", + "Type": 4 + }, + { + "Id": 414, + "IdString": "s415", + "NameJp": "サラマンダー", + "NameEng": "サラマンダー", + "UnlockRequirementJp": "FULL\u3000CHAINを700ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 700 stages", + "Type": 4 + }, + { + "Id": 415, + "IdString": "s416", + "NameJp": "デュラハン", + "NameEng": "デュラハン", + "UnlockRequirementJp": "FULL\u3000CHAINを750ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 750 stages", + "Type": 4 + }, + { + "Id": 416, + "IdString": "s417", + "NameJp": "イフリート", + "NameEng": "イフリート", + "UnlockRequirementJp": "FULL\u3000CHAINを800ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 800 stages", + "Type": 4 + }, + { + "Id": 417, + "IdString": "s418", + "NameJp": "リヴァイアサン", + "NameEng": "リヴァイアサン", + "UnlockRequirementJp": "FULL\u3000CHAINを850ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 850 stages", + "Type": 4 + }, + { + "Id": 418, + "IdString": "s419", + "NameJp": "ベヒモス", + "NameEng": "ベヒモス", + "UnlockRequirementJp": "FULL\u3000CHAINを900ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 900 stages", + "Type": 4 + }, + { + "Id": 419, + "IdString": "s420", + "NameJp": "バハムート", + "NameEng": "バハムート", + "UnlockRequirementJp": "FULL\u3000CHAINを950ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 950 stages", + "Type": 4 + }, + { + "Id": 420, + "IdString": "s421", + "NameJp": "ウロボロス", + "NameEng": "ウロボロス", + "UnlockRequirementJp": "FULL\u3000CHAINを1000ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1000 stages", + "Type": 4 + }, + { + "Id": 421, + "IdString": "s422", + "NameJp": "S級スクナヒコナ", + "NameEng": "S級スクナヒコナ", + "UnlockRequirementJp": "S評価をSIMPLE125ステージで達成", + "UnlockRequirementEng": "Got an S for 125 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 422, + "IdString": "s423", + "NameJp": "S級タケミナカタ", + "NameEng": "S級タケミナカタ", + "UnlockRequirementJp": "S評価をSIMPLE150ステージで達成", + "UnlockRequirementEng": "Got an S for 150 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 423, + "IdString": "s424", + "NameJp": "S級タケミカヅチ", + "NameEng": "S級タケミカヅチ", + "UnlockRequirementJp": "S評価をSIMPLE175ステージで達成", + "UnlockRequirementEng": "Got an S for 175 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 424, + "IdString": "s425", + "NameJp": "S級カグツチ", + "NameEng": "S級カグツチ", + "UnlockRequirementJp": "S評価をSIMPLE200ステージで達成", + "UnlockRequirementEng": "Got an S for 200 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 425, + "IdString": "s426", + "NameJp": "S級ワタツミ", + "NameEng": "S級ワタツミ", + "UnlockRequirementJp": "S評価をSIMPLE225ステージで達成", + "UnlockRequirementEng": "Got an S for 225 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 426, + "IdString": "s427", + "NameJp": "S級スサノヲ", + "NameEng": "S級スサノヲ", + "UnlockRequirementJp": "S評価をSIMPLE250ステージで達成", + "UnlockRequirementEng": "Got an S for 250 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 427, + "IdString": "s428", + "NameJp": "S級ツクヨミ", + "NameEng": "S級ツクヨミ", + "UnlockRequirementJp": "S評価をSIMPLE275ステージで達成", + "UnlockRequirementEng": "Got an S for 275 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 428, + "IdString": "s429", + "NameJp": "S級アマテラス", + "NameEng": "S級アマテラス", + "UnlockRequirementJp": "S評価をSIMPLE300ステージで達成", + "UnlockRequirementEng": "Got an S for 300 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 429, + "IdString": "s430", + "NameJp": "S級イズン", + "NameEng": "S級イズン", + "UnlockRequirementJp": "S評価をNORMAL125ステージで達成", + "UnlockRequirementEng": "Got an S for 125 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 430, + "IdString": "s431", + "NameJp": "S級フレイ", + "NameEng": "S級フレイ", + "UnlockRequirementJp": "S評価をNORMAL150ステージで達成", + "UnlockRequirementEng": "Got an S for 150 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 431, + "IdString": "s432", + "NameJp": "S級ワルキューレ", + "NameEng": "S級ワルキューレ", + "UnlockRequirementJp": "S評価をNORMAL175ステージで達成", + "UnlockRequirementEng": "Got an S for 175 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 432, + "IdString": "s433", + "NameJp": "S級トール", + "NameEng": "S級トール", + "UnlockRequirementJp": "S評価をNORMAL200ステージで達成", + "UnlockRequirementEng": "Got an S for 200 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 433, + "IdString": "s434", + "NameJp": "S級ヘイムダル", + "NameEng": "S級ヘイムダル", + "UnlockRequirementJp": "S評価をNORMAL225ステージで達成", + "UnlockRequirementEng": "Got an S for 225 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 434, + "IdString": "s435", + "NameJp": "S級フレイヤ", + "NameEng": "S級フレイヤ", + "UnlockRequirementJp": "S評価をNORMAL250ステージで達成", + "UnlockRequirementEng": "Got an S for 250 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 435, + "IdString": "s436", + "NameJp": "S級ロキ", + "NameEng": "S級ロキ", + "UnlockRequirementJp": "S評価をNORMAL275ステージで達成", + "UnlockRequirementEng": "Got an S for 275 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 436, + "IdString": "s437", + "NameJp": "S級オーディン", + "NameEng": "S級オーディン", + "UnlockRequirementJp": "S評価をNORMAL300ステージで達成", + "UnlockRequirementEng": "Got an S for 300 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 437, + "IdString": "s438", + "NameJp": "S級トート", + "NameEng": "S級トート", + "UnlockRequirementJp": "S評価をHARD125ステージで達成", + "UnlockRequirementEng": "Got an S for 125 stages in HARD mode", + "Type": 7 + }, + { + "Id": 438, + "IdString": "s439", + "NameJp": "S級イシス", + "NameEng": "S級イシス", + "UnlockRequirementJp": "S評価をHARD150ステージで達成", + "UnlockRequirementEng": "Got an S for 150 stages in HARD mode", + "Type": 7 + }, + { + "Id": 439, + "IdString": "s440", + "NameJp": "S級セト", + "NameEng": "S級セト", + "UnlockRequirementJp": "S評価をHARD175ステージで達成", + "UnlockRequirementEng": "Got an S for 175 stages in HARD mode", + "Type": 7 + }, + { + "Id": 440, + "IdString": "s441", + "NameJp": "S級ホルス", + "NameEng": "S級ホルス", + "UnlockRequirementJp": "S評価をHARD200ステージで達成", + "UnlockRequirementEng": "Got an S for 200 stages in HARD mode", + "Type": 7 + }, + { + "Id": 441, + "IdString": "s442", + "NameJp": "S級バステト", + "NameEng": "S級バステト", + "UnlockRequirementJp": "S評価をHARD225ステージで達成", + "UnlockRequirementEng": "Got an S for 225 stages in HARD mode", + "Type": 7 + }, + { + "Id": 442, + "IdString": "s443", + "NameJp": "S級アヌビス", + "NameEng": "S級アヌビス", + "UnlockRequirementJp": "S評価をHARD250ステージで達成", + "UnlockRequirementEng": "Got an S for 250 stages in HARD mode", + "Type": 7 + }, + { + "Id": 443, + "IdString": "s444", + "NameJp": "S級オシリス", + "NameEng": "S級オシリス", + "UnlockRequirementJp": "S評価をHARD275ステージで達成", + "UnlockRequirementEng": "Got an S for 275 stages in HARD mode", + "Type": 7 + }, + { + "Id": 444, + "IdString": "s445", + "NameJp": "S級ラー", + "NameEng": "S級ラー", + "UnlockRequirementJp": "S評価をHARD300ステージで達成", + "UnlockRequirementEng": "Got an S for 300 stages in HARD mode", + "Type": 7 + }, + { + "Id": 445, + "IdString": "s446", + "NameJp": "EX級序の口", + "NameEng": "EX級序の口", + "UnlockRequirementJp": "S評価をEXTRA1ステージで達成", + "UnlockRequirementEng": "Got an S for 1 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 446, + "IdString": "s447", + "NameJp": "EX級三段目", + "NameEng": "EX級三段目", + "UnlockRequirementJp": "S評価をEXTRA5ステージで達成", + "UnlockRequirementEng": "Got an S for 5 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 447, + "IdString": "s448", + "NameJp": "EX級幕下", + "NameEng": "EX級幕下", + "UnlockRequirementJp": "S評価をEXTRA10ステージで達成", + "UnlockRequirementEng": "Got an S for 10 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 448, + "IdString": "s449", + "NameJp": "EX級十両", + "NameEng": "EX級十両", + "UnlockRequirementJp": "S評価をEXTRA20ステージで達成", + "UnlockRequirementEng": "Got an S for 20 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 449, + "IdString": "s450", + "NameJp": "EX級前頭", + "NameEng": "EX級前頭", + "UnlockRequirementJp": "S評価をEXTRA30ステージで達成", + "UnlockRequirementEng": "Got an S for 30 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 450, + "IdString": "s451", + "NameJp": "EX級小結", + "NameEng": "EX級小結", + "UnlockRequirementJp": "S評価をEXTRA50ステージで達成", + "UnlockRequirementEng": "Got an S for 50 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 451, + "IdString": "s452", + "NameJp": "EX級関脇", + "NameEng": "EX級関脇", + "UnlockRequirementJp": "S評価をEXTRA70ステージで達成", + "UnlockRequirementEng": "Got an S for 70 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 452, + "IdString": "s453", + "NameJp": "EX級大関", + "NameEng": "EX級大関", + "UnlockRequirementJp": "S評価をEXTRA90ステージで達成", + "UnlockRequirementEng": "Got an S for 90 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 453, + "IdString": "s454", + "NameJp": "EX級横綱", + "NameEng": "EX級横綱", + "UnlockRequirementJp": "S評価をEXTRA100ステージで達成", + "UnlockRequirementEng": "Got an S for 100 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 454, + "IdString": "s455", + "NameJp": "EX級クロートー", + "NameEng": "EX級クロートー", + "UnlockRequirementJp": "S評価をEXTRA125ステージで達成", + "UnlockRequirementEng": "Got an S for 125 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 455, + "IdString": "s456", + "NameJp": "EX級ラケシス", + "NameEng": "EX級ラケシス", + "UnlockRequirementJp": "S評価をEXTRA150ステージで達成", + "UnlockRequirementEng": "Got an S for 150 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 456, + "IdString": "s457", + "NameJp": "EX級アトロポス", + "NameEng": "EX級アトロポス", + "UnlockRequirementJp": "S評価をEXTRA175ステージで達成", + "UnlockRequirementEng": "Got an S for 175 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 457, + "IdString": "s458", + "NameJp": "EX級アレス", + "NameEng": "EX級アレス", + "UnlockRequirementJp": "S評価をEXTRA200ステージで達成", + "UnlockRequirementEng": "Got an S for 200 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 458, + "IdString": "s459", + "NameJp": "EX級アテナ", + "NameEng": "EX級アテナ", + "UnlockRequirementJp": "S評価をEXTRA225ステージで達成", + "UnlockRequirementEng": "Got an S for 225 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 459, + "IdString": "s460", + "NameJp": "EX級ヘラ", + "NameEng": "EX級ヘラ", + "UnlockRequirementJp": "S評価をEXTRA250ステージで達成", + "UnlockRequirementEng": "Got an S for 250 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 460, + "IdString": "s461", + "NameJp": "EX級ポセイドン", + "NameEng": "EX級ポセイドン", + "UnlockRequirementJp": "S評価をEXTRA275ステージで達成", + "UnlockRequirementEng": "Got an S for 275 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 461, + "IdString": "s462", + "NameJp": "EX級ゼウス", + "NameEng": "EX級ゼウス", + "UnlockRequirementJp": "S評価をEXTRA300ステージで達成", + "UnlockRequirementEng": "Got an S for 300 stages in EXTRA mode", + "Type": 8 + }, + { + "Id": 462, + "IdString": "s463", + "NameJp": "鏡の神", + "NameEng": "鏡の神", + "UnlockRequirementJp": "「MIRROR」を使って100回クリア", + "UnlockRequirementEng": "Cleared 100 stages using MIRROR", + "Type": 17 + }, + { + "Id": 463, + "IdString": "s464", + "NameJp": "道なき道の神", + "NameEng": "道なき道の神", + "UnlockRequirementJp": "「NO\u3000WAY」を使って100回クリア", + "UnlockRequirementEng": "Cleared 100 stages using NO WAY", + "Type": 17 + }, + { + "Id": 464, + "IdString": "s465", + "NameJp": "裏天帝", + "NameEng": "裏天帝", + "UnlockRequirementJp": "「REVERSE」を使って100回クリア", + "UnlockRequirementEng": "Cleared 100 stages using REVERSE", + "Type": 17 + }, + { + "Id": 465, + "IdString": "s466", + "NameJp": "隠れた支配者", + "NameEng": "隠れた支配者", + "UnlockRequirementJp": "「HIDDEN」を使って100回クリア", + "UnlockRequirementEng": "Cleared 100 stages using HIDDEN", + "Type": 17 + }, + { + "Id": 466, + "IdString": "s467", + "NameJp": "神速の反射神経", + "NameEng": "神速の反射神経", + "UnlockRequirementJp": "「SUDDEN」を使って100回クリア", + "UnlockRequirementEng": "Cleared 100 stages using SUDDEN", + "Type": 17 + }, + { + "Id": 467, + "IdString": "s468", + "NameJp": "リズム感の神", + "NameEng": "リズム感の神", + "UnlockRequirementJp": "「JUST」を使って100回クリア", + "UnlockRequirementEng": "Cleared 100 stages using JUST", + "Type": 17 + }, + { + "Id": 468, + "IdString": "s469", + "NameJp": "ステルスゴッド", + "NameEng": "ステルスゴッド", + "UnlockRequirementJp": "「STEALTH」を使って100回クリア", + "UnlockRequirementEng": "Cleared 100 stages using STEALTH", + "Type": 17 + }, + { + "Id": 469, + "IdString": "s470", + "NameJp": "何も見えなっしんぐ", + "NameEng": "何も見えなっしんぐ", + "UnlockRequirementJp": "「NOTHING」を使って1回クリア", + "UnlockRequirementEng": "Cleared 1 stages using NOTHING", + "Type": 17 + }, + { + "Id": 470, + "IdString": "s471", + "NameJp": "慣れてきたなっしんぐ", + "NameEng": "慣れてきたなっしんぐ", + "UnlockRequirementJp": "「NOTHING」を使って10回クリア", + "UnlockRequirementEng": "Cleared 10 stages using NOTHING", + "Type": 17 + }, + { + "Id": 471, + "IdString": "s472", + "NameJp": "あり得なっしんぐ", + "NameEng": "あり得なっしんぐ", + "UnlockRequirementJp": "「NOTHING」を使って30回クリア", + "UnlockRequirementEng": "Cleared 30 stages using NOTHING", + "Type": 17 + }, + { + "Id": 472, + "IdString": "s473", + "NameJp": "全然問題なっしんぐ", + "NameEng": "全然問題なっしんぐ", + "UnlockRequirementJp": "「NOTHING」を使って50回クリア", + "UnlockRequirementEng": "Cleared 50 stages using NOTHING", + "Type": 17 + }, + { + "Id": 473, + "IdString": "s474", + "NameJp": "完全に極めたなっしんぐ", + "NameEng": "完全に極めたなっしんぐ", + "UnlockRequirementJp": "「NOTHING」を使って100回クリア", + "UnlockRequirementEng": "Cleared 100 stages using NOTHING", + "Type": 17 + }, + { + "Id": 474, + "IdString": "s475", + "NameJp": "不可能へ挑戦する者", + "NameEng": "不可能へ挑戦する者", + "UnlockRequirementJp": "「IMPOSSIBLE」を使って1回クリア", + "UnlockRequirementEng": "Cleared 1 stages using IMPOSSIBLE", + "Type": 17 + }, + { + "Id": 475, + "IdString": "s476", + "NameJp": "不可能へ挑戦し続ける者", + "NameEng": "不可能へ挑戦し続ける者", + "UnlockRequirementJp": "「IMPOSSIBLE」を使って10回クリア", + "UnlockRequirementEng": "Cleared 10 stages using IMPOSSIBLE", + "Type": 17 + }, + { + "Id": 476, + "IdString": "s477", + "NameJp": "不可能を突破する者", + "NameEng": "不可能を突破する者", + "UnlockRequirementJp": "「IMPOSSIBLE」を使って30回クリア", + "UnlockRequirementEng": "Cleared 30 stages using IMPOSSIBLE", + "Type": 17 + }, + { + "Id": 477, + "IdString": "s478", + "NameJp": "不可能を可能にする者", + "NameEng": "不可能を可能にする者", + "UnlockRequirementJp": "「IMPOSSIBLE」を使って50回クリア", + "UnlockRequirementEng": "Cleared 50 stages using IMPOSSIBLE", + "Type": 17 + }, + { + "Id": 478, + "IdString": "s479", + "NameJp": "不可能を無にする者", + "NameEng": "不可能を無にする者", + "UnlockRequirementJp": "「IMPOSSIBLE」を使って100回クリア", + "UnlockRequirementEng": "Cleared 100 stages using IMPOSSIBLE", + "Type": 17 + }, + { + "Id": 479, + "IdString": "s480", + "NameJp": "悪魔の妹", + "NameEng": "悪魔の妹", + "UnlockRequirementJp": "『東方Project』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 480, + "IdString": "s481", + "NameJp": "永遠に紅い幼き月", + "NameEng": "永遠に紅い幼き月", + "UnlockRequirementJp": "『東方Project』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 481, + "IdString": "s482", + "NameJp": "時間を操るメイド", + "NameEng": "時間を操るメイド", + "UnlockRequirementJp": "『東方Project』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 482, + "IdString": "s483", + "NameJp": "動かない大図書館", + "NameEng": "動かない大図書館", + "UnlockRequirementJp": "『東方Project』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 483, + "IdString": "s484", + "NameJp": "華人小娘", + "NameEng": "華人小娘", + "UnlockRequirementJp": "『東方Project』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 484, + "IdString": "s485", + "NameJp": "あたいったら最強ね", + "NameEng": "あたいったら最強ね", + "UnlockRequirementJp": "『東方Project』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 485, + "IdString": "s486", + "NameJp": "そーなのかー", + "NameEng": "そーなのかー", + "UnlockRequirementJp": "『東方Project』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 486, + "IdString": "s487", + "NameJp": "永遠の巫女", + "NameEng": "永遠の巫女", + "UnlockRequirementJp": "『東方Project』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 487, + "IdString": "s488", + "NameJp": "[ 9 ]", + "NameEng": "[ 9 ]", + "UnlockRequirementJp": "『東方Project』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 488, + "IdString": "s489", + "NameJp": "境界の妖怪", + "NameEng": "境界の妖怪", + "UnlockRequirementJp": "『東方Project 2』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 489, + "IdString": "s490", + "NameJp": "策士の九尾", + "NameEng": "策士の九尾", + "UnlockRequirementJp": "『東方Project 2』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 490, + "IdString": "s491", + "NameJp": "幽冥楼閣の亡霊少女", + "NameEng": "幽冥楼閣の亡霊少女", + "UnlockRequirementJp": "『東方Project 2』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 491, + "IdString": "s492", + "NameJp": "みょん", + "NameEng": "みょん", + "UnlockRequirementJp": "『東方Project 2』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 492, + "IdString": "s493", + "NameJp": "騒霊三姉妹", + "NameEng": "騒霊三姉妹", + "UnlockRequirementJp": "『東方Project 2』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 493, + "IdString": "s494", + "NameJp": "七色の人形使い", + "NameEng": "七色の人形使い", + "UnlockRequirementJp": "『東方Project 2』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 494, + "IdString": "s495", + "NameJp": "凶兆の黒猫", + "NameEng": "凶兆の黒猫", + "UnlockRequirementJp": "『東方Project 2』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 495, + "IdString": "s496", + "NameJp": "普通の魔法使い", + "NameEng": "普通の魔法使い", + "UnlockRequirementJp": "『東方Project 2』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 496, + "IdString": "s497", + "NameJp": "冬の忘れ物", + "NameEng": "冬の忘れ物", + "UnlockRequirementJp": "『東方Project 2』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 497, + "IdString": "s498", + "NameJp": "伝説の勇者", + "NameEng": "伝説の勇者", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 498, + "IdString": "s499", + "NameJp": "勇者様御一行", + "NameEng": "勇者様御一行", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 499, + "IdString": "s500", + "NameJp": "魔界の召喚士", + "NameEng": "魔界の召喚士", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 500, + "IdString": "s501", + "NameJp": "天空の竜騎士", + "NameEng": "天空の竜騎士", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 501, + "IdString": "s502", + "NameJp": "疾風のアーチャー", + "NameEng": "疾風のアーチャー", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 502, + "IdString": "s503", + "NameJp": "流浪の遊び人", + "NameEng": "流浪の遊び人", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 503, + "IdString": "s504", + "NameJp": "みんなのアイドル", + "NameEng": "みんなのアイドル", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 504, + "IdString": "s505", + "NameJp": "かけだし勇者(Lv1)", + "NameEng": "かけだし勇者(Lv1)", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 505, + "IdString": "s506", + "NameJp": "村人A", + "NameEng": "村人A", + "UnlockRequirementJp": "『ドラゴン討伐隊選抜』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 506, + "IdString": "s507", + "NameJp": "宇宙最速", + "NameEng": "宇宙最速", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 507, + "IdString": "s508", + "NameJp": "世界最速", + "NameEng": "世界最速", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 508, + "IdString": "s509", + "NameJp": "紫電一閃", + "NameEng": "紫電一閃", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 509, + "IdString": "s510", + "NameJp": "電光石火", + "NameEng": "電光石火", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 510, + "IdString": "s511", + "NameJp": "ハヤブサ", + "NameEng": "ハヤブサ", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 511, + "IdString": "s512", + "NameJp": "チーター", + "NameEng": "チーター", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 512, + "IdString": "s513", + "NameJp": "ウサギ", + "NameEng": "ウサギ", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 513, + "IdString": "s514", + "NameJp": "ヘリで来た。", + "NameEng": "ヘリで来た。", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 514, + "IdString": "s515", + "NameJp": "カメ", + "NameEng": "カメ", + "UnlockRequirementJp": "『目指せ宇宙最速!』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 515, + "IdString": "s516", + "NameJp": "銀河を統べる英雄", + "NameEng": "銀河を統べる英雄", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 516, + "IdString": "s517", + "NameJp": "天馬と奏でる音楽家", + "NameEng": "天馬と奏でる音楽家", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 517, + "IdString": "s518", + "NameJp": "星座のメロディー", + "NameEng": "星座のメロディー", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 518, + "IdString": "s519", + "NameJp": "スターミュージシャン", + "NameEng": "スターミュージシャン", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 519, + "IdString": "s520", + "NameJp": "クエーサー", + "NameEng": "クエーサー", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 520, + "IdString": "s521", + "NameJp": "お星さまにお願い☆", + "NameEng": "お星さまにお願い☆", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 521, + "IdString": "s522", + "NameJp": "きらきら星", + "NameEng": "きらきら星", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 522, + "IdString": "s523", + "NameJp": "超新星", + "NameEng": "超新星", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 523, + "IdString": "s524", + "NameJp": "ユニバース", + "NameEng": "ユニバース", + "UnlockRequirementJp": "『COZMOを駆け抜ける』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 524, + "IdString": "s525", + "NameJp": "紅蓮の愚流超神皇", + "NameEng": "紅蓮の愚流超神皇", + "UnlockRequirementJp": "『LoVⅢ』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 525, + "IdString": "s526", + "NameJp": "愚流超帝", + "NameEng": "愚流超帝", + "UnlockRequirementJp": "『LoVⅢ』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 526, + "IdString": "s527", + "NameJp": "愚流王", + "NameEng": "愚流王", + "UnlockRequirementJp": "『LoVⅢ』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 527, + "IdString": "s528", + "NameJp": "惹響の舞踏士", + "NameEng": "惹響の舞踏士", + "UnlockRequirementJp": "『LoVⅢ』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 528, + "IdString": "s529", + "NameJp": "拍音の戦士", + "NameEng": "拍音の戦士", + "UnlockRequirementJp": "『LoVⅢ』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 529, + "IdString": "s530", + "NameJp": "グルコ種", + "NameEng": "グルコ種", + "UnlockRequirementJp": "『LoVⅢ』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 530, + "IdString": "s531", + "NameJp": "音魄の使い手", + "NameEng": "音魄の使い手", + "UnlockRequirementJp": "『LoVⅢ』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 531, + "IdString": "s532", + "NameJp": "ミリアの下僕", + "NameEng": "ミリアの下僕", + "UnlockRequirementJp": "『LoVⅢ』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 532, + "IdString": "s533", + "NameJp": "紅蓮の子ら", + "NameEng": "紅蓮の子ら", + "UnlockRequirementJp": "『LoVⅢ』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 533, + "IdString": "s534", + "NameJp": "我ら\u3000LoV勢", + "NameEng": "我ら\u3000LoV勢", + "UnlockRequirementJp": "『LoVⅢ』\nコラボ称号", + "UnlockRequirementEng": "Collaboration title", + "Type": 12 + }, + { + "Id": 534, + "IdString": "s535", + "NameJp": "初代スコアタ征夷大将軍", + "NameEng": "初代スコアタ征夷大将軍", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 535, + "IdString": "s536", + "NameJp": "初代スコアタ大名", + "NameEng": "初代スコアタ大名", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 536, + "IdString": "s537", + "NameJp": "初代スコアタ家老", + "NameEng": "初代スコアタ家老", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 537, + "IdString": "s538", + "NameJp": "初代スコアタ奉行", + "NameEng": "初代スコアタ奉行", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 538, + "IdString": "s539", + "NameJp": "初代スコアタ代官", + "NameEng": "初代スコアタ代官", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 539, + "IdString": "s540", + "NameJp": "初代スコアタ悪代官", + "NameEng": "初代スコアタ悪代官", + "UnlockRequirementJp": "『第1回スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 540, + "IdString": "s541", + "NameJp": "初代スコアタ足軽", + "NameEng": "初代スコアタ足軽", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 541, + "IdString": "s542", + "NameJp": "初代スコアタ侍大将", + "NameEng": "初代スコアタ侍大将", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 542, + "IdString": "s543", + "NameJp": "初代スコアタ侍", + "NameEng": "初代スコアタ侍", + "UnlockRequirementJp": "『第1回スコアタ』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 543, + "IdString": "s544", + "NameJp": "二代目スコアタ征夷大将軍", + "NameEng": "二代目スコアタ征夷大将軍", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 544, + "IdString": "s545", + "NameJp": "二代目スコアタ大名", + "NameEng": "二代目スコアタ大名", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 545, + "IdString": "s546", + "NameJp": "二代目スコアタ家老", + "NameEng": "二代目スコアタ家老", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 546, + "IdString": "s547", + "NameJp": "二代目スコアタ奉行", + "NameEng": "二代目スコアタ奉行", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 547, + "IdString": "s548", + "NameJp": "二代目スコアタ代官", + "NameEng": "二代目スコアタ代官", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 548, + "IdString": "s549", + "NameJp": "二代目スコアタ悪代官", + "NameEng": "二代目スコアタ悪代官", + "UnlockRequirementJp": "『第2回スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 549, + "IdString": "s550", + "NameJp": "二代目スコアタ足軽", + "NameEng": "二代目スコアタ足軽", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 550, + "IdString": "s551", + "NameJp": "二代目スコアタ侍大将", + "NameEng": "二代目スコアタ侍大将", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 551, + "IdString": "s552", + "NameJp": "二代目スコアタ侍", + "NameEng": "二代目スコアタ侍", + "UnlockRequirementJp": "『第2回スコアタ』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 552, + "IdString": "s553", + "NameJp": "三代目スコアタ征夷大将軍", + "NameEng": "三代目スコアタ征夷大将軍", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 553, + "IdString": "s554", + "NameJp": "三代目スコアタ大名", + "NameEng": "三代目スコアタ大名", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 554, + "IdString": "s555", + "NameJp": "三代目スコアタ家老", + "NameEng": "三代目スコアタ家老", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 555, + "IdString": "s556", + "NameJp": "三代目スコアタ奉行", + "NameEng": "三代目スコアタ奉行", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 556, + "IdString": "s557", + "NameJp": "三代目スコアタ代官", + "NameEng": "三代目スコアタ代官", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 557, + "IdString": "s558", + "NameJp": "三代目スコアタ悪代官", + "NameEng": "三代目スコアタ悪代官", + "UnlockRequirementJp": "『第3回スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 558, + "IdString": "s559", + "NameJp": "三代目スコアタ足軽", + "NameEng": "三代目スコアタ足軽", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 559, + "IdString": "s560", + "NameJp": "三代目スコアタ侍大将", + "NameEng": "三代目スコアタ侍大将", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 560, + "IdString": "s561", + "NameJp": "三代目スコアタ侍", + "NameEng": "三代目スコアタ侍", + "UnlockRequirementJp": "『第3回スコアタ』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 561, + "IdString": "s562", + "NameJp": "ネオサイタマの死神", + "NameEng": "ネオサイタマの死神", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 562, + "IdString": "s563", + "NameJp": "ソウカイ・シックスゲイツ", + "NameEng": "ソウカイ・シックスゲイツ", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 563, + "IdString": "s564", + "NameJp": "オムラ重工社員", + "NameEng": "オムラ重工社員", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 564, + "IdString": "s565", + "NameJp": "ワザマエ!", + "NameEng": "ワザマエ!", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 565, + "IdString": "s566", + "NameJp": "ゴウランガ!", + "NameEng": "ゴウランガ!", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 566, + "IdString": "s567", + "NameJp": "アイエエエエエ!", + "NameEng": "アイエエエエエ!", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 567, + "IdString": "s568", + "NameJp": "ドーモ、グルーヴァー=サン…", + "NameEng": "ドーモ、グルーヴァー=サン…", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 568, + "IdString": "s569", + "NameJp": "忍\u3000殺", + "NameEng": "忍\u3000殺", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 569, + "IdString": "s570", + "NameJp": "ニンジャヘッズ", + "NameEng": "ニンジャヘッズ", + "UnlockRequirementJp": "『ニンジャスレイヤー』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 570, + "IdString": "s571", + "NameJp": "店内F CLASS", + "NameEng": "店内F CLASS", + "UnlockRequirementJp": "店内対戦で1WIN", + "UnlockRequirementEng": "Get wins 1 or higher\nin multiplayer match", + "Type": 19 + }, + { + "Id": 571, + "IdString": "s572", + "NameJp": "店内E CLASS", + "NameEng": "店内E CLASS", + "UnlockRequirementJp": "店内対戦で10WIN", + "UnlockRequirementEng": "Get wins 10 or higher\nin multiplayer match", + "Type": 19 + }, + { + "Id": 572, + "IdString": "s573", + "NameJp": "店内D CLASS", + "NameEng": "店内D CLASS", + "UnlockRequirementJp": "店内対戦で25WIN", + "UnlockRequirementEng": "Get wins 25 or higher\nin multiplayer match", + "Type": 19 + }, + { + "Id": 573, + "IdString": "s574", + "NameJp": "店内C CLASS", + "NameEng": "店内C CLASS", + "UnlockRequirementJp": "店内対戦で50WIN", + "UnlockRequirementEng": "Get wins 50 or higher\nin multiplayer match", + "Type": 19 + }, + { + "Id": 574, + "IdString": "s575", + "NameJp": "店内B CLASS", + "NameEng": "店内B CLASS", + "UnlockRequirementJp": "店内対戦で75WIN", + "UnlockRequirementEng": "Get wins 75 or higher\nin multiplayer match", + "Type": 19 + }, + { + "Id": 575, + "IdString": "s576", + "NameJp": "店内A CLASS", + "NameEng": "店内A CLASS", + "UnlockRequirementJp": "店内対戦で100WIN", + "UnlockRequirementEng": "Get wins 100 or higher\nin multiplayer match", + "Type": 19 + }, + { + "Id": 576, + "IdString": "s577", + "NameJp": "店内AA CLASS", + "NameEng": "店内AA CLASS", + "UnlockRequirementJp": "店内対戦で200WIN", + "UnlockRequirementEng": "Get wins 200 or higher\nin multiplayer match", + "Type": 19 + }, + { + "Id": 577, + "IdString": "s578", + "NameJp": "店内AAA CLASS", + "NameEng": "店内AAA CLASS", + "UnlockRequirementJp": "店内対戦で300WIN", + "UnlockRequirementEng": "Get wins 300 or higher\nin multiplayer match", + "Type": 19 + }, + { + "Id": 578, + "IdString": "s579", + "NameJp": "店内S CLASS", + "NameEng": "店内S CLASS", + "UnlockRequirementJp": "店内対戦で400WIN", + "UnlockRequirementEng": "Get wins 400 or higher\nin multiplayer match", + "Type": 19 + }, + { + "Id": 579, + "IdString": "s580", + "NameJp": "店内SS CLASS", + "NameEng": "店内SS CLASS", + "UnlockRequirementJp": "店内対戦で500WIN", + "UnlockRequirementEng": "Get wins 500 or higher\nin multiplayer match", + "Type": 19 + }, + { + "Id": 580, + "IdString": "s581", + "NameJp": "店内SSS CLASS", + "NameEng": "店内SSS CLASS", + "UnlockRequirementJp": "店内対戦で1,000WIN", + "UnlockRequirementEng": "Get wins 1000 or higher\nin multiplayer match", + "Type": 19 + }, + { + "Id": 581, + "IdString": "s582", + "NameJp": "I love \"Play merrily\"", + "NameEng": "I love \"Play merrily\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 582, + "IdString": "s583", + "NameJp": "陽気先生", + "NameEng": "陽気先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 583, + "IdString": "s584", + "NameJp": "陽気大王", + "NameEng": "陽気大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 584, + "IdString": "s585", + "NameJp": "陽気神", + "NameEng": "陽気神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 585, + "IdString": "s586", + "NameJp": "I love \"Breach of faith\"", + "NameEng": "I love \"Breach of faith\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 586, + "IdString": "s587", + "NameJp": "裏切り先生", + "NameEng": "裏切り先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 587, + "IdString": "s588", + "NameJp": "裏切り大王", + "NameEng": "裏切り大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 588, + "IdString": "s589", + "NameJp": "裏切り神", + "NameEng": "裏切り神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 589, + "IdString": "s590", + "NameJp": "I love \"檄 (GEKI)\"", + "NameEng": "I love \"檄 (GEKI)\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 590, + "IdString": "s591", + "NameJp": "檄先生", + "NameEng": "檄先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 591, + "IdString": "s592", + "NameJp": "檄大王", + "NameEng": "檄大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 592, + "IdString": "s593", + "NameJp": "檄神", + "NameEng": "檄神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 593, + "IdString": "s594", + "NameJp": "I love \"Spring to mind\"", + "NameEng": "I love \"Spring to mind\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 594, + "IdString": "s595", + "NameJp": "Spring先生", + "NameEng": "Spring先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 595, + "IdString": "s596", + "NameJp": "Spring大王", + "NameEng": "Spring大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 596, + "IdString": "s597", + "NameJp": "Spring神", + "NameEng": "Spring神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 597, + "IdString": "s598", + "NameJp": "I love \"Good-bye my earth\"", + "NameEng": "I love \"Good-bye my earth\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 598, + "IdString": "s599", + "NameJp": "Good-bye先生", + "NameEng": "Good-bye先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 599, + "IdString": "s600", + "NameJp": "Good-bye大王", + "NameEng": "Good-bye大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 600, + "IdString": "s601", + "NameJp": "Good-bye神", + "NameEng": "Good-bye神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 601, + "IdString": "s602", + "NameJp": "I love \"S.I.I.G. Medley\"", + "NameEng": "I love \"S.I.I.G. Medley\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 602, + "IdString": "s603", + "NameJp": "インフィニティ先生", + "NameEng": "インフィニティ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 603, + "IdString": "s604", + "NameJp": "インフィニティ大王", + "NameEng": "インフィニティ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 604, + "IdString": "s605", + "NameJp": "インフィニティ神", + "NameEng": "インフィニティ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 605, + "IdString": "s606", + "NameJp": "I love \"Hello 31337\"", + "NameEng": "I love \"Hello 31337\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 606, + "IdString": "s607", + "NameJp": "31337先生", + "NameEng": "31337先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 607, + "IdString": "s608", + "NameJp": "31337大王", + "NameEng": "31337大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 608, + "IdString": "s609", + "NameJp": "31337神", + "NameEng": "31337神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 609, + "IdString": "s610", + "NameJp": "I love \"Protocol Signal Generation\"", + "NameEng": "I love \"Protocol Signal Generation\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 610, + "IdString": "s611", + "NameJp": "Generation Master", + "NameEng": "Generation Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 611, + "IdString": "s612", + "NameJp": "Generation King", + "NameEng": "Generation King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 612, + "IdString": "s613", + "NameJp": "Generation God", + "NameEng": "Generation God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 613, + "IdString": "s614", + "NameJp": "I love \"Just no friend\"", + "NameEng": "I love \"Just no friend\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 614, + "IdString": "s615", + "NameJp": "No friend master", + "NameEng": "No friend master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 615, + "IdString": "s616", + "NameJp": "No friend king", + "NameEng": "No friend king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 616, + "IdString": "s617", + "NameJp": "No friend god", + "NameEng": "No friend god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 617, + "IdString": "s618", + "NameJp": "I love \"Thrash Beat\"", + "NameEng": "I love \"Thrash Beat\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 618, + "IdString": "s619", + "NameJp": "Thrash Master", + "NameEng": "Thrash Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 619, + "IdString": "s620", + "NameJp": "Thrash King", + "NameEng": "Thrash King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 620, + "IdString": "s621", + "NameJp": "Thrash God", + "NameEng": "Thrash God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 621, + "IdString": "s622", + "NameJp": "I love \"Fess up!\"", + "NameEng": "I love \"Fess up!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 622, + "IdString": "s623", + "NameJp": "Fess up先生", + "NameEng": "Fess up先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 623, + "IdString": "s624", + "NameJp": "Fess up大王", + "NameEng": "Fess up大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 624, + "IdString": "s625", + "NameJp": "Fess up神", + "NameEng": "Fess up神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 625, + "IdString": "s626", + "NameJp": "I love \"VISIONNERZ~幻視人~\"", + "NameEng": "I love \"VISIONNERZ~幻視人~\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 626, + "IdString": "s627", + "NameJp": "幻視先生", + "NameEng": "幻視先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 627, + "IdString": "s628", + "NameJp": "幻視大王", + "NameEng": "幻視大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 628, + "IdString": "s629", + "NameJp": "幻視神", + "NameEng": "幻視神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 629, + "IdString": "s630", + "NameJp": "I love \"Jingle Bells -Trance Mix-\"", + "NameEng": "I love \"Jingle Bells -Trance Mix-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 630, + "IdString": "s631", + "NameJp": "Jingle Bells Master", + "NameEng": "Jingle Bells Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 631, + "IdString": "s632", + "NameJp": "Jingle Bells King", + "NameEng": "Jingle Bells King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 632, + "IdString": "s633", + "NameJp": "Jingle Bells God", + "NameEng": "Jingle Bells God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 633, + "IdString": "s634", + "NameJp": "I love \"カンナンシンク\"", + "NameEng": "I love \"カンナンシンク\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 634, + "IdString": "s635", + "NameJp": "カンナンシンクマスター", + "NameEng": "カンナンシンクマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 635, + "IdString": "s636", + "NameJp": "カンナンシンクキング", + "NameEng": "カンナンシンクキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 636, + "IdString": "s637", + "NameJp": "カンナンシンクゴッド", + "NameEng": "カンナンシンクゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 637, + "IdString": "s638", + "NameJp": "I love \"Shadow\"", + "NameEng": "I love \"Shadow\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 638, + "IdString": "s639", + "NameJp": "Shadow Master", + "NameEng": "Shadow Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 639, + "IdString": "s640", + "NameJp": "Shadow King", + "NameEng": "Shadow King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 640, + "IdString": "s641", + "NameJp": "Shadow God", + "NameEng": "Shadow God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 641, + "IdString": "s642", + "NameJp": "I love \"Planet connection\"", + "NameEng": "I love \"Planet connection\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 642, + "IdString": "s643", + "NameJp": "Planet master", + "NameEng": "Planet master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 643, + "IdString": "s644", + "NameJp": "Planet king", + "NameEng": "Planet king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 644, + "IdString": "s645", + "NameJp": "Planet god", + "NameEng": "Planet god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 645, + "IdString": "s646", + "NameJp": "I love \"Invader Disco\"", + "NameEng": "I love \"Invader Disco\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 646, + "IdString": "s647", + "NameJp": "Invader Disco先生", + "NameEng": "Invader Disco先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 647, + "IdString": "s648", + "NameJp": "Invader Disco大王", + "NameEng": "Invader Disco大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 648, + "IdString": "s649", + "NameJp": "Invader Disco神", + "NameEng": "Invader Disco神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 649, + "IdString": "s650", + "NameJp": "I love \"SPACE INVADERS 2003\"", + "NameEng": "I love \"SPACE INVADERS 2003\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 650, + "IdString": "s651", + "NameJp": "2003 MASTER", + "NameEng": "2003 MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 651, + "IdString": "s652", + "NameJp": "2003 KING", + "NameEng": "2003 KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 652, + "IdString": "s653", + "NameJp": "2003 GOD", + "NameEng": "2003 GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 653, + "IdString": "s654", + "NameJp": "I love \"ピ・ピ・ピ・ミュージック\"", + "NameEng": "I love \"ピ・ピ・ピ・ミュージック\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 654, + "IdString": "s655", + "NameJp": "ピ・ピ・ピ・先生", + "NameEng": "ピ・ピ・ピ・先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 655, + "IdString": "s656", + "NameJp": "ピ・ピ・ピ・大王", + "NameEng": "ピ・ピ・ピ・大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 656, + "IdString": "s657", + "NameJp": "ピ・ピ・ピ・神", + "NameEng": "ピ・ピ・ピ・神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 657, + "IdString": "s658", + "NameJp": "I love \"ミュージック・リボルバー\"", + "NameEng": "I love \"ミュージック・リボルバー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 658, + "IdString": "s659", + "NameJp": "ミュージック・リボルバー・マスター", + "NameEng": "ミュージック・リボルバー・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 659, + "IdString": "s660", + "NameJp": "ミュージック・リボルバー・キング", + "NameEng": "ミュージック・リボルバー・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 660, + "IdString": "s661", + "NameJp": "ミュージック・リボルバー・ゴッド", + "NameEng": "ミュージック・リボルバー・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 661, + "IdString": "s662", + "NameJp": "I love \"Dreamer\"", + "NameEng": "I love \"Dreamer\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 662, + "IdString": "s663", + "NameJp": "夢想先生", + "NameEng": "夢想先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 663, + "IdString": "s664", + "NameJp": "夢想大王", + "NameEng": "夢想大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 664, + "IdString": "s665", + "NameJp": "夢想神", + "NameEng": "夢想神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 665, + "IdString": "s666", + "NameJp": "I love \"Shooting Star\"", + "NameEng": "I love \"Shooting Star\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 666, + "IdString": "s667", + "NameJp": "流星先生", + "NameEng": "流星先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 667, + "IdString": "s668", + "NameJp": "流星大王", + "NameEng": "流星大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 668, + "IdString": "s669", + "NameJp": "流星神", + "NameEng": "流星神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 669, + "IdString": "s670", + "NameJp": "I love \"Crowded space\"", + "NameEng": "I love \"Crowded space\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 670, + "IdString": "s671", + "NameJp": "Crowded master", + "NameEng": "Crowded master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 671, + "IdString": "s672", + "NameJp": "Crowded king", + "NameEng": "Crowded king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 672, + "IdString": "s673", + "NameJp": "Crowded god", + "NameEng": "Crowded god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 673, + "IdString": "s674", + "NameJp": "I love \"Extreme MGG★★★\"", + "NameEng": "I love \"Extreme MGG★★★\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 674, + "IdString": "s675", + "NameJp": "★★★先生", + "NameEng": "★★★先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 675, + "IdString": "s676", + "NameJp": "★★★大王", + "NameEng": "★★★大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 676, + "IdString": "s677", + "NameJp": "★★★神", + "NameEng": "★★★神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 677, + "IdString": "s678", + "NameJp": "I love \"DADDY MULK\"", + "NameEng": "I love \"DADDY MULK\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 678, + "IdString": "s679", + "NameJp": "DADDY MASTER", + "NameEng": "DADDY MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 679, + "IdString": "s680", + "NameJp": "DADDY KING", + "NameEng": "DADDY KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 680, + "IdString": "s681", + "NameJp": "DADDY GOD", + "NameEng": "DADDY GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 681, + "IdString": "s682", + "NameJp": "I love \"Quartet Theme\"", + "NameEng": "I love \"Quartet Theme\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 682, + "IdString": "s683", + "NameJp": "Quartet Master", + "NameEng": "Quartet Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 683, + "IdString": "s684", + "NameJp": "Quartet King", + "NameEng": "Quartet King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 684, + "IdString": "s685", + "NameJp": "Quartet God", + "NameEng": "Quartet God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 685, + "IdString": "s686", + "NameJp": "I love \"GO! SPIRAL GO!\"", + "NameEng": "I love \"GO! SPIRAL GO!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 686, + "IdString": "s687", + "NameJp": "SPIRAL MASTER", + "NameEng": "SPIRAL MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 687, + "IdString": "s688", + "NameJp": "SPIRAL KING", + "NameEng": "SPIRAL KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 688, + "IdString": "s689", + "NameJp": "SPIRAL GOD", + "NameEng": "SPIRAL GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 689, + "IdString": "s690", + "NameJp": "I love \"PIXEL STAR\"", + "NameEng": "I love \"PIXEL STAR\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 690, + "IdString": "s691", + "NameJp": "PIXEL MASTER", + "NameEng": "PIXEL MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 691, + "IdString": "s692", + "NameJp": "PIXEL KING", + "NameEng": "PIXEL KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 692, + "IdString": "s693", + "NameJp": "PIXEL GOD", + "NameEng": "PIXEL GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 693, + "IdString": "s694", + "NameJp": "I love \"Freestyle Beats\"", + "NameEng": "I love \"Freestyle Beats\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 694, + "IdString": "s695", + "NameJp": "Freestyle Master", + "NameEng": "Freestyle Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 695, + "IdString": "s696", + "NameJp": "Freestyle King", + "NameEng": "Freestyle King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 696, + "IdString": "s697", + "NameJp": "Freestyle God", + "NameEng": "Freestyle God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 697, + "IdString": "s698", + "NameJp": "I love \"グルーヴ・リボルバー\"", + "NameEng": "I love \"グルーヴ・リボルバー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 698, + "IdString": "s699", + "NameJp": "グルーヴ・リボルバー・マスター", + "NameEng": "グルーヴ・リボルバー・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 699, + "IdString": "s700", + "NameJp": "グルーヴ・リボルバー・キング", + "NameEng": "グルーヴ・リボルバー・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 700, + "IdString": "s701", + "NameJp": "グルーヴ・リボルバー・ゴッド", + "NameEng": "グルーヴ・リボルバー・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 701, + "IdString": "s702", + "NameJp": "I love \"Wacky dance ethnic\"", + "NameEng": "I love \"Wacky dance ethnic\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 702, + "IdString": "s703", + "NameJp": "Wacky master", + "NameEng": "Wacky master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 703, + "IdString": "s704", + "NameJp": "Wacky king", + "NameEng": "Wacky king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 704, + "IdString": "s705", + "NameJp": "Wacky god", + "NameEng": "Wacky god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 705, + "IdString": "s706", + "NameJp": "I love \"KIKIKAIKAI\"", + "NameEng": "I love \"KIKIKAIKAI\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 706, + "IdString": "s707", + "NameJp": "奇々怪界先生", + "NameEng": "奇々怪界先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 707, + "IdString": "s708", + "NameJp": "奇々怪界大王", + "NameEng": "奇々怪界大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 708, + "IdString": "s709", + "NameJp": "奇々怪界神", + "NameEng": "奇々怪界神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 709, + "IdString": "s710", + "NameJp": "I love \"OVER THE NIGHT\"", + "NameEng": "I love \"OVER THE NIGHT\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 710, + "IdString": "s711", + "NameJp": "OVER THE MASTER", + "NameEng": "OVER THE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 711, + "IdString": "s712", + "NameJp": "OVER THE KING", + "NameEng": "OVER THE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 712, + "IdString": "s713", + "NameJp": "OVER THE GOD", + "NameEng": "OVER THE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 713, + "IdString": "s714", + "NameJp": "I love \"Analysis Division\"", + "NameEng": "I love \"Analysis Division\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 714, + "IdString": "s715", + "NameJp": "Analysis Master", + "NameEng": "Analysis Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 715, + "IdString": "s716", + "NameJp": "Analysis King", + "NameEng": "Analysis King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 716, + "IdString": "s717", + "NameJp": "Analysis God", + "NameEng": "Analysis God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 717, + "IdString": "s718", + "NameJp": "I love \"Got more raves?\"", + "NameEng": "I love \"Got more raves?\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 718, + "IdString": "s719", + "NameJp": "Groove master?", + "NameEng": "Groove master?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 719, + "IdString": "s720", + "NameJp": "King of groove master?", + "NameEng": "King of groove master?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 720, + "IdString": "s721", + "NameJp": "God more raves?", + "NameEng": "God more raves?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 721, + "IdString": "s722", + "NameJp": "I love \"Got a pain cover?\"", + "NameEng": "I love \"Got a pain cover?\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 722, + "IdString": "s723", + "NameJp": "Groove captain?", + "NameEng": "Groove captain?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 723, + "IdString": "s724", + "NameJp": "King of groove captain?", + "NameEng": "King of groove captain?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 724, + "IdString": "s725", + "NameJp": "God a pain cover?", + "NameEng": "God a pain cover?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 725, + "IdString": "s726", + "NameJp": "I love \"Jupiter II Europa\"", + "NameEng": "I love \"Jupiter II Europa\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 726, + "IdString": "s727", + "NameJp": "Europa Master", + "NameEng": "Europa Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 727, + "IdString": "s728", + "NameJp": "Europa King", + "NameEng": "Europa King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 728, + "IdString": "s729", + "NameJp": "Europa God", + "NameEng": "Europa God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 729, + "IdString": "s730", + "NameJp": "I love \"Lost Colors\"", + "NameEng": "I love \"Lost Colors\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 730, + "IdString": "s731", + "NameJp": "無彩色先生", + "NameEng": "無彩色先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 731, + "IdString": "s732", + "NameJp": "無彩色大王", + "NameEng": "無彩色大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 732, + "IdString": "s733", + "NameJp": "無彩色神", + "NameEng": "無彩色神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 733, + "IdString": "s734", + "NameJp": "I love \"Five to Seven\"", + "NameEng": "I love \"Five to Seven\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 734, + "IdString": "s735", + "NameJp": "527先生", + "NameEng": "527先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 735, + "IdString": "s736", + "NameJp": "527大王", + "NameEng": "527大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 736, + "IdString": "s737", + "NameJp": "527神", + "NameEng": "527神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 737, + "IdString": "s738", + "NameJp": "I love \"COZMIC OPERATION\"", + "NameEng": "I love \"COZMIC OPERATION\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 738, + "IdString": "s739", + "NameJp": "COZMIC MASTER", + "NameEng": "COZMIC MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 739, + "IdString": "s740", + "NameJp": "COZMIC KING", + "NameEng": "COZMIC KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 740, + "IdString": "s741", + "NameJp": "COZMIC GOD", + "NameEng": "COZMIC GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 741, + "IdString": "s742", + "NameJp": "I love \"World Collapse\"", + "NameEng": "I love \"World Collapse\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 742, + "IdString": "s743", + "NameJp": "Collapse Master", + "NameEng": "Collapse Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 743, + "IdString": "s744", + "NameJp": "Collapse King", + "NameEng": "Collapse King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 744, + "IdString": "s745", + "NameJp": "Collapse God", + "NameEng": "Collapse God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 745, + "IdString": "s746", + "NameJp": "I love \"Captain NEO\"", + "NameEng": "I love \"Captain NEO\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 746, + "IdString": "s747", + "NameJp": "Master NEO", + "NameEng": "Master NEO", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 747, + "IdString": "s748", + "NameJp": "King NEO", + "NameEng": "King NEO", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 748, + "IdString": "s749", + "NameJp": "God NEO", + "NameEng": "God NEO", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 749, + "IdString": "s750", + "NameJp": "I love \"ポリリズム\"", + "NameEng": "I love \"ポリリズム\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 750, + "IdString": "s751", + "NameJp": "ポリリズムマスター", + "NameEng": "ポリリズムマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 751, + "IdString": "s752", + "NameJp": "ポリリズムキング", + "NameEng": "ポリリズムキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 752, + "IdString": "s753", + "NameJp": "ポリリズムゴッド", + "NameEng": "ポリリズムゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 753, + "IdString": "s754", + "NameJp": "I love \"JUMPER\"", + "NameEng": "I love \"JUMPER\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 754, + "IdString": "s755", + "NameJp": "MASTER JUMPER", + "NameEng": "MASTER JUMPER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 755, + "IdString": "s756", + "NameJp": "KING JUMPER", + "NameEng": "KING JUMPER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 756, + "IdString": "s757", + "NameJp": "GOD JUMPER", + "NameEng": "GOD JUMPER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 757, + "IdString": "s758", + "NameJp": "I love \"Pray\"", + "NameEng": "I love \"Pray\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 758, + "IdString": "s759", + "NameJp": "Pray Master", + "NameEng": "Pray Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 759, + "IdString": "s760", + "NameJp": "Pray King", + "NameEng": "Pray King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 760, + "IdString": "s761", + "NameJp": "Pray God", + "NameEng": "Pray God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 761, + "IdString": "s762", + "NameJp": "I love \"Kick It Out\"", + "NameEng": "I love \"Kick It Out\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 762, + "IdString": "s763", + "NameJp": "Kick It Out Master", + "NameEng": "Kick It Out Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 763, + "IdString": "s764", + "NameJp": "Kick It Out King", + "NameEng": "Kick It Out King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 764, + "IdString": "s765", + "NameJp": "Kick It Out God", + "NameEng": "Kick It Out God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 765, + "IdString": "s766", + "NameJp": "I love \"ノルニル\"", + "NameEng": "I love \"ノルニル\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 766, + "IdString": "s767", + "NameJp": "ノルニル先生", + "NameEng": "ノルニル先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 767, + "IdString": "s768", + "NameJp": "ノルニル大王", + "NameEng": "ノルニル大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 768, + "IdString": "s769", + "NameJp": "ノルニル神", + "NameEng": "ノルニル神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 769, + "IdString": "s770", + "NameJp": "I love \"アルクアラウンド\"", + "NameEng": "I love \"アルクアラウンド\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 770, + "IdString": "s771", + "NameJp": "アルクアラウンドマスター", + "NameEng": "アルクアラウンドマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 771, + "IdString": "s772", + "NameJp": "アルクアラウンドキング", + "NameEng": "アルクアラウンドキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 772, + "IdString": "s773", + "NameJp": "アルクアラウンドゴッド", + "NameEng": "アルクアラウンドゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 773, + "IdString": "s774", + "NameJp": "I love \"V.I.P\"", + "NameEng": "I love \"V.I.P\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 774, + "IdString": "s775", + "NameJp": "V.I.P先生", + "NameEng": "V.I.P先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 775, + "IdString": "s776", + "NameJp": "V.I.P大王", + "NameEng": "V.I.P大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 776, + "IdString": "s777", + "NameJp": "V.I.P神", + "NameEng": "V.I.P神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 777, + "IdString": "s778", + "NameJp": "I love \"Bless You\"", + "NameEng": "I love \"Bless You\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 778, + "IdString": "s779", + "NameJp": "Bless You Master", + "NameEng": "Bless You Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 779, + "IdString": "s780", + "NameJp": "Bless You King", + "NameEng": "Bless You King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 780, + "IdString": "s781", + "NameJp": "Bless You God", + "NameEng": "Bless You God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 781, + "IdString": "s782", + "NameJp": "I love \"つけまつける\"", + "NameEng": "I love \"つけまつける\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 782, + "IdString": "s783", + "NameJp": "つけま先生", + "NameEng": "つけま先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 783, + "IdString": "s784", + "NameJp": "つけま大王", + "NameEng": "つけま大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 784, + "IdString": "s785", + "NameJp": "つけま神", + "NameEng": "つけま神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 785, + "IdString": "s786", + "NameJp": "I love \"天体観測\"", + "NameEng": "I love \"天体観測\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 786, + "IdString": "s787", + "NameJp": "天体観測先生", + "NameEng": "天体観測先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 787, + "IdString": "s788", + "NameJp": "天体観測大王", + "NameEng": "天体観測大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 788, + "IdString": "s789", + "NameJp": "天体観測神", + "NameEng": "天体観測神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 789, + "IdString": "s790", + "NameJp": "I love \"My Babe Bee\"", + "NameEng": "I love \"My Babe Bee\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 790, + "IdString": "s791", + "NameJp": "Bee Master", + "NameEng": "Bee Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 791, + "IdString": "s792", + "NameJp": "Bee King", + "NameEng": "Bee King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 792, + "IdString": "s793", + "NameJp": "Bee God", + "NameEng": "Bee God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 793, + "IdString": "s794", + "NameJp": "I love \"夢現\"", + "NameEng": "I love \"夢現\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 794, + "IdString": "s795", + "NameJp": "夢現先生", + "NameEng": "夢現先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 795, + "IdString": "s796", + "NameJp": "夢現大王", + "NameEng": "夢現大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 796, + "IdString": "s797", + "NameJp": "夢現神", + "NameEng": "夢現神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 797, + "IdString": "s798", + "NameJp": "I love \"Crystal tears\"", + "NameEng": "I love \"Crystal tears\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 798, + "IdString": "s799", + "NameJp": "Crystal master", + "NameEng": "Crystal master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 799, + "IdString": "s800", + "NameJp": "Crystal king", + "NameEng": "Crystal king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 800, + "IdString": "s801", + "NameJp": "Crystal god", + "NameEng": "Crystal god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 801, + "IdString": "s802", + "NameJp": "I love \"裏表ラバーズ\"", + "NameEng": "I love \"裏表ラバーズ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 802, + "IdString": "s803", + "NameJp": "裏表先生", + "NameEng": "裏表先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 803, + "IdString": "s804", + "NameJp": "裏表大王", + "NameEng": "裏表大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 804, + "IdString": "s805", + "NameJp": "裏表神", + "NameEng": "裏表神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 805, + "IdString": "s806", + "NameJp": "I love \"ローリンガール\"", + "NameEng": "I love \"ローリンガール\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 806, + "IdString": "s807", + "NameJp": "ローリンマスター", + "NameEng": "ローリンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 807, + "IdString": "s808", + "NameJp": "ローリンキング", + "NameEng": "ローリンキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 808, + "IdString": "s809", + "NameJp": "ローリンゴッド", + "NameEng": "ローリンゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 809, + "IdString": "s810", + "NameJp": "I love \"僕のサイノウ\"", + "NameEng": "I love \"僕のサイノウ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 810, + "IdString": "s811", + "NameJp": "僕のセンセイ", + "NameEng": "僕のセンセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 811, + "IdString": "s812", + "NameJp": "僕のオウサマ", + "NameEng": "僕のオウサマ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 812, + "IdString": "s813", + "NameJp": "僕のカミサマ", + "NameEng": "僕のカミサマ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 813, + "IdString": "s814", + "NameJp": "I love \"アンハッピーリフレイン\"", + "NameEng": "I love \"アンハッピーリフレイン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 814, + "IdString": "s815", + "NameJp": "アンハッピーマスター", + "NameEng": "アンハッピーマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 815, + "IdString": "s816", + "NameJp": "アンハッピーキング", + "NameEng": "アンハッピーキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 816, + "IdString": "s817", + "NameJp": "アンハッピーゴッド", + "NameEng": "アンハッピーゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 817, + "IdString": "s818", + "NameJp": "I love \"ロミオとシンデレラ\"", + "NameEng": "I love \"ロミオとシンデレラ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 818, + "IdString": "s819", + "NameJp": "シンデレラ マスター", + "NameEng": "シンデレラ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 819, + "IdString": "s820", + "NameJp": "シンデレラ クイーン", + "NameEng": "シンデレラ クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 820, + "IdString": "s821", + "NameJp": "シンデレラ ゴッデス", + "NameEng": "シンデレラ ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 821, + "IdString": "s822", + "NameJp": "I love \"magnet\"", + "NameEng": "I love \"magnet\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 822, + "IdString": "s823", + "NameJp": "magnet master", + "NameEng": "magnet master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 823, + "IdString": "s824", + "NameJp": "magnet king", + "NameEng": "magnet king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 824, + "IdString": "s825", + "NameJp": "magnet god", + "NameEng": "magnet god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 825, + "IdString": "s826", + "NameJp": "I love \"千本桜\"", + "NameEng": "I love \"千本桜\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 826, + "IdString": "s827", + "NameJp": "千本桜先生", + "NameEng": "千本桜先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 827, + "IdString": "s828", + "NameJp": "千本桜大王", + "NameEng": "千本桜大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 828, + "IdString": "s829", + "NameJp": "千本桜神", + "NameEng": "千本桜神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 829, + "IdString": "s830", + "NameJp": "I love \"月光\"", + "NameEng": "I love \"月光\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 830, + "IdString": "s831", + "NameJp": "月光先生", + "NameEng": "月光先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 831, + "IdString": "s832", + "NameJp": "月光大王", + "NameEng": "月光大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 832, + "IdString": "s833", + "NameJp": "月光神", + "NameEng": "月光神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 833, + "IdString": "s834", + "NameJp": "I love \"カノン\"", + "NameEng": "I love \"カノン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 834, + "IdString": "s835", + "NameJp": "カノン マスター", + "NameEng": "カノン マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 835, + "IdString": "s836", + "NameJp": "カノン キング", + "NameEng": "カノン キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 836, + "IdString": "s837", + "NameJp": "カノン ゴッド", + "NameEng": "カノン ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 837, + "IdString": "s838", + "NameJp": "I love \"STORY\"", + "NameEng": "I love \"STORY\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 838, + "IdString": "s839", + "NameJp": "STORY MASTER", + "NameEng": "STORY MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 839, + "IdString": "s840", + "NameJp": "STORY KING", + "NameEng": "STORY KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 840, + "IdString": "s841", + "NameJp": "STORY GOD", + "NameEng": "STORY GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 841, + "IdString": "s842", + "NameJp": "I love \"SPARKLING FUTURE\"", + "NameEng": "I love \"SPARKLING FUTURE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 842, + "IdString": "s843", + "NameJp": "SPARKLING MASTER", + "NameEng": "SPARKLING MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 843, + "IdString": "s844", + "NameJp": "SPARKLING KING", + "NameEng": "SPARKLING KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 844, + "IdString": "s845", + "NameJp": "SPARKLING GOD", + "NameEng": "SPARKLING GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 845, + "IdString": "s846", + "NameJp": "I love \"カゲロウデイズ\"", + "NameEng": "I love \"カゲロウデイズ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 846, + "IdString": "s847", + "NameJp": "カゲロウデイズ マスター", + "NameEng": "カゲロウデイズ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 847, + "IdString": "s848", + "NameJp": "カゲロウデイズ キング", + "NameEng": "カゲロウデイズ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 848, + "IdString": "s849", + "NameJp": "カゲロウデイズ ゴッド", + "NameEng": "カゲロウデイズ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 849, + "IdString": "s850", + "NameJp": "I love \"チルドレンレコード\"", + "NameEng": "I love \"チルドレンレコード\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 850, + "IdString": "s851", + "NameJp": "チルドレン マスター", + "NameEng": "チルドレン マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 851, + "IdString": "s852", + "NameJp": "チルドレン キング", + "NameEng": "チルドレン キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 852, + "IdString": "s853", + "NameJp": "チルドレン ゴッド", + "NameEng": "チルドレン ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 853, + "IdString": "s854", + "NameJp": "I love \"如月アテンション\"", + "NameEng": "I love \"如月アテンション\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 854, + "IdString": "s855", + "NameJp": "アテンション マスター", + "NameEng": "アテンション マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 855, + "IdString": "s856", + "NameJp": "アテンション キング", + "NameEng": "アテンション キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 856, + "IdString": "s857", + "NameJp": "アテンション ゴッド", + "NameEng": "アテンション ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 857, + "IdString": "s858", + "NameJp": "I love \"ワールズエンド・ダンスホール\"", + "NameEng": "I love \"ワールズエンド・ダンスホール\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 858, + "IdString": "s859", + "NameJp": "ダンスホール・マスター", + "NameEng": "ダンスホール・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 859, + "IdString": "s860", + "NameJp": "ダンスホール・キング", + "NameEng": "ダンスホール・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 860, + "IdString": "s861", + "NameJp": "ダンスホール・ゴッド", + "NameEng": "ダンスホール・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 861, + "IdString": "s862", + "NameJp": "I love \"夜咄ディセイブ\"", + "NameEng": "I love \"夜咄ディセイブ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 862, + "IdString": "s863", + "NameJp": "ディセイブ マスター", + "NameEng": "ディセイブ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 863, + "IdString": "s864", + "NameJp": "ディセイブ キング", + "NameEng": "ディセイブ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 864, + "IdString": "s865", + "NameJp": "ディセイブ ゴッド", + "NameEng": "ディセイブ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 865, + "IdString": "s866", + "NameJp": "I love \"magician's operation\"", + "NameEng": "I love \"magician's operation\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 866, + "IdString": "s867", + "NameJp": "magician master", + "NameEng": "magician master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 867, + "IdString": "s868", + "NameJp": "magician king", + "NameEng": "magician king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 868, + "IdString": "s869", + "NameJp": "magician god", + "NameEng": "magician god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 869, + "IdString": "s870", + "NameJp": "I love \"マトリョシカ\"", + "NameEng": "I love \"マトリョシカ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 870, + "IdString": "s871", + "NameJp": "マトリョシカ先生", + "NameEng": "マトリョシカ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 871, + "IdString": "s872", + "NameJp": "マトリョシカ大王", + "NameEng": "マトリョシカ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 872, + "IdString": "s873", + "NameJp": "マトリョシカ神", + "NameEng": "マトリョシカ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 873, + "IdString": "s874", + "NameJp": "I love \"Bad Apple!! feat. nomico\"", + "NameEng": "I love \"Bad Apple!! feat. nomico\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 874, + "IdString": "s875", + "NameJp": "ろくでなし先生", + "NameEng": "ろくでなし先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 875, + "IdString": "s876", + "NameJp": "ろくでなし大王", + "NameEng": "ろくでなし大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 876, + "IdString": "s877", + "NameJp": "ろくでなし神", + "NameEng": "ろくでなし神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 877, + "IdString": "s878", + "NameJp": "I love \"Starlight Vision\"", + "NameEng": "I love \"Starlight Vision\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 878, + "IdString": "s879", + "NameJp": "四季の先生", + "NameEng": "四季の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 879, + "IdString": "s880", + "NameJp": "四季の大王", + "NameEng": "四季の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 880, + "IdString": "s881", + "NameJp": "四季の最高裁判長", + "NameEng": "四季の最高裁判長", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 881, + "IdString": "s882", + "NameJp": "I love \"Colors\"", + "NameEng": "I love \"Colors\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 882, + "IdString": "s883", + "NameJp": "半人半霊の庭師", + "NameEng": "半人半霊の庭師", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 883, + "IdString": "s884", + "NameJp": "半人半霊の王", + "NameEng": "半人半霊の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 884, + "IdString": "s885", + "NameJp": "半人半霊の神", + "NameEng": "半人半霊の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 885, + "IdString": "s886", + "NameJp": "I love \"Stardust Vox\"", + "NameEng": "I love \"Stardust Vox\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 886, + "IdString": "s887", + "NameJp": "Stardust Master", + "NameEng": "Stardust Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 887, + "IdString": "s888", + "NameJp": "Stardust King", + "NameEng": "Stardust King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 888, + "IdString": "s889", + "NameJp": "Stardust God", + "NameEng": "Stardust God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 889, + "IdString": "s890", + "NameJp": "I love \"No Way Out\"", + "NameEng": "I love \"No Way Out\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 890, + "IdString": "s891", + "NameJp": "No Way Out Master", + "NameEng": "No Way Out Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 891, + "IdString": "s892", + "NameJp": "No Way Out King", + "NameEng": "No Way Out King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 892, + "IdString": "s893", + "NameJp": "No Way Out God", + "NameEng": "No Way Out God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 893, + "IdString": "s894", + "NameJp": "I love \"Sleep\"", + "NameEng": "I love \"Sleep\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 894, + "IdString": "s895", + "NameJp": "眠れる先生", + "NameEng": "眠れる先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 895, + "IdString": "s896", + "NameJp": "眠れる王", + "NameEng": "眠れる王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 896, + "IdString": "s897", + "NameJp": "眠れる神", + "NameEng": "眠れる神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 897, + "IdString": "s898", + "NameJp": "I love \"only my railgun\"", + "NameEng": "I love \"only my railgun\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 898, + "IdString": "s899", + "NameJp": "railgun master", + "NameEng": "railgun master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 899, + "IdString": "s900", + "NameJp": "railgun king", + "NameEng": "railgun king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 900, + "IdString": "s901", + "NameJp": "railgun god", + "NameEng": "railgun god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 901, + "IdString": "s902", + "NameJp": "I love \"Punk Silent Night\"", + "NameEng": "I love \"Punk Silent Night\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 902, + "IdString": "s903", + "NameJp": "Punk Master", + "NameEng": "Punk Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 903, + "IdString": "s904", + "NameJp": "Punk King", + "NameEng": "Punk King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 904, + "IdString": "s905", + "NameJp": "Punk God", + "NameEng": "Punk God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 905, + "IdString": "s906", + "NameJp": "I love \"Sakura Remix\"", + "NameEng": "I love \"Sakura Remix\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 906, + "IdString": "s907", + "NameJp": "Sakura Master", + "NameEng": "Sakura Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 907, + "IdString": "s908", + "NameJp": "Sakura King", + "NameEng": "Sakura King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 908, + "IdString": "s909", + "NameJp": "Sakura God", + "NameEng": "Sakura God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 909, + "IdString": "s910", + "NameJp": "I love \"Music Plot Type Three\"", + "NameEng": "I love \"Music Plot Type Three\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 910, + "IdString": "s911", + "NameJp": "Plot Type 3 Master", + "NameEng": "Plot Type 3 Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 911, + "IdString": "s912", + "NameJp": "Plot Type 3 King", + "NameEng": "Plot Type 3 King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 912, + "IdString": "s913", + "NameJp": "Plot Type 3 God", + "NameEng": "Plot Type 3 God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 913, + "IdString": "s914", + "NameJp": "I love \"Flower of Gangster\"", + "NameEng": "I love \"Flower of Gangster\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 914, + "IdString": "s915", + "NameJp": "Master of Gangster", + "NameEng": "Master of Gangster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 915, + "IdString": "s916", + "NameJp": "King of Gangster", + "NameEng": "King of Gangster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 916, + "IdString": "s917", + "NameJp": "God of Gangster", + "NameEng": "God of Gangster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 917, + "IdString": "s918", + "NameJp": "I love \"ゴーゴー幽霊船\"", + "NameEng": "I love \"ゴーゴー幽霊船\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 918, + "IdString": "s919", + "NameJp": "ゴーゴー先生", + "NameEng": "ゴーゴー先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 919, + "IdString": "s920", + "NameJp": "ゴーゴー大王", + "NameEng": "ゴーゴー大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 920, + "IdString": "s921", + "NameJp": "ゴーゴー神", + "NameEng": "ゴーゴー神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 921, + "IdString": "s922", + "NameJp": "I love \"結ンデ開イテ羅刹ト骸\"", + "NameEng": "I love \"結ンデ開イテ羅刹ト骸\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 922, + "IdString": "s923", + "NameJp": "羅刹先生", + "NameEng": "羅刹先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 923, + "IdString": "s924", + "NameJp": "羅刹大王", + "NameEng": "羅刹大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 924, + "IdString": "s925", + "NameJp": "羅刹神", + "NameEng": "羅刹神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 925, + "IdString": "s926", + "NameJp": "I love \"Mrs.Pumpkinの滑稽な夢\"", + "NameEng": "I love \"Mrs.Pumpkinの滑稽な夢\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 926, + "IdString": "s927", + "NameJp": "パンプキン先生", + "NameEng": "パンプキン先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 927, + "IdString": "s928", + "NameJp": "パンプキン大王", + "NameEng": "パンプキン大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 928, + "IdString": "s929", + "NameJp": "パンプキン神", + "NameEng": "パンプキン神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 929, + "IdString": "s930", + "NameJp": "I love \"パンダヒーロー\"", + "NameEng": "I love \"パンダヒーロー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 930, + "IdString": "s931", + "NameJp": "パンダ先生", + "NameEng": "パンダ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 931, + "IdString": "s932", + "NameJp": "パンダ大王", + "NameEng": "パンダ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 932, + "IdString": "s933", + "NameJp": "パンダ神", + "NameEng": "パンダ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 933, + "IdString": "s934", + "NameJp": "I love \"ダブルラリアット\"", + "NameEng": "I love \"ダブルラリアット\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 934, + "IdString": "s935", + "NameJp": "ダブルラリアットマスター", + "NameEng": "ダブルラリアットマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 935, + "IdString": "s936", + "NameJp": "ダブルラリアットキング", + "NameEng": "ダブルラリアットキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 936, + "IdString": "s937", + "NameJp": "ダブルラリアットゴッド", + "NameEng": "ダブルラリアットゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 937, + "IdString": "s938", + "NameJp": "I love \"右肩の蝶\"", + "NameEng": "I love \"右肩の蝶\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 938, + "IdString": "s939", + "NameJp": "右肩の先生", + "NameEng": "右肩の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 939, + "IdString": "s940", + "NameJp": "右肩の王", + "NameEng": "右肩の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 940, + "IdString": "s941", + "NameJp": "右肩の神", + "NameEng": "右肩の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 941, + "IdString": "s942", + "NameJp": "I love \"ハッピーシンセサイザ\"", + "NameEng": "I love \"ハッピーシンセサイザ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 942, + "IdString": "s943", + "NameJp": "シンセサイザ マスター", + "NameEng": "シンセサイザ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 943, + "IdString": "s944", + "NameJp": "シンセサイザ キング", + "NameEng": "シンセサイザ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 944, + "IdString": "s945", + "NameJp": "シンセサイザ ゴッド", + "NameEng": "シンセサイザ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 945, + "IdString": "s946", + "NameJp": "I love \"恋愛フィロソフィア\"", + "NameEng": "I love \"恋愛フィロソフィア\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 946, + "IdString": "s947", + "NameJp": "フィロソフィア先生", + "NameEng": "フィロソフィア先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 947, + "IdString": "s948", + "NameJp": "フィロソフィア大王", + "NameEng": "フィロソフィア大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 948, + "IdString": "s949", + "NameJp": "フィロソフィア神", + "NameEng": "フィロソフィア神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 949, + "IdString": "s950", + "NameJp": "I love \"ブリキノダンス\"", + "NameEng": "I love \"ブリキノダンス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 950, + "IdString": "s951", + "NameJp": "ブリキノセンセイ", + "NameEng": "ブリキノセンセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 951, + "IdString": "s952", + "NameJp": "ブリキノダイオウ", + "NameEng": "ブリキノダイオウ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 952, + "IdString": "s953", + "NameJp": "ブリキノカミ", + "NameEng": "ブリキノカミ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 953, + "IdString": "s954", + "NameJp": "I love \"アンダワ\"", + "NameEng": "I love \"アンダワ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 954, + "IdString": "s955", + "NameJp": "アンダワセンセイ", + "NameEng": "アンダワセンセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 955, + "IdString": "s956", + "NameJp": "アンダワダイオウ", + "NameEng": "アンダワダイオウ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 956, + "IdString": "s957", + "NameJp": "アンダワシン", + "NameEng": "アンダワシン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 957, + "IdString": "s958", + "NameJp": "I love \"ジベタトラベル\"", + "NameEng": "I love \"ジベタトラベル\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 958, + "IdString": "s959", + "NameJp": "ジベタセンセイ", + "NameEng": "ジベタセンセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 959, + "IdString": "s960", + "NameJp": "ジベタダイオウ", + "NameEng": "ジベタダイオウ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 960, + "IdString": "s961", + "NameJp": "ジベタシン", + "NameEng": "ジベタシン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 961, + "IdString": "s962", + "NameJp": "I love \"プラスチックケージ\"", + "NameEng": "I love \"プラスチックケージ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 962, + "IdString": "s963", + "NameJp": "プラスチックセンセイ", + "NameEng": "プラスチックセンセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 963, + "IdString": "s964", + "NameJp": "プラスチックダイオウ", + "NameEng": "プラスチックダイオウ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 964, + "IdString": "s965", + "NameJp": "プラスチックシン", + "NameEng": "プラスチックシン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 965, + "IdString": "s966", + "NameJp": "I love \"ON THE VERGE OF REVIVAL\"", + "NameEng": "I love \"ON THE VERGE OF REVIVAL\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 966, + "IdString": "s967", + "NameJp": "MASTER OF REVIVAL", + "NameEng": "MASTER OF REVIVAL", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 967, + "IdString": "s968", + "NameJp": "KING OF REVIVAL", + "NameEng": "KING OF REVIVAL", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 968, + "IdString": "s969", + "NameJp": "GOD OF REVIVAL", + "NameEng": "GOD OF REVIVAL", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 969, + "IdString": "s970", + "NameJp": "I love \"STAR COASTER\"", + "NameEng": "I love \"STAR COASTER\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 970, + "IdString": "s971", + "NameJp": "STAR COASTER MASTER", + "NameEng": "STAR COASTER MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 971, + "IdString": "s972", + "NameJp": "STAR COASTER KING", + "NameEng": "STAR COASTER KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 972, + "IdString": "s973", + "NameJp": "STAR COASTER GOD", + "NameEng": "STAR COASTER GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 973, + "IdString": "s974", + "NameJp": "I love \"SKYSCRAPER\"", + "NameEng": "I love \"SKYSCRAPER\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 974, + "IdString": "s975", + "NameJp": "摩天楼先生", + "NameEng": "摩天楼先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 975, + "IdString": "s976", + "NameJp": "摩天楼大王", + "NameEng": "摩天楼大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 976, + "IdString": "s977", + "NameJp": "摩天楼神", + "NameEng": "摩天楼神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 977, + "IdString": "s978", + "NameJp": "I love \"HB-axeleration\"", + "NameEng": "I love \"HB-axeleration\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 978, + "IdString": "s979", + "NameJp": "HB-master", + "NameEng": "HB-master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 979, + "IdString": "s980", + "NameJp": "HB-king", + "NameEng": "HB-king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 980, + "IdString": "s981", + "NameJp": "HB-god", + "NameEng": "HB-god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 981, + "IdString": "s982", + "NameJp": "I love \"聖者の鼓動\"", + "NameEng": "I love \"聖者の鼓動\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 982, + "IdString": "s983", + "NameJp": "鼓動先生", + "NameEng": "鼓動先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 983, + "IdString": "s984", + "NameJp": "鼓動大王", + "NameEng": "鼓動大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 984, + "IdString": "s985", + "NameJp": "鼓動神", + "NameEng": "鼓動神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 985, + "IdString": "s986", + "NameJp": "I love \"SPACE ARCADIAN\"", + "NameEng": "I love \"SPACE ARCADIAN\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 986, + "IdString": "s987", + "NameJp": "ARCADIAN MASTER", + "NameEng": "ARCADIAN MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 987, + "IdString": "s988", + "NameJp": "ARCADIAN KING", + "NameEng": "ARCADIAN KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 988, + "IdString": "s989", + "NameJp": "ARCADIAN GOD", + "NameEng": "ARCADIAN GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 989, + "IdString": "s990", + "NameJp": "I love \"Satisfiction\"", + "NameEng": "I love \"Satisfiction\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 990, + "IdString": "s991", + "NameJp": "Satisfiction Master", + "NameEng": "Satisfiction Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 991, + "IdString": "s992", + "NameJp": "Satisfiction King", + "NameEng": "Satisfiction King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 992, + "IdString": "s993", + "NameJp": "Satisfiction God", + "NameEng": "Satisfiction God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 993, + "IdString": "s994", + "NameJp": "I love \"CERAMIC HEART\"", + "NameEng": "I love \"CERAMIC HEART\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 994, + "IdString": "s995", + "NameJp": "CERAMIC MASTER", + "NameEng": "CERAMIC MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 995, + "IdString": "s996", + "NameJp": "CERAMIC KING", + "NameEng": "CERAMIC KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 996, + "IdString": "s997", + "NameJp": "CERAMIC GOD", + "NameEng": "CERAMIC GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 997, + "IdString": "s998", + "NameJp": "I love \"Period of Revolution\"", + "NameEng": "I love \"Period of Revolution\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 998, + "IdString": "s999", + "NameJp": "Master of Revolution", + "NameEng": "Master of Revolution", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 999, + "IdString": "s1000", + "NameJp": "King of Revolution", + "NameEng": "King of Revolution", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1000, + "IdString": "s1001", + "NameJp": "God of Revolution", + "NameEng": "God of Revolution", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1001, + "IdString": "s1002", + "NameJp": "I love \"Agent Angels\"", + "NameEng": "I love \"Agent Angels\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1002, + "IdString": "s1003", + "NameJp": "Master Angels", + "NameEng": "Master Angels", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1003, + "IdString": "s1004", + "NameJp": "King Angels", + "NameEng": "King Angels", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1004, + "IdString": "s1005", + "NameJp": "God Angels", + "NameEng": "God Angels", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1005, + "IdString": "s1006", + "NameJp": "I love \"Invader GIRL!\"", + "NameEng": "I love \"Invader GIRL!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1006, + "IdString": "s1007", + "NameJp": "UFO-CO先生", + "NameEng": "UFO-CO先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1007, + "IdString": "s1008", + "NameJp": "UFO-CO大王", + "NameEng": "UFO-CO大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1008, + "IdString": "s1009", + "NameJp": "UFO-CO神", + "NameEng": "UFO-CO神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1009, + "IdString": "s1010", + "NameJp": "I love \"ワンダーランドと羊の歌\"", + "NameEng": "I love \"ワンダーランドと羊の歌\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1010, + "IdString": "s1011", + "NameJp": "羊先生", + "NameEng": "羊先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1011, + "IdString": "s1012", + "NameJp": "羊大王", + "NameEng": "羊大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1012, + "IdString": "s1013", + "NameJp": "羊神", + "NameEng": "羊神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1013, + "IdString": "s1014", + "NameJp": "I love \"Geometric City\"", + "NameEng": "I love \"Geometric City\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1014, + "IdString": "s1015", + "NameJp": "Geometric Master", + "NameEng": "Geometric Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1015, + "IdString": "s1016", + "NameJp": "Geometric King", + "NameEng": "Geometric King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1016, + "IdString": "s1017", + "NameJp": "Geometric God", + "NameEng": "Geometric God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1017, + "IdString": "s1018", + "NameJp": "I love \"空想フォレスト\"", + "NameEng": "I love \"空想フォレスト\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1018, + "IdString": "s1019", + "NameJp": "空想先生", + "NameEng": "空想先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1019, + "IdString": "s1020", + "NameJp": "空想大王", + "NameEng": "空想大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1020, + "IdString": "s1021", + "NameJp": "空想神", + "NameEng": "空想神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1021, + "IdString": "s1022", + "NameJp": "I love \"オツキミリサイタル\"", + "NameEng": "I love \"オツキミリサイタル\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1022, + "IdString": "s1023", + "NameJp": "オツキミ先生", + "NameEng": "オツキミ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1023, + "IdString": "s1024", + "NameJp": "オツキミ大王", + "NameEng": "オツキミ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1024, + "IdString": "s1025", + "NameJp": "オツキミ神", + "NameEng": "オツキミ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1025, + "IdString": "s1026", + "NameJp": "I love \"コノハの世界事情\"", + "NameEng": "I love \"コノハの世界事情\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1026, + "IdString": "s1027", + "NameJp": "世界事情マスター", + "NameEng": "世界事情マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1027, + "IdString": "s1028", + "NameJp": "世界事情キング", + "NameEng": "世界事情キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1028, + "IdString": "s1029", + "NameJp": "世界事情ゴッド", + "NameEng": "世界事情ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1029, + "IdString": "s1030", + "NameJp": "I love \"ロスタイムメモリー\"", + "NameEng": "I love \"ロスタイムメモリー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1030, + "IdString": "s1031", + "NameJp": "ロスタイムマスター", + "NameEng": "ロスタイムマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1031, + "IdString": "s1032", + "NameJp": "ロスタイムキング", + "NameEng": "ロスタイムキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1032, + "IdString": "s1033", + "NameJp": "ロスタイムゴッド", + "NameEng": "ロスタイムゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1033, + "IdString": "s1034", + "NameJp": "I love \"東京テディベア\"", + "NameEng": "I love \"東京テディベア\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1034, + "IdString": "s1035", + "NameJp": "テディベア先生", + "NameEng": "テディベア先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1035, + "IdString": "s1036", + "NameJp": "テディベア大王", + "NameEng": "テディベア大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1036, + "IdString": "s1037", + "NameJp": "テディベア神", + "NameEng": "テディベア神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1037, + "IdString": "s1038", + "NameJp": "I love \"アストロトルーパー\"", + "NameEng": "I love \"アストロトルーパー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1038, + "IdString": "s1039", + "NameJp": "アストロマスター", + "NameEng": "アストロマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1039, + "IdString": "s1040", + "NameJp": "アストロキング", + "NameEng": "アストロキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1040, + "IdString": "s1041", + "NameJp": "アストロゴッド", + "NameEng": "アストロゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1041, + "IdString": "s1042", + "NameJp": "I love \"ダンシング☆サムライ\"", + "NameEng": "I love \"ダンシング☆サムライ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1042, + "IdString": "s1043", + "NameJp": "ダンシング☆センセイ", + "NameEng": "ダンシング☆センセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1043, + "IdString": "s1044", + "NameJp": "ダンシング☆ダイオウ", + "NameEng": "ダンシング☆ダイオウ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1044, + "IdString": "s1045", + "NameJp": "ダンシング☆カミサマ", + "NameEng": "ダンシング☆カミサマ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1045, + "IdString": "s1046", + "NameJp": "I love \"THE WORLDS\"", + "NameEng": "I love \"THE WORLDS\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1046, + "IdString": "s1047", + "NameJp": "THE WORLDS MASTER", + "NameEng": "THE WORLDS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1047, + "IdString": "s1048", + "NameJp": "THE WORLDS KING", + "NameEng": "THE WORLDS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1048, + "IdString": "s1049", + "NameJp": "THE WORLDS GOD", + "NameEng": "THE WORLDS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1049, + "IdString": "s1050", + "NameJp": "I love \"独りんぼエンヴィー\"", + "NameEng": "I love \"独りんぼエンヴィー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1050, + "IdString": "s1051", + "NameJp": "独りんぼ先生", + "NameEng": "独りんぼ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1051, + "IdString": "s1052", + "NameJp": "独りんぼ大王", + "NameEng": "独りんぼ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1052, + "IdString": "s1053", + "NameJp": "独りんぼ神", + "NameEng": "独りんぼ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1053, + "IdString": "s1054", + "NameJp": "I love \"バビロン\"", + "NameEng": "I love \"バビロン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1054, + "IdString": "s1055", + "NameJp": "バビロン先生", + "NameEng": "バビロン先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1055, + "IdString": "s1056", + "NameJp": "バビロン大王", + "NameEng": "バビロン大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1056, + "IdString": "s1057", + "NameJp": "バビロン神", + "NameEng": "バビロン神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1057, + "IdString": "s1058", + "NameJp": "I love \"魔法少女幸福論\"", + "NameEng": "I love \"魔法少女幸福論\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1058, + "IdString": "s1059", + "NameJp": "魔法少女先生", + "NameEng": "魔法少女先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1059, + "IdString": "s1060", + "NameJp": "魔法少女大王", + "NameEng": "魔法少女大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1060, + "IdString": "s1061", + "NameJp": "魔法少女神", + "NameEng": "魔法少女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1061, + "IdString": "s1062", + "NameJp": "I love \"ヤンキーボーイ・ヤンキーガール\"", + "NameEng": "I love \"ヤンキーボーイ・ヤンキーガール\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1062, + "IdString": "s1063", + "NameJp": "ヤンキー先生", + "NameEng": "ヤンキー先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1063, + "IdString": "s1064", + "NameJp": "ヤンキー大王", + "NameEng": "ヤンキー大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1064, + "IdString": "s1065", + "NameJp": "ヤンキー神", + "NameEng": "ヤンキー神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1065, + "IdString": "s1066", + "NameJp": "I love \"アザレアの亡霊\"", + "NameEng": "I love \"アザレアの亡霊\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1066, + "IdString": "s1067", + "NameJp": "アザレアの先生", + "NameEng": "アザレアの先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1067, + "IdString": "s1068", + "NameJp": "アザレアの大王", + "NameEng": "アザレアの大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1068, + "IdString": "s1069", + "NameJp": "アザレアの神", + "NameEng": "アザレアの神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1069, + "IdString": "s1070", + "NameJp": "I love \"人造エネミー\"", + "NameEng": "I love \"人造エネミー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1070, + "IdString": "s1071", + "NameJp": "人造先生", + "NameEng": "人造先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1071, + "IdString": "s1072", + "NameJp": "人造大王", + "NameEng": "人造大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1072, + "IdString": "s1073", + "NameJp": "人造神", + "NameEng": "人造神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1073, + "IdString": "s1074", + "NameJp": "I love \"ヘッドフォンアクター\"", + "NameEng": "I love \"ヘッドフォンアクター\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1074, + "IdString": "s1075", + "NameJp": "ヘッドフォンマスター", + "NameEng": "ヘッドフォンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1075, + "IdString": "s1076", + "NameJp": "ヘッドフォンキング", + "NameEng": "ヘッドフォンキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1076, + "IdString": "s1077", + "NameJp": "ヘッドフォンゴッド", + "NameEng": "ヘッドフォンゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1077, + "IdString": "s1078", + "NameJp": "I love \"メカクシコード\"", + "NameEng": "I love \"メカクシコード\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1078, + "IdString": "s1079", + "NameJp": "メカクシマスター", + "NameEng": "メカクシマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1079, + "IdString": "s1080", + "NameJp": "メカクシキング", + "NameEng": "メカクシキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1080, + "IdString": "s1081", + "NameJp": "メカクシゴッド", + "NameEng": "メカクシゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1081, + "IdString": "s1082", + "NameJp": "I love \"アヤノの幸福理論\"", + "NameEng": "I love \"アヤノの幸福理論\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1082, + "IdString": "s1083", + "NameJp": "幸福理論先生", + "NameEng": "幸福理論先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1083, + "IdString": "s1084", + "NameJp": "幸福理論大王", + "NameEng": "幸福理論大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1084, + "IdString": "s1085", + "NameJp": "幸福理論神", + "NameEng": "幸福理論神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1085, + "IdString": "s1086", + "NameJp": "I love \"夕景イエスタデイ\"", + "NameEng": "I love \"夕景イエスタデイ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1086, + "IdString": "s1087", + "NameJp": "夕景マスター", + "NameEng": "夕景マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1087, + "IdString": "s1088", + "NameJp": "夕景キング", + "NameEng": "夕景キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1088, + "IdString": "s1089", + "NameJp": "夕景ゴッド", + "NameEng": "夕景ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1089, + "IdString": "s1090", + "NameJp": "I love \"アウターサイエンス\"", + "NameEng": "I love \"アウターサイエンス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1090, + "IdString": "s1091", + "NameJp": "サイエンスマスター", + "NameEng": "サイエンスマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1091, + "IdString": "s1092", + "NameJp": "サイエンスキング", + "NameEng": "サイエンスキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1092, + "IdString": "s1093", + "NameJp": "サイエンスゴッド", + "NameEng": "サイエンスゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1093, + "IdString": "s1094", + "NameJp": "I love \"少年ブレイヴ\"", + "NameEng": "I love \"少年ブレイヴ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1094, + "IdString": "s1095", + "NameJp": "ブレイヴ マスター", + "NameEng": "ブレイヴ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1095, + "IdString": "s1096", + "NameJp": "ブレイヴ キング", + "NameEng": "ブレイヴ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1096, + "IdString": "s1097", + "NameJp": "ブレイヴ ゴッド", + "NameEng": "ブレイヴ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1097, + "IdString": "s1098", + "NameJp": "I love \"サマータイムレコード\"", + "NameEng": "I love \"サマータイムレコード\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1098, + "IdString": "s1099", + "NameJp": "サマータイムマスター", + "NameEng": "サマータイムマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1099, + "IdString": "s1100", + "NameJp": "サマータイムキング", + "NameEng": "サマータイムキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1100, + "IdString": "s1101", + "NameJp": "サマータイムゴッド", + "NameEng": "サマータイムゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1101, + "IdString": "s1102", + "NameJp": "I love \"It's a pit world\"", + "NameEng": "I love \"It's a pit world\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1102, + "IdString": "s1103", + "NameJp": "It's a pit master", + "NameEng": "It's a pit master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1103, + "IdString": "s1104", + "NameJp": "It's a pit king", + "NameEng": "It's a pit king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1104, + "IdString": "s1105", + "NameJp": "It's a pit god", + "NameEng": "It's a pit god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1105, + "IdString": "s1106", + "NameJp": "I love \"sister's noise\"", + "NameEng": "I love \"sister's noise\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1106, + "IdString": "s1107", + "NameJp": "sister's master", + "NameEng": "sister's master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1107, + "IdString": "s1108", + "NameJp": "sister's king", + "NameEng": "sister's king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1108, + "IdString": "s1109", + "NameJp": "sister's god", + "NameEng": "sister's god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1109, + "IdString": "s1110", + "NameJp": "I love \"恋は渾沌の隷也\"", + "NameEng": "I love \"恋は渾沌の隷也\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1110, + "IdString": "s1111", + "NameJp": "渾沌の先生", + "NameEng": "渾沌の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1111, + "IdString": "s1112", + "NameJp": "渾沌の大王", + "NameEng": "渾沌の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1112, + "IdString": "s1113", + "NameJp": "渾沌の神", + "NameEng": "渾沌の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1113, + "IdString": "s1114", + "NameJp": "I love \"M.S.S.Planet\"", + "NameEng": "I love \"M.S.S.Planet\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1114, + "IdString": "s1115", + "NameJp": "M.S.S.Planet Master", + "NameEng": "M.S.S.Planet Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1115, + "IdString": "s1116", + "NameJp": "M.S.S.Planet King", + "NameEng": "M.S.S.Planet King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1116, + "IdString": "s1117", + "NameJp": "M.S.S.Planet God", + "NameEng": "M.S.S.Planet God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1117, + "IdString": "s1118", + "NameJp": "I love \"Groove Prayer\"", + "NameEng": "I love \"Groove Prayer\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1118, + "IdString": "s1119", + "NameJp": "Groove Prayer Master", + "NameEng": "Groove Prayer Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1119, + "IdString": "s1120", + "NameJp": "Groove Prayer King", + "NameEng": "Groove Prayer King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1120, + "IdString": "s1121", + "NameJp": "Groove Prayer God", + "NameEng": "Groove Prayer God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1121, + "IdString": "s1122", + "NameJp": "I love \"Sayonara Twilight\"", + "NameEng": "I love \"Sayonara Twilight\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1122, + "IdString": "s1123", + "NameJp": "Sayonara Master", + "NameEng": "Sayonara Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1123, + "IdString": "s1124", + "NameJp": "Sayonara King", + "NameEng": "Sayonara King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1124, + "IdString": "s1125", + "NameJp": "Sayonara God", + "NameEng": "Sayonara God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1125, + "IdString": "s1126", + "NameJp": "I love \"Flakes\"", + "NameEng": "I love \"Flakes\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1126, + "IdString": "s1127", + "NameJp": "Flakes Master", + "NameEng": "Flakes Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1127, + "IdString": "s1128", + "NameJp": "Flakes King", + "NameEng": "Flakes King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1128, + "IdString": "s1129", + "NameJp": "Flakes God", + "NameEng": "Flakes God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1129, + "IdString": "s1130", + "NameJp": "I love \"Maiami Sound Beats\"", + "NameEng": "I love \"Maiami Sound Beats\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1130, + "IdString": "s1131", + "NameJp": "Maiami Master", + "NameEng": "Maiami Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1131, + "IdString": "s1132", + "NameJp": "Maiami King", + "NameEng": "Maiami King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1132, + "IdString": "s1133", + "NameJp": "Maiami God", + "NameEng": "Maiami God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1133, + "IdString": "s1134", + "NameJp": "I love \"終わらないグルーヴ\"", + "NameEng": "I love \"終わらないグルーヴ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1134, + "IdString": "s1135", + "NameJp": "終わらない先生", + "NameEng": "終わらない先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1135, + "IdString": "s1136", + "NameJp": "終わらない大王", + "NameEng": "終わらない大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1136, + "IdString": "s1137", + "NameJp": "終わらない神", + "NameEng": "終わらない神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1137, + "IdString": "s1138", + "NameJp": "I love \"Under Control\"", + "NameEng": "I love \"Under Control\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1138, + "IdString": "s1139", + "NameJp": "Control Master", + "NameEng": "Control Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1139, + "IdString": "s1140", + "NameJp": "Control King", + "NameEng": "Control King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1140, + "IdString": "s1141", + "NameJp": "Control God", + "NameEng": "Control God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1141, + "IdString": "s1142", + "NameJp": "I love \"東方音銃夢\"", + "NameEng": "I love \"東方音銃夢\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1142, + "IdString": "s1143", + "NameJp": "音銃夢先生", + "NameEng": "音銃夢先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1143, + "IdString": "s1144", + "NameJp": "音銃夢大王", + "NameEng": "音銃夢大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1144, + "IdString": "s1145", + "NameJp": "音銃夢神", + "NameEng": "音銃夢神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1145, + "IdString": "s1146", + "NameJp": "I love \"東方散楽祭\"", + "NameEng": "I love \"東方散楽祭\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1146, + "IdString": "s1147", + "NameJp": "散楽祭先生", + "NameEng": "散楽祭先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1147, + "IdString": "s1148", + "NameJp": "散楽祭大王", + "NameEng": "散楽祭大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1148, + "IdString": "s1149", + "NameJp": "散楽祭神", + "NameEng": "散楽祭神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1149, + "IdString": "s1150", + "NameJp": "I love \"東方不死鳥\"", + "NameEng": "I love \"東方不死鳥\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1150, + "IdString": "s1151", + "NameJp": "不死鳥先生", + "NameEng": "不死鳥先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1151, + "IdString": "s1152", + "NameJp": "不死鳥大王", + "NameEng": "不死鳥大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1152, + "IdString": "s1153", + "NameJp": "不死鳥神", + "NameEng": "不死鳥神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1153, + "IdString": "s1154", + "NameJp": "I love \"嗚呼、素晴らしきニャン生\"", + "NameEng": "I love \"嗚呼、素晴らしきニャン生\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1154, + "IdString": "s1155", + "NameJp": "嗚呼、素晴らしき先生", + "NameEng": "嗚呼、素晴らしき先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1155, + "IdString": "s1156", + "NameJp": "嗚呼、素晴らしき大王", + "NameEng": "嗚呼、素晴らしき大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1156, + "IdString": "s1157", + "NameJp": "嗚呼、素晴らしき神", + "NameEng": "嗚呼、素晴らしき神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1157, + "IdString": "s1158", + "NameJp": "I love \"エネの電脳紀行\"", + "NameEng": "I love \"エネの電脳紀行\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1158, + "IdString": "s1159", + "NameJp": "電脳紀行先生", + "NameEng": "電脳紀行先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1159, + "IdString": "s1160", + "NameJp": "電脳紀行大王", + "NameEng": "電脳紀行大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1160, + "IdString": "s1161", + "NameJp": "電脳紀行神", + "NameEng": "電脳紀行神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1161, + "IdString": "s1162", + "NameJp": "I love \"カンフーガール=ロンメイ\"", + "NameEng": "I love \"カンフーガール=ロンメイ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1162, + "IdString": "s1163", + "NameJp": "カンフー先生", + "NameEng": "カンフー先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1163, + "IdString": "s1164", + "NameJp": "カンフー大王", + "NameEng": "カンフー大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1164, + "IdString": "s1165", + "NameJp": "カンフー神", + "NameEng": "カンフー神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1165, + "IdString": "s1166", + "NameJp": "I love \"Roteen da Moon\"", + "NameEng": "I love \"Roteen da Moon\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 1166, + "IdString": "s1167", + "NameJp": "Roteen da Master", + "NameEng": "Roteen da Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1167, + "IdString": "s1168", + "NameJp": "Roteen da King", + "NameEng": "Roteen da King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1168, + "IdString": "s1169", + "NameJp": "Roteen da God", + "NameEng": "Roteen da God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 1169, + "IdString": "s1170", + "NameJp": "I love \"Hard Head\"", + "NameEng": "I love \"Hard Head\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 1170, + "IdString": "s1171", + "NameJp": "Hard Head Master", + "NameEng": "Hard Head Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1171, + "IdString": "s1172", + "NameJp": "Hard Head King", + "NameEng": "Hard Head King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1172, + "IdString": "s1173", + "NameJp": "Hard Head God", + "NameEng": "Hard Head God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 1173, + "IdString": "s1174", + "NameJp": "I love \"TGM in the Bottle\"", + "NameEng": "I love \"TGM in the Bottle\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 1174, + "IdString": "s1175", + "NameJp": "TGM先生", + "NameEng": "TGM先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1175, + "IdString": "s1176", + "NameJp": "TGM大王", + "NameEng": "TGM大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1176, + "IdString": "s1177", + "NameJp": "TGM神", + "NameEng": "TGM神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 1177, + "IdString": "s1178", + "NameJp": "I love \"Night Life\"", + "NameEng": "I love \"Night Life\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 1178, + "IdString": "s1179", + "NameJp": "Night Life Master", + "NameEng": "Night Life Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1179, + "IdString": "s1180", + "NameJp": "Night Life King", + "NameEng": "Night Life King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1180, + "IdString": "s1181", + "NameJp": "Night Life God", + "NameEng": "Night Life God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 1181, + "IdString": "s1182", + "NameJp": "I love \"Sakura Mankai\"", + "NameEng": "I love \"Sakura Mankai\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 1182, + "IdString": "s1183", + "NameJp": "Mankai Master", + "NameEng": "Mankai Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1183, + "IdString": "s1184", + "NameJp": "Mankai King", + "NameEng": "Mankai King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1184, + "IdString": "s1185", + "NameJp": "Mankai God", + "NameEng": "Mankai God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 1185, + "IdString": "s1186", + "NameJp": "I love \"Whereabouts of curry\"", + "NameEng": "I love \"Whereabouts of curry\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1186, + "IdString": "s1187", + "NameJp": "curry先生", + "NameEng": "curry先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1187, + "IdString": "s1188", + "NameJp": "curry大王", + "NameEng": "curry大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1188, + "IdString": "s1189", + "NameJp": "curry神", + "NameEng": "curry神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1189, + "IdString": "s1190", + "NameJp": "I love \"ANCIENT\"", + "NameEng": "I love \"ANCIENT\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1190, + "IdString": "s1191", + "NameJp": "ANCIENT MASTER", + "NameEng": "ANCIENT MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1191, + "IdString": "s1192", + "NameJp": "ANCIENT KING", + "NameEng": "ANCIENT KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1192, + "IdString": "s1193", + "NameJp": "ANCIENT GOD", + "NameEng": "ANCIENT GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1193, + "IdString": "s1194", + "NameJp": "I love \"THE BLUE\"", + "NameEng": "I love \"THE BLUE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1194, + "IdString": "s1195", + "NameJp": "THE BLUE MASTER", + "NameEng": "THE BLUE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1195, + "IdString": "s1196", + "NameJp": "THE BLUE KING", + "NameEng": "THE BLUE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1196, + "IdString": "s1197", + "NameJp": "THE BLUE GOD", + "NameEng": "THE BLUE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1197, + "IdString": "s1198", + "NameJp": "I love \"Help me, ERINNNNNN!!\"", + "NameEng": "I love \"Help me, ERINNNNNN!!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1198, + "IdString": "s1199", + "NameJp": "Help me, SENSEIIIIII!!", + "NameEng": "Help me, SENSEIIIIII!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1199, + "IdString": "s1200", + "NameJp": "Help me, DAIOUUUUUU!!", + "NameEng": "Help me, DAIOUUUUUU!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1200, + "IdString": "s1201", + "NameJp": "Help me, KAMISAMAAAAAA!!", + "NameEng": "Help me, KAMISAMAAAAAA!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1201, + "IdString": "s1202", + "NameJp": "I love \"ナイト・オブ・ナイツ\"", + "NameEng": "I love \"ナイト・オブ・ナイツ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1202, + "IdString": "s1203", + "NameJp": "マスター・オブ・ナイツ", + "NameEng": "マスター・オブ・ナイツ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1203, + "IdString": "s1204", + "NameJp": "キング・オブ・ナイツ", + "NameEng": "キング・オブ・ナイツ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1204, + "IdString": "s1205", + "NameJp": "ゴッド・オブ・ナイツ", + "NameEng": "ゴッド・オブ・ナイツ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1205, + "IdString": "s1206", + "NameJp": "I love \"ウサテイ2013\"", + "NameEng": "I love \"ウサテイ2013\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1206, + "IdString": "s1207", + "NameJp": "ウサテイ先生", + "NameEng": "ウサテイ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1207, + "IdString": "s1208", + "NameJp": "ウサテイ大王", + "NameEng": "ウサテイ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1208, + "IdString": "s1209", + "NameJp": "ウサテイ神", + "NameEng": "ウサテイ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1209, + "IdString": "s1210", + "NameJp": "I love \"東方人-TOHO BEAT-\"", + "NameEng": "I love \"東方人-TOHO BEAT-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1210, + "IdString": "s1211", + "NameJp": "幻想郷の先生", + "NameEng": "幻想郷の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1211, + "IdString": "s1212", + "NameJp": "幻想郷の王", + "NameEng": "幻想郷の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1212, + "IdString": "s1213", + "NameJp": "幻想郷の神主", + "NameEng": "幻想郷の神主", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1213, + "IdString": "s1214", + "NameJp": "I love \"魔理沙は大変なものを盗んでいきました\"", + "NameEng": "I love \"魔理沙は大変なものを盗んでいきました\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1214, + "IdString": "s1215", + "NameJp": "ごっすん先生", + "NameEng": "ごっすん先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1215, + "IdString": "s1216", + "NameJp": "ごっすん大王", + "NameEng": "ごっすん大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1216, + "IdString": "s1217", + "NameJp": "ごっすん神", + "NameEng": "ごっすん神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1217, + "IdString": "s1218", + "NameJp": "I love \"チルノのパーフェクトさんすう教室\"", + "NameEng": "I love \"チルノのパーフェクトさんすう教室\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1218, + "IdString": "s1219", + "NameJp": "(9)先生", + "NameEng": "(9)先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1219, + "IdString": "s1220", + "NameJp": "(9)大王", + "NameEng": "(9)大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1220, + "IdString": "s1221", + "NameJp": "(9)神", + "NameEng": "(9)神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1221, + "IdString": "s1222", + "NameJp": "I love \"今夜はヴァンピン☆全世界ナイトメア\"", + "NameEng": "I love \"今夜はヴァンピン☆全世界ナイトメア\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1222, + "IdString": "s1223", + "NameJp": "全世界ナイトメア☆先生", + "NameEng": "全世界ナイトメア☆先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1223, + "IdString": "s1224", + "NameJp": "全世界ナイトメア☆大王", + "NameEng": "全世界ナイトメア☆大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1224, + "IdString": "s1225", + "NameJp": "全世界ナイトメア☆神", + "NameEng": "全世界ナイトメア☆神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1225, + "IdString": "s1226", + "NameJp": "I love \"OMAKENO Stroke\"", + "NameEng": "I love \"OMAKENO Stroke\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1226, + "IdString": "s1227", + "NameJp": "OMAKENO Sensei", + "NameEng": "OMAKENO Sensei", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1227, + "IdString": "s1228", + "NameJp": "OMAKENO Daiou", + "NameEng": "OMAKENO Daiou", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1228, + "IdString": "s1229", + "NameJp": "OMAKENO Kamisama", + "NameEng": "OMAKENO Kamisama", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1229, + "IdString": "s1230", + "NameJp": "I love \"CHRONOPHANTASMA\"", + "NameEng": "I love \"CHRONOPHANTASMA\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1230, + "IdString": "s1231", + "NameJp": "CHRONOMASTER", + "NameEng": "CHRONOMASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1231, + "IdString": "s1232", + "NameJp": "CHRONOKING", + "NameEng": "CHRONOKING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1232, + "IdString": "s1233", + "NameJp": "CHRONOGOD", + "NameEng": "CHRONOGOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1233, + "IdString": "s1234", + "NameJp": "I love \"Catus Carnival\"", + "NameEng": "I love \"Catus Carnival\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1234, + "IdString": "s1235", + "NameJp": "猫先生", + "NameEng": "猫先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1235, + "IdString": "s1236", + "NameJp": "猫大王", + "NameEng": "猫大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1236, + "IdString": "s1237", + "NameJp": "猫神", + "NameEng": "猫神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1237, + "IdString": "s1238", + "NameJp": "I love \"Rebellion\"", + "NameEng": "I love \"Rebellion\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1238, + "IdString": "s1239", + "NameJp": "Rebellion Master", + "NameEng": "Rebellion Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1239, + "IdString": "s1240", + "NameJp": "Rebellion King", + "NameEng": "Rebellion King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1240, + "IdString": "s1241", + "NameJp": "Rebellion God", + "NameEng": "Rebellion God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1241, + "IdString": "s1242", + "NameJp": "I love \"Awakening The Chaos\"", + "NameEng": "I love \"Awakening The Chaos\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1242, + "IdString": "s1243", + "NameJp": "Chaos Master", + "NameEng": "Chaos Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1243, + "IdString": "s1244", + "NameJp": "Chaos King", + "NameEng": "Chaos King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1244, + "IdString": "s1245", + "NameJp": "Chaos God", + "NameEng": "Chaos God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1245, + "IdString": "s1246", + "NameJp": "I love \"No more labor\"", + "NameEng": "I love \"No more labor\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1246, + "IdString": "s1247", + "NameJp": "労働反対先生", + "NameEng": "労働反対先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1247, + "IdString": "s1248", + "NameJp": "労働反対大王", + "NameEng": "労働反対大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1248, + "IdString": "s1249", + "NameJp": "労働反対神", + "NameEng": "労働反対神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1249, + "IdString": "s1250", + "NameJp": "I love \"comet\"", + "NameEng": "I love \"comet\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1250, + "IdString": "s1251", + "NameJp": "彗星先生", + "NameEng": "彗星先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1251, + "IdString": "s1252", + "NameJp": "彗星大王", + "NameEng": "彗星大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1252, + "IdString": "s1253", + "NameJp": "彗星神", + "NameEng": "彗星神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1253, + "IdString": "s1254", + "NameJp": "I love \"ラバー★ポップ\"", + "NameEng": "I love \"ラバー★ポップ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1254, + "IdString": "s1255", + "NameJp": "ラバー★先生", + "NameEng": "ラバー★先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1255, + "IdString": "s1256", + "NameJp": "ラバー★大王", + "NameEng": "ラバー★大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1256, + "IdString": "s1257", + "NameJp": "ラバー★神", + "NameEng": "ラバー★神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1257, + "IdString": "s1258", + "NameJp": "I love \"DX超性能フルメタル少女\"", + "NameEng": "I love \"DX超性能フルメタル少女\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1258, + "IdString": "s1259", + "NameJp": "DX超性能フルメタル先生", + "NameEng": "DX超性能フルメタル先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1259, + "IdString": "s1260", + "NameJp": "DX超性能フルメタル大王", + "NameEng": "DX超性能フルメタル大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1260, + "IdString": "s1261", + "NameJp": "DX超性能フルメタル神", + "NameEng": "DX超性能フルメタル神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1261, + "IdString": "s1262", + "NameJp": "I love \"コネクト\"", + "NameEng": "I love \"コネクト\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1262, + "IdString": "s1263", + "NameJp": "コネクト マスター", + "NameEng": "コネクト マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1263, + "IdString": "s1264", + "NameJp": "コネクト キング", + "NameEng": "コネクト キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1264, + "IdString": "s1265", + "NameJp": "コネクト ゴッド", + "NameEng": "コネクト ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1265, + "IdString": "s1266", + "NameJp": "I love \"crossing field\"", + "NameEng": "I love \"crossing field\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1266, + "IdString": "s1267", + "NameJp": "オンラインゲームマスター", + "NameEng": "オンラインゲームマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1267, + "IdString": "s1268", + "NameJp": "オンラインゲームキング", + "NameEng": "オンラインゲームキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1268, + "IdString": "s1269", + "NameJp": "オンラインゲームゴッド", + "NameEng": "オンラインゲームゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1269, + "IdString": "s1270", + "NameJp": "I love \"残酷な天使のテーゼ\"", + "NameEng": "I love \"残酷な天使のテーゼ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1270, + "IdString": "s1271", + "NameJp": "残酷な先生", + "NameEng": "残酷な先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1271, + "IdString": "s1272", + "NameJp": "残酷な大王", + "NameEng": "残酷な大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1272, + "IdString": "s1273", + "NameJp": "残酷な神", + "NameEng": "残酷な神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1273, + "IdString": "s1274", + "NameJp": "I love \"創聖のアクエリオン\"", + "NameEng": "I love \"創聖のアクエリオン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1274, + "IdString": "s1275", + "NameJp": "創聖のマスター", + "NameEng": "創聖のマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1275, + "IdString": "s1276", + "NameJp": "創聖のキング", + "NameEng": "創聖のキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1276, + "IdString": "s1277", + "NameJp": "創聖のゴッド", + "NameEng": "創聖のゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1277, + "IdString": "s1278", + "NameJp": "I love \"自由の翼\"", + "NameEng": "I love \"自由の翼\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1278, + "IdString": "s1279", + "NameJp": "自由の翼 Master", + "NameEng": "自由の翼 Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1279, + "IdString": "s1280", + "NameJp": "自由の翼 King", + "NameEng": "自由の翼 King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1280, + "IdString": "s1281", + "NameJp": "自由の翼 God", + "NameEng": "自由の翼 God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1281, + "IdString": "s1282", + "NameJp": "I love \"紅蓮の弓矢\"", + "NameEng": "I love \"紅蓮の弓矢\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1282, + "IdString": "s1283", + "NameJp": "紅蓮の弓矢 Master", + "NameEng": "紅蓮の弓矢 Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1283, + "IdString": "s1284", + "NameJp": "紅蓮の弓矢 King", + "NameEng": "紅蓮の弓矢 King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1284, + "IdString": "s1285", + "NameJp": "紅蓮の弓矢 God", + "NameEng": "紅蓮の弓矢 God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1285, + "IdString": "s1286", + "NameJp": "I love \"God knows…\"", + "NameEng": "I love \"God knows…\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1286, + "IdString": "s1287", + "NameJp": "Master knows...", + "NameEng": "Master knows...", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1287, + "IdString": "s1288", + "NameJp": "King knows...", + "NameEng": "King knows...", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1288, + "IdString": "s1289", + "NameJp": "God knows...", + "NameEng": "God knows...", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1289, + "IdString": "s1290", + "NameJp": "I love \"白金ディスコ\"", + "NameEng": "I love \"白金ディスコ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1290, + "IdString": "s1291", + "NameJp": "白金先生", + "NameEng": "白金先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1291, + "IdString": "s1292", + "NameJp": "白金大王", + "NameEng": "白金大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1292, + "IdString": "s1293", + "NameJp": "白金神", + "NameEng": "白金神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1293, + "IdString": "s1294", + "NameJp": "I love \"CELESTIAL\"", + "NameEng": "I love \"CELESTIAL\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1294, + "IdString": "s1295", + "NameJp": "CELESTIAL MASTER", + "NameEng": "CELESTIAL MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1295, + "IdString": "s1296", + "NameJp": "CELESTIAL KING", + "NameEng": "CELESTIAL KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1296, + "IdString": "s1297", + "NameJp": "CELESTIAL GOD", + "NameEng": "CELESTIAL GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1297, + "IdString": "s1298", + "NameJp": "I love \"マジLOVE1000%\"", + "NameEng": "I love \"マジLOVE1000%\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1298, + "IdString": "s1299", + "NameJp": "1000% MASTER", + "NameEng": "1000% MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1299, + "IdString": "s1300", + "NameJp": "1000% KING", + "NameEng": "1000% KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1300, + "IdString": "s1301", + "NameJp": "1000% GOD", + "NameEng": "1000% GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1301, + "IdString": "s1302", + "NameJp": "I love \"マジLOVE2000%\"", + "NameEng": "I love \"マジLOVE2000%\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1302, + "IdString": "s1303", + "NameJp": "2000% MASTER", + "NameEng": "2000% MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1303, + "IdString": "s1304", + "NameJp": "2000% KING", + "NameEng": "2000% KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1304, + "IdString": "s1305", + "NameJp": "2000% GOD", + "NameEng": "2000% GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1305, + "IdString": "s1306", + "NameJp": "I love \"Transfer\"", + "NameEng": "I love \"Transfer\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1306, + "IdString": "s1307", + "NameJp": "Transfer Master", + "NameEng": "Transfer Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1307, + "IdString": "s1308", + "NameJp": "Transfer King", + "NameEng": "Transfer King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1308, + "IdString": "s1309", + "NameJp": "Transfer God", + "NameEng": "Transfer God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1309, + "IdString": "s1310", + "NameJp": "I love \"outsider\"", + "NameEng": "I love \"outsider\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1310, + "IdString": "s1311", + "NameJp": "梅田先生", + "NameEng": "梅田先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1311, + "IdString": "s1312", + "NameJp": "梅田大王", + "NameEng": "梅田大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1312, + "IdString": "s1313", + "NameJp": "梅田神", + "NameEng": "梅田神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1313, + "IdString": "s1314", + "NameJp": "I love \"Choose Your Way\"", + "NameEng": "I love \"Choose Your Way\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1314, + "IdString": "s1315", + "NameJp": "渋谷先生", + "NameEng": "渋谷先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1315, + "IdString": "s1316", + "NameJp": "渋谷大王", + "NameEng": "渋谷大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1316, + "IdString": "s1317", + "NameJp": "渋谷神", + "NameEng": "渋谷神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1317, + "IdString": "s1318", + "NameJp": "I love \"The Future\"", + "NameEng": "I love \"The Future\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1318, + "IdString": "s1319", + "NameJp": "さいたま先生", + "NameEng": "さいたま先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1319, + "IdString": "s1320", + "NameJp": "さいたま大王", + "NameEng": "さいたま大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1320, + "IdString": "s1321", + "NameJp": "さいたま神", + "NameEng": "さいたま神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1321, + "IdString": "s1322", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1322, + "IdString": "s1323", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1323, + "IdString": "s1324", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1324, + "IdString": "s1325", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1325, + "IdString": "s1326", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1326, + "IdString": "s1327", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1327, + "IdString": "s1328", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1328, + "IdString": "s1329", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1329, + "IdString": "s1330", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1330, + "IdString": "s1331", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1331, + "IdString": "s1332", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1332, + "IdString": "s1333", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1333, + "IdString": "s1334", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1334, + "IdString": "s1335", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1335, + "IdString": "s1336", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1336, + "IdString": "s1337", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1337, + "IdString": "s1338", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1338, + "IdString": "s1339", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1339, + "IdString": "s1340", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1340, + "IdString": "s1341", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1341, + "IdString": "s1342", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1342, + "IdString": "s1343", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1343, + "IdString": "s1344", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1344, + "IdString": "s1345", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1345, + "IdString": "s1346", + "NameJp": "I love \"怪談「カーナビ」\"", + "NameEng": "I love \"怪談「カーナビ」\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 1346, + "IdString": "s1347", + "NameJp": "カーナビ先生", + "NameEng": "カーナビ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1347, + "IdString": "s1348", + "NameJp": "カーナビ大王", + "NameEng": "カーナビ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1348, + "IdString": "s1349", + "NameJp": "カーナビ神", + "NameEng": "カーナビ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 1349, + "IdString": "s1350", + "NameJp": "I love \"夏祭り\"", + "NameEng": "I love \"夏祭り\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1350, + "IdString": "s1351", + "NameJp": "夏祭り先生", + "NameEng": "夏祭り先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1351, + "IdString": "s1352", + "NameJp": "夏祭り大王", + "NameEng": "夏祭り大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1352, + "IdString": "s1353", + "NameJp": "夏祭り神", + "NameEng": "夏祭り神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1353, + "IdString": "s1354", + "NameJp": "I love \"女々しくて\"", + "NameEng": "I love \"女々しくて\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1354, + "IdString": "s1355", + "NameJp": "女々しい先生", + "NameEng": "女々しい先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1355, + "IdString": "s1356", + "NameJp": "女々しい大王", + "NameEng": "女々しい大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1356, + "IdString": "s1357", + "NameJp": "女々しい神", + "NameEng": "女々しい神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1357, + "IdString": "s1358", + "NameJp": "I love \"ジャバヲッキー・ジャバヲッカ\"", + "NameEng": "I love \"ジャバヲッキー・ジャバヲッカ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1358, + "IdString": "s1359", + "NameJp": "ジャバジャバ先生", + "NameEng": "ジャバジャバ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1359, + "IdString": "s1360", + "NameJp": "ジャバジャバ大王", + "NameEng": "ジャバジャバ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1360, + "IdString": "s1361", + "NameJp": "ジャバジャバ神", + "NameEng": "ジャバジャバ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1361, + "IdString": "s1362", + "NameJp": "I love \"エンヴィキャットウォーク\"", + "NameEng": "I love \"エンヴィキャットウォーク\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1362, + "IdString": "s1363", + "NameJp": "エンヴィキャットマスター", + "NameEng": "エンヴィキャットマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1363, + "IdString": "s1364", + "NameJp": "エンヴィキャットキング", + "NameEng": "エンヴィキャットキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1364, + "IdString": "s1365", + "NameJp": "エンヴィキャットゴッド", + "NameEng": "エンヴィキャットゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1365, + "IdString": "s1366", + "NameJp": "I love \"骸骨楽団とリリア\"", + "NameEng": "I love \"骸骨楽団とリリア\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1366, + "IdString": "s1367", + "NameJp": "骸骨先生", + "NameEng": "骸骨先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1367, + "IdString": "s1368", + "NameJp": "骸骨大王", + "NameEng": "骸骨大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1368, + "IdString": "s1369", + "NameJp": "骸骨神", + "NameEng": "骸骨神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1369, + "IdString": "s1370", + "NameJp": "I love \"九龍レトロ\"", + "NameEng": "I love \"九龍レトロ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1370, + "IdString": "s1371", + "NameJp": "九龍先生", + "NameEng": "九龍先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1371, + "IdString": "s1372", + "NameJp": "九龍大王", + "NameEng": "九龍大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1372, + "IdString": "s1373", + "NameJp": "九龍神", + "NameEng": "九龍神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1373, + "IdString": "s1374", + "NameJp": "I love \"パラジクロロベンゼン\"", + "NameEng": "I love \"パラジクロロベンゼン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1374, + "IdString": "s1375", + "NameJp": "C6H4Cl2Master", + "NameEng": "C6H4Cl2Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1375, + "IdString": "s1376", + "NameJp": "C6H4Cl2King", + "NameEng": "C6H4Cl2King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1376, + "IdString": "s1377", + "NameJp": "C6H4Cl2God", + "NameEng": "C6H4Cl2God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1377, + "IdString": "s1378", + "NameJp": "I love \"え?あぁ、そう。\"", + "NameEng": "I love \"え?あぁ、そう。\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1378, + "IdString": "s1379", + "NameJp": "え?あぁ、先生。", + "NameEng": "え?あぁ、先生。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1379, + "IdString": "s1380", + "NameJp": "え?あぁ、大王。", + "NameEng": "え?あぁ、大王。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1380, + "IdString": "s1381", + "NameJp": "え?あぁ、神。", + "NameEng": "え?あぁ、神。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1381, + "IdString": "s1382", + "NameJp": "I love \"Walking Through The Towers -Remix-\"", + "NameEng": "I love \"Walking Through The Towers -Remix-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1382, + "IdString": "s1383", + "NameJp": "Tower Remix Master", + "NameEng": "Tower Remix Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1383, + "IdString": "s1384", + "NameJp": "Tower Remix King", + "NameEng": "Tower Remix King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1384, + "IdString": "s1385", + "NameJp": "Tower Remix God", + "NameEng": "Tower Remix God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1385, + "IdString": "s1386", + "NameJp": "I love \"Departure-Remix-\"", + "NameEng": "I love \"Departure-Remix-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1386, + "IdString": "s1387", + "NameJp": "Departure Remix Master", + "NameEng": "Departure Remix Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1387, + "IdString": "s1388", + "NameJp": "Departure Remix King", + "NameEng": "Departure Remix King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1388, + "IdString": "s1389", + "NameJp": "Departure Remix God", + "NameEng": "Departure Remix God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1389, + "IdString": "s1390", + "NameJp": "I love \"A New Journey\"", + "NameEng": "I love \"A New Journey\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1390, + "IdString": "s1391", + "NameJp": "Journey Master", + "NameEng": "Journey Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1391, + "IdString": "s1392", + "NameJp": "Journey King", + "NameEng": "Journey King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1392, + "IdString": "s1393", + "NameJp": "Journey God", + "NameEng": "Journey God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1393, + "IdString": "s1394", + "NameJp": "I love \"Discover from W\"", + "NameEng": "I love \"Discover from W\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1394, + "IdString": "s1395", + "NameJp": "W先生", + "NameEng": "W先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1395, + "IdString": "s1396", + "NameJp": "W大王", + "NameEng": "W大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1396, + "IdString": "s1397", + "NameJp": "W神", + "NameEng": "W神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1397, + "IdString": "s1398", + "NameJp": "I love \"決戦!! from Z\"", + "NameEng": "I love \"決戦!! from Z\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1398, + "IdString": "s1399", + "NameJp": "Z先生", + "NameEng": "Z先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1399, + "IdString": "s1400", + "NameJp": "Z大王", + "NameEng": "Z大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1400, + "IdString": "s1401", + "NameJp": "Z神", + "NameEng": "Z神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1401, + "IdString": "s1402", + "NameJp": "I love \"Inferiority Complex\"", + "NameEng": "I love \"Inferiority Complex\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1402, + "IdString": "s1403", + "NameJp": "アキバ先生", + "NameEng": "アキバ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1403, + "IdString": "s1404", + "NameJp": "アキバ大王", + "NameEng": "アキバ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1404, + "IdString": "s1405", + "NameJp": "アキバ神", + "NameEng": "アキバ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1405, + "IdString": "s1406", + "NameJp": "I love \"瞳のLAZhWARD\"", + "NameEng": "I love \"瞳のLAZhWARD\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1406, + "IdString": "s1407", + "NameJp": "旧渋谷先生", + "NameEng": "旧渋谷先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1407, + "IdString": "s1408", + "NameJp": "旧渋谷大王", + "NameEng": "旧渋谷大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1408, + "IdString": "s1409", + "NameJp": "旧渋谷神", + "NameEng": "旧渋谷神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1409, + "IdString": "s1410", + "NameJp": "I love \"Soul Evolution\"", + "NameEng": "I love \"Soul Evolution\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1410, + "IdString": "s1411", + "NameJp": "NEO SHIBUYA MASTER", + "NameEng": "NEO SHIBUYA MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1411, + "IdString": "s1412", + "NameJp": "NEO SHIBUYA KING", + "NameEng": "NEO SHIBUYA KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1412, + "IdString": "s1413", + "NameJp": "NEO SHIBUYA GOD", + "NameEng": "NEO SHIBUYA GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1413, + "IdString": "s1414", + "NameJp": "I love \"君のいたあの日に\"", + "NameEng": "I love \"君のいたあの日に\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1414, + "IdString": "s1415", + "NameJp": "あの日の先生", + "NameEng": "あの日の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1415, + "IdString": "s1416", + "NameJp": "あの日の王", + "NameEng": "あの日の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1416, + "IdString": "s1417", + "NameJp": "あの日の神", + "NameEng": "あの日の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1417, + "IdString": "s1418", + "NameJp": "I love \"ってゐ!\"", + "NameEng": "I love \"ってゐ!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1418, + "IdString": "s1419", + "NameJp": "てゐ先生", + "NameEng": "てゐ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1419, + "IdString": "s1420", + "NameJp": "てゐ大王", + "NameEng": "てゐ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1420, + "IdString": "s1421", + "NameJp": "てゐ神", + "NameEng": "てゐ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1421, + "IdString": "s1422", + "NameJp": "I love \"リバース・デス\"", + "NameEng": "I love \"リバース・デス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1422, + "IdString": "s1423", + "NameJp": "下克上先生", + "NameEng": "下克上先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1423, + "IdString": "s1424", + "NameJp": "下克上大王", + "NameEng": "下克上大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1424, + "IdString": "s1425", + "NameJp": "下克上神", + "NameEng": "下克上神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1425, + "IdString": "s1426", + "NameJp": "I love \"響縁\"", + "NameEng": "I love \"響縁\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1426, + "IdString": "s1427", + "NameJp": "□△×○先生", + "NameEng": "□△×○先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1427, + "IdString": "s1428", + "NameJp": "□△×○大王", + "NameEng": "□△×○大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1428, + "IdString": "s1429", + "NameJp": "□△×○神", + "NameEng": "□△×○神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1429, + "IdString": "s1430", + "NameJp": "I love \"囲い無き世は一期の月影\"", + "NameEng": "I love \"囲い無き世は一期の月影\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1430, + "IdString": "s1431", + "NameJp": "月影先生", + "NameEng": "月影先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1431, + "IdString": "s1432", + "NameJp": "月影大王", + "NameEng": "月影大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1432, + "IdString": "s1433", + "NameJp": "月影神", + "NameEng": "月影神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1433, + "IdString": "s1434", + "NameJp": "I love \"幻想のサテライト\"", + "NameEng": "I love \"幻想のサテライト\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1434, + "IdString": "s1435", + "NameJp": "サテライトマスター", + "NameEng": "サテライトマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1435, + "IdString": "s1436", + "NameJp": "サテライトキング", + "NameEng": "サテライトキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1436, + "IdString": "s1437", + "NameJp": "サテライトゴッド", + "NameEng": "サテライトゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1437, + "IdString": "s1438", + "NameJp": "I love \"Keep the Faith\"", + "NameEng": "I love \"Keep the Faith\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1438, + "IdString": "s1439", + "NameJp": "Keep the Master", + "NameEng": "Keep the Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1439, + "IdString": "s1440", + "NameJp": "Keep the King", + "NameEng": "Keep the King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1440, + "IdString": "s1441", + "NameJp": "Keep the Fujin", + "NameEng": "Keep the Fujin", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1441, + "IdString": "s1442", + "NameJp": "I love \"蒼空に舞え、墨染の桜\"", + "NameEng": "I love \"蒼空に舞え、墨染の桜\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1442, + "IdString": "s1443", + "NameJp": "墨染の先生", + "NameEng": "墨染の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1443, + "IdString": "s1444", + "NameJp": "墨染の大王", + "NameEng": "墨染の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1444, + "IdString": "s1445", + "NameJp": "完全なる墨染の神", + "NameEng": "完全なる墨染の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1445, + "IdString": "s1446", + "NameJp": "I love \"ケロ9destiny\"", + "NameEng": "I love \"ケロ9destiny\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1446, + "IdString": "s1447", + "NameJp": "両生類の先生", + "NameEng": "両生類の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1447, + "IdString": "s1448", + "NameJp": "両生類の大王", + "NameEng": "両生類の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1448, + "IdString": "s1449", + "NameJp": "両生類の神様", + "NameEng": "両生類の神様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1449, + "IdString": "s1450", + "NameJp": "I love \"I, SCREAM\"", + "NameEng": "I love \"I, SCREAM\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1450, + "IdString": "s1451", + "NameJp": "アイスクリーム先生", + "NameEng": "アイスクリーム先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1451, + "IdString": "s1452", + "NameJp": "アイスクリーム大王", + "NameEng": "アイスクリーム大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1452, + "IdString": "s1453", + "NameJp": "アイスクリーム神", + "NameEng": "アイスクリーム神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1453, + "IdString": "s1454", + "NameJp": "I love \"Crime Wave\"", + "NameEng": "I love \"Crime Wave\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1454, + "IdString": "s1455", + "NameJp": "百鬼夜行の先生", + "NameEng": "百鬼夜行の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1455, + "IdString": "s1456", + "NameJp": "百鬼夜行の王", + "NameEng": "百鬼夜行の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1456, + "IdString": "s1457", + "NameJp": "百鬼夜行の神", + "NameEng": "百鬼夜行の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1457, + "IdString": "s1458", + "NameJp": "I love \"FOUR SEASONS OF LONELINESS\"", + "NameEng": "I love \"FOUR SEASONS OF LONELINESS\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1458, + "IdString": "s1459", + "NameJp": "春夏秋冬の先生", + "NameEng": "春夏秋冬の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1459, + "IdString": "s1460", + "NameJp": "春夏秋冬の王", + "NameEng": "春夏秋冬の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1460, + "IdString": "s1461", + "NameJp": "春夏秋冬の神", + "NameEng": "春夏秋冬の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1461, + "IdString": "s1462", + "NameJp": "I love \"CYBER Sparks\"", + "NameEng": "I love \"CYBER Sparks\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1462, + "IdString": "s1463", + "NameJp": "マスタースパーク先生", + "NameEng": "マスタースパーク先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1463, + "IdString": "s1464", + "NameJp": "ダブルスパーク大王", + "NameEng": "ダブルスパーク大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1464, + "IdString": "s1465", + "NameJp": "ファイナルスパーク神", + "NameEng": "ファイナルスパーク神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1465, + "IdString": "s1466", + "NameJp": "I love \"Weave Detonator\"", + "NameEng": "I love \"Weave Detonator\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 1466, + "IdString": "s1467", + "NameJp": "Detonator Master", + "NameEng": "Detonator Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1467, + "IdString": "s1468", + "NameJp": "Detonator King", + "NameEng": "Detonator King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1468, + "IdString": "s1469", + "NameJp": "Detonator God", + "NameEng": "Detonator God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 1469, + "IdString": "s1470", + "NameJp": "I love \"ホログラム・ロマンス\"", + "NameEng": "I love \"ホログラム・ロマンス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 1470, + "IdString": "s1471", + "NameJp": "ホログラム・マスター", + "NameEng": "ホログラム・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1471, + "IdString": "s1472", + "NameJp": "ホログラム・キング", + "NameEng": "ホログラム・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1472, + "IdString": "s1473", + "NameJp": "ホログラム・ゴッド", + "NameEng": "ホログラム・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 1473, + "IdString": "s1474", + "NameJp": "I love \"聖者の息吹\"", + "NameEng": "I love \"聖者の息吹\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1474, + "IdString": "s1475", + "NameJp": "息吹先生", + "NameEng": "息吹先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1475, + "IdString": "s1476", + "NameJp": "息吹大王", + "NameEng": "息吹大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1476, + "IdString": "s1477", + "NameJp": "息吹神", + "NameEng": "息吹神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1477, + "IdString": "s1478", + "NameJp": "I love \"ID\"", + "NameEng": "I love \"ID\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1478, + "IdString": "s1479", + "NameJp": "Master ID", + "NameEng": "Master ID", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1479, + "IdString": "s1480", + "NameJp": "King ID", + "NameEng": "King ID", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1480, + "IdString": "s1481", + "NameJp": "God ID", + "NameEng": "God ID", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1481, + "IdString": "s1482", + "NameJp": "I love \"M.S.S.Phantom\"", + "NameEng": "I love \"M.S.S.Phantom\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1482, + "IdString": "s1483", + "NameJp": "M.S.S.Phantom Master", + "NameEng": "M.S.S.Phantom Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1483, + "IdString": "s1484", + "NameJp": "M.S.S.Phantom King", + "NameEng": "M.S.S.Phantom King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1484, + "IdString": "s1485", + "NameJp": "M.S.S.Phantom God", + "NameEng": "M.S.S.Phantom God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1485, + "IdString": "s1486", + "NameJp": "I love \"ちゅるりちゅるりら\"", + "NameEng": "I love \"ちゅるりちゅるりら\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1486, + "IdString": "s1487", + "NameJp": "ちゅるり先生", + "NameEng": "ちゅるり先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1487, + "IdString": "s1488", + "NameJp": "ちゅるり大王", + "NameEng": "ちゅるり大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1488, + "IdString": "s1489", + "NameJp": "ちゅるり神", + "NameEng": "ちゅるり神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1489, + "IdString": "s1490", + "NameJp": "I love \"でんでんぱっしょん\"", + "NameEng": "I love \"でんでんぱっしょん\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1490, + "IdString": "s1491", + "NameJp": "でんでん先生", + "NameEng": "でんでん先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1491, + "IdString": "s1492", + "NameJp": "でんでん大王", + "NameEng": "でんでん大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1492, + "IdString": "s1493", + "NameJp": "でんでん神", + "NameEng": "でんでん神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1493, + "IdString": "s1494", + "NameJp": "I love \"行くぜっ!怪盗少女\"", + "NameEng": "I love \"行くぜっ!怪盗少女\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1494, + "IdString": "s1495", + "NameJp": "行くぜっ!先生", + "NameEng": "行くぜっ!先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1495, + "IdString": "s1496", + "NameJp": "行くぜっ!大王", + "NameEng": "行くぜっ!大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1496, + "IdString": "s1497", + "NameJp": "行くぜっ!神", + "NameEng": "行くぜっ!神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1497, + "IdString": "s1498", + "NameJp": "I love \"The Other self\"", + "NameEng": "I love \"The Other self\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1498, + "IdString": "s1499", + "NameJp": "The Other self Master", + "NameEng": "The Other self Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1499, + "IdString": "s1500", + "NameJp": "The Other self King", + "NameEng": "The Other self King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1500, + "IdString": "s1501", + "NameJp": "The Other self God", + "NameEng": "The Other self God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1501, + "IdString": "s1502", + "NameJp": "I love \"Can Do\"", + "NameEng": "I love \"Can Do\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1502, + "IdString": "s1503", + "NameJp": "Can Do Master", + "NameEng": "Can Do Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1503, + "IdString": "s1504", + "NameJp": "Can Do King", + "NameEng": "Can Do King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1504, + "IdString": "s1505", + "NameJp": "Can Do God", + "NameEng": "Can Do God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1505, + "IdString": "s1506", + "NameJp": "I love \"The Party Has Just Begun\"", + "NameEng": "I love \"The Party Has Just Begun\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1506, + "IdString": "s1507", + "NameJp": "Party Master", + "NameEng": "Party Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1507, + "IdString": "s1508", + "NameJp": "Party King", + "NameEng": "Party King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1508, + "IdString": "s1509", + "NameJp": "Party God", + "NameEng": "Party God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1509, + "IdString": "s1510", + "NameJp": "I love \"モザイクロール\"", + "NameEng": "I love \"モザイクロール\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1510, + "IdString": "s1511", + "NameJp": "モザイクマスター", + "NameEng": "モザイクマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1511, + "IdString": "s1512", + "NameJp": "モザイクキング", + "NameEng": "モザイクキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1512, + "IdString": "s1513", + "NameJp": "モザイクゴッド", + "NameEng": "モザイクゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1513, + "IdString": "s1514", + "NameJp": "I love \"ストリーミングハート\"", + "NameEng": "I love \"ストリーミングハート\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1514, + "IdString": "s1515", + "NameJp": "ストリーミングマスター", + "NameEng": "ストリーミングマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1515, + "IdString": "s1516", + "NameJp": "ストリーミングキング", + "NameEng": "ストリーミングキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1516, + "IdString": "s1517", + "NameJp": "ストリーミングゴッド", + "NameEng": "ストリーミングゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1517, + "IdString": "s1518", + "NameJp": "I love \"弱虫モンブラン\"", + "NameEng": "I love \"弱虫モンブラン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1518, + "IdString": "s1519", + "NameJp": "弱虫先生", + "NameEng": "弱虫先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1519, + "IdString": "s1520", + "NameJp": "弱虫大王", + "NameEng": "弱虫大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1520, + "IdString": "s1521", + "NameJp": "弱虫神", + "NameEng": "弱虫神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1521, + "IdString": "s1522", + "NameJp": "I love \"二息歩行\"", + "NameEng": "I love \"二息歩行\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1522, + "IdString": "s1523", + "NameJp": "二息先生", + "NameEng": "二息先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1523, + "IdString": "s1524", + "NameJp": "二息大王", + "NameEng": "二息大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1524, + "IdString": "s1525", + "NameJp": "二息神", + "NameEng": "二息神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1525, + "IdString": "s1526", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1526, + "IdString": "s1527", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1527, + "IdString": "s1528", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1528, + "IdString": "s1529", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1529, + "IdString": "s1530", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1530, + "IdString": "s1531", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1531, + "IdString": "s1532", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1532, + "IdString": "s1533", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1533, + "IdString": "s1534", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1534, + "IdString": "s1535", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1535, + "IdString": "s1536", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1536, + "IdString": "s1537", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1537, + "IdString": "s1538", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1538, + "IdString": "s1539", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1539, + "IdString": "s1540", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1540, + "IdString": "s1541", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1541, + "IdString": "s1542", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1542, + "IdString": "s1543", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1543, + "IdString": "s1544", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1544, + "IdString": "s1545", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1545, + "IdString": "s1546", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1546, + "IdString": "s1547", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1547, + "IdString": "s1548", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1548, + "IdString": "s1549", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1549, + "IdString": "s1550", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1550, + "IdString": "s1551", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1551, + "IdString": "s1552", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1552, + "IdString": "s1553", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 0 + }, + { + "Id": 1553, + "IdString": "s1554", + "NameJp": "I love \"Code: Vermilion\"", + "NameEng": "I love \"Code: Vermilion\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1554, + "IdString": "s1555", + "NameJp": "Vermilion Master", + "NameEng": "Vermilion Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1555, + "IdString": "s1556", + "NameJp": "Vermilion King", + "NameEng": "Vermilion King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1556, + "IdString": "s1557", + "NameJp": "Vermilion God", + "NameEng": "Vermilion God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1557, + "IdString": "s1558", + "NameJp": "I love \"Rhythm Fang, Over Sword\"", + "NameEng": "I love \"Rhythm Fang, Over Sword\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1558, + "IdString": "s1559", + "NameJp": "奇襲先生", + "NameEng": "奇襲先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1559, + "IdString": "s1560", + "NameJp": "奇襲王", + "NameEng": "奇襲王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1560, + "IdString": "s1561", + "NameJp": "奇襲神", + "NameEng": "奇襲神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1561, + "IdString": "s1562", + "NameJp": "I love \"Over the Pride\"", + "NameEng": "I love \"Over the Pride\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1562, + "IdString": "s1563", + "NameJp": "迎撃先生", + "NameEng": "迎撃先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1563, + "IdString": "s1564", + "NameJp": "迎撃王", + "NameEng": "迎撃王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1564, + "IdString": "s1565", + "NameJp": "迎撃神", + "NameEng": "迎撃神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1565, + "IdString": "s1566", + "NameJp": "I love \"naraku within\"", + "NameEng": "I love \"naraku within\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 1566, + "IdString": "s1567", + "NameJp": "naraku master", + "NameEng": "naraku master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1567, + "IdString": "s1568", + "NameJp": "naraku king", + "NameEng": "naraku king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1568, + "IdString": "s1569", + "NameJp": "naraku god", + "NameEng": "naraku god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 1569, + "IdString": "s1570", + "NameJp": "I love \"ほとんど違法行為\"", + "NameEng": "I love \"ほとんど違法行為\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 1570, + "IdString": "s1571", + "NameJp": "ほとんど違法先生", + "NameEng": "ほとんど違法先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1571, + "IdString": "s1572", + "NameJp": "ほとんど違法王", + "NameEng": "ほとんど違法王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1572, + "IdString": "s1573", + "NameJp": "ほとんど違法神", + "NameEng": "ほとんど違法神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 1573, + "IdString": "s1574", + "NameJp": "I love \"ラスト・ガール・スタンディング\"", + "NameEng": "I love \"ラスト・ガール・スタンディング\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 1574, + "IdString": "s1575", + "NameJp": "ラスト・ガール・マスター", + "NameEng": "ラスト・ガール・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1575, + "IdString": "s1576", + "NameJp": "ラスト・ガール・キング", + "NameEng": "ラスト・ガール・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1576, + "IdString": "s1577", + "NameJp": "ラスト・ガール・ゴッド", + "NameEng": "ラスト・ガール・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 1577, + "IdString": "s1578", + "NameJp": "I love \"Black Moon Sympathy\"", + "NameEng": "I love \"Black Moon Sympathy\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1578, + "IdString": "s1579", + "NameJp": "Black Moon Master", + "NameEng": "Black Moon Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1579, + "IdString": "s1580", + "NameJp": "Black Moon King", + "NameEng": "Black Moon King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1580, + "IdString": "s1581", + "NameJp": "Black Moon God", + "NameEng": "Black Moon God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1581, + "IdString": "s1582", + "NameJp": "I love \"STARLIGHT TWILIGHT\"", + "NameEng": "I love \"STARLIGHT TWILIGHT\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1582, + "IdString": "s1583", + "NameJp": "STARLIGHT MASTER", + "NameEng": "STARLIGHT MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1583, + "IdString": "s1584", + "NameJp": "STARLIGHT KING", + "NameEng": "STARLIGHT KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1584, + "IdString": "s1585", + "NameJp": "STARLIGHT GOD", + "NameEng": "STARLIGHT GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1585, + "IdString": "s1586", + "NameJp": "I love \"零式\"", + "NameEng": "I love \"零式\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1586, + "IdString": "s1587", + "NameJp": "零式先生", + "NameEng": "零式先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1587, + "IdString": "s1588", + "NameJp": "零式王", + "NameEng": "零式王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1588, + "IdString": "s1589", + "NameJp": "零式神", + "NameEng": "零式神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1589, + "IdString": "s1590", + "NameJp": "I love \"Marry me, Nightmare\"", + "NameEng": "I love \"Marry me, Nightmare\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1590, + "IdString": "s1591", + "NameJp": "Marry me, Master", + "NameEng": "Marry me, Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1591, + "IdString": "s1592", + "NameJp": "Marry me, King", + "NameEng": "Marry me, King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1592, + "IdString": "s1593", + "NameJp": "Marry me, God", + "NameEng": "Marry me, God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1593, + "IdString": "s1594", + "NameJp": "I love \"VELVET\"", + "NameEng": "I love \"VELVET\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1594, + "IdString": "s1595", + "NameJp": "VELVET MASTER", + "NameEng": "VELVET MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1595, + "IdString": "s1596", + "NameJp": "VELVET KING", + "NameEng": "VELVET KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1596, + "IdString": "s1597", + "NameJp": "VELVET GOD", + "NameEng": "VELVET GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1597, + "IdString": "s1598", + "NameJp": "I love \"VOLT\"", + "NameEng": "I love \"VOLT\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1598, + "IdString": "s1599", + "NameJp": "VOLT MASTER", + "NameEng": "VOLT MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1599, + "IdString": "s1600", + "NameJp": "VOLT KING", + "NameEng": "VOLT KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1600, + "IdString": "s1601", + "NameJp": "VOLT GOD", + "NameEng": "VOLT GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1601, + "IdString": "s1602", + "NameJp": "I love \"空色デイズ\"", + "NameEng": "I love \"空色デイズ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1602, + "IdString": "s1603", + "NameJp": "空色先生", + "NameEng": "空色先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1603, + "IdString": "s1604", + "NameJp": "空色大王", + "NameEng": "空色大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1604, + "IdString": "s1605", + "NameJp": "空色神", + "NameEng": "空色神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1605, + "IdString": "s1606", + "NameJp": "I love \"ETERNAL BLAZE\"", + "NameEng": "I love \"ETERNAL BLAZE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1606, + "IdString": "s1607", + "NameJp": "ETERNAL MASTER", + "NameEng": "ETERNAL MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1607, + "IdString": "s1608", + "NameJp": "ETERNAL KING", + "NameEng": "ETERNAL KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1608, + "IdString": "s1609", + "NameJp": "ETERNAL GOD", + "NameEng": "ETERNAL GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1609, + "IdString": "s1610", + "NameJp": "I love \"でんぱーりーナイト\"", + "NameEng": "I love \"でんぱーりーナイト\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 1610, + "IdString": "s1611", + "NameJp": "ぱーりー先生", + "NameEng": "ぱーりー先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1611, + "IdString": "s1612", + "NameJp": "ぱーりー大王", + "NameEng": "ぱーりー大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 1612, + "IdString": "s1613", + "NameJp": "ぱーりー神", + "NameEng": "ぱーりー神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 1613, + "IdString": "s1614", + "NameJp": "I love \"RETROID\"", + "NameEng": "I love \"RETROID\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 1614, + "IdString": "s1615", + "NameJp": "RETROMASTER", + "NameEng": "RETROMASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1615, + "IdString": "s1616", + "NameJp": "RETROKING", + "NameEng": "RETROKING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1616, + "IdString": "s1617", + "NameJp": "RETROGOD", + "NameEng": "RETROGOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 1617, + "IdString": "s1618", + "NameJp": "I love \"Got noir forever.\"", + "NameEng": "I love \"Got noir forever.\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1618, + "IdString": "s1619", + "NameJp": "Groove frontier.", + "NameEng": "Groove frontier.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1619, + "IdString": "s1620", + "NameJp": "King of groove frontier.", + "NameEng": "King of groove frontier.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1620, + "IdString": "s1621", + "NameJp": "God noir forever.", + "NameEng": "God noir forever.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1621, + "IdString": "s1622", + "NameJp": "中二病God", + "NameEng": "中二病God", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1622, + "IdString": "s1623", + "NameJp": "中二病King", + "NameEng": "中二病King", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1623, + "IdString": "s1624", + "NameJp": "中二病Master", + "NameEng": "中二病Master", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1624, + "IdString": "s1625", + "NameJp": "永遠の中二病", + "NameEng": "永遠の中二病", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1625, + "IdString": "s1626", + "NameJp": "古に伝わりしゲーム実況", + "NameEng": "古に伝わりしゲーム実況", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1626, + "IdString": "s1627", + "NameJp": "S+級肉ばっかカレー", + "NameEng": "S+級肉ばっかカレー", + "UnlockRequirementJp": "『M.S.S.Project』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 1627, + "IdString": "s1628", + "NameJp": "カ\u3000オ\u3000ス", + "NameEng": "カ\u3000オ\u3000ス", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1628, + "IdString": "s1629", + "NameJp": "ソウルメイト", + "NameEng": "ソウルメイト", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 1629, + "IdString": "s1630", + "NameJp": "I Love MSSP!", + "NameEng": "I Love MSSP!", + "UnlockRequirementJp": "『M.S.S.Project』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1630, + "IdString": "s1631", + "NameJp": "蓬莱の人の形", + "NameEng": "蓬莱の人の形", + "UnlockRequirementJp": "『東方Project 3』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1631, + "IdString": "s1632", + "NameJp": "永遠のお姫様", + "NameEng": "永遠のお姫様", + "UnlockRequirementJp": "『東方Project 3』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1632, + "IdString": "s1633", + "NameJp": "蓬莱の薬屋さん", + "NameEng": "蓬莱の薬屋さん", + "UnlockRequirementJp": "『東方Project 3』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1633, + "IdString": "s1634", + "NameJp": "狂気の赤い瞳", + "NameEng": "狂気の赤い瞳", + "UnlockRequirementJp": "『東方Project 3』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1634, + "IdString": "s1635", + "NameJp": "歴史喰いの半獣", + "NameEng": "歴史喰いの半獣", + "UnlockRequirementJp": "『東方Project 3』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1635, + "IdString": "s1636", + "NameJp": "幸運の素兎", + "NameEng": "幸運の素兎", + "UnlockRequirementJp": "『東方Project 3』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 1636, + "IdString": "s1637", + "NameJp": "歌う夜雀", + "NameEng": "歌う夜雀", + "UnlockRequirementJp": "『東方Project 3』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1637, + "IdString": "s1638", + "NameJp": "赤い悪魔のメイド", + "NameEng": "赤い悪魔のメイド", + "UnlockRequirementJp": "『東方Project 3』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 1638, + "IdString": "s1639", + "NameJp": "夜に蠢く光の蟲", + "NameEng": "夜に蠢く光の蟲", + "UnlockRequirementJp": "『東方Project 3』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1639, + "IdString": "s1640", + "NameJp": "土着神の頂点", + "NameEng": "土着神の頂点", + "UnlockRequirementJp": "『東方Project 4』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1640, + "IdString": "s1641", + "NameJp": "山坂と湖の権化", + "NameEng": "山坂と湖の権化", + "UnlockRequirementJp": "『東方Project 4』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1641, + "IdString": "s1642", + "NameJp": "現代っ子の現人神", + "NameEng": "現代っ子の現人神", + "UnlockRequirementJp": "『東方Project 4』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1642, + "IdString": "s1643", + "NameJp": "捏造新聞記者", + "NameEng": "捏造新聞記者", + "UnlockRequirementJp": "『東方Project 4』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1643, + "IdString": "s1644", + "NameJp": "超妖怪弾頭", + "NameEng": "超妖怪弾頭", + "UnlockRequirementJp": "『東方Project 4』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1644, + "IdString": "s1645", + "NameJp": "山のテレグノシス", + "NameEng": "山のテレグノシス", + "UnlockRequirementJp": "『東方Project 4』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 1645, + "IdString": "s1646", + "NameJp": "えんがちょマスター", + "NameEng": "えんがちょマスター", + "UnlockRequirementJp": "『東方Project 4』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1646, + "IdString": "s1647", + "NameJp": "氷の小さな妖精", + "NameEng": "氷の小さな妖精", + "UnlockRequirementJp": "『東方Project 4』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 1647, + "IdString": "s1648", + "NameJp": "甘い匂いのする神様", + "NameEng": "甘い匂いのする神様", + "UnlockRequirementJp": "『東方Project 4』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1648, + "IdString": "s1649", + "NameJp": "初代スコアタ皇帝", + "NameEng": "初代スコアタ皇帝", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1649, + "IdString": "s1650", + "NameJp": "初代スコアタ王", + "NameEng": "初代スコアタ王", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1650, + "IdString": "s1651", + "NameJp": "初代スコアタ大公", + "NameEng": "初代スコアタ大公", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1651, + "IdString": "s1652", + "NameJp": "初代スコアタ公爵", + "NameEng": "初代スコアタ公爵", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1652, + "IdString": "s1653", + "NameJp": "初代スコアタ侯爵", + "NameEng": "初代スコアタ侯爵", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1653, + "IdString": "s1654", + "NameJp": "初代スコアタ伯爵", + "NameEng": "初代スコアタ伯爵", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 1654, + "IdString": "s1655", + "NameJp": "初代スコアタ子爵", + "NameEng": "初代スコアタ子爵", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1655, + "IdString": "s1656", + "NameJp": "初代スコアタ男爵", + "NameEng": "初代スコアタ男爵", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 1656, + "IdString": "s1657", + "NameJp": "初代スコアタ騎士", + "NameEng": "初代スコアタ騎士", + "UnlockRequirementJp": "『GC2第1回スコアタ』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1657, + "IdString": "s1658", + "NameJp": "二代目スコアタ皇帝", + "NameEng": "二代目スコアタ皇帝", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1658, + "IdString": "s1659", + "NameJp": "二代目スコアタ王", + "NameEng": "二代目スコアタ王", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1659, + "IdString": "s1660", + "NameJp": "二代目スコアタ大公", + "NameEng": "二代目スコアタ大公", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1660, + "IdString": "s1661", + "NameJp": "二代目スコアタ公爵", + "NameEng": "二代目スコアタ公爵", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1661, + "IdString": "s1662", + "NameJp": "二代目スコアタ侯爵", + "NameEng": "二代目スコアタ侯爵", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1662, + "IdString": "s1663", + "NameJp": "二代目スコアタ伯爵", + "NameEng": "二代目スコアタ伯爵", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 1663, + "IdString": "s1664", + "NameJp": "二代目スコアタ子爵", + "NameEng": "二代目スコアタ子爵", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1664, + "IdString": "s1665", + "NameJp": "二代目スコアタ男爵", + "NameEng": "二代目スコアタ男爵", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 1665, + "IdString": "s1666", + "NameJp": "二代目スコアタ騎士", + "NameEng": "二代目スコアタ騎士", + "UnlockRequirementJp": "『GC2第2回スコアタ』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1666, + "IdString": "s1667", + "NameJp": "三代目スコアタ皇帝", + "NameEng": "三代目スコアタ皇帝", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1667, + "IdString": "s1668", + "NameJp": "三代目スコアタ王", + "NameEng": "三代目スコアタ王", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1668, + "IdString": "s1669", + "NameJp": "三代目スコアタ大公", + "NameEng": "三代目スコアタ大公", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1669, + "IdString": "s1670", + "NameJp": "三代目スコアタ公爵", + "NameEng": "三代目スコアタ公爵", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1670, + "IdString": "s1671", + "NameJp": "三代目スコアタ侯爵", + "NameEng": "三代目スコアタ侯爵", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1671, + "IdString": "s1672", + "NameJp": "三代目スコアタ伯爵", + "NameEng": "三代目スコアタ伯爵", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 1672, + "IdString": "s1673", + "NameJp": "三代目スコアタ子爵", + "NameEng": "三代目スコアタ子爵", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1673, + "IdString": "s1674", + "NameJp": "三代目スコアタ男爵", + "NameEng": "三代目スコアタ男爵", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 1674, + "IdString": "s1675", + "NameJp": "三代目スコアタ騎士", + "NameEng": "三代目スコアタ騎士", + "UnlockRequirementJp": "『GC2第3回スコアタ』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1675, + "IdString": "s1676", + "NameJp": "I love \"オレンジ\"", + "NameEng": "I love \"オレンジ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1676, + "IdString": "s1677", + "NameJp": "オレンジ先生", + "NameEng": "オレンジ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1677, + "IdString": "s1678", + "NameJp": "オレンジ大王", + "NameEng": "オレンジ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1678, + "IdString": "s1679", + "NameJp": "オレンジ神", + "NameEng": "オレンジ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1679, + "IdString": "s1680", + "NameJp": "I love \"クリスタライズ!\"", + "NameEng": "I love \"クリスタライズ!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1680, + "IdString": "s1681", + "NameJp": "クリスタライズ先生", + "NameEng": "クリスタライズ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1681, + "IdString": "s1682", + "NameJp": "クリスタライズ大王", + "NameEng": "クリスタライズ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1682, + "IdString": "s1683", + "NameJp": "クリスタライズ神", + "NameEng": "クリスタライズ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1683, + "IdString": "s1684", + "NameJp": "I love \"I\"", + "NameEng": "I love \"I\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1684, + "IdString": "s1685", + "NameJp": "I am Master", + "NameEng": "I am Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1685, + "IdString": "s1686", + "NameJp": "I am King", + "NameEng": "I am King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1686, + "IdString": "s1687", + "NameJp": "I am God", + "NameEng": "I am God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1687, + "IdString": "s1688", + "NameJp": "I love \"Faint Love\"", + "NameEng": "I love \"Faint Love\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1688, + "IdString": "s1689", + "NameJp": "フェイント先生", + "NameEng": "フェイント先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1689, + "IdString": "s1690", + "NameJp": "フェイント大王", + "NameEng": "フェイント大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1690, + "IdString": "s1691", + "NameJp": "フェイント神", + "NameEng": "フェイント神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1691, + "IdString": "s1692", + "NameJp": "I Love \"Cruel Moon NuMIX\"", + "NameEng": "I Love \"Cruel Moon NuMIX\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1692, + "IdString": "s1693", + "NameJp": "Cruel Master", + "NameEng": "Cruel Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1693, + "IdString": "s1694", + "NameJp": "Cruel King", + "NameEng": "Cruel King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1694, + "IdString": "s1695", + "NameJp": "Cruel God", + "NameEng": "Cruel God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1695, + "IdString": "s1696", + "NameJp": "I love \"患部で止まってすぐ溶ける\"", + "NameEng": "I love \"患部で止まってすぐ溶ける\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1696, + "IdString": "s1697", + "NameJp": "うどんげ先生", + "NameEng": "うどんげ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1697, + "IdString": "s1698", + "NameJp": "うどんげ大王", + "NameEng": "うどんげ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1698, + "IdString": "s1699", + "NameJp": "うどんげ神", + "NameEng": "うどんげ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1699, + "IdString": "s1700", + "NameJp": "I love \"The Beginning\"", + "NameEng": "I love \"The Beginning\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1700, + "IdString": "s1701", + "NameJp": "Beginning Master", + "NameEng": "Beginning Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1701, + "IdString": "s1702", + "NameJp": "Beginning King", + "NameEng": "Beginning King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1702, + "IdString": "s1703", + "NameJp": "Beginning God", + "NameEng": "Beginning God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1703, + "IdString": "s1704", + "NameJp": "I love \"Circuit DISCO\"", + "NameEng": "I love \"Circuit DISCO\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1704, + "IdString": "s1705", + "NameJp": "Circuit MASTER", + "NameEng": "Circuit MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1705, + "IdString": "s1706", + "NameJp": "Circuit KING", + "NameEng": "Circuit KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1706, + "IdString": "s1707", + "NameJp": "Circuit GOD", + "NameEng": "Circuit GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1707, + "IdString": "s1708", + "NameJp": "I love \"Shooting Star-IA-\"", + "NameEng": "I love \"Shooting Star-IA-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1708, + "IdString": "s1709", + "NameJp": "Shooting Master", + "NameEng": "Shooting Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1709, + "IdString": "s1710", + "NameJp": "Shooting King", + "NameEng": "Shooting King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1710, + "IdString": "s1711", + "NameJp": "Shooting God", + "NameEng": "Shooting God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1711, + "IdString": "s1712", + "NameJp": "I love \"NO feat. IA\"", + "NameEng": "I love \"NO feat. IA\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1712, + "IdString": "s1713", + "NameJp": "NO MASTER", + "NameEng": "NO MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1713, + "IdString": "s1714", + "NameJp": "NO KING", + "NameEng": "NO KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1714, + "IdString": "s1715", + "NameJp": "NO GOD", + "NameEng": "NO GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1715, + "IdString": "s1716", + "NameJp": "I love \"ワールド・コーリング\"", + "NameEng": "I love \"ワールド・コーリング\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1716, + "IdString": "s1717", + "NameJp": "ハローハロー先生", + "NameEng": "ハローハロー先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1717, + "IdString": "s1718", + "NameJp": "ハローハロー大王", + "NameEng": "ハローハロー大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1718, + "IdString": "s1719", + "NameJp": "ハローハロー神", + "NameEng": "ハローハロー神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1719, + "IdString": "s1720", + "NameJp": "I love \"SEE THE LIGHTS feat. IA\"", + "NameEng": "I love \"SEE THE LIGHTS feat. IA\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1720, + "IdString": "s1721", + "NameJp": "LIGHTS MASTER", + "NameEng": "LIGHTS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1721, + "IdString": "s1722", + "NameJp": "LIGHTS KING", + "NameEng": "LIGHTS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1722, + "IdString": "s1723", + "NameJp": "LIGHTS GOD", + "NameEng": "LIGHTS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1723, + "IdString": "s1724", + "NameJp": "I love \"Over Drive\"", + "NameEng": "I love \"Over Drive\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1724, + "IdString": "s1725", + "NameJp": "Over Drive Master", + "NameEng": "Over Drive Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1725, + "IdString": "s1726", + "NameJp": "Over Drive King", + "NameEng": "Over Drive King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1726, + "IdString": "s1727", + "NameJp": "Over Drive God", + "NameEng": "Over Drive God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1727, + "IdString": "s1728", + "NameJp": "I love \"Cardiac Rhythm\"", + "NameEng": "I love \"Cardiac Rhythm\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1728, + "IdString": "s1729", + "NameJp": "Cardiac Master", + "NameEng": "Cardiac Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1729, + "IdString": "s1730", + "NameJp": "Cardiac King", + "NameEng": "Cardiac King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1730, + "IdString": "s1731", + "NameJp": "Cardiac God", + "NameEng": "Cardiac God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1731, + "IdString": "s1732", + "NameJp": "I love \"2112410403927243233368\"", + "NameEng": "I love \"2112410403927243233368\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 1732, + "IdString": "s1733", + "NameJp": "2112410403 71334169", + "NameEng": "2112410403 71334169", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1733, + "IdString": "s1734", + "NameJp": "2112410403 22032304", + "NameEng": "2112410403 22032304", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1734, + "IdString": "s1735", + "NameJp": "2112410403 2504434504", + "NameEng": "2112410403 2504434504", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 1735, + "IdString": "s1736", + "NameJp": "I love \"カタワレ\"", + "NameEng": "I love \"カタワレ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1736, + "IdString": "s1737", + "NameJp": "ヤタガラス・マスター", + "NameEng": "ヤタガラス・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1737, + "IdString": "s1738", + "NameJp": "ヤタガラス・キング", + "NameEng": "ヤタガラス・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1738, + "IdString": "s1739", + "NameJp": "ヤタガラス・ゴッド", + "NameEng": "ヤタガラス・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1739, + "IdString": "s1740", + "NameJp": "I love \"CHRONORISE\"", + "NameEng": "I love \"CHRONORISE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1740, + "IdString": "s1741", + "NameJp": "CHRONO MASTER Ver.2.0", + "NameEng": "CHRONO MASTER Ver.2.0", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1741, + "IdString": "s1742", + "NameJp": "CHRONO KING Ver.2.0", + "NameEng": "CHRONO KING Ver.2.0", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1742, + "IdString": "s1743", + "NameJp": "CHRONO GOD Ver.2.0", + "NameEng": "CHRONO GOD Ver.2.0", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1743, + "IdString": "s1744", + "NameJp": "I love \"Queen of rose\"", + "NameEng": "I love \"Queen of rose\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1744, + "IdString": "s1745", + "NameJp": "ヴァンパイア先生", + "NameEng": "ヴァンパイア先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1745, + "IdString": "s1746", + "NameJp": "ヴァンパイア姫", + "NameEng": "ヴァンパイア姫", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1746, + "IdString": "s1747", + "NameJp": "ヴァンパイア神", + "NameEng": "ヴァンパイア神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1747, + "IdString": "s1748", + "NameJp": "I love \"Gluttony Fang\"", + "NameEng": "I love \"Gluttony Fang\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1748, + "IdString": "s1749", + "NameJp": "蛇先生", + "NameEng": "蛇先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1749, + "IdString": "s1750", + "NameJp": "蛇大王", + "NameEng": "蛇大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1750, + "IdString": "s1751", + "NameJp": "蛇神", + "NameEng": "蛇神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1751, + "IdString": "s1752", + "NameJp": "I love \"平成快晴どってんしゃん\"", + "NameEng": "I love \"平成快晴どってんしゃん\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1752, + "IdString": "s1753", + "NameJp": "どってんしゃん先生", + "NameEng": "どってんしゃん先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1753, + "IdString": "s1754", + "NameJp": "どってんしゃん大王", + "NameEng": "どってんしゃん大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1754, + "IdString": "s1755", + "NameJp": "どってんしゃん神", + "NameEng": "どってんしゃん神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1755, + "IdString": "s1756", + "NameJp": "I love \"メシアの邂逅\"", + "NameEng": "I love \"メシアの邂逅\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1756, + "IdString": "s1757", + "NameJp": "救世主先生", + "NameEng": "救世主先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1757, + "IdString": "s1758", + "NameJp": "救世主大王", + "NameEng": "救世主大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1758, + "IdString": "s1759", + "NameJp": "救世主", + "NameEng": "救世主", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1759, + "IdString": "s1760", + "NameJp": "I love \"Sweet Love\"", + "NameEng": "I love \"Sweet Love\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1760, + "IdString": "s1761", + "NameJp": "甘い甘い先生", + "NameEng": "甘い甘い先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1761, + "IdString": "s1762", + "NameJp": "甘い甘い大王", + "NameEng": "甘い甘い大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1762, + "IdString": "s1763", + "NameJp": "甘い甘い神様", + "NameEng": "甘い甘い神様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1763, + "IdString": "s1764", + "NameJp": "I love \"シンデレラシンドローム\"", + "NameEng": "I love \"シンデレラシンドローム\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1764, + "IdString": "s1765", + "NameJp": "マスターシンドローム", + "NameEng": "マスターシンドローム", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1765, + "IdString": "s1766", + "NameJp": "キングシンドローム", + "NameEng": "キングシンドローム", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1766, + "IdString": "s1767", + "NameJp": "ゴッドシンドローム", + "NameEng": "ゴッドシンドローム", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1767, + "IdString": "s1768", + "NameJp": "I love \" BURN ALT AIR\"", + "NameEng": "I love \" BURN ALT AIR\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1768, + "IdString": "s1769", + "NameJp": "URBAN MASTER", + "NameEng": "URBAN MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1769, + "IdString": "s1770", + "NameJp": "URBAN KING", + "NameEng": "URBAN KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1770, + "IdString": "s1771", + "NameJp": "URBAN GOD", + "NameEng": "URBAN GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1771, + "IdString": "s1772", + "NameJp": "星の歌姫", + "NameEng": "星の歌姫", + "UnlockRequirementJp": "『IA』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1772, + "IdString": "s1773", + "NameJp": "光の歌姫", + "NameEng": "光の歌姫", + "UnlockRequirementJp": "『IA』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1773, + "IdString": "s1774", + "NameJp": "流星の歌姫", + "NameEng": "流星の歌姫", + "UnlockRequirementJp": "『IA』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1774, + "IdString": "s1775", + "NameJp": "世界の歌姫", + "NameEng": "世界の歌姫", + "UnlockRequirementJp": "『IA』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1775, + "IdString": "s1776", + "NameJp": "サーキットの歌姫", + "NameEng": "サーキットの歌姫", + "UnlockRequirementJp": "『IA』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1776, + "IdString": "s1777", + "NameJp": "クラブの歌姫", + "NameEng": "クラブの歌姫", + "UnlockRequirementJp": "『IA』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 1777, + "IdString": "s1778", + "NameJp": "みんなの歌姫", + "NameEng": "みんなの歌姫", + "UnlockRequirementJp": "『IA』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1778, + "IdString": "s1779", + "NameJp": "ARIA ON THE PLANETES", + "NameEng": "ARIA ON THE PLANETES", + "UnlockRequirementJp": "『IA』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 1779, + "IdString": "s1780", + "NameJp": "I Love IA", + "NameEng": "I Love IA", + "UnlockRequirementJp": "『IA』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1780, + "IdString": "s1781", + "NameJp": "帝", + "NameEng": "帝", + "UnlockRequirementJp": "『ブレイブルー』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1781, + "IdString": "s1782", + "NameJp": "黒き獣", + "NameEng": "黒き獣", + "UnlockRequirementJp": "『ブレイブルー』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1782, + "IdString": "s1783", + "NameJp": "六英雄", + "NameEng": "六英雄", + "UnlockRequirementJp": "『ブレイブルー』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1783, + "IdString": "s1784", + "NameJp": "第七機関", + "NameEng": "第七機関", + "UnlockRequirementJp": "『ブレイブルー』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1784, + "IdString": "s1785", + "NameJp": "冥王の剣", + "NameEng": "冥王の剣", + "UnlockRequirementJp": "『ブレイブルー』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1785, + "IdString": "s1786", + "NameJp": "ニャスニャス!", + "NameEng": "ニャスニャス!", + "UnlockRequirementJp": "『ブレイブルー』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 1786, + "IdString": "s1787", + "NameJp": "十二宗家", + "NameEng": "十二宗家", + "UnlockRequirementJp": "『ブレイブルー』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1787, + "IdString": "s1788", + "NameJp": "世界の傍観者", + "NameEng": "世界の傍観者", + "UnlockRequirementJp": "『ブレイブルー』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 1788, + "IdString": "s1789", + "NameJp": "碧の魔道書", + "NameEng": "碧の魔道書", + "UnlockRequirementJp": "『ブレイブルー』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1789, + "IdString": "s1790", + "NameJp": "I Love 格ゲー", + "NameEng": "I Love 格ゲー", + "UnlockRequirementJp": "コラボ称号", + "UnlockRequirementEng": "Collaboration title", + "Type": 12 + }, + { + "Id": 1790, + "IdString": "s1791", + "NameJp": "ヤタガラス勢", + "NameEng": "ヤタガラス勢", + "UnlockRequirementJp": "コラボ称号", + "UnlockRequirementEng": "Collaboration title", + "Type": 12 + }, + { + "Id": 1791, + "IdString": "s1792", + "NameJp": "I love \"カンフーマスター=拳\"", + "NameEng": "I love \"カンフーマスター=拳\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1792, + "IdString": "s1793", + "NameJp": "カンフーマスター", + "NameEng": "カンフーマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1793, + "IdString": "s1794", + "NameJp": "カンフーキング", + "NameEng": "カンフーキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1794, + "IdString": "s1795", + "NameJp": "カンフーゴッド", + "NameEng": "カンフーゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1795, + "IdString": "s1796", + "NameJp": "I love \"Play merrily NEO\"", + "NameEng": "I love \"Play merrily NEO\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1796, + "IdString": "s1797", + "NameJp": "NEO陽気先生", + "NameEng": "NEO陽気先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1797, + "IdString": "s1798", + "NameJp": "NEO陽気大王", + "NameEng": "NEO陽気大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1798, + "IdString": "s1799", + "NameJp": "NEO陽気神", + "NameEng": "NEO陽気神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1799, + "IdString": "s1800", + "NameJp": "I love \"BEFORE TEN ORB\"", + "NameEng": "I love \"BEFORE TEN ORB\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1800, + "IdString": "s1801", + "NameJp": "地球割り先生", + "NameEng": "地球割り先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1801, + "IdString": "s1802", + "NameJp": "地球割り大王", + "NameEng": "地球割り大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1802, + "IdString": "s1803", + "NameJp": "地球割り神", + "NameEng": "地球割り神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1803, + "IdString": "s1804", + "NameJp": "I love \"Not get wish\"", + "NameEng": "I love \"Not get wish\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1804, + "IdString": "s1805", + "NameJp": "Not get master", + "NameEng": "Not get master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1805, + "IdString": "s1806", + "NameJp": "Not get king", + "NameEng": "Not get king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1806, + "IdString": "s1807", + "NameJp": "Not get god", + "NameEng": "Not get god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1807, + "IdString": "s1808", + "NameJp": "I love \"Spider Control 16th\"", + "NameEng": "I love \"Spider Control 16th\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 1808, + "IdString": "s1809", + "NameJp": "Spider Master", + "NameEng": "Spider Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1809, + "IdString": "s1810", + "NameJp": "Spider King", + "NameEng": "Spider King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1810, + "IdString": "s1811", + "NameJp": "Spider God", + "NameEng": "Spider God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 1811, + "IdString": "s1812", + "NameJp": "I love \"Arabesque\"", + "NameEng": "I love \"Arabesque\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 1812, + "IdString": "s1813", + "NameJp": "Arabesque Master", + "NameEng": "Arabesque Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1813, + "IdString": "s1814", + "NameJp": "Arabesque King", + "NameEng": "Arabesque King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1814, + "IdString": "s1815", + "NameJp": "Arabesque God", + "NameEng": "Arabesque God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 1815, + "IdString": "s1816", + "NameJp": "I love \"Phone Dead Room\"", + "NameEng": "I love \"Phone Dead Room\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 1816, + "IdString": "s1817", + "NameJp": "Phone Dead Master", + "NameEng": "Phone Dead Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1817, + "IdString": "s1818", + "NameJp": "Phone Dead King", + "NameEng": "Phone Dead King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1818, + "IdString": "s1819", + "NameJp": "Phone Dead God", + "NameEng": "Phone Dead God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 1819, + "IdString": "s1820", + "NameJp": "I love \"Crowded Town\"", + "NameEng": "I love \"Croded Town\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 1820, + "IdString": "s1821", + "NameJp": "Crowded Town Master", + "NameEng": "Crowded Town Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1821, + "IdString": "s1822", + "NameJp": "Crowded Town King", + "NameEng": "Crowded Town King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1822, + "IdString": "s1823", + "NameJp": "Crowded Town God", + "NameEng": "Crowded Town God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 1823, + "IdString": "s1824", + "NameJp": "I love \"Stronger\"", + "NameEng": "I love \"Stronger\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 1824, + "IdString": "s1825", + "NameJp": "Stronger Master", + "NameEng": "Stronger Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1825, + "IdString": "s1826", + "NameJp": "Stronger King", + "NameEng": "Stronger King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 1826, + "IdString": "s1827", + "NameJp": "Stronger God", + "NameEng": "Stronger God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 1827, + "IdString": "s1828", + "NameJp": "I love \"クラブ=マジェスティ\"", + "NameEng": "I love \"クラブ=マジェスティ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1828, + "IdString": "s1829", + "NameJp": "マジェスティ先生", + "NameEng": "マジェスティ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1829, + "IdString": "s1830", + "NameJp": "マジェスティ大王", + "NameEng": "マジェスティ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1830, + "IdString": "s1831", + "NameJp": "マジェスティ神", + "NameEng": "マジェスティ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1831, + "IdString": "s1832", + "NameJp": "I love \"待チ人ハ来ズ。\"", + "NameEng": "I love \"待チ人ハ来ズ。\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1832, + "IdString": "s1833", + "NameJp": "からかさ先生", + "NameEng": "からかさ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1833, + "IdString": "s1834", + "NameJp": "からかさ大王", + "NameEng": "からかさ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1834, + "IdString": "s1835", + "NameJp": "からかさ神", + "NameEng": "からかさ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1835, + "IdString": "s1836", + "NameJp": "I love \"Heavenly Particle\"", + "NameEng": "I love \"Heavenly Particle\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 1836, + "IdString": "s1837", + "NameJp": "微粒子先生", + "NameEng": "微粒子先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1837, + "IdString": "s1838", + "NameJp": "微粒子大王", + "NameEng": "微粒子大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 1838, + "IdString": "s1839", + "NameJp": "微粒子神", + "NameEng": "微粒子神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 1839, + "IdString": "s1840", + "NameJp": "I love \"FREE CONNECTION 2\"", + "NameEng": "I love \"FREE CONNECTION 2\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 1840, + "IdString": "s1841", + "NameJp": "MURASAME MASTER", + "NameEng": "MURASAME MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1841, + "IdString": "s1842", + "NameJp": "MURASAME KING", + "NameEng": "MURASAME KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1842, + "IdString": "s1843", + "NameJp": "MURASAME GOD", + "NameEng": "MURASAME GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 1843, + "IdString": "s1844", + "NameJp": "I love \"I CANNOT APE\"", + "NameEng": "I love \"I CANNOT APE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1844, + "IdString": "s1845", + "NameJp": "Origin MASTER", + "NameEng": "Origin MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1845, + "IdString": "s1846", + "NameJp": "Origin KING", + "NameEng": "Origin KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1846, + "IdString": "s1847", + "NameJp": "Origin GOD", + "NameEng": "Origin GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1847, + "IdString": "s1848", + "NameJp": "I love \"G ZERO\"", + "NameEng": "I love \"G ZERO\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1848, + "IdString": "s1849", + "NameJp": "Genesis MASTER", + "NameEng": "Genesis MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1849, + "IdString": "s1850", + "NameJp": "Genesis KING", + "NameEng": "Genesis KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1850, + "IdString": "s1851", + "NameJp": "Genesis GOD", + "NameEng": "Genesis GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1851, + "IdString": "s1852", + "NameJp": "I love \"FAKE (ALR REMIX)\"", + "NameEng": "I love \"FAKE (ALR REMIX)\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1852, + "IdString": "s1853", + "NameJp": "Gaiden MASTER", + "NameEng": "Gaiden MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1853, + "IdString": "s1854", + "NameJp": "Gaiden KING", + "NameEng": "Gaiden KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1854, + "IdString": "s1855", + "NameJp": "Gaiden GOD", + "NameEng": "Gaiden GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1855, + "IdString": "s1856", + "NameJp": "I love \"The world of spirit\"", + "NameEng": "I love \"The world of spirit\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1856, + "IdString": "s1857", + "NameJp": "Burst MASTER", + "NameEng": "Burst MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1857, + "IdString": "s1858", + "NameJp": "Burst KING", + "NameEng": "Burst KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1858, + "IdString": "s1859", + "NameJp": "Burst GOD", + "NameEng": "Burst GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1859, + "IdString": "s1860", + "NameJp": "てくてくゴッド", + "NameEng": "てくてくゴッド", + "UnlockRequirementJp": "『てくてくビート』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1860, + "IdString": "s1861", + "NameJp": "てくてくキング", + "NameEng": "てくてくキング", + "UnlockRequirementJp": "『てくてくビート』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1861, + "IdString": "s1862", + "NameJp": "てくてくマスター", + "NameEng": "てくてくマスター", + "UnlockRequirementJp": "『てくてくビート』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1862, + "IdString": "s1863", + "NameJp": "ALL JUST BEAT!!", + "NameEng": "ALL JUST BEAT!!", + "UnlockRequirementJp": "『てくてくビート』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1863, + "IdString": "s1864", + "NameJp": "HIGH TENSION", + "NameEng": "HIGH TENSION", + "UnlockRequirementJp": "『てくてくビート』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1864, + "IdString": "s1865", + "NameJp": "NORMAL TENSION", + "NameEng": "NORMAL TENSION", + "UnlockRequirementJp": "『てくてくビート』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1865, + "IdString": "s1866", + "NameJp": "I LOVE リズムゲーム", + "NameEng": "I LOVE リズムゲーム", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 1866, + "IdString": "s1867", + "NameJp": "I LOVE てくてくビート", + "NameEng": "I LOVE てくてくビート", + "UnlockRequirementJp": "『てくてくビート』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1867, + "IdString": "s1868", + "NameJp": "GREAT THING", + "NameEng": "GREAT THING", + "UnlockRequirementJp": "『ダライアス』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1868, + "IdString": "s1869", + "NameJp": "THE EMBRYON", + "NameEng": "THE EMBRYON", + "UnlockRequirementJp": "『ダライアス』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1869, + "IdString": "s1870", + "NameJp": "STORM CAUSER", + "NameEng": "STORM CAUSER", + "UnlockRequirementJp": "『ダライアス』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1870, + "IdString": "s1871", + "NameJp": "HUNGRY GLUTTONS", + "NameEng": "HUNGRY GLUTTONS", + "UnlockRequirementJp": "『ダライアス』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1871, + "IdString": "s1872", + "NameJp": "ELECTRIC FAN", + "NameEng": "ELECTRIC FAN", + "UnlockRequirementJp": "『ダライアス』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1872, + "IdString": "s1873", + "NameJp": "WARNING!!", + "NameEng": "WARNING!!", + "UnlockRequirementJp": "『ダライアス』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 1873, + "IdString": "s1874", + "NameJp": "ECLIPSES EYE", + "NameEng": "ECLIPSES EYE", + "UnlockRequirementJp": "『ダライアス』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1874, + "IdString": "s1875", + "NameJp": "IRON FOSSIL", + "NameEng": "IRON FOSSIL", + "UnlockRequirementJp": "『ダライアス』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 1875, + "IdString": "s1876", + "NameJp": "銀翼の鷹", + "NameEng": "銀翼の鷹", + "UnlockRequirementJp": "『ダライアス』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1876, + "IdString": "s1877", + "NameJp": "BIO STRONG", + "NameEng": "BIO STRONG", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1877, + "IdString": "s1878", + "NameJp": "MOTHER HAWK", + "NameEng": "MOTHER HAWK", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1878, + "IdString": "s1879", + "NameJp": "STRONG SHELL", + "NameEng": "STRONG SHELL", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1879, + "IdString": "s1880", + "NameJp": "VIOLENT RULER", + "NameEng": "VIOLENT RULER", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1880, + "IdString": "s1881", + "NameJp": "THOUSAND KNIVES", + "NameEng": "THOUSAND KNIVES", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1881, + "IdString": "s1882", + "NameJp": "KING FOSSIL", + "NameEng": "KING FOSSIL", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1882, + "IdString": "s1883", + "NameJp": "GOLDEN OGRE", + "NameEng": "GOLDEN OGRE", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1883, + "IdString": "s1884", + "NameJp": "GREEN CORONATUS", + "NameEng": "GREEN CORONATUS", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1884, + "IdString": "s1885", + "NameJp": "I LOVE DARIUS", + "NameEng": "I LOVE DARIUS", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1885, + "IdString": "s1886", + "NameJp": "", + "NameEng": "", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 1886, + "IdString": "s1887", + "NameJp": "I LOVE ZUNTATA", + "NameEng": "I LOVE ZUNTATA", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 1887, + "IdString": "s1888", + "NameJp": "I love \"Tell Your World\"", + "NameEng": "I love \"Tell Your World\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1888, + "IdString": "s1889", + "NameJp": "Tell Your Master", + "NameEng": "Tell Your Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1889, + "IdString": "s1890", + "NameJp": "Tell Your King", + "NameEng": "Tell Your King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1890, + "IdString": "s1891", + "NameJp": "Tell Your God", + "NameEng": "Tell Your God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1891, + "IdString": "s1892", + "NameJp": "I love \"ハジメテノオト\"", + "NameEng": "I love \"ハジメテノオト\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1892, + "IdString": "s1893", + "NameJp": "ハジメテノセンセイ", + "NameEng": "ハジメテノセンセイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1893, + "IdString": "s1894", + "NameJp": "ハジメテノオウサマ", + "NameEng": "ハジメテノオウサマ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1894, + "IdString": "s1895", + "NameJp": "ハジメテノカミサマ", + "NameEng": "ハジメテノカミサマ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1895, + "IdString": "s1896", + "NameJp": "I love \"morning haze\"", + "NameEng": "I love \"morning haze\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1896, + "IdString": "s1897", + "NameJp": "morning master", + "NameEng": "morning master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1897, + "IdString": "s1898", + "NameJp": "morning king", + "NameEng": "morning king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1898, + "IdString": "s1899", + "NameJp": "morning god", + "NameEng": "morning god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1899, + "IdString": "s1900", + "NameJp": "I love \"プラグアウト\"", + "NameEng": "I love \"プラグアウト\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1900, + "IdString": "s1901", + "NameJp": "プラグマスター", + "NameEng": "プラグマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1901, + "IdString": "s1902", + "NameJp": "プラグキング", + "NameEng": "プラグキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1902, + "IdString": "s1903", + "NameJp": "プラグゴッド", + "NameEng": "プラグゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1903, + "IdString": "s1904", + "NameJp": "I love \"DYE\"", + "NameEng": "I love \"DYE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1904, + "IdString": "s1905", + "NameJp": "DYE MASTER", + "NameEng": "DYE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1905, + "IdString": "s1906", + "NameJp": "DYE KING", + "NameEng": "DYE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1906, + "IdString": "s1907", + "NameJp": "DYE GOD", + "NameEng": "DYE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1907, + "IdString": "s1908", + "NameJp": "I love \"Spider's Blood\"", + "NameEng": "I love \"Spider's Blood\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1908, + "IdString": "s1909", + "NameJp": "Master's Blood", + "NameEng": "Master's Blood", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1909, + "IdString": "s1910", + "NameJp": "King's Blood", + "NameEng": "King's Blood", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1910, + "IdString": "s1911", + "NameJp": "God's Blood", + "NameEng": "God's Blood", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1911, + "IdString": "s1912", + "NameJp": "I love \"ゆけむり魂温泉\"", + "NameEng": "I love \"ゆけむり魂温泉\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1912, + "IdString": "s1913", + "NameJp": "ゆけむり先生", + "NameEng": "ゆけむり先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1913, + "IdString": "s1914", + "NameJp": "ゆけむり大王", + "NameEng": "ゆけむり大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1914, + "IdString": "s1915", + "NameJp": "ゆけむり神", + "NameEng": "ゆけむり神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1915, + "IdString": "s1916", + "NameJp": "I love \"BlazeConductor\"", + "NameEng": "I love \"BlazeConductor\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1916, + "IdString": "s1917", + "NameJp": "Blaze Master", + "NameEng": "Blaze Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1917, + "IdString": "s1918", + "NameJp": "Blaze King", + "NameEng": "Blaze King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1918, + "IdString": "s1919", + "NameJp": "Blaze God", + "NameEng": "Blaze God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1919, + "IdString": "s1920", + "NameJp": "I love \"二次元ドリームフィーバー\"", + "NameEng": "I love \"二次元ドリームフィーバー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1920, + "IdString": "s1921", + "NameJp": "二次元先生", + "NameEng": "二次元先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1921, + "IdString": "s1922", + "NameJp": "二次元大王", + "NameEng": "二次元大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1922, + "IdString": "s1923", + "NameJp": "二次元神", + "NameEng": "二次元神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1923, + "IdString": "s1924", + "NameJp": "I love \"リンネ\"", + "NameEng": "I love \"リンネ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1924, + "IdString": "s1925", + "NameJp": "環状線先生", + "NameEng": "環状線先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1925, + "IdString": "s1926", + "NameJp": "環状線大王", + "NameEng": "環状線大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1926, + "IdString": "s1927", + "NameJp": "環状線神", + "NameEng": "環状線神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1927, + "IdString": "s1928", + "NameJp": "I love \"Halcyon\"", + "NameEng": "I love \"Halcyon\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 1928, + "IdString": "s1929", + "NameJp": "Halcyon Master", + "NameEng": "Halcyon Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1929, + "IdString": "s1930", + "NameJp": "Halcyon King", + "NameEng": "Halcyon King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 1930, + "IdString": "s1931", + "NameJp": "Halcyon God", + "NameEng": "Halcyon God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 1931, + "IdString": "s1932", + "NameJp": "I love \"バブルボブルメドレー\"", + "NameEng": "I love \"バブルボブルメドレー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1932, + "IdString": "s1933", + "NameJp": "バブルボブルマスター", + "NameEng": "バブルボブルマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1933, + "IdString": "s1934", + "NameJp": "バブルボブルキング", + "NameEng": "バブルボブルキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1934, + "IdString": "s1935", + "NameJp": "バブルボブルゴッド", + "NameEng": "バブルボブルゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1935, + "IdString": "s1936", + "NameJp": "I love \"Invade You\"", + "NameEng": "I love \"Invade You\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1936, + "IdString": "s1937", + "NameJp": "Invade Master", + "NameEng": "Invade Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1937, + "IdString": "s1938", + "NameJp": "Invade King", + "NameEng": "Invade King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1938, + "IdString": "s1939", + "NameJp": "Invade God", + "NameEng": "Invade God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1939, + "IdString": "s1940", + "NameJp": "I love \"FullMoon\"", + "NameEng": "I love \"FullMoon\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1940, + "IdString": "s1941", + "NameJp": "満月先生", + "NameEng": "満月先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1941, + "IdString": "s1942", + "NameJp": "満月大王", + "NameEng": "満月大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1942, + "IdString": "s1943", + "NameJp": "満月神", + "NameEng": "満月神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1943, + "IdString": "s1944", + "NameJp": "I love \"Packaged\"", + "NameEng": "I love \"Packaged\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1944, + "IdString": "s1945", + "NameJp": "Packaged Master", + "NameEng": "Packaged Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1945, + "IdString": "s1946", + "NameJp": "Packaged King", + "NameEng": "Packaged King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1946, + "IdString": "s1947", + "NameJp": "Packaged God", + "NameEng": "Packaged God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1947, + "IdString": "s1948", + "NameJp": "I love \"リモコン\"", + "NameEng": "I love \"リモコン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 1948, + "IdString": "s1949", + "NameJp": "LRLRABAB先生", + "NameEng": "LRLRABAB先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1949, + "IdString": "s1950", + "NameJp": "LRLRABAB大王", + "NameEng": "LRLRABAB大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 1950, + "IdString": "s1951", + "NameJp": "LRLRABAB神", + "NameEng": "LRLRABAB神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 1951, + "IdString": "s1952", + "NameJp": "I love \"Foughten Field\"", + "NameEng": "I love \"Foughten Field\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1952, + "IdString": "s1953", + "NameJp": "御柱先生", + "NameEng": "御柱先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1953, + "IdString": "s1954", + "NameJp": "御柱大王", + "NameEng": "御柱大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1954, + "IdString": "s1955", + "NameJp": "御柱神", + "NameEng": "御柱神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1955, + "IdString": "s1956", + "NameJp": "I love \"Static Const Void\"", + "NameEng": "I love \"Static Const Void\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 1956, + "IdString": "s1957", + "NameJp": "Genesys Master", + "NameEng": "Genesys Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1957, + "IdString": "s1958", + "NameJp": "Genesys King", + "NameEng": "Genesys King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 1958, + "IdString": "s1959", + "NameJp": "Genesys God", + "NameEng": "Genesys God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 1959, + "IdString": "s1960", + "NameJp": "I love \"D+D→T+p\"", + "NameEng": "I love \"D+D→T+p\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 1960, + "IdString": "s1961", + "NameJp": "太陽先生", + "NameEng": "太陽先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1961, + "IdString": "s1962", + "NameJp": "太陽大王", + "NameEng": "太陽大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 1962, + "IdString": "s1963", + "NameJp": "太陽神", + "NameEng": "太陽神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 1963, + "IdString": "s1964", + "NameJp": "MikuMikuGod", + "NameEng": "MikuMikuGod", + "UnlockRequirementJp": "『初音ミク』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1964, + "IdString": "s1965", + "NameJp": "MikuMikuKing", + "NameEng": "MikuMikuKing", + "UnlockRequirementJp": "『初音ミク』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1965, + "IdString": "s1966", + "NameJp": "MikuMikuMaster", + "NameEng": "MikuMikuMaster", + "UnlockRequirementJp": "『初音ミク』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1966, + "IdString": "s1967", + "NameJp": "女神になったミクさん", + "NameEng": "女神になったミクさん", + "UnlockRequirementJp": "『初音ミク』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1967, + "IdString": "s1968", + "NameJp": "ただでさえ天使のミクさん", + "NameEng": "ただでさえ天使のミクさん", + "UnlockRequirementJp": "『初音ミク』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1968, + "IdString": "s1969", + "NameJp": "S+級長ネギ", + "NameEng": "S+級長ネギ", + "UnlockRequirementJp": "『初音ミク』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 1969, + "IdString": "s1970", + "NameJp": "電子の歌姫", + "NameEng": "電子の歌姫", + "UnlockRequirementJp": "『初音ミク』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1970, + "IdString": "s1971", + "NameJp": "I LOVE 初音ミク", + "NameEng": "I LOVE 初音ミク", + "UnlockRequirementJp": "『初音ミク』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 1971, + "IdString": "s1972", + "NameJp": "バーチャル・シンガー", + "NameEng": "バーチャル・シンガー", + "UnlockRequirementJp": "『初音ミク』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1972, + "IdString": "s1973", + "NameJp": "閉じた恋の瞳", + "NameEng": "閉じた恋の瞳", + "UnlockRequirementJp": "『東方Project5』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1973, + "IdString": "s1974", + "NameJp": "熱かい悩む神の火", + "NameEng": "熱かい悩む神の火", + "UnlockRequirementJp": "『東方Project5』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1974, + "IdString": "s1975", + "NameJp": "地獄の輪禍", + "NameEng": "地獄の輪禍", + "UnlockRequirementJp": "『東方Project5』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1975, + "IdString": "s1976", + "NameJp": "怨霊も恐れ怯む少女", + "NameEng": "怨霊も恐れ怯む少女", + "UnlockRequirementJp": "『東方Project5』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1976, + "IdString": "s1977", + "NameJp": "語られる怪力乱神", + "NameEng": "語られる怪力乱神", + "UnlockRequirementJp": "『東方Project5』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1977, + "IdString": "s1978", + "NameJp": "恐るべき井戸の怪", + "NameEng": "恐るべき井戸の怪", + "UnlockRequirementJp": "『東方Project5』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 1978, + "IdString": "s1979", + "NameJp": "地殻の下の嫉妬心", + "NameEng": "地殻の下の嫉妬心", + "UnlockRequirementJp": "『東方Project5』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1979, + "IdString": "s1980", + "NameJp": "祀られる風の人間", + "NameEng": "祀られる風の人間", + "UnlockRequirementJp": "『東方Project5』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 1980, + "IdString": "s1981", + "NameJp": "暗い洞窟の明るい網", + "NameEng": "暗い洞窟の明るい網", + "UnlockRequirementJp": "『東方Project5』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1981, + "IdString": "s1982", + "NameJp": "未確認幻想飛行少女", + "NameEng": "未確認幻想飛行少女", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1982, + "IdString": "s1983", + "NameJp": "封印された大魔法使い", + "NameEng": "封印された大魔法使い", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1983, + "IdString": "s1984", + "NameJp": "毘沙門天の弟子", + "NameEng": "毘沙門天の弟子", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1984, + "IdString": "s1985", + "NameJp": "水難事故の念縛霊", + "NameEng": "水難事故の念縛霊", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1985, + "IdString": "s1986", + "NameJp": "湖の氷精", + "NameEng": "湖の氷精", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1986, + "IdString": "s1987", + "NameJp": "守り守られし大輪", + "NameEng": "守り守られし大輪", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1987, + "IdString": "s1988", + "NameJp": "愉快な忘れ傘", + "NameEng": "愉快な忘れ傘", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1988, + "IdString": "s1989", + "NameJp": "Undefined Fantastic Object", + "NameEng": "Undefined Fantastic Object", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1989, + "IdString": "s1990", + "NameJp": "ダウザーの小さな大将", + "NameEng": "ダウザーの小さな大将", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 1990, + "IdString": "s1991", + "NameJp": "TAITO GAME MASTER", + "NameEng": "TAITO GAME MASTER", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 1991, + "IdString": "s1992", + "NameJp": "キャッチ・ザ・ハート", + "NameEng": "キャッチ・ザ・ハート", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 1992, + "IdString": "s1993", + "NameJp": "THE NINJA WARRIORS", + "NameEng": "THE NINJA WARRIORS", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 1993, + "IdString": "s1994", + "NameJp": "FEVER! FEVER! FEVER!", + "NameEng": "FEVER! FEVER! FEVER!", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 1994, + "IdString": "s1995", + "NameJp": "泡はきドラゴン", + "NameEng": "泡はきドラゴン", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 1995, + "IdString": "s1996", + "NameJp": "わわわわーにん!", + "NameEng": "わわわわーにん!", + "UnlockRequirementJp": "『タイトーゲーム』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 1996, + "IdString": "s1997", + "NameJp": "EXTREME", + "NameEng": "EXTREME", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 1997, + "IdString": "s1998", + "NameJp": "GENESYS", + "NameEng": "GENESYS", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 1998, + "IdString": "s1999", + "NameJp": "I LOVE バブルン", + "NameEng": "I LOVE バブルン", + "UnlockRequirementJp": "『タイトーゲーム』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 1999, + "IdString": "s2000", + "NameJp": "グルーヴ四千段", + "NameEng": "グルーヴ四千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n310曲で達成", + "UnlockRequirementEng": "Got an S for 310 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2000, + "IdString": "s2001", + "NameJp": "グルーヴ五千段", + "NameEng": "グルーヴ五千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n320曲で達成", + "UnlockRequirementEng": "Got an S for 320 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2001, + "IdString": "s2002", + "NameJp": "グルーヴ六千段", + "NameEng": "グルーヴ六千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n330曲で達成", + "UnlockRequirementEng": "Got an S for 330 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2002, + "IdString": "s2003", + "NameJp": "グルーヴ七千段", + "NameEng": "グルーヴ七千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n340曲で達成", + "UnlockRequirementEng": "Got an S for 340 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2003, + "IdString": "s2004", + "NameJp": "グルーヴ八千段", + "NameEng": "グルーヴ八千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n350曲で達成", + "UnlockRequirementEng": "Got an S for 350 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2004, + "IdString": "s2005", + "NameJp": "グルーヴ九千段", + "NameEng": "グルーヴ九千段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n360曲で達成", + "UnlockRequirementEng": "Got an S for 360 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2005, + "IdString": "s2006", + "NameJp": "グルーヴ一万段", + "NameEng": "グルーヴ一万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n370曲で達成", + "UnlockRequirementEng": "Got an S for 370 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2006, + "IdString": "s2007", + "NameJp": "グルーヴ二万段", + "NameEng": "グルーヴ二万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n380曲で達成", + "UnlockRequirementEng": "Got an S for 380 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2007, + "IdString": "s2008", + "NameJp": "グルーヴ三万段", + "NameEng": "グルーヴ三万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n390曲で達成", + "UnlockRequirementEng": "Got an S for 390 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2008, + "IdString": "s2009", + "NameJp": "グルーヴ四万段", + "NameEng": "グルーヴ四万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n400曲で達成", + "UnlockRequirementEng": "Got an S for 400 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2009, + "IdString": "s2010", + "NameJp": "グルーヴ五万段", + "NameEng": "グルーヴ五万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n410曲で達成", + "UnlockRequirementEng": "Got an S for 410 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2010, + "IdString": "s2011", + "NameJp": "グルーヴ六万段", + "NameEng": "グルーヴ六万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n420曲で達成", + "UnlockRequirementEng": "Got an S for 420 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2011, + "IdString": "s2012", + "NameJp": "グルーヴ七万段", + "NameEng": "グルーヴ七万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n430曲で達成", + "UnlockRequirementEng": "Got an S for 430 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2012, + "IdString": "s2013", + "NameJp": "グルーヴ八万段", + "NameEng": "グルーヴ八万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n440曲で達成", + "UnlockRequirementEng": "Got an S for 440 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2013, + "IdString": "s2014", + "NameJp": "グルーヴ九万段", + "NameEng": "グルーヴ九万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n450曲で達成", + "UnlockRequirementEng": "Got an S for 450 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2014, + "IdString": "s2015", + "NameJp": "グルーヴ十万段", + "NameEng": "グルーヴ十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n460曲で達成", + "UnlockRequirementEng": "Got an S for 460 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2015, + "IdString": "s2016", + "NameJp": "グルーヴ二十万段", + "NameEng": "グルーヴ二十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n470曲で達成", + "UnlockRequirementEng": "Got an S for 470 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2016, + "IdString": "s2017", + "NameJp": "グルーヴ三十万段", + "NameEng": "グルーヴ三十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n480曲で達成", + "UnlockRequirementEng": "Got an S for 480 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2017, + "IdString": "s2018", + "NameJp": "グルーヴ四十万段", + "NameEng": "グルーヴ四十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n490曲で達成", + "UnlockRequirementEng": "Got an S for 490 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2018, + "IdString": "s2019", + "NameJp": "グルーヴ五十万段", + "NameEng": "グルーヴ五十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n500曲で達成", + "UnlockRequirementEng": "Got an S for 500 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 2019, + "IdString": "s2020", + "NameJp": "S+級味噌汁", + "NameEng": "S+級味噌汁", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n310曲で達成", + "UnlockRequirementEng": "Got an S+ for 310 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2020, + "IdString": "s2021", + "NameJp": "S+級たい焼き", + "NameEng": "S+級たい焼き", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n320曲で達成", + "UnlockRequirementEng": "Got an S+ for 320 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2021, + "IdString": "s2022", + "NameJp": "S+級サンドウィッチ", + "NameEng": "S+級サンドウィッチ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n330曲で達成", + "UnlockRequirementEng": "Got an S+ for 330 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2022, + "IdString": "s2023", + "NameJp": "S+級餃子", + "NameEng": "S+級餃子", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n340曲で達成", + "UnlockRequirementEng": "Got an S+ for 340 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2023, + "IdString": "s2024", + "NameJp": "S+級かき氷", + "NameEng": "S+級かき氷", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n350曲で達成", + "UnlockRequirementEng": "Got an S+ for 350 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2024, + "IdString": "s2025", + "NameJp": "S+級カツ丼", + "NameEng": "S+級カツ丼", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n360曲で達成", + "UnlockRequirementEng": "Got an S+ for 360 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2025, + "IdString": "s2026", + "NameJp": "S+級冷やし中華", + "NameEng": "S+級冷やし中華", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n370曲で達成", + "UnlockRequirementEng": "Got an S+ for 370 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2026, + "IdString": "s2027", + "NameJp": "S+級コロッケ", + "NameEng": "S+級コロッケ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n380曲で達成", + "UnlockRequirementEng": "Got an S+ for 380 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2027, + "IdString": "s2028", + "NameJp": "S+級たこ焼き", + "NameEng": "S+級たこ焼き", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n390曲で達成", + "UnlockRequirementEng": "Got an S+ for 390 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2028, + "IdString": "s2029", + "NameJp": "S+級刺身", + "NameEng": "S+級刺身", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n400曲で達成", + "UnlockRequirementEng": "Got an S+ for 400 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2029, + "IdString": "s2030", + "NameJp": "S+級ドーナッツ", + "NameEng": "S+級ドーナッツ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n410曲で達成", + "UnlockRequirementEng": "Got an S+ for 410 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2030, + "IdString": "s2031", + "NameJp": "S+級肉じゃが", + "NameEng": "S+級肉じゃが", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n420曲で達成", + "UnlockRequirementEng": "Got an S+ for 420 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2031, + "IdString": "s2032", + "NameJp": "S+級串カツ", + "NameEng": "S+級串カツ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n430曲で達成", + "UnlockRequirementEng": "Got an S+ for 430 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2032, + "IdString": "s2033", + "NameJp": "S+級シチュー", + "NameEng": "S+級シチュー", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n440曲で達成", + "UnlockRequirementEng": "Got an S+ for 440 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2033, + "IdString": "s2034", + "NameJp": "S+級天丼", + "NameEng": "S+級天丼", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n450曲で達成", + "UnlockRequirementEng": "Got an S+ for 450 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2034, + "IdString": "s2035", + "NameJp": "S+級シュークリーム", + "NameEng": "S+級シュークリーム", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n460曲で達成", + "UnlockRequirementEng": "Got an S+ for 460 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2035, + "IdString": "s2036", + "NameJp": "S+級紅茶", + "NameEng": "S+級紅茶", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n470曲で達成", + "UnlockRequirementEng": "Got an S+ for 470 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2036, + "IdString": "s2037", + "NameJp": "S+級麻婆豆腐", + "NameEng": "S+級麻婆豆腐", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n480曲で達成", + "UnlockRequirementEng": "Got an S+ for 480 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2037, + "IdString": "s2038", + "NameJp": "S+級うな重", + "NameEng": "S+級うな重", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n490曲で達成", + "UnlockRequirementEng": "Got an S+ for 490 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2038, + "IdString": "s2039", + "NameJp": "S+級おにぎり", + "NameEng": "S+級おにぎり", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n500曲で達成", + "UnlockRequirementEng": "Got an S+ for 500 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 2039, + "IdString": "s2040", + "NameJp": "真・十兆段", + "NameEng": "真・十兆段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n310曲で達成", + "UnlockRequirementEng": "Got an S++ for 310 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2040, + "IdString": "s2041", + "NameJp": "真・百兆段", + "NameEng": "真・百兆段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n320曲で達成", + "UnlockRequirementEng": "Got an S++ for 320 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2041, + "IdString": "s2042", + "NameJp": "真・千兆段", + "NameEng": "真・千兆段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n330曲で達成", + "UnlockRequirementEng": "Got an S++ for 330 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2042, + "IdString": "s2043", + "NameJp": "真・一京段", + "NameEng": "真・一京段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n340曲で達成", + "UnlockRequirementEng": "Got an S++ for 340 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2043, + "IdString": "s2044", + "NameJp": "真・十京段", + "NameEng": "真・十京段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n350曲で達成", + "UnlockRequirementEng": "Got an S++ for 350 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2044, + "IdString": "s2045", + "NameJp": "真・百京段", + "NameEng": "真・百京段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n360曲で達成", + "UnlockRequirementEng": "Got an S++ for 360 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2045, + "IdString": "s2046", + "NameJp": "真・千京段", + "NameEng": "真・千京段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n370曲で達成", + "UnlockRequirementEng": "Got an S++ for 370 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2046, + "IdString": "s2047", + "NameJp": "真・一垓段", + "NameEng": "真・一垓段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n380曲で達成", + "UnlockRequirementEng": "Got an S++ for 380 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2047, + "IdString": "s2048", + "NameJp": "真・十垓段", + "NameEng": "真・十垓段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n390曲で達成", + "UnlockRequirementEng": "Got an S++ for 390 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2048, + "IdString": "s2049", + "NameJp": "真・百垓段", + "NameEng": "真・百垓段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n400曲で達成", + "UnlockRequirementEng": "Got an S++ for 400 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2049, + "IdString": "s2050", + "NameJp": "真・千垓段", + "NameEng": "真・千垓段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n410曲で達成", + "UnlockRequirementEng": "Got an S++ for 410 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2050, + "IdString": "s2051", + "NameJp": "真・一じょ段", + "NameEng": "真・一じょ段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n420曲で達成", + "UnlockRequirementEng": "Got an S++ for 420 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2051, + "IdString": "s2052", + "NameJp": "真・十じょ段", + "NameEng": "真・十じょ段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n430曲で達成", + "UnlockRequirementEng": "Got an S++ for 430 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2052, + "IdString": "s2053", + "NameJp": "真・百じょ段", + "NameEng": "真・百じょ段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n440曲で達成", + "UnlockRequirementEng": "Got an S++ for 440 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2053, + "IdString": "s2054", + "NameJp": "真・千じょ段", + "NameEng": "真・千じょ段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n450曲で達成", + "UnlockRequirementEng": "Got an S++ for 450 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2054, + "IdString": "s2055", + "NameJp": "真・一穣段", + "NameEng": "真・一穣段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n460曲で達成", + "UnlockRequirementEng": "Got an S++ for 460 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2055, + "IdString": "s2056", + "NameJp": "真・十穣段", + "NameEng": "真・十穣段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n470曲で達成", + "UnlockRequirementEng": "Got an S++ for 470 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2056, + "IdString": "s2057", + "NameJp": "真・百穣段", + "NameEng": "真・百穣段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n480曲で達成", + "UnlockRequirementEng": "Got an S++ for 480 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2057, + "IdString": "s2058", + "NameJp": "真・千穣段", + "NameEng": "真・千穣段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n490曲で達成", + "UnlockRequirementEng": "Got an S++ for 490 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2058, + "IdString": "s2059", + "NameJp": "真・一溝段", + "NameEng": "真・一溝段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n500曲で達成", + "UnlockRequirementEng": "Got an S++ for 500 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 2059, + "IdString": "s2060", + "NameJp": "ワーウルフ", + "NameEng": "ワーウルフ", + "UnlockRequirementJp": "NO\u3000MISSを1050ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1050 stages", + "Type": 3 + }, + { + "Id": 2060, + "IdString": "s2061", + "NameJp": "ペガサス", + "NameEng": "ペガサス", + "UnlockRequirementJp": "NO\u3000MISSを1100ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1100 stages", + "Type": 3 + }, + { + "Id": 2061, + "IdString": "s2062", + "NameJp": "コカトリス", + "NameEng": "コカトリス", + "UnlockRequirementJp": "NO\u3000MISSを1150ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1150 stages", + "Type": 3 + }, + { + "Id": 2062, + "IdString": "s2063", + "NameJp": "ドリアード", + "NameEng": "ドリアード", + "UnlockRequirementJp": "NO\u3000MISSを1200ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1200 stages", + "Type": 3 + }, + { + "Id": 2063, + "IdString": "s2064", + "NameJp": "スキュラ", + "NameEng": "スキュラ", + "UnlockRequirementJp": "NO\u3000MISSを1250ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1250 stages", + "Type": 3 + }, + { + "Id": 2064, + "IdString": "s2065", + "NameJp": "キマイラ", + "NameEng": "キマイラ", + "UnlockRequirementJp": "NO\u3000MISSを1300ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1300 stages", + "Type": 3 + }, + { + "Id": 2065, + "IdString": "s2066", + "NameJp": "リザードマン", + "NameEng": "リザードマン", + "UnlockRequirementJp": "NO\u3000MISSを1350ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1350 stages", + "Type": 3 + }, + { + "Id": 2066, + "IdString": "s2067", + "NameJp": "ゴグマゴク", + "NameEng": "ゴグマゴク", + "UnlockRequirementJp": "NO\u3000MISSを1400ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1400 stages", + "Type": 3 + }, + { + "Id": 2067, + "IdString": "s2068", + "NameJp": "リンドブルム", + "NameEng": "リンドブルム", + "UnlockRequirementJp": "NO\u3000MISSを1450ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1450 stages", + "Type": 3 + }, + { + "Id": 2068, + "IdString": "s2069", + "NameJp": "ティアマト", + "NameEng": "ティアマト", + "UnlockRequirementJp": "NO\u3000MISSを1500ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1500 stages", + "Type": 3 + }, + { + "Id": 2069, + "IdString": "s2070", + "NameJp": "スレイプニル", + "NameEng": "スレイプニル", + "UnlockRequirementJp": "FULL\u3000CHAINを1050ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1050 stages", + "Type": 4 + }, + { + "Id": 2070, + "IdString": "s2071", + "NameJp": "玄武", + "NameEng": "玄武", + "UnlockRequirementJp": "FULL\u3000CHAINを1100ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1100 stages", + "Type": 4 + }, + { + "Id": 2071, + "IdString": "s2072", + "NameJp": "白虎", + "NameEng": "白虎", + "UnlockRequirementJp": "FULL\u3000CHAINを1150ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1150 stages", + "Type": 4 + }, + { + "Id": 2072, + "IdString": "s2073", + "NameJp": "青龍", + "NameEng": "青龍", + "UnlockRequirementJp": "FULL\u3000CHAINを1200ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1200 stages", + "Type": 4 + }, + { + "Id": 2073, + "IdString": "s2074", + "NameJp": "朱雀", + "NameEng": "朱雀", + "UnlockRequirementJp": "FULL\u3000CHAINを1250ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1250 stages", + "Type": 4 + }, + { + "Id": 2074, + "IdString": "s2075", + "NameJp": "麒麟", + "NameEng": "麒麟", + "UnlockRequirementJp": "FULL\u3000CHAINを1300ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1300 stages", + "Type": 4 + }, + { + "Id": 2075, + "IdString": "s2076", + "NameJp": "九尾", + "NameEng": "九尾", + "UnlockRequirementJp": "FULL\u3000CHAINを1350ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1350 stages", + "Type": 4 + }, + { + "Id": 2076, + "IdString": "s2077", + "NameJp": "風神", + "NameEng": "風神", + "UnlockRequirementJp": "FULL\u3000CHAINを1400ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1400 stages", + "Type": 4 + }, + { + "Id": 2077, + "IdString": "s2078", + "NameJp": "雷神", + "NameEng": "雷神", + "UnlockRequirementJp": "FULL\u3000CHAINを1450ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1450 stages", + "Type": 4 + }, + { + "Id": 2078, + "IdString": "s2079", + "NameJp": "八岐大蛇", + "NameEng": "八岐大蛇", + "UnlockRequirementJp": "FULL\u3000CHAINを1500ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1500 stages", + "Type": 4 + }, + { + "Id": 2079, + "IdString": "s2080", + "NameJp": "S級森蘭丸", + "NameEng": "S級森蘭丸", + "UnlockRequirementJp": "S評価をSIMPLE325ステージで達成", + "UnlockRequirementEng": "Got an S for 325 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 2080, + "IdString": "s2081", + "NameJp": "S級今川義元", + "NameEng": "S級今川義元", + "UnlockRequirementJp": "S評価をSIMPLE350ステージで達成", + "UnlockRequirementEng": "Got an S for 350 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 2081, + "IdString": "s2082", + "NameJp": "S級斎藤道三", + "NameEng": "S級斎藤道三", + "UnlockRequirementJp": "S評価をSIMPLE375ステージで達成", + "UnlockRequirementEng": "Got an S for 375 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 2082, + "IdString": "s2083", + "NameJp": "S級浅井長政", + "NameEng": "S級浅井長政", + "UnlockRequirementJp": "S評価をSIMPLE400ステージで達成", + "UnlockRequirementEng": "Got an S for 400 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 2083, + "IdString": "s2084", + "NameJp": "S級雑賀孫市", + "NameEng": "S級雑賀孫市", + "UnlockRequirementJp": "S評価をSIMPLE425ステージで達成", + "UnlockRequirementEng": "Got an S for 425 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 2084, + "IdString": "s2085", + "NameJp": "S級柴田勝家", + "NameEng": "S級柴田勝家", + "UnlockRequirementJp": "S評価をSIMPLE450ステージで達成", + "UnlockRequirementEng": "Got an S for 450 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 2085, + "IdString": "s2086", + "NameJp": "S級北条氏康", + "NameEng": "S級北条氏康", + "UnlockRequirementJp": "S評価をSIMPLE475ステージで達成", + "UnlockRequirementEng": "Got an S for 475 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 2086, + "IdString": "s2087", + "NameJp": "S級前田慶次", + "NameEng": "S級前田慶次", + "UnlockRequirementJp": "S評価をSIMPLE500ステージで達成", + "UnlockRequirementEng": "Got an S for 500 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 2087, + "IdString": "s2088", + "NameJp": "S級前田利家", + "NameEng": "S級前田利家", + "UnlockRequirementJp": "S評価をNORMAL325ステージで達成", + "UnlockRequirementEng": "Got an S for 325 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 2088, + "IdString": "s2089", + "NameJp": "S級明智光秀", + "NameEng": "S級明智光秀", + "UnlockRequirementJp": "S評価をNORMAL350ステージで達成", + "UnlockRequirementEng": "Got an S for 350 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 2089, + "IdString": "s2090", + "NameJp": "S級直江兼続", + "NameEng": "S級直江兼続", + "UnlockRequirementJp": "S評価をNORMAL375ステージで達成", + "UnlockRequirementEng": "Got an S for 375 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 2090, + "IdString": "s2091", + "NameJp": "S級黒田官兵衛", + "NameEng": "S級黒田官兵衛", + "UnlockRequirementJp": "S評価をNORMAL400ステージで達成", + "UnlockRequirementEng": "Got an S for 400 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 2091, + "IdString": "s2092", + "NameJp": "S級毛利元就", + "NameEng": "S級毛利元就", + "UnlockRequirementJp": "S評価をNORMAL425ステージで達成", + "UnlockRequirementEng": "Got an S for 425 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 2092, + "IdString": "s2093", + "NameJp": "S級島津義弘", + "NameEng": "S級島津義弘", + "UnlockRequirementJp": "S評価をNORMAL450ステージで達成", + "UnlockRequirementEng": "Got an S for 450 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 2093, + "IdString": "s2094", + "NameJp": "S級長宗我部元親", + "NameEng": "S級長宗我部元親", + "UnlockRequirementJp": "S評価をNORMAL475ステージで達成", + "UnlockRequirementEng": "Got an S for 475 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 2094, + "IdString": "s2095", + "NameJp": "S級本多忠勝", + "NameEng": "S級本多忠勝", + "UnlockRequirementJp": "S評価をNORMAL500ステージで達成", + "UnlockRequirementEng": "Got an S for 500 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 2095, + "IdString": "s2096", + "NameJp": "S級真田幸村", + "NameEng": "S級真田幸村", + "UnlockRequirementJp": "S評価をHARD325ステージで達成", + "UnlockRequirementEng": "Got an S for 325 stages in HARD mode", + "Type": 7 + }, + { + "Id": 2096, + "IdString": "s2097", + "NameJp": "S級石田三成", + "NameEng": "S級石田三成", + "UnlockRequirementJp": "S評価をHARD350ステージで達成", + "UnlockRequirementEng": "Got an S for 350 stages in HARD mode", + "Type": 7 + }, + { + "Id": 2097, + "IdString": "s2098", + "NameJp": "S級豊臣秀吉", + "NameEng": "S級豊臣秀吉", + "UnlockRequirementJp": "S評価をHARD375ステージで達成", + "UnlockRequirementEng": "Got an S for 375 stages in HARD mode", + "Type": 7 + }, + { + "Id": 2098, + "IdString": "s2099", + "NameJp": "S級伊達政宗", + "NameEng": "S級伊達政宗", + "UnlockRequirementJp": "S評価をHARD400ステージで達成", + "UnlockRequirementEng": "Got an S for 400 stages in HARD mode", + "Type": 7 + }, + { + "Id": 2099, + "IdString": "s2100", + "NameJp": "S級徳川家康", + "NameEng": "S級徳川家康", + "UnlockRequirementJp": "S評価をHARD425ステージで達成", + "UnlockRequirementEng": "Got an S for 425 stages in HARD mode", + "Type": 7 + }, + { + "Id": 2100, + "IdString": "s2101", + "NameJp": "S級上杉謙信", + "NameEng": "S級上杉謙信", + "UnlockRequirementJp": "S評価をHARD450ステージで達成", + "UnlockRequirementEng": "Got an S for 450 stages in HARD mode", + "Type": 7 + }, + { + "Id": 2101, + "IdString": "s2102", + "NameJp": "S級武田信玄", + "NameEng": "S級武田信玄", + "UnlockRequirementJp": "S評価をHARD475ステージで達成", + "UnlockRequirementEng": "Got an S for 475 stages in HARD mode", + "Type": 7 + }, + { + "Id": 2102, + "IdString": "s2103", + "NameJp": "S級織田信長", + "NameEng": "S級織田信長", + "UnlockRequirementJp": "S評価をHARD500ステージで達成", + "UnlockRequirementEng": "Got an S for 500 stages in HARD mode", + "Type": 7 + }, + { + "Id": 2103, + "IdString": "s2104", + "NameJp": "I love \"サドマミホリック\"", + "NameEng": "I love \"サドマミホリック\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2104, + "IdString": "s2105", + "NameJp": "サドマミマスター", + "NameEng": "サドマミマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2105, + "IdString": "s2106", + "NameJp": "サドマミキング", + "NameEng": "サドマミキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2106, + "IdString": "s2107", + "NameJp": "サドマミゴッド", + "NameEng": "サドマミゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2107, + "IdString": "s2108", + "NameJp": "I love \"Solar Storm\"", + "NameEng": "I love \"Solar Storm\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2108, + "IdString": "s2109", + "NameJp": "Solar Master", + "NameEng": "Solar Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2109, + "IdString": "s2110", + "NameJp": "Solar King", + "NameEng": "Solar King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2110, + "IdString": "s2111", + "NameJp": "Solar God", + "NameEng": "Solar God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2111, + "IdString": "s2112", + "NameJp": "I love \"SiLent ErRors -Un-True-\"", + "NameEng": "I love \"SiLent ErRors -Un-True-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 2112, + "IdString": "s2113", + "NameJp": "SiLent Master", + "NameEng": "SiLent Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 2113, + "IdString": "s2114", + "NameJp": "SiLent King", + "NameEng": "SiLent King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 2114, + "IdString": "s2115", + "NameJp": "SiLent God", + "NameEng": "SiLent God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 2115, + "IdString": "s2116", + "NameJp": "I love \"文学少女インセイン\"", + "NameEng": "I love \"文学少女インセイン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2116, + "IdString": "s2117", + "NameJp": "文学少女マスター", + "NameEng": "文学少女マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2117, + "IdString": "s2118", + "NameJp": "文学少女キング", + "NameEng": "文学少女キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2118, + "IdString": "s2119", + "NameJp": "文学少女ゴッド", + "NameEng": "文学少女ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2119, + "IdString": "s2120", + "NameJp": "I love \"ダンスダンスデカダンス\"", + "NameEng": "I love \"ダンスダンスデカダンス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2120, + "IdString": "s2121", + "NameJp": "ダンスダンスマスター", + "NameEng": "ダンスダンスマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2121, + "IdString": "s2122", + "NameJp": "ダンスダンスキング", + "NameEng": "ダンスダンスキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2122, + "IdString": "s2123", + "NameJp": "ダンスダンスゴッド", + "NameEng": "ダンスダンスゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2123, + "IdString": "s2124", + "NameJp": "I love \"ココロ\"", + "NameEng": "I love \"ココロ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2124, + "IdString": "s2125", + "NameJp": "ココロマスター", + "NameEng": "ココロマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2125, + "IdString": "s2126", + "NameJp": "ココロキング", + "NameEng": "ココロキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2126, + "IdString": "s2127", + "NameJp": "ココロゴッド", + "NameEng": "ココロゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2127, + "IdString": "s2128", + "NameJp": "I love \"先生と少女騒動 -第一審公判-\"", + "NameEng": "I love \"先生と少女騒動 -第一審公判-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2128, + "IdString": "s2129", + "NameJp": "先生と少女騒動", + "NameEng": "先生と少女騒動", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2129, + "IdString": "s2130", + "NameJp": "王様と少女騒動", + "NameEng": "王様と少女騒動", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2130, + "IdString": "s2131", + "NameJp": "神様と少女騒動", + "NameEng": "神様と少女騒動", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2131, + "IdString": "s2132", + "NameJp": "I love \"秘密警察\"", + "NameEng": "I love \"秘密警察\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2132, + "IdString": "s2133", + "NameJp": "秘密先生", + "NameEng": "秘密先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2133, + "IdString": "s2134", + "NameJp": "秘密大王", + "NameEng": "秘密大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2134, + "IdString": "s2135", + "NameJp": "秘密神", + "NameEng": "秘密神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2135, + "IdString": "s2136", + "NameJp": "I love \"Black MInD\"", + "NameEng": "I love \"Black MInD\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2136, + "IdString": "s2137", + "NameJp": "Black Master", + "NameEng": "Black Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2137, + "IdString": "s2138", + "NameJp": "Black King", + "NameEng": "Black King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2138, + "IdString": "s2139", + "NameJp": "Black God", + "NameEng": "Black God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2139, + "IdString": "s2140", + "NameJp": "I love \"最速最高シャッターガール\"", + "NameEng": "I love \"最速最高シャッターガール\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2140, + "IdString": "s2141", + "NameJp": "最速最高先生", + "NameEng": "最速最高先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2141, + "IdString": "s2142", + "NameJp": "最速最高大王", + "NameEng": "最速最高大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2142, + "IdString": "s2143", + "NameJp": "最速最高神", + "NameEng": "最速最高神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2143, + "IdString": "s2144", + "NameJp": "I love \"天狗の詫び証文\"", + "NameEng": "I love \"天狗の詫び証文\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2144, + "IdString": "s2145", + "NameJp": "先生の詫び証文", + "NameEng": "先生の詫び証文", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2145, + "IdString": "s2146", + "NameJp": "王様の詫び証文", + "NameEng": "王様の詫び証文", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2146, + "IdString": "s2147", + "NameJp": "神様の詫び証文", + "NameEng": "神様の詫び証文", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2147, + "IdString": "s2148", + "NameJp": "I love \"MY FIRST FLOWER\"", + "NameEng": "I love \"MY FIRST FLOWER\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2148, + "IdString": "s2149", + "NameJp": "MY FIRST MASTER", + "NameEng": "MY FIRST MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2149, + "IdString": "s2150", + "NameJp": "MY FIRST KING", + "NameEng": "MY FIRST KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2150, + "IdString": "s2151", + "NameJp": "MY FIRST GOD", + "NameEng": "MY FIRST GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2151, + "IdString": "s2152", + "NameJp": "I love \"聖少女サクリファイス\"", + "NameEng": "I love \"聖少女サクリファイス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2152, + "IdString": "s2153", + "NameJp": "聖少女先生", + "NameEng": "聖少女先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2153, + "IdString": "s2154", + "NameJp": "聖少女大王", + "NameEng": "聖少女大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2154, + "IdString": "s2155", + "NameJp": "聖少女神", + "NameEng": "聖少女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2155, + "IdString": "s2156", + "NameJp": "RinLenGod", + "NameEng": "RinLenGod", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 2156, + "IdString": "s2157", + "NameJp": "RinLenKing", + "NameEng": "RinLenKing", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 2157, + "IdString": "s2158", + "NameJp": "RinLenMaster", + "NameEng": "RinLenMaster", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 2158, + "IdString": "s2159", + "NameJp": "レンかわいいよレン", + "NameEng": "レンかわいいよレン", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 2159, + "IdString": "s2160", + "NameJp": "リンかわいいよリン", + "NameEng": "リンかわいいよリン", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 2160, + "IdString": "s2161", + "NameJp": "S+級バナナ", + "NameEng": "S+級バナナ", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 2161, + "IdString": "s2162", + "NameJp": "S+級みかん", + "NameEng": "S+級みかん", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 2162, + "IdString": "s2163", + "NameJp": "I LOVE 鏡音レン", + "NameEng": "I LOVE 鏡音レン", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 2163, + "IdString": "s2164", + "NameJp": "I LOVE 鏡音リン", + "NameEng": "I LOVE 鏡音リン", + "UnlockRequirementJp": "『鏡音リン・レン』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 2164, + "IdString": "s2165", + "NameJp": "楽園の最高裁判長", + "NameEng": "楽園の最高裁判長", + "UnlockRequirementJp": "『東方Project6』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 2165, + "IdString": "s2166", + "NameJp": "三途の水先案内人", + "NameEng": "三途の水先案内人", + "UnlockRequirementJp": "『東方Project6』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 2166, + "IdString": "s2167", + "NameJp": "小さな百鬼夜行", + "NameEng": "小さな百鬼夜行", + "UnlockRequirementJp": "『東方Project6』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 2167, + "IdString": "s2168", + "NameJp": "四季のフラワーマスター", + "NameEng": "四季のフラワーマスター", + "UnlockRequirementJp": "『東方Project6』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 2168, + "IdString": "s2169", + "NameJp": "楽園の巫女", + "NameEng": "楽園の巫女", + "UnlockRequirementJp": "『東方Project6』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 2169, + "IdString": "s2170", + "NameJp": "初々しいスポイラー記者", + "NameEng": "初々しいスポイラー記者", + "UnlockRequirementJp": "『東方Project6』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 2170, + "IdString": "s2171", + "NameJp": "小さなスイートポイズン", + "NameEng": "小さなスイートポイズン", + "UnlockRequirementJp": "『東方Project6』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 2171, + "IdString": "s2172", + "NameJp": "風神少女", + "NameEng": "風神少女", + "UnlockRequirementJp": "『東方Project6』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 2172, + "IdString": "s2173", + "NameJp": "伝統の幻想ブン屋", + "NameEng": "伝統の幻想ブン屋", + "UnlockRequirementJp": "『東方Project6』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 2173, + "IdString": "s2174", + "NameJp": "天下一チャレンジャー", + "NameEng": "天下一チャレンジャー", + "UnlockRequirementJp": "対象曲を1回プレイ", + "UnlockRequirementEng": "Play a set song 1 times", + "Type": 12 + }, + { + "Id": 2174, + "IdString": "s2175", + "NameJp": "アメリカ勢", + "NameEng": "アメリカ勢", + "UnlockRequirementJp": "アメリカでプレイ", + "UnlockRequirementEng": "Played in America", + "Type": 13 + }, + { + "Id": 2175, + "IdString": "s2176", + "NameJp": "I love \"orbital\"", + "NameEng": "I love \"orbital\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2176, + "IdString": "s2177", + "NameJp": "orbital master", + "NameEng": "orbital master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2177, + "IdString": "s2178", + "NameJp": "orbital king", + "NameEng": "orbital king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2178, + "IdString": "s2179", + "NameJp": "orbital god", + "NameEng": "orbital god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2179, + "IdString": "s2180", + "NameJp": "I love \"Change me\"", + "NameEng": "I love \"Change me\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2180, + "IdString": "s2181", + "NameJp": "Change master", + "NameEng": "Change master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2181, + "IdString": "s2182", + "NameJp": "Change king", + "NameEng": "Change king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2182, + "IdString": "s2183", + "NameJp": "Change god", + "NameEng": "Change god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2183, + "IdString": "s2184", + "NameJp": "I love \"フィフス・フォース~五色の閃き~\"", + "NameEng": "I love \"フィフス・フォース~五色の閃き~\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2184, + "IdString": "s2185", + "NameJp": "五色先生", + "NameEng": "五色先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2185, + "IdString": "s2186", + "NameJp": "五色大王", + "NameEng": "五色大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2186, + "IdString": "s2187", + "NameJp": "五色神", + "NameEng": "五色神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2187, + "IdString": "s2188", + "NameJp": "I love \"五次元式エチュード~妖魔との戦い~\"", + "NameEng": "I love \"五次元式エチュード~妖魔との戦い~\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2188, + "IdString": "s2189", + "NameJp": "五次元先生", + "NameEng": "五次元先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2189, + "IdString": "s2190", + "NameJp": "五次元大王", + "NameEng": "五次元大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2190, + "IdString": "s2191", + "NameJp": "五次元神", + "NameEng": "五次元神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2191, + "IdString": "s2192", + "NameJp": "I love \"もしもの私\"", + "NameEng": "I love \"もしもの私\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2192, + "IdString": "s2193", + "NameJp": "もしもの先生", + "NameEng": "もしもの先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2193, + "IdString": "s2194", + "NameJp": "もしもの王", + "NameEng": "もしもの王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2194, + "IdString": "s2195", + "NameJp": "もしもの神", + "NameEng": "もしもの神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2195, + "IdString": "s2196", + "NameJp": "I love \"My Voice is Dead.\"", + "NameEng": "I love \"My Voice is Dead.\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2196, + "IdString": "s2197", + "NameJp": "My Voice is Master.", + "NameEng": "My Voice is Master.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2197, + "IdString": "s2198", + "NameJp": "My Voice is King.", + "NameEng": "My Voice is King.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2198, + "IdString": "s2199", + "NameJp": "My Voice is God.", + "NameEng": "My Voice is God.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2199, + "IdString": "s2200", + "NameJp": "I love \"QLWA\"", + "NameEng": "I love \"QLWA\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2200, + "IdString": "s2201", + "NameJp": "QLWAMASTER", + "NameEng": "QLWAMASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2201, + "IdString": "s2202", + "NameJp": "QLWAKING", + "NameEng": "QLWAKING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2202, + "IdString": "s2203", + "NameJp": "QLWAGOD", + "NameEng": "QLWAGOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2203, + "IdString": "s2204", + "NameJp": "I love \"SETSUNA\"", + "NameEng": "I love \"SETSUNA\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2204, + "IdString": "s2205", + "NameJp": "SETSUNA MASTER", + "NameEng": "SETSUNA MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2205, + "IdString": "s2206", + "NameJp": "SETSUNA KING", + "NameEng": "SETSUNA KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2206, + "IdString": "s2207", + "NameJp": "SETSUNA GOD", + "NameEng": "SETSUNA GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2207, + "IdString": "s2208", + "NameJp": "I love \"TAKING OFF\"", + "NameEng": "I love \"TAKING OFF\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2208, + "IdString": "s2209", + "NameJp": "TAKING OFF MASTER", + "NameEng": "TAKING OFF MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2209, + "IdString": "s2210", + "NameJp": "TAKING OFF KING", + "NameEng": "TAKING OFF KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2210, + "IdString": "s2211", + "NameJp": "TAKING OFF GOD", + "NameEng": "TAKING OFF GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2211, + "IdString": "s2212", + "NameJp": "I love \"VEGAS\"", + "NameEng": "I love \"VEGAS\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2212, + "IdString": "s2213", + "NameJp": "VEGAS MASTER", + "NameEng": "VEGAS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2213, + "IdString": "s2214", + "NameJp": "VEGAS KING", + "NameEng": "VEGAS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2214, + "IdString": "s2215", + "NameJp": "VEGAS GOD", + "NameEng": "VEGAS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2215, + "IdString": "s2216", + "NameJp": "I love \"DOTTED 8TH\"", + "NameEng": "I love \"DOTTED 8TH\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2216, + "IdString": "s2217", + "NameJp": "DOTTED MASTER", + "NameEng": "DOTTED MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2217, + "IdString": "s2218", + "NameJp": "DOTTED KING", + "NameEng": "DOTTED KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2218, + "IdString": "s2219", + "NameJp": "DOTTED GOD", + "NameEng": "DOTTED GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2219, + "IdString": "s2220", + "NameJp": "I love \"TRIPLE3T\"", + "NameEng": "I love \"TRIPLE3T\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2220, + "IdString": "s2221", + "NameJp": "TRIPLE MASTER", + "NameEng": "TRIPLE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2221, + "IdString": "s2222", + "NameJp": "TRIPLE KING", + "NameEng": "TRIPLE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2222, + "IdString": "s2223", + "NameJp": "TRIPLE GOD", + "NameEng": "TRIPLE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2223, + "IdString": "s2224", + "NameJp": "I love \"Satisfiction (Massive New Krew Remix)\"", + "NameEng": "I love \"Satisfiction (Massive New Krew Remix)\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2224, + "IdString": "s2225", + "NameJp": "サティスリミ マスター", + "NameEng": "サティスリミ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2225, + "IdString": "s2226", + "NameJp": "サティスリミ キング", + "NameEng": "サティスリミ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2226, + "IdString": "s2227", + "NameJp": "サティスリミ ゴッド", + "NameEng": "サティスリミ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2227, + "IdString": "s2228", + "NameJp": "I love \"ドクター=ファンクビート\"", + "NameEng": "I love \"ドクター=ファンクビート\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2228, + "IdString": "s2229", + "NameJp": "マスター=ファンクビート", + "NameEng": "マスター=ファンクビート", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2229, + "IdString": "s2230", + "NameJp": "キング=ファンクビート", + "NameEng": "キング=ファンクビート", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2230, + "IdString": "s2231", + "NameJp": "ゴッド=ファンクビート", + "NameEng": "ゴッド=ファンクビート", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2231, + "IdString": "s2232", + "NameJp": "I love \"Groove Prayer -tpz Despair Remix-\"", + "NameEng": "I love \"Groove Prayer -tpz Despair Remix-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2232, + "IdString": "s2233", + "NameJp": "絶望マスター", + "NameEng": "絶望マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2233, + "IdString": "s2234", + "NameJp": "絶望キング", + "NameEng": "絶望キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2234, + "IdString": "s2235", + "NameJp": "絶望ゴッド", + "NameEng": "絶望ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2235, + "IdString": "s2236", + "NameJp": "フィフス・フォース", + "NameEng": "フィフス・フォース", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 2236, + "IdString": "s2237", + "NameJp": "生真面目リーダー", + "NameEng": "生真面目リーダー", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 2237, + "IdString": "s2238", + "NameJp": "完璧系女子", + "NameEng": "完璧系女子", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 2238, + "IdString": "s2239", + "NameJp": "噂の美少女探偵", + "NameEng": "噂の美少女探偵", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 2239, + "IdString": "s2240", + "NameJp": "まっほー", + "NameEng": "まっほー", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 2240, + "IdString": "s2241", + "NameJp": "正義のおちゃらけガール", + "NameEng": "正義のおちゃらけガール", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 2241, + "IdString": "s2242", + "NameJp": "超絶変形型メモカ管理お掃除ロボ", + "NameEng": "超絶変形型メモカ管理お掃除ロボ", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 2242, + "IdString": "s2243", + "NameJp": "時空管理官", + "NameEng": "時空管理官", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 2243, + "IdString": "s2244", + "NameJp": "隊長さん", + "NameEng": "隊長さん", + "UnlockRequirementJp": "『スクールガールストライカーズ』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 2244, + "IdString": "s2245", + "NameJp": "Nightmare", + "NameEng": "Nightmare", + "UnlockRequirementJp": "『t+pazolite(仮)』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 2245, + "IdString": "s2246", + "NameJp": "絶望", + "NameEng": "絶望", + "UnlockRequirementJp": "『t+pazolite(仮)』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 2246, + "IdString": "s2247", + "NameJp": "仮初の満足", + "NameEng": "仮初の満足", + "UnlockRequirementJp": "『t+pazolite(仮)』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 2247, + "IdString": "s2248", + "NameJp": "落ち着きなさNo.1", + "NameEng": "落ち着きなさNo.1", + "UnlockRequirementJp": "『t+pazolite(仮)』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 2248, + "IdString": "s2249", + "NameJp": "\チーン/", + "NameEng": "\チーン/", + "UnlockRequirementJp": "『t+pazolite(仮)』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 2249, + "IdString": "s2250", + "NameJp": "アキナコメコメ", + "NameEng": "アキナコメコメ", + "UnlockRequirementJp": "『t+pazolite(仮)』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 2250, + "IdString": "s2251", + "NameJp": "例の花", + "NameEng": "例の花", + "UnlockRequirementJp": "『t+pazolite(仮)』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 2251, + "IdString": "s2252", + "NameJp": "パニキ", + "NameEng": "パニキ", + "UnlockRequirementJp": "『t+pazolite(仮)』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 2252, + "IdString": "s2253", + "NameJp": "I love t+pazolite", + "NameEng": "I love t+pazolite", + "UnlockRequirementJp": "『t+pazolite(仮)』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 2253, + "IdString": "s2254", + "NameJp": "I AM EDM", + "NameEng": "I AM EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 2254, + "IdString": "s2255", + "NameJp": "I LOVE EDM", + "NameEng": "I LOVE EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 2255, + "IdString": "s2256", + "NameJp": "I BELIEVE EDM", + "NameEng": "I BELIEVE EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 2256, + "IdString": "s2257", + "NameJp": "I LIKE EDM", + "NameEng": "I LIKE EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 2257, + "IdString": "s2258", + "NameJp": "I FEEL EDM", + "NameEng": "I FEEL EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 2258, + "IdString": "s2259", + "NameJp": "I ENJOY EDM", + "NameEng": "I ENJOY EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 2259, + "IdString": "s2260", + "NameJp": "I THINK EDM", + "NameEng": "I THINK EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 2260, + "IdString": "s2261", + "NameJp": "I KNOW EDM", + "NameEng": "I KNOW EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 2261, + "IdString": "s2262", + "NameJp": "I HEAR EDM", + "NameEng": "I HEAR EDM", + "UnlockRequirementJp": "『SATO EDM』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 2262, + "IdString": "s2263", + "NameJp": "GC2最終スコアタ皇帝", + "NameEng": "GC2最終スコアタ皇帝", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 2263, + "IdString": "s2264", + "NameJp": "GC2最終スコアタ王", + "NameEng": "GC2最終スコアタ王", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 2264, + "IdString": "s2265", + "NameJp": "GC2最終スコアタ大公", + "NameEng": "GC2最終スコアタ大公", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 2265, + "IdString": "s2266", + "NameJp": "GC2最終スコアタ公爵", + "NameEng": "GC2最終スコアタ公爵", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 2266, + "IdString": "s2267", + "NameJp": "GC2最終スコアタ侯爵", + "NameEng": "GC2最終スコアタ侯爵", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 2267, + "IdString": "s2268", + "NameJp": "GC2最終スコアタ伯爵", + "NameEng": "GC2最終スコアタ伯爵", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 2268, + "IdString": "s2269", + "NameJp": "GC2最終スコアタ子爵", + "NameEng": "GC2最終スコアタ子爵", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 2269, + "IdString": "s2270", + "NameJp": "GC2最終スコアタ男爵", + "NameEng": "GC2最終スコアタ男爵", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 2270, + "IdString": "s2271", + "NameJp": "GC2最終スコアタ騎士", + "NameEng": "GC2最終スコアタ騎士", + "UnlockRequirementJp": "『GC2最終スコアタ』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 2271, + "IdString": "s2272", + "NameJp": "初PERFECT", + "NameEng": "初PERFECT", + "UnlockRequirementJp": "PERFECTを1ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1 stages", + "Type": 28 + }, + { + "Id": 2272, + "IdString": "s2273", + "NameJp": "神・入門者", + "NameEng": "神・入門者", + "UnlockRequirementJp": "PERFECTを5ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 5 stages", + "Type": 28 + }, + { + "Id": 2273, + "IdString": "s2274", + "NameJp": "神・玖級", + "NameEng": "神・玖級", + "UnlockRequirementJp": "PERFECTを10ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 10 stages", + "Type": 28 + }, + { + "Id": 2274, + "IdString": "s2275", + "NameJp": "神・捌級", + "NameEng": "神・捌級", + "UnlockRequirementJp": "PERFECTを20ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 20 stages", + "Type": 28 + }, + { + "Id": 2275, + "IdString": "s2276", + "NameJp": "神・漆級", + "NameEng": "神・漆級", + "UnlockRequirementJp": "PERFECTを30ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 30 stages", + "Type": 28 + }, + { + "Id": 2276, + "IdString": "s2277", + "NameJp": "神・陸級", + "NameEng": "神・陸級", + "UnlockRequirementJp": "PERFECTを40ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 40 stages", + "Type": 28 + }, + { + "Id": 2277, + "IdString": "s2278", + "NameJp": "神・伍級", + "NameEng": "神・伍級", + "UnlockRequirementJp": "PERFECTを50ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 50 stages", + "Type": 28 + }, + { + "Id": 2278, + "IdString": "s2279", + "NameJp": "神・肆級", + "NameEng": "神・肆級", + "UnlockRequirementJp": "PERFECTを60ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 60 stages", + "Type": 28 + }, + { + "Id": 2279, + "IdString": "s2280", + "NameJp": "神・参級", + "NameEng": "神・参級", + "UnlockRequirementJp": "PERFECTを70ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 70 stages", + "Type": 28 + }, + { + "Id": 2280, + "IdString": "s2281", + "NameJp": "神・弐級", + "NameEng": "神・弐級", + "UnlockRequirementJp": "PERFECTを80ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 80 stages", + "Type": 28 + }, + { + "Id": 2281, + "IdString": "s2282", + "NameJp": "神・壱級", + "NameEng": "神・壱級", + "UnlockRequirementJp": "PERFECTを90ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 90 stages", + "Type": 28 + }, + { + "Id": 2282, + "IdString": "s2283", + "NameJp": "神・初段", + "NameEng": "神・初段", + "UnlockRequirementJp": "PERFECTを100ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 100 stages", + "Type": 28 + }, + { + "Id": 2283, + "IdString": "s2284", + "NameJp": "神・弐段", + "NameEng": "神・弐段", + "UnlockRequirementJp": "PERFECTを125ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 125 stages", + "Type": 28 + }, + { + "Id": 2284, + "IdString": "s2285", + "NameJp": "神・参段", + "NameEng": "神・参段", + "UnlockRequirementJp": "PERFECTを150ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 150 stages", + "Type": 28 + }, + { + "Id": 2285, + "IdString": "s2286", + "NameJp": "神・肆段", + "NameEng": "神・肆段", + "UnlockRequirementJp": "PERFECTを175ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 175 stages", + "Type": 28 + }, + { + "Id": 2286, + "IdString": "s2287", + "NameJp": "神・伍段", + "NameEng": "神・伍段", + "UnlockRequirementJp": "PERFECTを200ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 200 stages", + "Type": 28 + }, + { + "Id": 2287, + "IdString": "s2288", + "NameJp": "神・陸段", + "NameEng": "神・陸段", + "UnlockRequirementJp": "PERFECTを225ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 225 stages", + "Type": 28 + }, + { + "Id": 2288, + "IdString": "s2289", + "NameJp": "神・漆段", + "NameEng": "神・漆段", + "UnlockRequirementJp": "PERFECTを250ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 250 stages", + "Type": 28 + }, + { + "Id": 2289, + "IdString": "s2290", + "NameJp": "神・捌段", + "NameEng": "神・捌段", + "UnlockRequirementJp": "PERFECTを275ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 275 stages", + "Type": 28 + }, + { + "Id": 2290, + "IdString": "s2291", + "NameJp": "神・玖段", + "NameEng": "神・玖段", + "UnlockRequirementJp": "PERFECTを300ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 300 stages", + "Type": 28 + }, + { + "Id": 2291, + "IdString": "s2292", + "NameJp": "神・拾段", + "NameEng": "神・拾段", + "UnlockRequirementJp": "PERFECTを325ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 325 stages", + "Type": 28 + }, + { + "Id": 2292, + "IdString": "s2293", + "NameJp": "神・拾壱段", + "NameEng": "神・拾壱段", + "UnlockRequirementJp": "PERFECTを350ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 350 stages", + "Type": 28 + }, + { + "Id": 2293, + "IdString": "s2294", + "NameJp": "神・拾弐段", + "NameEng": "神・拾弐段", + "UnlockRequirementJp": "PERFECTを375ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 375 stages", + "Type": 28 + }, + { + "Id": 2294, + "IdString": "s2295", + "NameJp": "神・拾参段", + "NameEng": "神・拾参段", + "UnlockRequirementJp": "PERFECTを400ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 400 stages", + "Type": 28 + }, + { + "Id": 2295, + "IdString": "s2296", + "NameJp": "神・拾肆段", + "NameEng": "神・拾肆段", + "UnlockRequirementJp": "PERFECTを425ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 425 stages", + "Type": 28 + }, + { + "Id": 2296, + "IdString": "s2297", + "NameJp": "神・拾伍段", + "NameEng": "神・拾伍段", + "UnlockRequirementJp": "PERFECTを450ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 450 stages", + "Type": 28 + }, + { + "Id": 2297, + "IdString": "s2298", + "NameJp": "神・拾陸段", + "NameEng": "神・拾陸段", + "UnlockRequirementJp": "PERFECTを475ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 475 stages", + "Type": 28 + }, + { + "Id": 2298, + "IdString": "s2299", + "NameJp": "神・拾漆段", + "NameEng": "神・拾漆段", + "UnlockRequirementJp": "PERFECTを500ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 500 stages", + "Type": 28 + }, + { + "Id": 2299, + "IdString": "s2300", + "NameJp": "神・拾捌段", + "NameEng": "神・拾捌段", + "UnlockRequirementJp": "PERFECTを525ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 525 stages", + "Type": 28 + }, + { + "Id": 2300, + "IdString": "s2301", + "NameJp": "神・拾玖段", + "NameEng": "神・拾玖段", + "UnlockRequirementJp": "PERFECTを550ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 550 stages", + "Type": 28 + }, + { + "Id": 2301, + "IdString": "s2302", + "NameJp": "神・弐拾段", + "NameEng": "神・弐拾段", + "UnlockRequirementJp": "PERFECTを575ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 575 stages", + "Type": 28 + }, + { + "Id": 2302, + "IdString": "s2303", + "NameJp": "神・弐拾壱段", + "NameEng": "神・弐拾壱段", + "UnlockRequirementJp": "PERFECTを600ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 600 stages", + "Type": 28 + }, + { + "Id": 2303, + "IdString": "s2304", + "NameJp": "神・弐拾弐段", + "NameEng": "神・弐拾弐段", + "UnlockRequirementJp": "PERFECTを625ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 625 stages", + "Type": 28 + }, + { + "Id": 2304, + "IdString": "s2305", + "NameJp": "神・弐拾参段", + "NameEng": "神・弐拾参段", + "UnlockRequirementJp": "PERFECTを650ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 650 stages", + "Type": 28 + }, + { + "Id": 2305, + "IdString": "s2306", + "NameJp": "神・弐拾肆段", + "NameEng": "神・弐拾肆段", + "UnlockRequirementJp": "PERFECTを675ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 675 stages", + "Type": 28 + }, + { + "Id": 2306, + "IdString": "s2307", + "NameJp": "神・弐拾伍段", + "NameEng": "神・弐拾伍段", + "UnlockRequirementJp": "PERFECTを700ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 700 stages", + "Type": 28 + }, + { + "Id": 2307, + "IdString": "s2308", + "NameJp": "神・弐拾陸段", + "NameEng": "神・弐拾陸段", + "UnlockRequirementJp": "PERFECTを725ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 725 stages", + "Type": 28 + }, + { + "Id": 2308, + "IdString": "s2309", + "NameJp": "神・弐拾漆段", + "NameEng": "神・弐拾漆段", + "UnlockRequirementJp": "PERFECTを750ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 750 stages", + "Type": 28 + }, + { + "Id": 2309, + "IdString": "s2310", + "NameJp": "神・弐拾捌段", + "NameEng": "神・弐拾捌段", + "UnlockRequirementJp": "PERFECTを775ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 775 stages", + "Type": 28 + }, + { + "Id": 2310, + "IdString": "s2311", + "NameJp": "神・弐拾玖段", + "NameEng": "神・弐拾玖段", + "UnlockRequirementJp": "PERFECTを800ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 800 stages", + "Type": 28 + }, + { + "Id": 2311, + "IdString": "s2312", + "NameJp": "神・参拾段", + "NameEng": "神・参拾段", + "UnlockRequirementJp": "PERFECTを825ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 825 stages", + "Type": 28 + }, + { + "Id": 2312, + "IdString": "s2313", + "NameJp": "神・参拾壱段", + "NameEng": "神・参拾壱段", + "UnlockRequirementJp": "PERFECTを850ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 850 stages", + "Type": 28 + }, + { + "Id": 2313, + "IdString": "s2314", + "NameJp": "神・参拾弐段", + "NameEng": "神・参拾弐段", + "UnlockRequirementJp": "PERFECTを875ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 875 stages", + "Type": 28 + }, + { + "Id": 2314, + "IdString": "s2315", + "NameJp": "神・参拾参段", + "NameEng": "神・参拾参段", + "UnlockRequirementJp": "PERFECTを900ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 900 stages", + "Type": 28 + }, + { + "Id": 2315, + "IdString": "s2316", + "NameJp": "神・参拾肆段", + "NameEng": "神・参拾肆段", + "UnlockRequirementJp": "PERFECTを925ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 925 stages", + "Type": 28 + }, + { + "Id": 2316, + "IdString": "s2317", + "NameJp": "神・参拾伍段", + "NameEng": "神・参拾伍段", + "UnlockRequirementJp": "PERFECTを950ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 950 stages", + "Type": 28 + }, + { + "Id": 2317, + "IdString": "s2318", + "NameJp": "神・参拾陸段", + "NameEng": "神・参拾陸段", + "UnlockRequirementJp": "PERFECTを975ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 975 stages", + "Type": 28 + }, + { + "Id": 2318, + "IdString": "s2319", + "NameJp": "神・参拾漆段", + "NameEng": "神・参拾漆段", + "UnlockRequirementJp": "PERFECTを1000ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1000 stages", + "Type": 28 + }, + { + "Id": 2319, + "IdString": "s2320", + "NameJp": "神・参拾捌段", + "NameEng": "神・参拾捌段", + "UnlockRequirementJp": "PERFECTを1025ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1025 stages", + "Type": 28 + }, + { + "Id": 2320, + "IdString": "s2321", + "NameJp": "神・参拾玖段", + "NameEng": "神・参拾玖段", + "UnlockRequirementJp": "PERFECTを1050ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1050 stages", + "Type": 28 + }, + { + "Id": 2321, + "IdString": "s2322", + "NameJp": "神・肆拾段", + "NameEng": "神・肆拾段", + "UnlockRequirementJp": "PERFECTを1075ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1075 stages", + "Type": 28 + }, + { + "Id": 2322, + "IdString": "s2323", + "NameJp": "神・肆拾壱段", + "NameEng": "神・肆拾壱段", + "UnlockRequirementJp": "PERFECTを1100ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1100 stages", + "Type": 28 + }, + { + "Id": 2323, + "IdString": "s2324", + "NameJp": "神・肆拾弐段", + "NameEng": "神・肆拾弐段", + "UnlockRequirementJp": "PERFECTを1125ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1125 stages", + "Type": 28 + }, + { + "Id": 2324, + "IdString": "s2325", + "NameJp": "神・肆拾参段", + "NameEng": "神・肆拾参段", + "UnlockRequirementJp": "PERFECTを1150ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1150 stages", + "Type": 28 + }, + { + "Id": 2325, + "IdString": "s2326", + "NameJp": "神・肆拾肆段", + "NameEng": "神・肆拾肆段", + "UnlockRequirementJp": "PERFECTを1175ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1175 stages", + "Type": 28 + }, + { + "Id": 2326, + "IdString": "s2327", + "NameJp": "神・肆拾伍段", + "NameEng": "神・肆拾伍段", + "UnlockRequirementJp": "PERFECTを1200ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1200 stages", + "Type": 28 + }, + { + "Id": 2327, + "IdString": "s2328", + "NameJp": "神・肆拾陸段", + "NameEng": "神・肆拾陸段", + "UnlockRequirementJp": "PERFECTを1225ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1225 stages", + "Type": 28 + }, + { + "Id": 2328, + "IdString": "s2329", + "NameJp": "神・肆拾漆段", + "NameEng": "神・肆拾漆段", + "UnlockRequirementJp": "PERFECTを1250ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1250 stages", + "Type": 28 + }, + { + "Id": 2329, + "IdString": "s2330", + "NameJp": "神・肆拾捌段", + "NameEng": "神・肆拾捌段", + "UnlockRequirementJp": "PERFECTを1275ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1275 stages", + "Type": 28 + }, + { + "Id": 2330, + "IdString": "s2331", + "NameJp": "神・肆拾玖段", + "NameEng": "神・肆拾玖段", + "UnlockRequirementJp": "PERFECTを1300ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1300 stages", + "Type": 28 + }, + { + "Id": 2331, + "IdString": "s2332", + "NameJp": "神・伍拾段", + "NameEng": "神・伍拾段", + "UnlockRequirementJp": "PERFECTを1325ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1325 stages", + "Type": 28 + }, + { + "Id": 2332, + "IdString": "s2333", + "NameJp": "神・伍拾壱段", + "NameEng": "神・伍拾壱段", + "UnlockRequirementJp": "PERFECTを1350ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1350 stages", + "Type": 28 + }, + { + "Id": 2333, + "IdString": "s2334", + "NameJp": "神・伍拾弐段", + "NameEng": "神・伍拾弐段", + "UnlockRequirementJp": "PERFECTを1375ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1375 stages", + "Type": 28 + }, + { + "Id": 2334, + "IdString": "s2335", + "NameJp": "神・伍拾参段", + "NameEng": "神・伍拾参段", + "UnlockRequirementJp": "PERFECTを1400ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1400 stages", + "Type": 28 + }, + { + "Id": 2335, + "IdString": "s2336", + "NameJp": "神・伍拾肆段", + "NameEng": "神・伍拾肆段", + "UnlockRequirementJp": "PERFECTを1425ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1425 stages", + "Type": 28 + }, + { + "Id": 2336, + "IdString": "s2337", + "NameJp": "神・伍拾伍段", + "NameEng": "神・伍拾伍段", + "UnlockRequirementJp": "PERFECTを1450ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1450 stages", + "Type": 28 + }, + { + "Id": 2337, + "IdString": "s2338", + "NameJp": "神・伍拾陸段", + "NameEng": "神・伍拾陸段", + "UnlockRequirementJp": "PERFECTを1475ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1475 stages", + "Type": 28 + }, + { + "Id": 2338, + "IdString": "s2339", + "NameJp": "神・伍拾漆段", + "NameEng": "神・伍拾漆段", + "UnlockRequirementJp": "PERFECTを1500ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1500 stages", + "Type": 28 + }, + { + "Id": 2339, + "IdString": "s2340", + "NameJp": "意気揚々", + "NameEng": "意気揚々", + "UnlockRequirementJp": "オンライン対戦で1回勝利", + "UnlockRequirementEng": "Win 1 times in Online Match", + "Type": 29 + }, + { + "Id": 2340, + "IdString": "s2341", + "NameJp": "七転八起", + "NameEng": "七転八起", + "UnlockRequirementJp": "オンライン対戦で10回勝利", + "UnlockRequirementEng": "Win 10 times in Online Match", + "Type": 29 + }, + { + "Id": 2341, + "IdString": "s2342", + "NameJp": "起死回生", + "NameEng": "起死回生", + "UnlockRequirementJp": "オンライン対戦で25回勝利", + "UnlockRequirementEng": "Win 25 times in Online Match", + "Type": 29 + }, + { + "Id": 2342, + "IdString": "s2343", + "NameJp": "大胆不敵", + "NameEng": "大胆不敵", + "UnlockRequirementJp": "オンライン対戦で50回勝利", + "UnlockRequirementEng": "Win 50 times in Online Match", + "Type": 29 + }, + { + "Id": 2343, + "IdString": "s2344", + "NameJp": "疾風怒濤", + "NameEng": "疾風怒濤", + "UnlockRequirementJp": "オンライン対戦で75回勝利", + "UnlockRequirementEng": "Win 75 times in Online Match", + "Type": 29 + }, + { + "Id": 2344, + "IdString": "s2345", + "NameJp": "百戦錬磨", + "NameEng": "百戦錬磨", + "UnlockRequirementJp": "オンライン対戦で100回勝利", + "UnlockRequirementEng": "Win 100 times in Online Match", + "Type": 29 + }, + { + "Id": 2345, + "IdString": "s2346", + "NameJp": "風林火山", + "NameEng": "風林火山", + "UnlockRequirementJp": "オンライン対戦で200回勝利", + "UnlockRequirementEng": "Win 200 times in Online Match", + "Type": 29 + }, + { + "Id": 2346, + "IdString": "s2347", + "NameJp": "鏡花水月", + "NameEng": "鏡花水月", + "UnlockRequirementJp": "オンライン対戦で300回勝利", + "UnlockRequirementEng": "Win 300 times in Online Match", + "Type": 29 + }, + { + "Id": 2347, + "IdString": "s2348", + "NameJp": "猪突猛進", + "NameEng": "猪突猛進", + "UnlockRequirementJp": "オンライン対戦で400回勝利", + "UnlockRequirementEng": "Win 400 times in Online Match", + "Type": 29 + }, + { + "Id": 2348, + "IdString": "s2349", + "NameJp": "獅子奮迅", + "NameEng": "獅子奮迅", + "UnlockRequirementJp": "オンライン対戦で500回勝利", + "UnlockRequirementEng": "Win 500 times in Online Match", + "Type": 29 + }, + { + "Id": 2349, + "IdString": "s2350", + "NameJp": "天衣無縫", + "NameEng": "天衣無縫", + "UnlockRequirementJp": "オンライン対戦で600回勝利", + "UnlockRequirementEng": "Win 600 times in Online Match", + "Type": 29 + }, + { + "Id": 2350, + "IdString": "s2351", + "NameJp": "質実剛健", + "NameEng": "質実剛健", + "UnlockRequirementJp": "オンライン対戦で700回勝利", + "UnlockRequirementEng": "Win 700 times in Online Match", + "Type": 29 + }, + { + "Id": 2351, + "IdString": "s2352", + "NameJp": "一世風靡", + "NameEng": "一世風靡", + "UnlockRequirementJp": "オンライン対戦で800回勝利", + "UnlockRequirementEng": "Win 800 times in Online Match", + "Type": 29 + }, + { + "Id": 2352, + "IdString": "s2353", + "NameJp": "威風堂堂", + "NameEng": "威風堂堂", + "UnlockRequirementJp": "オンライン対戦で900回勝利", + "UnlockRequirementEng": "Win 900 times in Online Match", + "Type": 29 + }, + { + "Id": 2353, + "IdString": "s2354", + "NameJp": "一騎当千", + "NameEng": "一騎当千", + "UnlockRequirementJp": "オンライン対戦で1000回勝利", + "UnlockRequirementEng": "Win 1000 times in Online Match", + "Type": 29 + }, + { + "Id": 2354, + "IdString": "s2355", + "NameJp": "神出鬼没", + "NameEng": "神出鬼没", + "UnlockRequirementJp": "オンライン対戦で1500回勝利", + "UnlockRequirementEng": "Win 1500 times in Online Match", + "Type": 29 + }, + { + "Id": 2355, + "IdString": "s2356", + "NameJp": "乾坤一擲", + "NameEng": "乾坤一擲", + "UnlockRequirementJp": "オンライン対戦で2000回勝利", + "UnlockRequirementEng": "Win 2000 times in Online Match", + "Type": 29 + }, + { + "Id": 2356, + "IdString": "s2357", + "NameJp": "虎視眈々", + "NameEng": "虎視眈々", + "UnlockRequirementJp": "オンライン対戦で2500回勝利", + "UnlockRequirementEng": "Win 2500 times in Online Match", + "Type": 29 + }, + { + "Id": 2357, + "IdString": "s2358", + "NameJp": "天真爛漫", + "NameEng": "天真爛漫", + "UnlockRequirementJp": "オンライン対戦で3000回勝利", + "UnlockRequirementEng": "Win 3000 times in Online Match", + "Type": 29 + }, + { + "Id": 2358, + "IdString": "s2359", + "NameJp": "臥竜鳳雛", + "NameEng": "臥竜鳳雛", + "UnlockRequirementJp": "オンライン対戦で3500回勝利", + "UnlockRequirementEng": "Win 3500 times in Online Match", + "Type": 29 + }, + { + "Id": 2359, + "IdString": "s2360", + "NameJp": "一刀両断", + "NameEng": "一刀両断", + "UnlockRequirementJp": "オンライン対戦で4000回勝利", + "UnlockRequirementEng": "Win 4000 times in Online Match", + "Type": 29 + }, + { + "Id": 2360, + "IdString": "s2361", + "NameJp": "初志貫徹", + "NameEng": "初志貫徹", + "UnlockRequirementJp": "オンライン対戦で4500回勝利", + "UnlockRequirementEng": "Win 4500 times in Online Match", + "Type": 29 + }, + { + "Id": 2361, + "IdString": "s2362", + "NameJp": "不撓不屈", + "NameEng": "不撓不屈", + "UnlockRequirementJp": "オンライン対戦で5000回勝利", + "UnlockRequirementEng": "Win 5000 times in Online Match", + "Type": 29 + }, + { + "Id": 2362, + "IdString": "s2363", + "NameJp": "多芸多才", + "NameEng": "多芸多才", + "UnlockRequirementJp": "オンライン対戦で5500回勝利", + "UnlockRequirementEng": "Win 5500 times in Online Match", + "Type": 29 + }, + { + "Id": 2363, + "IdString": "s2364", + "NameJp": "臥薪嘗胆", + "NameEng": "臥薪嘗胆", + "UnlockRequirementJp": "オンライン対戦で6000回勝利", + "UnlockRequirementEng": "Win 6000 times in Online Match", + "Type": 29 + }, + { + "Id": 2364, + "IdString": "s2365", + "NameJp": "文武両道", + "NameEng": "文武両道", + "UnlockRequirementJp": "オンライン対戦で6500回勝利", + "UnlockRequirementEng": "Win 6500 times in Online Match", + "Type": 29 + }, + { + "Id": 2365, + "IdString": "s2366", + "NameJp": "勇猛果敢", + "NameEng": "勇猛果敢", + "UnlockRequirementJp": "オンライン対戦で7000回勝利", + "UnlockRequirementEng": "Win 7000 times in Online Match", + "Type": 29 + }, + { + "Id": 2366, + "IdString": "s2367", + "NameJp": "無我夢中", + "NameEng": "無我夢中", + "UnlockRequirementJp": "オンライン対戦で7500回勝利", + "UnlockRequirementEng": "Win 7500 times in Online Match", + "Type": 29 + }, + { + "Id": 2367, + "IdString": "s2368", + "NameJp": "波瀾万丈", + "NameEng": "波瀾万丈", + "UnlockRequirementJp": "オンライン対戦で8000回勝利", + "UnlockRequirementEng": "Win 8000 times in Online Match", + "Type": 29 + }, + { + "Id": 2368, + "IdString": "s2369", + "NameJp": "英雄豪傑", + "NameEng": "英雄豪傑", + "UnlockRequirementJp": "オンライン対戦で8500回勝利", + "UnlockRequirementEng": "Win 8500 times in Online Match", + "Type": 29 + }, + { + "Id": 2369, + "IdString": "s2370", + "NameJp": "唯我独尊", + "NameEng": "唯我独尊", + "UnlockRequirementJp": "オンライン対戦で9000回勝利", + "UnlockRequirementEng": "Win 9000 times in Online Match", + "Type": 29 + }, + { + "Id": 2370, + "IdString": "s2371", + "NameJp": "森羅万象", + "NameEng": "森羅万象", + "UnlockRequirementJp": "オンライン対戦で9500回勝利", + "UnlockRequirementEng": "Win 9500 times in Online Match", + "Type": 29 + }, + { + "Id": 2371, + "IdString": "s2372", + "NameJp": "天下無双", + "NameEng": "天下無双", + "UnlockRequirementJp": "オンライン対戦で10000回勝利", + "UnlockRequirementEng": "Win 10000 times in Online Match", + "Type": 29 + }, + { + "Id": 2372, + "IdString": "s2373", + "NameJp": "ジンギスカン", + "NameEng": "ジンギスカン", + "UnlockRequirementJp": "オンライン対戦で北海道の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Hokkaido\nin Online Match", + "Type": 29 + }, + { + "Id": 2373, + "IdString": "s2374", + "NameJp": "りんご", + "NameEng": "りんご", + "UnlockRequirementJp": "オンライン対戦で青森県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Aomori\nin Online Match", + "Type": 29 + }, + { + "Id": 2374, + "IdString": "s2375", + "NameJp": "わんこそば", + "NameEng": "わんこそば", + "UnlockRequirementJp": "オンライン対戦で岩手県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Iwate\nin Online Match", + "Type": 29 + }, + { + "Id": 2375, + "IdString": "s2376", + "NameJp": "牛タン", + "NameEng": "牛タン", + "UnlockRequirementJp": "オンライン対戦で宮城県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Miyagi\nin Online Match", + "Type": 29 + }, + { + "Id": 2376, + "IdString": "s2377", + "NameJp": "きりたんぽ", + "NameEng": "きりたんぽ", + "UnlockRequirementJp": "オンライン対戦で秋田県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Akita\nin Online Match", + "Type": 29 + }, + { + "Id": 2377, + "IdString": "s2378", + "NameJp": "さくらんぼ", + "NameEng": "さくらんぼ", + "UnlockRequirementJp": "オンライン対戦で山形県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Yamagata\nin Online Match", + "Type": 29 + }, + { + "Id": 2378, + "IdString": "s2379", + "NameJp": "喜多方ラーメン", + "NameEng": "喜多方ラーメン", + "UnlockRequirementJp": "オンライン対戦で福島県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Fukushima\nin Online Match", + "Type": 29 + }, + { + "Id": 2379, + "IdString": "s2380", + "NameJp": "納豆", + "NameEng": "納豆", + "UnlockRequirementJp": "オンライン対戦で茨城県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Ibaraki\nin Online Match", + "Type": 29 + }, + { + "Id": 2380, + "IdString": "s2381", + "NameJp": "餃子", + "NameEng": "餃子", + "UnlockRequirementJp": "オンライン対戦で栃木県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Tochigi\nin Online Match", + "Type": 29 + }, + { + "Id": 2381, + "IdString": "s2382", + "NameJp": "焼き饅頭", + "NameEng": "焼き饅頭", + "UnlockRequirementJp": "オンライン対戦で群馬県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Gunma\nin Online Match", + "Type": 29 + }, + { + "Id": 2382, + "IdString": "s2383", + "NameJp": "焼きとん", + "NameEng": "焼きとん", + "UnlockRequirementJp": "オンライン対戦で埼玉県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Saitama\nin Online Match", + "Type": 29 + }, + { + "Id": 2383, + "IdString": "s2384", + "NameJp": "落花生", + "NameEng": "落花生", + "UnlockRequirementJp": "オンライン対戦で千葉県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Chiba\nin Online Match", + "Type": 29 + }, + { + "Id": 2384, + "IdString": "s2385", + "NameJp": "もんじゃ焼き", + "NameEng": "もんじゃ焼き", + "UnlockRequirementJp": "オンライン対戦で東京都の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Tokyo\nin Online Match", + "Type": 29 + }, + { + "Id": 2385, + "IdString": "s2386", + "NameJp": "シュウマイ", + "NameEng": "シュウマイ", + "UnlockRequirementJp": "オンライン対戦で神奈川県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Kanagawa\nin Online Match", + "Type": 29 + }, + { + "Id": 2386, + "IdString": "s2387", + "NameJp": "ブドウ", + "NameEng": "ブドウ", + "UnlockRequirementJp": "オンライン対戦で山梨県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Yamanashi\nin Online Match", + "Type": 29 + }, + { + "Id": 2387, + "IdString": "s2388", + "NameJp": "信州そば", + "NameEng": "信州そば", + "UnlockRequirementJp": "オンライン対戦で長野県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Nagano\nin Online Match", + "Type": 29 + }, + { + "Id": 2388, + "IdString": "s2389", + "NameJp": "のっぺい汁", + "NameEng": "のっぺい汁", + "UnlockRequirementJp": "オンライン対戦で新潟県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Niigata\nin Online Match", + "Type": 29 + }, + { + "Id": 2389, + "IdString": "s2390", + "NameJp": "ホタルイカ", + "NameEng": "ホタルイカ", + "UnlockRequirementJp": "オンライン対戦で富山県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Toyama\nin Online Match", + "Type": 29 + }, + { + "Id": 2390, + "IdString": "s2391", + "NameJp": "治部煮", + "NameEng": "治部煮", + "UnlockRequirementJp": "オンライン対戦で石川県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Ishikawa\nin Online Match", + "Type": 29 + }, + { + "Id": 2391, + "IdString": "s2392", + "NameJp": "越前ガニ", + "NameEng": "越前ガニ", + "UnlockRequirementJp": "オンライン対戦で福井県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Fukui\nin Online Match", + "Type": 29 + }, + { + "Id": 2392, + "IdString": "s2393", + "NameJp": "うなぎ", + "NameEng": "うなぎ", + "UnlockRequirementJp": "オンライン対戦で静岡県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Shizuoka\nin Online Match", + "Type": 29 + }, + { + "Id": 2393, + "IdString": "s2394", + "NameJp": "味噌かつ", + "NameEng": "味噌かつ", + "UnlockRequirementJp": "オンライン対戦で愛知県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Aichi\nin Online Match", + "Type": 29 + }, + { + "Id": 2394, + "IdString": "s2395", + "NameJp": "五平餅", + "NameEng": "五平餅", + "UnlockRequirementJp": "オンライン対戦で岐阜県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Gifu\nin Online Match", + "Type": 29 + }, + { + "Id": 2395, + "IdString": "s2396", + "NameJp": "伊勢エビ", + "NameEng": "伊勢エビ", + "UnlockRequirementJp": "オンライン対戦で三重県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Mie\nin Online Match", + "Type": 29 + }, + { + "Id": 2396, + "IdString": "s2397", + "NameJp": "ふな寿司", + "NameEng": "ふな寿司", + "UnlockRequirementJp": "オンライン対戦で滋賀県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Shiga\nin Online Match", + "Type": 29 + }, + { + "Id": 2397, + "IdString": "s2398", + "NameJp": "京野菜", + "NameEng": "京野菜", + "UnlockRequirementJp": "オンライン対戦で京都府の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Kyoto\nin Online Match", + "Type": 29 + }, + { + "Id": 2398, + "IdString": "s2399", + "NameJp": "たこ焼き", + "NameEng": "たこ焼き", + "UnlockRequirementJp": "オンライン対戦で大阪府の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Osaka\nin Online Match", + "Type": 29 + }, + { + "Id": 2399, + "IdString": "s2400", + "NameJp": "明石焼き", + "NameEng": "明石焼き", + "UnlockRequirementJp": "オンライン対戦で兵庫県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Hyogo\nin Online Match", + "Type": 29 + }, + { + "Id": 2400, + "IdString": "s2401", + "NameJp": "柿の葉寿司", + "NameEng": "柿の葉寿司", + "UnlockRequirementJp": "オンライン対戦で奈良県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Nara\nin Online Match", + "Type": 29 + }, + { + "Id": 2401, + "IdString": "s2402", + "NameJp": "梅干", + "NameEng": "梅干", + "UnlockRequirementJp": "オンライン対戦で和歌山県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Wakayama\nin Online Match", + "Type": 29 + }, + { + "Id": 2402, + "IdString": "s2403", + "NameJp": "吉備団子", + "NameEng": "吉備団子", + "UnlockRequirementJp": "オンライン対戦で岡山県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Okayama\nin Online Match", + "Type": 29 + }, + { + "Id": 2403, + "IdString": "s2404", + "NameJp": "お好み焼き", + "NameEng": "お好み焼き", + "UnlockRequirementJp": "オンライン対戦で広島県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Hiroshima\nin Online Match", + "Type": 29 + }, + { + "Id": 2404, + "IdString": "s2405", + "NameJp": "二十世紀梨", + "NameEng": "二十世紀梨", + "UnlockRequirementJp": "オンライン対戦で鳥取県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Tottori\nin Online Match", + "Type": 29 + }, + { + "Id": 2405, + "IdString": "s2406", + "NameJp": "出雲そば", + "NameEng": "出雲そば", + "UnlockRequirementJp": "オンライン対戦で島根県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Shimane\nin Online Match", + "Type": 29 + }, + { + "Id": 2406, + "IdString": "s2407", + "NameJp": "フグ刺し", + "NameEng": "フグ刺し", + "UnlockRequirementJp": "オンライン対戦で山口県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Yamaguchi\nin Online Match", + "Type": 29 + }, + { + "Id": 2407, + "IdString": "s2408", + "NameJp": "そば米雑炊", + "NameEng": "そば米雑炊", + "UnlockRequirementJp": "オンライン対戦で徳島県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Tokushima\nin Online Match", + "Type": 29 + }, + { + "Id": 2408, + "IdString": "s2409", + "NameJp": "讃岐うどん", + "NameEng": "讃岐うどん", + "UnlockRequirementJp": "オンライン対戦で香川県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Kagawa\nin Online Match", + "Type": 29 + }, + { + "Id": 2409, + "IdString": "s2410", + "NameJp": "温州みかん", + "NameEng": "温州みかん", + "UnlockRequirementJp": "オンライン対戦で愛媛県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Ehime\nin Online Match", + "Type": 29 + }, + { + "Id": 2410, + "IdString": "s2411", + "NameJp": "鰹のたたき", + "NameEng": "鰹のたたき", + "UnlockRequirementJp": "オンライン対戦で高知県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Kochi\nin Online Match", + "Type": 29 + }, + { + "Id": 2411, + "IdString": "s2412", + "NameJp": "辛子明太子", + "NameEng": "辛子明太子", + "UnlockRequirementJp": "オンライン対戦で福岡県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Fukuoka\nin Online Match", + "Type": 29 + }, + { + "Id": 2412, + "IdString": "s2413", + "NameJp": "むつごろうの蒲焼", + "NameEng": "むつごろうの蒲焼", + "UnlockRequirementJp": "オンライン対戦で佐賀県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Saga\nin Online Match", + "Type": 29 + }, + { + "Id": 2413, + "IdString": "s2414", + "NameJp": "ちゃんぽん", + "NameEng": "ちゃんぽん", + "UnlockRequirementJp": "オンライン対戦で長崎県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Nagasaki\nin Online Match", + "Type": 29 + }, + { + "Id": 2414, + "IdString": "s2415", + "NameJp": "馬刺し", + "NameEng": "馬刺し", + "UnlockRequirementJp": "オンライン対戦で熊本県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Kumamoto\nin Online Match", + "Type": 29 + }, + { + "Id": 2415, + "IdString": "s2416", + "NameJp": "とり天", + "NameEng": "とり天", + "UnlockRequirementJp": "オンライン対戦で大分県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Oita\nin Online Match", + "Type": 29 + }, + { + "Id": 2416, + "IdString": "s2417", + "NameJp": "チキン南蛮", + "NameEng": "チキン南蛮", + "UnlockRequirementJp": "オンライン対戦で宮崎県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Miyazaki\nin Online Match", + "Type": 29 + }, + { + "Id": 2417, + "IdString": "s2418", + "NameJp": "さつま揚げ", + "NameEng": "さつま揚げ", + "UnlockRequirementJp": "オンライン対戦で鹿児島県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Kagoshima\nin Online Match", + "Type": 29 + }, + { + "Id": 2418, + "IdString": "s2419", + "NameJp": "ゴーヤチャンプルー", + "NameEng": "ゴーヤチャンプルー", + "UnlockRequirementJp": "オンライン対戦で沖縄県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Okinawa\nin Online Match", + "Type": 29 + }, + { + "Id": 2419, + "IdString": "s2420", + "NameJp": "点心", + "NameEng": "点心", + "UnlockRequirementJp": "オンライン対戦で香港の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Hong Kong\nin Online Match", + "Type": 29 + }, + { + "Id": 2420, + "IdString": "s2421", + "NameJp": "サムギョプサル", + "NameEng": "サムギョプサル", + "UnlockRequirementJp": "オンライン対戦で韓国の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in South Korea\nin Online Match", + "Type": 29 + }, + { + "Id": 2421, + "IdString": "s2422", + "NameJp": "チキンライス", + "NameEng": "チキンライス", + "UnlockRequirementJp": "オンライン対戦でシンガポールの\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Singapore\nin Online Match", + "Type": 29 + }, + { + "Id": 2422, + "IdString": "s2423", + "NameJp": "担仔麺", + "NameEng": "担仔麺", + "UnlockRequirementJp": "オンライン対戦で台湾の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Taiwan\nin Online Match", + "Type": 29 + }, + { + "Id": 2423, + "IdString": "s2424", + "NameJp": "トムヤムクン", + "NameEng": "トムヤムクン", + "UnlockRequirementJp": "オンライン対戦でタイの\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Thailand\nin Online Match", + "Type": 29 + }, + { + "Id": 2424, + "IdString": "s2425", + "NameJp": "ミーゴレン", + "NameEng": "ミーゴレン", + "UnlockRequirementJp": "オンライン対戦でマレーシアの\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Malaysia\nin Online Match", + "Type": 29 + }, + { + "Id": 2425, + "IdString": "s2426", + "NameJp": "ナシゴレン", + "NameEng": "ナシゴレン", + "UnlockRequirementJp": "オンライン対戦でインドネシアの\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Indonesia\nin Online Match", + "Type": 29 + }, + { + "Id": 2426, + "IdString": "s2427", + "NameJp": "ハンバーガー", + "NameEng": "ハンバーガー", + "UnlockRequirementJp": "オンライン対戦でアメリカの\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in America\nin Online Match", + "Type": 29 + }, + { + "Id": 2427, + "IdString": "s2428", + "NameJp": "NORTH OCEAN", + "NameEng": "NORTH OCEAN", + "UnlockRequirementJp": "オンライン対戦で北海道の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Hokkaido\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2428, + "IdString": "s2429", + "NameJp": "BLUE FOREST", + "NameEng": "BLUE FOREST", + "UnlockRequirementJp": "オンライン対戦で青森県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Aomori\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2429, + "IdString": "s2430", + "NameJp": "ROCK FIST", + "NameEng": "ROCK FIST", + "UnlockRequirementJp": "オンライン対戦で岩手県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Iwate\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2430, + "IdString": "s2431", + "NameJp": "SHRINE CASTLE", + "NameEng": "SHRINE CASTLE", + "UnlockRequirementJp": "オンライン対戦で宮城県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Miyagi\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2431, + "IdString": "s2432", + "NameJp": "AUTUMN FIELD", + "NameEng": "AUTUMN FIELD", + "UnlockRequirementJp": "オンライン対戦で秋田県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Akita\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2432, + "IdString": "s2433", + "NameJp": "MOUNTAIN FORM", + "NameEng": "MOUNTAIN FORM", + "UnlockRequirementJp": "オンライン対戦で山形県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Yamagata\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2433, + "IdString": "s2434", + "NameJp": "HAPPINESS ISLAND", + "NameEng": "HAPPINESS ISLAND", + "UnlockRequirementJp": "オンライン対戦で福島県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Fukushima\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2434, + "IdString": "s2435", + "NameJp": "BRIER CASTLE", + "NameEng": "BRIER CASTLE", + "UnlockRequirementJp": "オンライン対戦で茨城県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Ibaraki\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2435, + "IdString": "s2436", + "NameJp": "HORSE CHESTNUT", + "NameEng": "HORSE CHESTNUT", + "UnlockRequirementJp": "オンライン対戦で栃木県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Tochigi\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2436, + "IdString": "s2437", + "NameJp": "HERD HORSE", + "NameEng": "HERD HORSE", + "UnlockRequirementJp": "オンライン対戦で群馬県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Gunma\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2437, + "IdString": "s2438", + "NameJp": "COLOR BALL", + "NameEng": "COLOR BALL", + "UnlockRequirementJp": "オンライン対戦で埼玉県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Saitama\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2438, + "IdString": "s2439", + "NameJp": "THOUSAND LEAVES", + "NameEng": "THOUSAND LEAVES", + "UnlockRequirementJp": "オンライン対戦で千葉県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Chiba\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2439, + "IdString": "s2440", + "NameJp": "EAST CAPITAL", + "NameEng": "EAST CAPITAL", + "UnlockRequirementJp": "オンライン対戦で東京都の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Tokyo\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2440, + "IdString": "s2441", + "NameJp": "GOLDEN RIVER", + "NameEng": "GOLDEN RIVER", + "UnlockRequirementJp": "オンライン対戦で神奈川県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Kanagawa\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2441, + "IdString": "s2442", + "NameJp": "MOUNTAIN PEAR", + "NameEng": "MOUNTAIN PEAR", + "UnlockRequirementJp": "オンライン対戦で山梨県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Yamanashi\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2442, + "IdString": "s2443", + "NameJp": "LONG FIELD", + "NameEng": "LONG FIELD", + "UnlockRequirementJp": "オンライン対戦で長野県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Nagano\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2443, + "IdString": "s2444", + "NameJp": "NEW TIDELAND", + "NameEng": "NEW TIDELAND", + "UnlockRequirementJp": "オンライン対戦で新潟県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Niigata\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2444, + "IdString": "s2445", + "NameJp": "WEALTH MOUNTAIN", + "NameEng": "WEALTH MOUNTAIN", + "UnlockRequirementJp": "オンライン対戦で富山県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Toyama\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2445, + "IdString": "s2446", + "NameJp": "STONE RIVER", + "NameEng": "STONE RIVER", + "UnlockRequirementJp": "オンライン対戦で石川県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Ishikawa\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2446, + "IdString": "s2447", + "NameJp": "HAPPINESS WELL", + "NameEng": "HAPPINESS WELL", + "UnlockRequirementJp": "オンライン対戦で福井県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Fukui\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2447, + "IdString": "s2448", + "NameJp": "QUIET HILL", + "NameEng": "QUIET HILL", + "UnlockRequirementJp": "オンライン対戦で静岡県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Shizuoka\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2448, + "IdString": "s2449", + "NameJp": "LOVE KNOWLEDGE", + "NameEng": "LOVE KNOWLEDGE", + "UnlockRequirementJp": "オンライン対戦で愛知県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Aichi\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2449, + "IdString": "s2450", + "NameJp": "CROSSROAD HILL", + "NameEng": "CROSSROAD HILL", + "UnlockRequirementJp": "オンライン対戦で岐阜県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Gifu\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2450, + "IdString": "s2451", + "NameJp": "THREEFOLD", + "NameEng": "THREEFOLD", + "UnlockRequirementJp": "オンライン対戦で三重県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Mie\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2451, + "IdString": "s2452", + "NameJp": "NOURISHMENT CELEBRATE", + "NameEng": "NOURISHMENT CELEBRATE", + "UnlockRequirementJp": "オンライン対戦で滋賀県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Shiga\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2452, + "IdString": "s2453", + "NameJp": "CAPITAL CAPITAL", + "NameEng": "CAPITAL CAPITAL", + "UnlockRequirementJp": "オンライン対戦で京都府の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Kyoto\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2453, + "IdString": "s2454", + "NameJp": "BIG SLOPE", + "NameEng": "BIG SLOPE", + "UnlockRequirementJp": "オンライン対戦で大阪府の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Osaka\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2454, + "IdString": "s2455", + "NameJp": "SOLDIER MAGAZINE", + "NameEng": "SOLDIER MAGAZINE", + "UnlockRequirementJp": "オンライン対戦で兵庫県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Hyogo\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2455, + "IdString": "s2456", + "NameJp": "LEVEL", + "NameEng": "LEVEL", + "UnlockRequirementJp": "オンライン対戦で奈良県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Nara\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2456, + "IdString": "s2457", + "NameJp": "POETRY MOUNTAIN", + "NameEng": "POETRY MOUNTAIN", + "UnlockRequirementJp": "オンライン対戦で和歌山県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Wakayama\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2457, + "IdString": "s2458", + "NameJp": "HILL MOUNTAIN", + "NameEng": "HILL MOUNTAIN", + "UnlockRequirementJp": "オンライン対戦で岡山県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Okayama\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2458, + "IdString": "s2459", + "NameJp": "LARGE ISLAND", + "NameEng": "LARGE ISLAND", + "UnlockRequirementJp": "オンライン対戦で広島県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Hiroshima\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2459, + "IdString": "s2460", + "NameJp": "BIRD HUNTER", + "NameEng": "BIRD HUNTER", + "UnlockRequirementJp": "オンライン対戦で鳥取県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Tottori\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2460, + "IdString": "s2461", + "NameJp": "ISLAND ROOT", + "NameEng": "ISLAND ROOT", + "UnlockRequirementJp": "オンライン対戦で島根県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Shimane\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2461, + "IdString": "s2462", + "NameJp": "MOUNTAIN MOUTH", + "NameEng": "MOUNTAIN MOUTH", + "UnlockRequirementJp": "オンライン対戦で山口県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Yamaguchi\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2462, + "IdString": "s2463", + "NameJp": "VIRTUE ISLAND", + "NameEng": "VIRTUE ISLAND", + "UnlockRequirementJp": "オンライン対戦で徳島県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Tokushima\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2463, + "IdString": "s2464", + "NameJp": "SMELL RIVER", + "NameEng": "SMELL RIVER", + "UnlockRequirementJp": "オンライン対戦で香川県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Kagawa\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2464, + "IdString": "s2465", + "NameJp": "ANGELIC LADY", + "NameEng": "ANGELIC LADY", + "UnlockRequirementJp": "オンライン対戦で愛媛県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Ehime\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2465, + "IdString": "s2466", + "NameJp": "EXPERT KNOWLEDGE", + "NameEng": "EXPERT KNOWLEDGE", + "UnlockRequirementJp": "オンライン対戦で高知県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Kochi\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2466, + "IdString": "s2467", + "NameJp": "HAPPINESS HILL", + "NameEng": "HAPPINESS HILL", + "UnlockRequirementJp": "オンライン対戦で福岡県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Fukuoka\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2467, + "IdString": "s2468", + "NameJp": "CAPTAIN CELEBRATE", + "NameEng": "CAPTAIN CELEBRATE", + "UnlockRequirementJp": "オンライン対戦で佐賀県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Saga\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2468, + "IdString": "s2469", + "NameJp": "LONG CAPE", + "NameEng": "LONG CAPE", + "UnlockRequirementJp": "オンライン対戦で長崎県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Nagasaki\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2469, + "IdString": "s2470", + "NameJp": "BEAR BOOK", + "NameEng": "BEAR BOOK", + "UnlockRequirementJp": "オンライン対戦で熊本県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Kumamoto\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2470, + "IdString": "s2471", + "NameJp": "BIG MINUTE", + "NameEng": "BIG MINUTE", + "UnlockRequirementJp": "オンライン対戦で大分県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Oita\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2471, + "IdString": "s2472", + "NameJp": "SHRINE CAPE", + "NameEng": "SHRINE CAPE", + "UnlockRequirementJp": "オンライン対戦で宮崎県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Miyazaki\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2472, + "IdString": "s2473", + "NameJp": "FAWN ISLAND", + "NameEng": "FAWN ISLAND", + "UnlockRequirementJp": "オンライン対戦で鹿児島県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Kagoshima\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2473, + "IdString": "s2474", + "NameJp": "OFFING ROPE", + "NameEng": "OFFING ROPE", + "UnlockRequirementJp": "オンライン対戦で沖縄県の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Okinawa\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2474, + "IdString": "s2475", + "NameJp": "BOOK NAVY", + "NameEng": "BOOK NAVY", + "UnlockRequirementJp": "オンライン対戦で香港の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Hong Kong\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2475, + "IdString": "s2476", + "NameJp": "SAUCE GORILLA", + "NameEng": "SAUCE GORILLA", + "UnlockRequirementJp": "オンライン対戦で韓国の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in South Korea\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2476, + "IdString": "s2477", + "NameJp": "SINGER POLE", + "NameEng": "SINGER POLE", + "UnlockRequirementJp": "オンライン対戦でシンガポールの\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Singapore\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2477, + "IdString": "s2478", + "NameJp": "BREAM ONE", + "NameEng": "BREAM ONE", + "UnlockRequirementJp": "オンライン対戦で台湾の\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Taiwan\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2478, + "IdString": "s2479", + "NameJp": "BREAM ISLAND", + "NameEng": "BREAM ISLAND", + "UnlockRequirementJp": "オンライン対戦でタイの\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Thailand\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2479, + "IdString": "s2480", + "NameJp": "MAGIC TRAIN", + "NameEng": "MAGIC TRAIN", + "UnlockRequirementJp": "オンライン対戦でマレーシアの\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Malaysia\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2480, + "IdString": "s2481", + "NameJp": "INDIGO RESTAURANT", + "NameEng": "INDIGO RESTAURANT", + "UnlockRequirementJp": "オンライン対戦でインドネシアの\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Indonesia\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2481, + "IdString": "s2482", + "NameJp": "CANDY SCIENCE", + "NameEng": "CANDY SCIENCE", + "UnlockRequirementJp": "オンライン対戦でアメリカの\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in America\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2482, + "IdString": "s2483", + "NameJp": "腹ぺこ", + "NameEng": "腹ぺこ", + "UnlockRequirementJp": "オンライン対戦で3都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with players based\nin 3 different prefectures\nin Online Match", + "Type": 29 + }, + { + "Id": 2483, + "IdString": "s2484", + "NameJp": "腹五分", + "NameEng": "腹五分", + "UnlockRequirementJp": "オンライン対戦で5都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with players based\nin 5 different prefectures\nin Online Match", + "Type": 29 + }, + { + "Id": 2484, + "IdString": "s2485", + "NameJp": "腹八分", + "NameEng": "腹八分", + "UnlockRequirementJp": "オンライン対戦で10都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with players based\nin 10 different prefectures\nin Online Match", + "Type": 29 + }, + { + "Id": 2485, + "IdString": "s2486", + "NameJp": "腹一杯", + "NameEng": "腹一杯", + "UnlockRequirementJp": "オンライン対戦で15都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with players based\nin 15 different prefectures\nin Online Match", + "Type": 29 + }, + { + "Id": 2486, + "IdString": "s2487", + "NameJp": "グルメ通", + "NameEng": "グルメ通", + "UnlockRequirementJp": "オンライン対戦で20都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with players based\nin 20 different prefectures\nin Online Match", + "Type": 29 + }, + { + "Id": 2487, + "IdString": "s2488", + "NameJp": "グルメマニア", + "NameEng": "グルメマニア", + "UnlockRequirementJp": "オンライン対戦で25都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with players based\nin 25 different prefectures\nin Online Match", + "Type": 29 + }, + { + "Id": 2488, + "IdString": "s2489", + "NameJp": "グルメマスター", + "NameEng": "グルメマスター", + "UnlockRequirementJp": "オンライン対戦で30都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with players based\nin 30 different prefectures\nin Online Match", + "Type": 29 + }, + { + "Id": 2489, + "IdString": "s2490", + "NameJp": "グルメキング", + "NameEng": "グルメキング", + "UnlockRequirementJp": "オンライン対戦で35都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with players based\nin 35 different prefectures\nin Online Match", + "Type": 29 + }, + { + "Id": 2490, + "IdString": "s2491", + "NameJp": "グルメゴッド", + "NameEng": "グルメゴッド", + "UnlockRequirementJp": "オンライン対戦で40都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with players based\nin 40 different prefectures\nin Online Match", + "Type": 29 + }, + { + "Id": 2491, + "IdString": "s2492", + "NameJp": "全都道府県グルメ完食", + "NameEng": "全都道府県グルメ完食", + "UnlockRequirementJp": "オンライン対戦で47都道府県の\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with players based\nin 47 different prefectures\nin Online Match", + "Type": 29 + }, + { + "Id": 2492, + "IdString": "s2493", + "NameJp": "LINK", + "NameEng": "LINK", + "UnlockRequirementJp": "オンライン対戦で3都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEng": "Play with players based\nin 3 different prefectures 10 times\nper prefecture in Online Match", + "Type": 29 + }, + { + "Id": 2493, + "IdString": "s2494", + "NameJp": "LINK LINK", + "NameEng": "LINK LINK", + "UnlockRequirementJp": "オンライン対戦で5都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEng": "Play with players based\nin 5 different prefectures 10 times\nper prefecture in Online Match", + "Type": 29 + }, + { + "Id": 2494, + "IdString": "s2495", + "NameJp": "LINK FEVER", + "NameEng": "LINK FEVER", + "UnlockRequirementJp": "オンライン対戦で10都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEng": "Play with players based\nin 10 different prefectures 10 times\nper prefecture in Online Match", + "Type": 29 + }, + { + "Id": 2495, + "IdString": "s2496", + "NameJp": "LINK TRANCE", + "NameEng": "LINK TRANCE", + "UnlockRequirementJp": "オンライン対戦で15都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEng": "Play with players based\nin 15 different prefectures 10 times\nper prefecture in Online Match", + "Type": 29 + }, + { + "Id": 2496, + "IdString": "s2497", + "NameJp": "LINK FESTIVAL", + "NameEng": "LINK FESTIVAL", + "UnlockRequirementJp": "オンライン対戦で20都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEng": "Play with players based\nin 20 different prefectures 10 times\nper prefecture in Online Match", + "Type": 29 + }, + { + "Id": 2497, + "IdString": "s2498", + "NameJp": "LINK CARNIVAL", + "NameEng": "LINK CARNIVAL", + "UnlockRequirementJp": "オンライン対戦で25都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEng": "Play with players based\nin 25 different prefectures 10 times\nper prefecture in Online Match", + "Type": 29 + }, + { + "Id": 2498, + "IdString": "s2499", + "NameJp": "LINK MASTER", + "NameEng": "LINK MASTER", + "UnlockRequirementJp": "オンライン対戦で30都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEng": "Play with players based\nin 30 different prefectures 10 times\nper prefecture in Online Match", + "Type": 29 + }, + { + "Id": 2499, + "IdString": "s2500", + "NameJp": "LINK KING", + "NameEng": "LINK KING", + "UnlockRequirementJp": "オンライン対戦で35都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEng": "Play with players based\nin 35 different prefectures 10 times\nper prefecture in Online Match", + "Type": 29 + }, + { + "Id": 2500, + "IdString": "s2501", + "NameJp": "LINK GOD", + "NameEng": "LINK GOD", + "UnlockRequirementJp": "オンライン対戦で40都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEng": "Play with players based\nin 40 different prefectures 10 times\nper prefecture in Online Match", + "Type": 29 + }, + { + "Id": 2501, + "IdString": "s2502", + "NameJp": "LINK PERFECT", + "NameEng": "LINK PERFECT", + "UnlockRequirementJp": "オンライン対戦で47都道府県の\nプレイヤーと10回ずつマッチング", + "UnlockRequirementEng": "Play with players based\nin 47 different prefectures 10 times\nper prefecture in Online Match", + "Type": 29 + }, + { + "Id": 2502, + "IdString": "s2503", + "NameJp": "MERCURY", + "NameEng": "MERCURY", + "UnlockRequirementJp": "トロフィーを10個獲得", + "UnlockRequirementEng": "Get 10 trophies", + "Type": 30 + }, + { + "Id": 2503, + "IdString": "s2504", + "NameJp": "VENUS", + "NameEng": "VENUS", + "UnlockRequirementJp": "トロフィーを50個獲得", + "UnlockRequirementEng": "Get 50 trophies", + "Type": 30 + }, + { + "Id": 2504, + "IdString": "s2505", + "NameJp": "EARTH", + "NameEng": "EARTH", + "UnlockRequirementJp": "トロフィーを90個獲得", + "UnlockRequirementEng": "Get 90 trophies", + "Type": 30 + }, + { + "Id": 2505, + "IdString": "s2506", + "NameJp": "MARS", + "NameEng": "MARS", + "UnlockRequirementJp": "トロフィーを125個獲得", + "UnlockRequirementEng": "Get 125 trophies", + "Type": 30 + }, + { + "Id": 2506, + "IdString": "s2507", + "NameJp": "JUPITER", + "NameEng": "JUPITER", + "UnlockRequirementJp": "トロフィーを200個獲得", + "UnlockRequirementEng": "Get 200 trophies", + "Type": 30 + }, + { + "Id": 2507, + "IdString": "s2508", + "NameJp": "SATURN", + "NameEng": "SATURN", + "UnlockRequirementJp": "トロフィーを300個獲得", + "UnlockRequirementEng": "Get 300 trophies", + "Type": 30 + }, + { + "Id": 2508, + "IdString": "s2509", + "NameJp": "URANUS", + "NameEng": "URANUS", + "UnlockRequirementJp": "トロフィーを350個獲得", + "UnlockRequirementEng": "Get 350 trophies", + "Type": 30 + }, + { + "Id": 2509, + "IdString": "s2510", + "NameJp": "NEPTUNE", + "NameEng": "NEPTUNE", + "UnlockRequirementJp": "トロフィーを400個獲得", + "UnlockRequirementEng": "Get 400 trophies", + "Type": 30 + }, + { + "Id": 2510, + "IdString": "s2511", + "NameJp": "PLUTO", + "NameEng": "PLUTO", + "UnlockRequirementJp": "トロフィーを450個獲得", + "UnlockRequirementEng": "Get 450 trophies", + "Type": 30 + }, + { + "Id": 2511, + "IdString": "s2512", + "NameJp": "SUN", + "NameEng": "SUN", + "UnlockRequirementJp": "トロフィーを500個獲得", + "UnlockRequirementEng": "Get 500 trophies", + "Type": 30 + }, + { + "Id": 2512, + "IdString": "s2513", + "NameJp": "I love \"おつかれサマー!\"", + "NameEng": "I love \"おつかれサマー!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 2513, + "IdString": "s2514", + "NameJp": "おつかれマスター!", + "NameEng": "おつかれマスター!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2514, + "IdString": "s2515", + "NameJp": "おつかれキング!", + "NameEng": "おつかれキング!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2515, + "IdString": "s2516", + "NameJp": "おつかれゴッド!", + "NameEng": "おつかれゴッド!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 2516, + "IdString": "s2517", + "NameJp": "I love \"ANTI-HERO\"", + "NameEng": "I love \"ANTI-HERO\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 2517, + "IdString": "s2518", + "NameJp": "ANTI-MASTER", + "NameEng": "ANTI-MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2518, + "IdString": "s2519", + "NameJp": "ANTI-KING", + "NameEng": "ANTI-KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2519, + "IdString": "s2520", + "NameJp": "ANTI-GOD", + "NameEng": "ANTI-GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 2520, + "IdString": "s2521", + "NameJp": "I love \"ズッ友\"", + "NameEng": "I love \"ズッ友\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 2521, + "IdString": "s2522", + "NameJp": "ズッ友先生", + "NameEng": "ズッ友先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2522, + "IdString": "s2523", + "NameJp": "ズッ友大王", + "NameEng": "ズッ友大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2523, + "IdString": "s2524", + "NameJp": "ズッ友神", + "NameEng": "ズッ友神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 2524, + "IdString": "s2525", + "NameJp": "I love \"STAKEHOLDER\"", + "NameEng": "I love \"STAKEHOLDER\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 2525, + "IdString": "s2526", + "NameJp": "STAKEHOLDER MASTER", + "NameEng": "STAKEHOLDER MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2526, + "IdString": "s2527", + "NameJp": "STAKEHOLDER KING", + "NameEng": "STAKEHOLDER KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2527, + "IdString": "s2528", + "NameJp": "STAKEHOLDER GOD", + "NameEng": "STAKEHOLDER GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 2528, + "IdString": "s2529", + "NameJp": "I love \"トキノワ\"", + "NameEng": "I love \"トキノワ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 2529, + "IdString": "s2530", + "NameJp": "トキノワ マスター", + "NameEng": "トキノワ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2530, + "IdString": "s2531", + "NameJp": "トキノワ キング", + "NameEng": "トキノワ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2531, + "IdString": "s2532", + "NameJp": "トキノワ ゴッド", + "NameEng": "トキノワ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 2532, + "IdString": "s2533", + "NameJp": "I love \"ちょちょちょ!ゆるゆり☆かぷりっちょ!!!\"", + "NameEng": "I love \"ちょちょちょ!ゆるゆり☆かぷりっちょ!!!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 2533, + "IdString": "s2534", + "NameJp": "わぁい先生大好き", + "NameEng": "わぁい先生大好き", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2534, + "IdString": "s2535", + "NameJp": "わぁい王様大好き", + "NameEng": "わぁい王様大好き", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2535, + "IdString": "s2536", + "NameJp": "わぁい神様大好き", + "NameEng": "わぁい神様大好き", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 2536, + "IdString": "s2537", + "NameJp": "I love \"細い線\"", + "NameEng": "I love \"細い線\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2537, + "IdString": "s2538", + "NameJp": "細い先生", + "NameEng": "細い先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2538, + "IdString": "s2539", + "NameJp": "細い大王", + "NameEng": "細い大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2539, + "IdString": "s2540", + "NameJp": "細い神", + "NameEng": "細い神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2540, + "IdString": "s2541", + "NameJp": "I love \"月に叢雲華に風\"", + "NameEng": "I love \"月に叢雲華に風\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2541, + "IdString": "s2542", + "NameJp": "叢雲先生", + "NameEng": "叢雲先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2542, + "IdString": "s2543", + "NameJp": "叢雲大王", + "NameEng": "叢雲大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2543, + "IdString": "s2544", + "NameJp": "叢雲神", + "NameEng": "叢雲神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2544, + "IdString": "s2545", + "NameJp": "I love \"明星ロケット\"", + "NameEng": "I love \"明星ロケット\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2545, + "IdString": "s2546", + "NameJp": "明星先生", + "NameEng": "明星先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2546, + "IdString": "s2547", + "NameJp": "明星大王", + "NameEng": "明星大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2547, + "IdString": "s2548", + "NameJp": "明星神", + "NameEng": "明星神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2548, + "IdString": "s2549", + "NameJp": "I love \"色は匂えど 散りぬるを\"", + "NameEng": "I love \"色は匂えど 散りぬるを\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2549, + "IdString": "s2550", + "NameJp": "神々が恋した先生", + "NameEng": "神々が恋した先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2550, + "IdString": "s2551", + "NameJp": "神々が恋した大王", + "NameEng": "神々が恋した大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2551, + "IdString": "s2552", + "NameJp": "神々が恋した神", + "NameEng": "神々が恋した神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2552, + "IdString": "s2553", + "NameJp": "I love \"Redial\"", + "NameEng": "I love \"Redial\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2553, + "IdString": "s2554", + "NameJp": "Redial Master", + "NameEng": "Redial Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2554, + "IdString": "s2555", + "NameJp": "Redial King", + "NameEng": "Redial King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2555, + "IdString": "s2556", + "NameJp": "Redial God", + "NameEng": "Redial God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2556, + "IdString": "s2557", + "NameJp": "I love \"だんだん早くなる\"", + "NameEng": "I love \"だんだん早くなる\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2557, + "IdString": "s2558", + "NameJp": "だんだん早くなる先生", + "NameEng": "だんだん早くなる先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2558, + "IdString": "s2559", + "NameJp": "だんだん早くなる大王", + "NameEng": "だんだん早くなる大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2559, + "IdString": "s2560", + "NameJp": "だんだん早くなる神", + "NameEng": "だんだん早くなる神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2560, + "IdString": "s2561", + "NameJp": "I love \"ウミユリ海底譚\"", + "NameEng": "I love \"ウミユリ海底譚\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2561, + "IdString": "s2562", + "NameJp": "ウミユリ先生", + "NameEng": "ウミユリ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2562, + "IdString": "s2563", + "NameJp": "ウミユリ大王", + "NameEng": "ウミユリ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2563, + "IdString": "s2564", + "NameJp": "ウミユリ神", + "NameEng": "ウミユリ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2564, + "IdString": "s2565", + "NameJp": "I love \"StargazeR\"", + "NameEng": "I love \"StargazeR\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2565, + "IdString": "s2566", + "NameJp": "StargazeR MasteR", + "NameEng": "StargazeR MasteR", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2566, + "IdString": "s2567", + "NameJp": "StargazeR KinG", + "NameEng": "StargazeR KinG", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2567, + "IdString": "s2568", + "NameJp": "StargazeR GoD", + "NameEng": "StargazeR GoD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2568, + "IdString": "s2569", + "NameJp": "I love \"conflict\"", + "NameEng": "I love \"conflict\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 2569, + "IdString": "s2570", + "NameJp": "conflict master", + "NameEng": "conflict master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 2570, + "IdString": "s2571", + "NameJp": "conflict king", + "NameEng": "conflict king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 2571, + "IdString": "s2572", + "NameJp": "conflict god", + "NameEng": "conflict god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 2572, + "IdString": "s2573", + "NameJp": "I love \"LINK LINK FEVER!!!\"", + "NameEng": "I love \"LINK LINK FEVER!!!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2573, + "IdString": "s2574", + "NameJp": "LINK LINK MASTER", + "NameEng": "LINK LINK MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2574, + "IdString": "s2575", + "NameJp": "LINK LINK KING", + "NameEng": "LINK LINK KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2575, + "IdString": "s2576", + "NameJp": "LINK LINK GOD", + "NameEng": "LINK LINK GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2576, + "IdString": "s2577", + "NameJp": "I love \"Shiva\"", + "NameEng": "I love \"Shiva\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2577, + "IdString": "s2578", + "NameJp": "破壊先生", + "NameEng": "破壊先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2578, + "IdString": "s2579", + "NameJp": "破壊王", + "NameEng": "破壊王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2579, + "IdString": "s2580", + "NameJp": "破壊神", + "NameEng": "破壊神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2580, + "IdString": "s2581", + "NameJp": "I love \"Flyaway\"", + "NameEng": "I love \"Flyaway\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2581, + "IdString": "s2582", + "NameJp": "Fly Master", + "NameEng": "Fly Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2582, + "IdString": "s2583", + "NameJp": "Fly King", + "NameEng": "Fly King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2583, + "IdString": "s2584", + "NameJp": "Fly God", + "NameEng": "Fly God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2584, + "IdString": "s2585", + "NameJp": "I love \"座和々\"", + "NameEng": "I love \"座和々\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2585, + "IdString": "s2586", + "NameJp": "ざわざわ先生", + "NameEng": "ざわざわ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2586, + "IdString": "s2587", + "NameJp": "ざわざわ大王", + "NameEng": "ざわざわ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2587, + "IdString": "s2588", + "NameJp": "ざわざわ神", + "NameEng": "ざわざわ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2588, + "IdString": "s2589", + "NameJp": "I love \"Negative Return\"", + "NameEng": "I love \"Negative Return\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2589, + "IdString": "s2590", + "NameJp": "Negative Master", + "NameEng": "Negative Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2590, + "IdString": "s2591", + "NameJp": "Negative King", + "NameEng": "Negative King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2591, + "IdString": "s2592", + "NameJp": "Negative God", + "NameEng": "Negative God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2592, + "IdString": "s2593", + "NameJp": "I love \"Under The Moon\"", + "NameEng": "I love \"Under The Moon\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2593, + "IdString": "s2594", + "NameJp": "Master of Moon", + "NameEng": "Master of Moon", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2594, + "IdString": "s2595", + "NameJp": "King of Moon", + "NameEng": "King of Moon", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2595, + "IdString": "s2596", + "NameJp": "God of Moon", + "NameEng": "God of Moon", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2596, + "IdString": "s2597", + "NameJp": "I love \"Fun-House\"", + "NameEng": "I love \"Fun-House\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2597, + "IdString": "s2598", + "NameJp": "Master-House", + "NameEng": "Master-House", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2598, + "IdString": "s2599", + "NameJp": "King-House", + "NameEng": "King-House", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2599, + "IdString": "s2600", + "NameJp": "God-House", + "NameEng": "God-House", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2600, + "IdString": "s2601", + "NameJp": "I love \"Freedom\"", + "NameEng": "I love \"Freedom\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2601, + "IdString": "s2602", + "NameJp": "Freedom Master", + "NameEng": "Freedom Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2602, + "IdString": "s2603", + "NameJp": "Freedom King", + "NameEng": "Freedom King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2603, + "IdString": "s2604", + "NameJp": "Freedom God", + "NameEng": "Freedom God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2604, + "IdString": "s2605", + "NameJp": "I love \"アルカノイドvsインベーダー\"", + "NameEng": "I love \"アルカノイドvsインベーダー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2605, + "IdString": "s2606", + "NameJp": "アルカノイドvsインベーダーマスター", + "NameEng": "アルカノイドvsインベーダーマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2606, + "IdString": "s2607", + "NameJp": "アルカノイドvsインベーダーキング", + "NameEng": "アルカノイドvsインベーダーキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2607, + "IdString": "s2608", + "NameJp": "アルカノイドvsインベーダーゴッド", + "NameEng": "アルカノイドvsインベーダーゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2608, + "IdString": "s2609", + "NameJp": "I love \"Neptune Diving\"", + "NameEng": "I love \"Neptune Diving\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2609, + "IdString": "s2610", + "NameJp": "海先生", + "NameEng": "海先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2610, + "IdString": "s2611", + "NameJp": "海大王", + "NameEng": "海大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2611, + "IdString": "s2612", + "NameJp": "海神", + "NameEng": "海神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2612, + "IdString": "s2613", + "NameJp": "I love \"Departure\"", + "NameEng": "I love \"Departure\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2613, + "IdString": "s2614", + "NameJp": "Departure Master", + "NameEng": "Departure Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2614, + "IdString": "s2615", + "NameJp": "Departure King", + "NameEng": "Departure King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2615, + "IdString": "s2616", + "NameJp": "Departure God", + "NameEng": "Departure God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2616, + "IdString": "s2617", + "NameJp": "I love \"Walking Through The Towers\"", + "NameEng": "I love \"Walking Through The Towers\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2617, + "IdString": "s2618", + "NameJp": "Tower Master", + "NameEng": "Tower Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2618, + "IdString": "s2619", + "NameJp": "Tower King", + "NameEng": "Tower King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2619, + "IdString": "s2620", + "NameJp": "Tower God", + "NameEng": "Tower God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2620, + "IdString": "s2621", + "NameJp": "I love \"The Orb Festival\"", + "NameEng": "I love \"The Orb Festival\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2621, + "IdString": "s2622", + "NameJp": "Orb Master", + "NameEng": "Orb Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2622, + "IdString": "s2623", + "NameJp": "Orb King", + "NameEng": "Orb King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2623, + "IdString": "s2624", + "NameJp": "Orb God", + "NameEng": "Orb God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2624, + "IdString": "s2625", + "NameJp": "I love \"Dragon's Den\"", + "NameEng": "I love \"Dragon's Den\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2625, + "IdString": "s2626", + "NameJp": "Dragon Master", + "NameEng": "Dragon Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2626, + "IdString": "s2627", + "NameJp": "Dragon King", + "NameEng": "Dragon King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2627, + "IdString": "s2628", + "NameJp": "Dragon God", + "NameEng": "Dragon God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2628, + "IdString": "s2629", + "NameJp": "でんぱ神", + "NameEng": "でんぱ神", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 2629, + "IdString": "s2630", + "NameJp": "マイナスからのスタート 舐めんな!", + "NameEng": "マイナスからのスタート 舐めんな!", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 2630, + "IdString": "s2631", + "NameJp": "萌えキュンソングを世界にお届け!", + "NameEng": "萌えキュンソングを世界にお届け!", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 2631, + "IdString": "s2632", + "NameJp": "歌って踊れるゲーマーアイドル", + "NameEng": "歌って踊れるゲーマーアイドル", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 2632, + "IdString": "s2633", + "NameJp": "2.5次元伝説!", + "NameEng": "2.5次元伝説!", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 2633, + "IdString": "s2634", + "NameJp": "永遠の魔法少女未満", + "NameEng": "永遠の魔法少女未満", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 2634, + "IdString": "s2635", + "NameJp": "ハイテンションA-POPガール", + "NameEng": "ハイテンションA-POPガール", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 2635, + "IdString": "s2636", + "NameJp": "金色の異端児", + "NameEng": "金色の異端児", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント超達成賞", + "UnlockRequirementEng": "Event Ultra Achievement Award", + "Type": 12 + }, + { + "Id": 2636, + "IdString": "s2637", + "NameJp": "踊ってみたら七変化!", + "NameEng": "踊ってみたら七変化!", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 2637, + "IdString": "s2638", + "NameJp": "I love でんぱ組.inc", + "NameEng": "I love でんぱ組.inc", + "UnlockRequirementJp": "『でんぱ組.inc』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 2638, + "IdString": "s2639", + "NameJp": "第二回天下一音ゲ祭 ファイナリスト", + "NameEng": "第二回天下一音ゲ祭 ファイナリスト", + "UnlockRequirementJp": "第二回天下一音ゲ祭全国頂上決戦進出", + "UnlockRequirementEng": "第二回天下一音ゲ祭全国頂上決戦進出", + "Type": 12 + }, + { + "Id": 2639, + "IdString": "s2640", + "NameJp": "第二回天下一音ゲ祭 チャンピオン", + "NameEng": "第二回天下一音ゲ祭 チャンピオン", + "UnlockRequirementJp": "第二回天下一音ゲ祭優勝", + "UnlockRequirementEng": "第二回天下一音ゲ祭優勝", + "Type": 12 + }, + { + "Id": 2640, + "IdString": "s2641", + "NameJp": "I love \"W.W.D\"", + "NameEng": "I love \"W.W.D\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 2641, + "IdString": "s2642", + "NameJp": "W.W.M", + "NameEng": "W.W.M", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2642, + "IdString": "s2643", + "NameJp": "W.W.K", + "NameEng": "W.W.K", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2643, + "IdString": "s2644", + "NameJp": "W.W.G", + "NameEng": "W.W.G", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 2644, + "IdString": "s2645", + "NameJp": "I love \"Disco Descent/Mausoleum Mash\"", + "NameEng": "I love \"Disco Descent/Mausoleum Mash\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2645, + "IdString": "s2646", + "NameJp": "NecroMaster", + "NameEng": "NecroMaster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2646, + "IdString": "s2647", + "NameJp": "NecroKing", + "NameEng": "NecroKing", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2647, + "IdString": "s2648", + "NameJp": "NecroGod", + "NameEng": "NecroGod", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2648, + "IdString": "s2649", + "NameJp": "I love \"Fungal Funk/Portabellohead\"", + "NameEng": "I love \"Fungal Funk/Portabellohead\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2649, + "IdString": "s2650", + "NameJp": "MushroomMaster", + "NameEng": "MushroomMaster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2650, + "IdString": "s2651", + "NameJp": "MushroomKing", + "NameEng": "MushroomKing", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2651, + "IdString": "s2652", + "NameJp": "MushroomGod", + "NameEng": "MushroomGod", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2652, + "IdString": "s2653", + "NameJp": "I love \"だんがんろんぱ!\"", + "NameEng": "I love \"だんがんろんぱ!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2653, + "IdString": "s2654", + "NameJp": "だんがんせんせい", + "NameEng": "だんがんせんせい", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2654, + "IdString": "s2655", + "NameJp": "だんがんだいおう", + "NameEng": "だんがんだいおう", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2655, + "IdString": "s2656", + "NameJp": "だんがんしん", + "NameEng": "だんがんしん", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2656, + "IdString": "s2657", + "NameJp": "I love \"議論 -HEAT UP-\"", + "NameEng": "I love \"議論 -HEAT UP-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2657, + "IdString": "s2658", + "NameJp": "議論先生", + "NameEng": "議論先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2658, + "IdString": "s2659", + "NameJp": "議論大王", + "NameEng": "議論大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2659, + "IdString": "s2660", + "NameJp": "議論神", + "NameEng": "議論神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2660, + "IdString": "s2661", + "NameJp": "I love \"17K\"", + "NameEng": "I love \"17K\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2661, + "IdString": "s2662", + "NameJp": "17K MASTER", + "NameEng": "17K MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2662, + "IdString": "s2663", + "NameJp": "17K KING", + "NameEng": "17K KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2663, + "IdString": "s2664", + "NameJp": "17K GOD", + "NameEng": "17K GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2664, + "IdString": "s2665", + "NameJp": "I love \"Smash a mirror\"", + "NameEng": "I love \"Smash a mirror\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2665, + "IdString": "s2666", + "NameJp": "粉々先生", + "NameEng": "粉々先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2666, + "IdString": "s2667", + "NameJp": "粉々大王", + "NameEng": "粉々大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2667, + "IdString": "s2668", + "NameJp": "粉々神", + "NameEng": "粉々神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2668, + "IdString": "s2669", + "NameJp": "I love \"tiny tales continue\"", + "NameEng": "I love \"tiny tales continue\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2669, + "IdString": "s2670", + "NameJp": "tiny tales master", + "NameEng": "tiny tales master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2670, + "IdString": "s2671", + "NameJp": "tiny tales king", + "NameEng": "tiny tales king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2671, + "IdString": "s2672", + "NameJp": "tiny tales god", + "NameEng": "tiny tales god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2672, + "IdString": "s2673", + "NameJp": "I love \"カリソメ\"", + "NameEng": "I love \"カリソメ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2673, + "IdString": "s2674", + "NameJp": "カリソメマスター", + "NameEng": "カリソメマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2674, + "IdString": "s2675", + "NameJp": "カリソメキング", + "NameEng": "カリソメキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2675, + "IdString": "s2676", + "NameJp": "カリソメゴッド", + "NameEng": "カリソメゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2676, + "IdString": "s2677", + "NameJp": "I love \"beyond the star line\"", + "NameEng": "I love \"beyond the star line\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2677, + "IdString": "s2678", + "NameJp": "リザレクションマスター", + "NameEng": "リザレクションマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2678, + "IdString": "s2679", + "NameJp": "リザレクションキング", + "NameEng": "リザレクションキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2679, + "IdString": "s2680", + "NameJp": "リザレクションゴッド", + "NameEng": "リザレクションゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2680, + "IdString": "s2681", + "NameJp": "I love \"未確認幻想コースター\"", + "NameEng": "I love \"未確認幻想コースター\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2681, + "IdString": "s2682", + "NameJp": "未確認幻想飛行先生", + "NameEng": "未確認幻想飛行先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2682, + "IdString": "s2683", + "NameJp": "未確認幻想飛行大王", + "NameEng": "未確認幻想飛行大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2683, + "IdString": "s2684", + "NameJp": "未確認幻想飛行神", + "NameEng": "未確認幻想飛行神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2684, + "IdString": "s2685", + "NameJp": "I love \"カミノヒ\"", + "NameEng": "I love \"カミノヒ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2685, + "IdString": "s2686", + "NameJp": "核融合先生", + "NameEng": "核融合先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2686, + "IdString": "s2687", + "NameJp": "核融合大王", + "NameEng": "核融合大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2687, + "IdString": "s2688", + "NameJp": "核融合神", + "NameEng": "核融合神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2688, + "IdString": "s2689", + "NameJp": "I love \"飴と鎖\"", + "NameEng": "I love \"飴と鎖\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2689, + "IdString": "s2690", + "NameJp": "飴と鎖先生", + "NameEng": "飴と鎖先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2690, + "IdString": "s2691", + "NameJp": "飴と鎖大王", + "NameEng": "飴と鎖大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2691, + "IdString": "s2692", + "NameJp": "飴と鎖神", + "NameEng": "飴と鎖神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2692, + "IdString": "s2693", + "NameJp": "I love \"FEEL MY BEAT!\"", + "NameEng": "I love \"FEEL MY BEAT!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2693, + "IdString": "s2694", + "NameJp": "太鼓の先生", + "NameEng": "太鼓の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2694, + "IdString": "s2695", + "NameJp": "太鼓の大王", + "NameEng": "太鼓の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2695, + "IdString": "s2696", + "NameJp": "太鼓の神", + "NameEng": "太鼓の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2696, + "IdString": "s2697", + "NameJp": "I love \"そして誰もいなくなった\"", + "NameEng": "I love \"そして誰もいなくなった\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2697, + "IdString": "s2698", + "NameJp": "妹先生", + "NameEng": "妹先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2698, + "IdString": "s2699", + "NameJp": "妹大王", + "NameEng": "妹大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2699, + "IdString": "s2700", + "NameJp": "妹様", + "NameEng": "妹様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2700, + "IdString": "s2701", + "NameJp": "The NecroDancer", + "NameEng": "The NecroDancer", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 2701, + "IdString": "s2702", + "NameJp": "Death Metal", + "NameEng": "Death Metal", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 2702, + "IdString": "s2703", + "NameJp": "Deep Blues", + "NameEng": "Deep Blues", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 2703, + "IdString": "s2704", + "NameJp": "King Conga", + "NameEng": "King Conga", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 2704, + "IdString": "s2705", + "NameJp": "歌うショップキーパー", + "NameEng": "歌うショップキーパー", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 2705, + "IdString": "s2706", + "NameJp": "超高校級の「ギャル」", + "NameEng": "超高校級の「ギャル」", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 2706, + "IdString": "s2707", + "NameJp": "踊る骸骨", + "NameEng": "踊る骸骨", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 2707, + "IdString": "s2708", + "NameJp": "希望ヶ峰学園の学園長", + "NameEng": "希望ヶ峰学園の学園長", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント超達成賞", + "UnlockRequirementEng": "Event Ultra Achievement Award", + "Type": 12 + }, + { + "Id": 2708, + "IdString": "s2709", + "NameJp": "リズムにノった冒険者", + "NameEng": "リズムにノった冒険者", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 2709, + "IdString": "s2710", + "NameJp": "超高校級の「幸運」", + "NameEng": "超高校級の「幸運」", + "UnlockRequirementJp": "『クリプト・オブ・ネクロダンサー』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 2710, + "IdString": "s2711", + "NameJp": "「プリスティンビート」", + "NameEng": "「プリスティンビート」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 2711, + "IdString": "s2712", + "NameJp": "正体不明「恐怖の虹色UFO襲来」", + "NameEng": "正体不明「恐怖の虹色UFO襲来」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 2712, + "IdString": "s2713", + "NameJp": "「サブタレイニアンローズ」", + "NameEng": "「サブタレイニアンローズ」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 2713, + "IdString": "s2714", + "NameJp": "「リザレクション」", + "NameEng": "「リザレクション」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 2714, + "IdString": "s2715", + "NameJp": "魔砲「ファイナルマスタースパーク」", + "NameEng": "魔砲「ファイナルマスタースパーク」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 2715, + "IdString": "s2716", + "NameJp": "「サブタレイニアンサン」", + "NameEng": "「サブタレイニアンサン」", + "UnlockRequirementJp": "『東方響宴夢』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 2716, + "IdString": "s2717", + "NameJp": "メイド秘技「殺人ドール」", + "NameEng": "メイド秘技「殺人ドール」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 2717, + "IdString": "s2718", + "NameJp": "大奇跡「八坂の神風」", + "NameEng": "大奇跡「八坂の神風」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント超達成賞", + "UnlockRequirementEng": "Event Ultra Achievement Award", + "Type": 12 + }, + { + "Id": 2718, + "IdString": "s2719", + "NameJp": "秘弾「そして誰もいなくなるか?」", + "NameEng": "秘弾「そして誰もいなくなるか?」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 2719, + "IdString": "s2720", + "NameJp": "神霊「夢想封印 瞬」", + "NameEng": "神霊「夢想封印 瞬」", + "UnlockRequirementJp": "『東方響宴夢』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 2720, + "IdString": "s2721", + "NameJp": "TAITO STAFF", + "NameEng": "TAITO STAFF", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 2721, + "IdString": "s2722", + "NameJp": "TAITO GUEST", + "NameEng": "TAITO GUEST", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 2722, + "IdString": "s2723", + "NameJp": "生放送出演中!", + "NameEng": "生放送出演中!", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 2723, + "IdString": "s2724", + "NameJp": "ご本人", + "NameEng": "ご本人", + "UnlockRequirementJp": "", + "UnlockRequirementEng": "", + "Type": 12 + }, + { + "Id": 2724, + "IdString": "s2725", + "NameJp": "I love \"SideStrania \"BOSS2\"\"", + "NameEng": "I love \"SideStrania \"BOSS2\"\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2725, + "IdString": "s2726", + "NameJp": "Strania Master", + "NameEng": "Strania Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2726, + "IdString": "s2727", + "NameJp": "Strania King", + "NameEng": "Strania King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2727, + "IdString": "s2728", + "NameJp": "Strania God", + "NameEng": "Strania God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2728, + "IdString": "s2729", + "NameJp": "I love \"]-[|/34<#!\"", + "NameEng": "I love \"]-[|/34<#!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2729, + "IdString": "s2730", + "NameJp": "]-[|/34<#! |v|45+3/2", + "NameEng": "]-[|/34<#! |v|45+3/2", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2730, + "IdString": "s2731", + "NameJp": "]-[|/34<#! |<1/V6", + "NameEng": "]-[|/34<#! |<1/V6", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2731, + "IdString": "s2732", + "NameJp": "]-[|/34<#! 60|)", + "NameEng": "]-[|/34<#! 60|)", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2732, + "IdString": "s2733", + "NameJp": "I love \"Unknown Pollution\"", + "NameEng": "I love \"Unknown Pollution\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2733, + "IdString": "s2734", + "NameJp": "Unknown Master", + "NameEng": "Unknown Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2734, + "IdString": "s2735", + "NameJp": "Unknown King", + "NameEng": "Unknown King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2735, + "IdString": "s2736", + "NameJp": "Unknown God", + "NameEng": "Unknown God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2736, + "IdString": "s2737", + "NameJp": "I love \"ドラゴンスピリットメドレー\"", + "NameEng": "I love \"ドラゴンスピリットメドレー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2737, + "IdString": "s2738", + "NameJp": "ドラゴンスピリット マスター", + "NameEng": "ドラゴンスピリット マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2738, + "IdString": "s2739", + "NameJp": "ドラゴンスピリット キング", + "NameEng": "ドラゴンスピリット キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2739, + "IdString": "s2740", + "NameJp": "ドラゴンスピリット ゴッド", + "NameEng": "ドラゴンスピリット ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2740, + "IdString": "s2741", + "NameJp": "I love \"炉心融解\"", + "NameEng": "I love \"炉心融解\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2741, + "IdString": "s2742", + "NameJp": "炉心融解先生", + "NameEng": "炉心融解先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2742, + "IdString": "s2743", + "NameJp": "炉心融解大王", + "NameEng": "炉心融解大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2743, + "IdString": "s2744", + "NameJp": "炉心融解神", + "NameEng": "炉心融解神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2744, + "IdString": "s2745", + "NameJp": "I love \"ピコラセテ\"", + "NameEng": "I love \"ピコラセテ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 2745, + "IdString": "s2746", + "NameJp": "ピコラセマスター", + "NameEng": "ピコラセマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 2746, + "IdString": "s2747", + "NameJp": "ピコラセキング", + "NameEng": "ピコラセキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 2747, + "IdString": "s2748", + "NameJp": "ピコラセゴッド", + "NameEng": "ピコラセゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 2748, + "IdString": "s2749", + "NameJp": "I love \"Tragedy Flame\"", + "NameEng": "I love \"Tragedy Flame\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 2749, + "IdString": "s2750", + "NameJp": "Tragedy Master", + "NameEng": "Tragedy Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2750, + "IdString": "s2751", + "NameJp": "Tragedy King", + "NameEng": "Tragedy King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 2751, + "IdString": "s2752", + "NameJp": "Tragedy God", + "NameEng": "Tragedy God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 2752, + "IdString": "s2753", + "NameJp": "I love \"セツナトリップ\"", + "NameEng": "I love \"セツナトリップ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2753, + "IdString": "s2754", + "NameJp": "あ゛ー!もーっ!マスターッ!!", + "NameEng": "あ゛ー!もーっ!マスターッ!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2754, + "IdString": "s2755", + "NameJp": "あ゛ー!もーっ!キングッ!!", + "NameEng": "あ゛ー!もーっ!キングッ!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2755, + "IdString": "s2756", + "NameJp": "あ゛ー!もーっ!ゴッドッ!!", + "NameEng": "あ゛ー!もーっ!ゴッドッ!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2756, + "IdString": "s2757", + "NameJp": "I love \"シルバーバレット\"", + "NameEng": "I love \"シルバーバレット\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2757, + "IdString": "s2758", + "NameJp": "バレットマスター", + "NameEng": "バレットマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2758, + "IdString": "s2759", + "NameJp": "バレットキング", + "NameEng": "バレットキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2759, + "IdString": "s2760", + "NameJp": "バレットゴッド", + "NameEng": "バレットゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2760, + "IdString": "s2761", + "NameJp": "I love \"会いたい\"", + "NameEng": "I love \"会いたい\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2761, + "IdString": "s2762", + "NameJp": "会いたい先生", + "NameEng": "会いたい先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2762, + "IdString": "s2763", + "NameJp": "会いたい大王", + "NameEng": "会いたい大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2763, + "IdString": "s2764", + "NameJp": "会いたい神", + "NameEng": "会いたい神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2764, + "IdString": "s2765", + "NameJp": "I love \"ECHO\"", + "NameEng": "I love \"ECHO\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2765, + "IdString": "s2766", + "NameJp": ":-) master", + "NameEng": ":-) master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2766, + "IdString": "s2767", + "NameJp": ":-) king", + "NameEng": ":-) king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2767, + "IdString": "s2768", + "NameJp": ":-) god", + "NameEng": ":-) god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2768, + "IdString": "s2769", + "NameJp": "I love \"シリョクケンサ\"", + "NameEng": "I love \"シリョクケンサ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2769, + "IdString": "s2770", + "NameJp": "C先生", + "NameEng": "C先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2770, + "IdString": "s2771", + "NameJp": "C大王", + "NameEng": "C大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2771, + "IdString": "s2772", + "NameJp": "C神", + "NameEng": "C神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2772, + "IdString": "s2773", + "NameJp": "I love \"Holography\"", + "NameEng": "I love \"Holography\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2773, + "IdString": "s2774", + "NameJp": "Holography Master", + "NameEng": "Holography Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2774, + "IdString": "s2775", + "NameJp": "Holography King", + "NameEng": "Holography King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2775, + "IdString": "s2776", + "NameJp": "Holography God", + "NameEng": "Holography God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2776, + "IdString": "s2777", + "NameJp": "超シューティング神", + "NameEng": "超シューティング神", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 2777, + "IdString": "s2778", + "NameJp": "最終鬼畜兵器", + "NameEng": "最終鬼畜兵器", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 2778, + "IdString": "s2779", + "NameJp": "ザウエル", + "NameEng": "ザウエル", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 2779, + "IdString": "s2780", + "NameJp": "弩級戦闘機兵", + "NameEng": "弩級戦闘機兵", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 2780, + "IdString": "s2781", + "NameJp": "赤いクリスタル", + "NameEng": "赤いクリスタル", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 2781, + "IdString": "s2782", + "NameJp": "死ぬがよい。", + "NameEng": "死ぬがよい。", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 2782, + "IdString": "s2783", + "NameJp": "ブルードラゴン", + "NameEng": "ブルードラゴン", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 2783, + "IdString": "s2784", + "NameJp": "星霜鋼機", + "NameEng": "星霜鋼機", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント超達成賞", + "UnlockRequirementEng": "Event Ultra Achievement Award", + "Type": 12 + }, + { + "Id": 2784, + "IdString": "s2785", + "NameJp": "雷の紫鳳", + "NameEng": "雷の紫鳳", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 2785, + "IdString": "s2786", + "NameJp": "I love STG", + "NameEng": "I love STG", + "UnlockRequirementJp": "『超シューティングゲーム祭』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 2786, + "IdString": "s2787", + "NameJp": "一番星☆☆☆", + "NameEng": "一番星☆☆☆", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント金賞", + "UnlockRequirementEng": "Event Gold Award", + "Type": 12 + }, + { + "Id": 2787, + "IdString": "s2788", + "NameJp": "天使の囁き", + "NameEng": "天使の囁き", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント銀賞", + "UnlockRequirementEng": "Event Silver Award", + "Type": 12 + }, + { + "Id": 2788, + "IdString": "s2789", + "NameJp": "恋する乙女", + "NameEng": "恋する乙女", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント銅賞", + "UnlockRequirementEng": "Event Bronze Award", + "Type": 12 + }, + { + "Id": 2789, + "IdString": "s2790", + "NameJp": "元気いっぱい!", + "NameEng": "元気いっぱい!", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント優秀賞", + "UnlockRequirementEng": "Event Excellence Performance Award", + "Type": 12 + }, + { + "Id": 2790, + "IdString": "s2791", + "NameJp": "ヘソ出し!", + "NameEng": "ヘソ出し!", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント優良賞", + "UnlockRequirementEng": "Event Good Performance Award", + "Type": 12 + }, + { + "Id": 2791, + "IdString": "s2792", + "NameJp": "S級にんじん", + "NameEng": "S級にんじん", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベントグルーヴ賞", + "UnlockRequirementEng": "Event Groove Award", + "Type": 12 + }, + { + "Id": 2792, + "IdString": "s2793", + "NameJp": "ちょっぴりセクシー", + "NameEng": "ちょっぴりセクシー", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント努力賞", + "UnlockRequirementEng": "Event Good Effort Award", + "Type": 12 + }, + { + "Id": 2793, + "IdString": "s2794", + "NameJp": "ふんわり甘い声", + "NameEng": "ふんわり甘い声", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント超達成賞", + "UnlockRequirementEng": "Event Ultra Achievement Award", + "Type": 12 + }, + { + "Id": 2794, + "IdString": "s2795", + "NameJp": "赤ゴーグル☆", + "NameEng": "赤ゴーグル☆", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント達成賞", + "UnlockRequirementEng": "Event Achievement Award", + "Type": 12 + }, + { + "Id": 2795, + "IdString": "s2796", + "NameJp": "I love GUMI", + "NameEng": "I love GUMI", + "UnlockRequirementJp": "『GUMI生誕祭』\nイベント参加賞", + "UnlockRequirementEng": "Event Attendance Award", + "Type": 12 + }, + { + "Id": 2796, + "IdString": "s2797", + "NameJp": "マカオ勢", + "NameEng": "マカオ勢", + "UnlockRequirementJp": "マカオでプレイ", + "UnlockRequirementEng": "Played in Macau", + "Type": 13 + }, + { + "Id": 2797, + "IdString": "s2798", + "NameJp": "牛乳プリン", + "NameEng": "牛乳プリン", + "UnlockRequirementJp": "オンライン対戦でマカオの\nプレイヤーとマッチング", + "UnlockRequirementEng": "Play with a player based in Macau\nin Online Match", + "Type": 29 + }, + { + "Id": 2798, + "IdString": "s2799", + "NameJp": "SERIOUS LOOK", + "NameEng": "SERIOUS LOOK", + "UnlockRequirementJp": "オンライン対戦でマカオの\nプレイヤーと10回マッチング", + "UnlockRequirementEng": "Play with players based in Macau\n10 times in Online Match", + "Type": 29 + }, + { + "Id": 2799, + "IdString": "s2800", + "NameJp": "第一ノ封印ヲ解放セシ者", + "NameEng": "第一ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2800, + "IdString": "s2801", + "NameJp": "第二ノ封印ヲ解放セシ者", + "NameEng": "第二ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2801, + "IdString": "s2802", + "NameJp": "第三ノ封印ヲ解放セシ者", + "NameEng": "第三ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2802, + "IdString": "s2803", + "NameJp": "I love \"初音ミクの消失\"", + "NameEng": "I love \"初音ミクの消失\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2803, + "IdString": "s2804", + "NameJp": "最高速の先生", + "NameEng": "最高速の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2804, + "IdString": "s2805", + "NameJp": "最高速の大王", + "NameEng": "最高速の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2805, + "IdString": "s2806", + "NameJp": "最高速の神", + "NameEng": "最高速の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2806, + "IdString": "s2807", + "NameJp": "I love \"全力バタンキュー\"", + "NameEng": "I love \"全力バタンキュー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 2807, + "IdString": "s2808", + "NameJp": "センセイ松", + "NameEng": "センセイ松", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2808, + "IdString": "s2809", + "NameJp": "ダイオウ松", + "NameEng": "ダイオウ松", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2809, + "IdString": "s2810", + "NameJp": "カミ松", + "NameEng": "カミ松", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 2810, + "IdString": "s2811", + "NameJp": "I love \"THIS IS HDM\"", + "NameEng": "I love \"THIS IS HDM\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 2811, + "IdString": "s2812", + "NameJp": "HDM MASTER", + "NameEng": "HDM MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 2812, + "IdString": "s2813", + "NameJp": "HDM KING", + "NameEng": "HDM KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 2813, + "IdString": "s2814", + "NameJp": "HDM GOD", + "NameEng": "HDM GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 2814, + "IdString": "s2815", + "NameJp": "I love \"Endless Seeker\"", + "NameEng": "I love \"Endless Seeker\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2815, + "IdString": "s2816", + "NameJp": "マスター・ムラサ", + "NameEng": "マスター・ムラサ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2816, + "IdString": "s2817", + "NameJp": "キング・ムラサ", + "NameEng": "キング・ムラサ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2817, + "IdString": "s2818", + "NameJp": "キャプテン・ムラサ", + "NameEng": "キャプテン・ムラサ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2818, + "IdString": "s2819", + "NameJp": "I love \"マウストゥーマウス\"", + "NameEng": "I love \"マウストゥーマウス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2819, + "IdString": "s2820", + "NameJp": "小さな小さな先生", + "NameEng": "小さな小さな先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2820, + "IdString": "s2821", + "NameJp": "小さな小さな大王", + "NameEng": "小さな小さな大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2821, + "IdString": "s2822", + "NameJp": "小さな小さな神", + "NameEng": "小さな小さな神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2822, + "IdString": "s2823", + "NameJp": "I love \"UFOロマンス\"", + "NameEng": "I love \"UFOロマンス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2823, + "IdString": "s2824", + "NameJp": "UFO先生", + "NameEng": "UFO先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2824, + "IdString": "s2825", + "NameJp": "UFO大王", + "NameEng": "UFO大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2825, + "IdString": "s2826", + "NameJp": "UFO神", + "NameEng": "UFO神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2826, + "IdString": "s2827", + "NameJp": "I love \"I.N.F.E.R.N.O\"", + "NameEng": "I love \"I.N.F.E.R.N.O\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2827, + "IdString": "s2828", + "NameJp": "M.A.S.T.E.R", + "NameEng": "M.A.S.T.E.R", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2828, + "IdString": "s2829", + "NameJp": "K.I.N.G", + "NameEng": "K.I.N.G", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2829, + "IdString": "s2830", + "NameJp": "G.O.D", + "NameEng": "G.O.D", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2830, + "IdString": "s2831", + "NameJp": "I love \"Sign of \"10.5km\"\"", + "NameEng": "I love \"Sign of \"10.5km\"\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2831, + "IdString": "s2832", + "NameJp": "10.5master", + "NameEng": "10.5master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2832, + "IdString": "s2833", + "NameJp": "10.5king", + "NameEng": "10.5king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2833, + "IdString": "s2834", + "NameJp": "10.5god", + "NameEng": "10.5god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2834, + "IdString": "s2835", + "NameJp": "I love \"Party 4U -holy nite mix-\"", + "NameEng": "I love \"Party 4U -holy nite mix-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 2835, + "IdString": "s2836", + "NameJp": "Party 4M", + "NameEng": "Party 4M", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 2836, + "IdString": "s2837", + "NameJp": "Party 4K", + "NameEng": "Party 4K", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 2837, + "IdString": "s2838", + "NameJp": "Party 4G", + "NameEng": "Party 4G", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 2838, + "IdString": "s2839", + "NameJp": "I love \"Help me,\u3000ERINNNNNN!! -Cranky remix-", + "NameEng": "I love \"Help me,\u3000ERINNNNNN!! -Cranky remix-", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2839, + "IdString": "s2840", + "NameJp": "(゚∀゚)o彡゜ますたー!ますたー!", + "NameEng": "(゚∀゚)o彡゜ますたー!ますたー!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2840, + "IdString": "s2841", + "NameJp": "(゚∀゚)o彡゜きんぐ!きんぐ!", + "NameEng": "(゚∀゚)o彡゜きんぐ!きんぐ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2841, + "IdString": "s2842", + "NameJp": "(゚∀゚)o彡゜ごっど!ごっど!", + "NameEng": "(゚∀゚)o彡゜ごっど!ごっど!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2842, + "IdString": "s2843", + "NameJp": "通りすがりの魔法使い", + "NameEng": "通りすがりの魔法使い", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2843, + "IdString": "s2844", + "NameJp": "山の新人神様", + "NameEng": "山の新人神様", + "UnlockRequirementJp": "『東方星蓮船』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2844, + "IdString": "s2845", + "NameJp": "I love \"Blue Destiny Blue\"", + "NameEng": "I love \"Blue Destiny Blue\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 2845, + "IdString": "s2846", + "NameJp": "Blue Master Blue", + "NameEng": "Blue Master Blue", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 2846, + "IdString": "s2847", + "NameJp": "Blue King Blue", + "NameEng": "Blue King Blue", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 2847, + "IdString": "s2848", + "NameJp": "Blue God Blue", + "NameEng": "Blue God Blue", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 2848, + "IdString": "s2849", + "NameJp": "I love \"Sunglow\"", + "NameEng": "I love \"Sunglow\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 2849, + "IdString": "s2850", + "NameJp": "Sunglow Master", + "NameEng": "Sunglow Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 2850, + "IdString": "s2851", + "NameJp": "Sunglow King", + "NameEng": "Sunglow King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 2851, + "IdString": "s2852", + "NameJp": "Sunglow God", + "NameEng": "Sunglow God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 2852, + "IdString": "s2853", + "NameJp": "I love \"Valhalla\"", + "NameEng": "I love \"Valhalla\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 2853, + "IdString": "s2854", + "NameJp": "全知全能の先生", + "NameEng": "全知全能の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 2854, + "IdString": "s2855", + "NameJp": "全知全能の王", + "NameEng": "全知全能の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 2855, + "IdString": "s2856", + "NameJp": "全知全能の神", + "NameEng": "全知全能の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 2856, + "IdString": "s2857", + "NameJp": "I love \"悪ノ娘\"", + "NameEng": "I love \"悪ノ娘\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2857, + "IdString": "s2858", + "NameJp": "悪ノ先生", + "NameEng": "悪ノ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2858, + "IdString": "s2859", + "NameJp": "悪ノ女王", + "NameEng": "悪ノ女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2859, + "IdString": "s2860", + "NameJp": "悪ノ女神", + "NameEng": "悪ノ女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2860, + "IdString": "s2861", + "NameJp": "I love \"Into Starlight\"", + "NameEng": "I love \"Into Starlight\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2861, + "IdString": "s2862", + "NameJp": "Into Master", + "NameEng": "Into Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2862, + "IdString": "s2863", + "NameJp": "Into King", + "NameEng": "Into King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2863, + "IdString": "s2864", + "NameJp": "Into God", + "NameEng": "Into God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2864, + "IdString": "s2865", + "NameJp": "I love \"CITRUS\"", + "NameEng": "I love \"CITRUS\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2865, + "IdString": "s2866", + "NameJp": "CITRUS MASTER", + "NameEng": "CITRUS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2866, + "IdString": "s2867", + "NameJp": "CITRUS KING", + "NameEng": "CITRUS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2867, + "IdString": "s2868", + "NameJp": "CITRUS GOD", + "NameEng": "CITRUS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2868, + "IdString": "s2869", + "NameJp": "I love \"ミライ\"", + "NameEng": "I love \"ミライ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2869, + "IdString": "s2870", + "NameJp": "ミライマスター", + "NameEng": "ミライマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2870, + "IdString": "s2871", + "NameJp": "ミライキング", + "NameEng": "ミライキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2871, + "IdString": "s2872", + "NameJp": "ミライゴッド", + "NameEng": "ミライゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2872, + "IdString": "s2873", + "NameJp": "I love \"アスノヨゾラ哨戒班\"", + "NameEng": "I love \"アスノヨゾラ哨戒班\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2873, + "IdString": "s2874", + "NameJp": "アスノヨゾラ先生班", + "NameEng": "アスノヨゾラ先生班", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2874, + "IdString": "s2875", + "NameJp": "アスノヨゾラ大王班", + "NameEng": "アスノヨゾラ大王班", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2875, + "IdString": "s2876", + "NameJp": "アスノヨゾラ神班", + "NameEng": "アスノヨゾラ神班", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2876, + "IdString": "s2877", + "NameJp": "I love \"かくしごと\"", + "NameEng": "I love \"かくしごと\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2877, + "IdString": "s2878", + "NameJp": "かくしごと先生", + "NameEng": "かくしごと先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2878, + "IdString": "s2879", + "NameJp": "かくしごと大王", + "NameEng": "かくしごと大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2879, + "IdString": "s2880", + "NameJp": "かくしごと神", + "NameEng": "かくしごと神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2880, + "IdString": "s2881", + "NameJp": "I love \"Perverse Love Rock!\"", + "NameEng": "I love \"Perverse Love Rock!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2881, + "IdString": "s2882", + "NameJp": "Perverse Love Master!", + "NameEng": "Perverse Love Master!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2882, + "IdString": "s2883", + "NameJp": "Perverse Love King!", + "NameEng": "Perverse Love King!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2883, + "IdString": "s2884", + "NameJp": "Perverse Love God!", + "NameEng": "Perverse Love God!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2884, + "IdString": "s2885", + "NameJp": "I love \"サンドリヨン\"", + "NameEng": "I love \"サンドリヨン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2885, + "IdString": "s2886", + "NameJp": "サンドリヨンマスター", + "NameEng": "サンドリヨンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2886, + "IdString": "s2887", + "NameJp": "サンドリヨンクイーン", + "NameEng": "サンドリヨンクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2887, + "IdString": "s2888", + "NameJp": "サンドリヨンゴッデス", + "NameEng": "サンドリヨンゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2888, + "IdString": "s2889", + "NameJp": "I love \"Got hive of Ra\"", + "NameEng": "I love \"Got hive of Ra\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2889, + "IdString": "s2890", + "NameJp": "Groove faith", + "NameEng": "Groove faith", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2890, + "IdString": "s2891", + "NameJp": "King of Groove faith", + "NameEng": "King of Groove faith", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2891, + "IdString": "s2892", + "NameJp": "God hive of Ra", + "NameEng": "God hive of Ra", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2892, + "IdString": "s2893", + "NameJp": "I love \"Stratospheric Journey\"", + "NameEng": "I love \"Stratospheric Journey\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2893, + "IdString": "s2894", + "NameJp": "Stratospheric Master", + "NameEng": "Stratospheric Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2894, + "IdString": "s2895", + "NameJp": "Stratospheric King", + "NameEng": "Stratospheric King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2895, + "IdString": "s2896", + "NameJp": "Stratospheric God", + "NameEng": "Stratospheric God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2896, + "IdString": "s2897", + "NameJp": "I love \"White World feat. 小田ユウ\"", + "NameEng": "I love \"White World feat. 小田ユウ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 2897, + "IdString": "s2898", + "NameJp": "ピュアマスター", + "NameEng": "ピュアマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2898, + "IdString": "s2899", + "NameJp": "ピュアクイーン", + "NameEng": "ピュアクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 2899, + "IdString": "s2900", + "NameJp": "ピュアヒューリーズ", + "NameEng": "ピュアヒューリーズ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 2900, + "IdString": "s2901", + "NameJp": "ふたつのARIA", + "NameEng": "ふたつのARIA", + "UnlockRequirementJp": "『IA&ONE』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2901, + "IdString": "s2902", + "NameJp": "一人じゃないんだ", + "NameEng": "一人じゃないんだ", + "UnlockRequirementJp": "『IA&ONE』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2902, + "IdString": "s2903", + "NameJp": "今日の日をいつか思い出せ", + "NameEng": "今日の日をいつか思い出せ", + "UnlockRequirementJp": "『IA&ONE』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2903, + "IdString": "s2904", + "NameJp": "残された光", + "NameEng": "残された光", + "UnlockRequirementJp": "『IA&ONE』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2904, + "IdString": "s2905", + "NameJp": "甘い甘い愛の香り", + "NameEng": "甘い甘い愛の香り", + "UnlockRequirementJp": "『IA&ONE』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2905, + "IdString": "s2906", + "NameJp": "光の橋を架けて", + "NameEng": "光の橋を架けて", + "UnlockRequirementJp": "『IA&ONE』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2906, + "IdString": "s2907", + "NameJp": "「忘れないよ」", + "NameEng": "「忘れないよ」", + "UnlockRequirementJp": "『IA&ONE』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2907, + "IdString": "s2908", + "NameJp": "妹の歌姫", + "NameEng": "妹の歌姫", + "UnlockRequirementJp": "『IA&ONE』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2908, + "IdString": "s2909", + "NameJp": "姉の歌姫", + "NameEng": "姉の歌姫", + "UnlockRequirementJp": "『IA&ONE』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2909, + "IdString": "s2910", + "NameJp": "I love ONE 2016", + "NameEng": "I love ONE 2016", + "UnlockRequirementJp": "『IA&ONE』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2910, + "IdString": "s2911", + "NameJp": "I love IA 2016", + "NameEng": "I love IA 2016", + "UnlockRequirementJp": "『IA&ONE』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2911, + "IdString": "s2912", + "NameJp": "AUG, 2016 TOP RANKER", + "NameEng": "AUG, 2016 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2912, + "IdString": "s2913", + "NameJp": "SEP, 2016 TOP RANKER", + "NameEng": "SEP, 2016 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2913, + "IdString": "s2914", + "NameJp": "OCT, 2016 TOP RANKER", + "NameEng": "OCT, 2016 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2914, + "IdString": "s2915", + "NameJp": "NOV, 2016 TOP RANKER", + "NameEng": "NOV, 2016 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2915, + "IdString": "s2916", + "NameJp": "DEC, 2016 TOP RANKER", + "NameEng": "DEC, 2016 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2916, + "IdString": "s2917", + "NameJp": "JAN, 2017 TOP RANKER", + "NameEng": "JAN, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2917, + "IdString": "s2918", + "NameJp": "FEB, 2017 TOP RANKER", + "NameEng": "FEB, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2918, + "IdString": "s2919", + "NameJp": "MAR, 2017 TOP RANKER", + "NameEng": "MAR, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2919, + "IdString": "s2920", + "NameJp": "APR, 2017 TOP RANKER", + "NameEng": "APR, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2920, + "IdString": "s2921", + "NameJp": "MAY, 2017 TOP RANKER", + "NameEng": "MAY, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2921, + "IdString": "s2922", + "NameJp": "JUN, 2017 TOP RANKER", + "NameEng": "JUN, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2922, + "IdString": "s2923", + "NameJp": "JUL, 2017 TOP RANKER", + "NameEng": "JUL, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 2923, + "IdString": "s2924", + "NameJp": "I love \"でんぱれーどJAPAN\"", + "NameEng": "I love \"でんぱれーどJAPAN\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 2924, + "IdString": "s2925", + "NameJp": "モット・モット・デンパ・マスター", + "NameEng": "モット・モット・デンパ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2925, + "IdString": "s2926", + "NameJp": "モット・モット・デンパ・クイーン", + "NameEng": "モット・モット・デンパ・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 2926, + "IdString": "s2927", + "NameJp": "モット・モット・デンパ・ゴッデス", + "NameEng": "モット・モット・デンパ・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 2927, + "IdString": "s2928", + "NameJp": "I love \"HONEY SUNRiSE\"", + "NameEng": "I love \"HONEY SUNRiSE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 2928, + "IdString": "s2929", + "NameJp": "HONEY SUNRiSE MASTER", + "NameEng": "HONEY SUNRiSE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 2929, + "IdString": "s2930", + "NameJp": "HONEY SUNRiSE QUEEN", + "NameEng": "HONEY SUNRiSE QUEEN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 2930, + "IdString": "s2931", + "NameJp": "HONEY SUNRiSE GODDESS", + "NameEng": "HONEY SUNRiSE GODDESS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 2931, + "IdString": "s2932", + "NameJp": "I love \"グルーヴ・ザ・ハート\"", + "NameEng": "I love \"グルーヴ・ザ・ハート\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2932, + "IdString": "s2933", + "NameJp": "CHAIN CHAIN CHAIN MASTER!!!", + "NameEng": "CHAIN CHAIN CHAIN MASTER!!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2933, + "IdString": "s2934", + "NameJp": "CHAIN CHAIN CHAIN KING!!!", + "NameEng": "CHAIN CHAIN CHAIN KING!!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2934, + "IdString": "s2935", + "NameJp": "CHAIN CHAIN CHAIN GOD!!!", + "NameEng": "CHAIN CHAIN CHAIN GOD!!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2935, + "IdString": "s2936", + "NameJp": "I love \"ロストワンの号哭\"", + "NameEng": "I love \"ロストワンの号哭\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2936, + "IdString": "s2937", + "NameJp": "もうどうだっていいや先生", + "NameEng": "もうどうだっていいや先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2937, + "IdString": "s2938", + "NameJp": "もうどうだっていいや大王", + "NameEng": "もうどうだっていいや大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2938, + "IdString": "s2939", + "NameJp": "もうどうだっていいや神", + "NameEng": "もうどうだっていいや神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2939, + "IdString": "s2940", + "NameJp": "I love \"どりーみんチュチュ\"", + "NameEng": "I love \"どりーみんチュチュ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2940, + "IdString": "s2941", + "NameJp": "チョコ la ta ta ta ta master", + "NameEng": "チョコ la ta ta ta ta master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2941, + "IdString": "s2942", + "NameJp": "チョコ la ta ta ta ta queen", + "NameEng": "チョコ la ta ta ta ta queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2942, + "IdString": "s2943", + "NameJp": "チョコ la ta ta ta ta goddess", + "NameEng": "チョコ la ta ta ta ta goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2943, + "IdString": "s2944", + "NameJp": "I love \"Just Be Friends\"", + "NameEng": "I love \"Just Be Friends\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2944, + "IdString": "s2945", + "NameJp": "Just Be Master", + "NameEng": "Just Be Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2945, + "IdString": "s2946", + "NameJp": "Just Be King", + "NameEng": "Just Be King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2946, + "IdString": "s2947", + "NameJp": "Just Be God", + "NameEng": "Just Be God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2947, + "IdString": "s2948", + "NameJp": "I love \"みくみくにしてあげる♪【してやんよ】\"", + "NameEng": "I love \"みくみくにしてあげる♪【してやんよ】\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2948, + "IdString": "s2949", + "NameJp": "みくみく先生♪", + "NameEng": "みくみく先生♪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2949, + "IdString": "s2950", + "NameJp": "みくみく女王♪", + "NameEng": "みくみく女王♪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2950, + "IdString": "s2951", + "NameJp": "みくみく女神♪", + "NameEng": "みくみく女神♪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2951, + "IdString": "s2952", + "NameJp": "I love \"ネトゲ廃人シュプレヒコール\"", + "NameEng": "I love \"ネトゲ廃人シュプレヒコール\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2952, + "IdString": "s2953", + "NameJp": "ネトゲ廃人先生", + "NameEng": "ネトゲ廃人先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2953, + "IdString": "s2954", + "NameJp": "ネトゲ廃人大王", + "NameEng": "ネトゲ廃人大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2954, + "IdString": "s2955", + "NameJp": "ネトゲ廃神", + "NameEng": "ネトゲ廃神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2955, + "IdString": "s2956", + "NameJp": "I love \"ストロボナイツ\"", + "NameEng": "I love \"ストロボナイツ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2956, + "IdString": "s2957", + "NameJp": "ストロボマスター", + "NameEng": "ストロボマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2957, + "IdString": "s2958", + "NameJp": "ストロボキング", + "NameEng": "ストロボキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2958, + "IdString": "s2959", + "NameJp": "ストロボゴッド", + "NameEng": "ストロボゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2959, + "IdString": "s2960", + "NameJp": "I love \"Scarlet Lance\"", + "NameEng": "I love \"Scarlet Lance\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 2960, + "IdString": "s2961", + "NameJp": "Scarlet Lance Master", + "NameEng": "Scarlet Lance Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2961, + "IdString": "s2962", + "NameJp": "Scarlet Lance King", + "NameEng": "Scarlet Lance King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 2962, + "IdString": "s2963", + "NameJp": "Scarlet Lance God", + "NameEng": "Scarlet Lance God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 2963, + "IdString": "s2964", + "NameJp": "第三回天下一音ゲ祭 ファイナリスト", + "NameEng": "第三回天下一音ゲ祭 ファイナリスト", + "UnlockRequirementJp": "第三回天下一音ゲ祭全国頂上決戦進出", + "UnlockRequirementEng": "第三回天下一音ゲ祭全国頂上決戦進出", + "Type": 12 + }, + { + "Id": 2964, + "IdString": "s2965", + "NameJp": "第三回天下一音ゲ祭 チャンピオン", + "NameEng": "第三回天下一音ゲ祭 チャンピオン", + "UnlockRequirementJp": "第三回天下一音ゲ祭優勝", + "UnlockRequirementEng": "第三回天下一音ゲ祭優勝", + "Type": 12 + }, + { + "Id": 2965, + "IdString": "s2966", + "NameJp": "REV. × GC 達人", + "NameEng": "REV. × GC 達人", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2966, + "IdString": "s2967", + "NameJp": "イノベーター", + "NameEng": "イノベーター", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2967, + "IdString": "s2968", + "NameJp": "HONEY♡", + "NameEng": "HONEY♡", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2968, + "IdString": "s2969", + "NameJp": "ストイック", + "NameEng": "ストイック", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2969, + "IdString": "s2970", + "NameJp": "SUNRISE", + "NameEng": "SUNRISE", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2970, + "IdString": "s2971", + "NameJp": "I love 燦", + "NameEng": "I love 燦", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2971, + "IdString": "s2972", + "NameJp": "クロビってる?", + "NameEng": "クロビってる?", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2972, + "IdString": "s2973", + "NameJp": "今日も一日 dxb", + "NameEng": "今日も一日 dxb", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2973, + "IdString": "s2974", + "NameJp": "I love 暁月", + "NameEng": "I love 暁月", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2974, + "IdString": "s2975", + "NameJp": "レヴ民でヴ民", + "NameEng": "レヴ民でヴ民", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2975, + "IdString": "s2976", + "NameJp": "クロビ勢", + "NameEng": "クロビ勢", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2976, + "IdString": "s2977", + "NameJp": "I love crossbeats REV. SUNRISE", + "NameEng": "I love crossbeats REV. SUNRISE", + "UnlockRequirementJp": "『クロスビーツレヴ サンライズ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2977, + "IdString": "s2978", + "NameJp": "MikuLukaGod", + "NameEng": "MikuLukaGod", + "UnlockRequirementJp": "『初音ミク&巡音ルカ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2978, + "IdString": "s2979", + "NameJp": "S+級ネギトロ", + "NameEng": "S+級ネギトロ", + "UnlockRequirementJp": "『初音ミク&巡音ルカ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2979, + "IdString": "s2980", + "NameJp": "キラリと走る星", + "NameEng": "キラリと走る星", + "UnlockRequirementJp": "『初音ミク&巡音ルカ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2980, + "IdString": "s2981", + "NameJp": "るっかるかにしてやんよ~!", + "NameEng": "るっかるかにしてやんよ~!", + "UnlockRequirementJp": "『初音ミク&巡音ルカ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2981, + "IdString": "s2982", + "NameJp": "みっくみくにしてやんよ~!", + "NameEng": "みっくみくにしてやんよ~!", + "UnlockRequirementJp": "『初音ミク&巡音ルカ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2982, + "IdString": "s2983", + "NameJp": "純情可憐な女の子", + "NameEng": "純情可憐な女の子", + "UnlockRequirementJp": "『初音ミク&巡音ルカ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2983, + "IdString": "s2984", + "NameJp": "S+級マグロ", + "NameEng": "S+級マグロ", + "UnlockRequirementJp": "『初音ミク&巡音ルカ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2984, + "IdString": "s2985", + "NameJp": "ああああ", + "NameEng": "ああああ", + "UnlockRequirementJp": "『初音ミク&巡音ルカ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2985, + "IdString": "s2986", + "NameJp": "Just be friends", + "NameEng": "Just be friends", + "UnlockRequirementJp": "『初音ミク&巡音ルカ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2986, + "IdString": "s2987", + "NameJp": "I LOVE 巡音ルカ 2016", + "NameEng": "I LOVE 巡音ルカ 2016", + "UnlockRequirementJp": "『初音ミク&巡音ルカ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2987, + "IdString": "s2988", + "NameJp": "I LOVE 初音ミク 2016", + "NameEng": "I LOVE 初音ミク 2016", + "UnlockRequirementJp": "『初音ミク&巡音ルカ』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 2988, + "IdString": "s2989", + "NameJp": "I love \"裏表ラバーズ\"!!", + "NameEng": "I love \"裏表ラバーズ\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2989, + "IdString": "s2990", + "NameJp": "現実逃避先生", + "NameEng": "現実逃避先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2990, + "IdString": "s2991", + "NameJp": "現実逃避大王", + "NameEng": "現実逃避大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2991, + "IdString": "s2992", + "NameJp": "現実逃避神", + "NameEng": "現実逃避神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2992, + "IdString": "s2993", + "NameJp": "I love \"ダブルラリアット\"!!", + "NameEng": "I love \"ダブルラリアット\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2993, + "IdString": "s2994", + "NameJp": "半径85センチ先生", + "NameEng": "半径85センチ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2994, + "IdString": "s2995", + "NameJp": "半径85センチ大王", + "NameEng": "半径85センチ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2995, + "IdString": "s2996", + "NameJp": "半径85センチ神", + "NameEng": "半径85センチ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 2996, + "IdString": "s2997", + "NameJp": "I love \"ローリンガール\"!!", + "NameEng": "I love \"ローリンガール\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 2997, + "IdString": "s2998", + "NameJp": "「先生は今日も転がります。」", + "NameEng": "「先生は今日も転がります。」", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2998, + "IdString": "s2999", + "NameJp": "「女王様は今日も転がります。」", + "NameEng": "「女王様は今日も転がります。」", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 2999, + "IdString": "s3000", + "NameJp": "「女神様は今日も転がります。」", + "NameEng": "「女神様は今日も転がります。」", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3000, + "IdString": "s3001", + "NameJp": "I love \"ハッピーシンセサイザ\"!!", + "NameEng": "I love \"ハッピーシンセサイザ\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3001, + "IdString": "s3002", + "NameJp": "電子音で伝えるよマスター", + "NameEng": "電子音で伝えるよマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3002, + "IdString": "s3003", + "NameJp": "電子音で伝えるよキング", + "NameEng": "電子音で伝えるよキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3003, + "IdString": "s3004", + "NameJp": "電子音で伝えるよゴッド", + "NameEng": "電子音で伝えるよゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3004, + "IdString": "s3005", + "NameJp": "I love \"ロミオとシンデレラ\"!!", + "NameEng": "I love \"ロミオとシンデレラ\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3005, + "IdString": "s3006", + "NameJp": "そんな気分よ先生", + "NameEng": "そんな気分よ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3006, + "IdString": "s3007", + "NameJp": "そんな気分よ女王", + "NameEng": "そんな気分よ女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3007, + "IdString": "s3008", + "NameJp": "そんな気分よ女神", + "NameEng": "そんな気分よ女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3008, + "IdString": "s3009", + "NameJp": "I love \"I miss you baby\"", + "NameEng": "I love \"I miss you baby\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3009, + "IdString": "s3010", + "NameJp": "契約マスター", + "NameEng": "契約マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3010, + "IdString": "s3011", + "NameJp": "契約キング", + "NameEng": "契約キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3011, + "IdString": "s3012", + "NameJp": "契約ゴッド", + "NameEng": "契約ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3012, + "IdString": "s3013", + "NameJp": "I love \"Wizard\"", + "NameEng": "I love \"Wizard\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3013, + "IdString": "s3014", + "NameJp": "スフィア回収マスター", + "NameEng": "スフィア回収マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3014, + "IdString": "s3015", + "NameJp": "スフィア回収キング", + "NameEng": "スフィア回収キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3015, + "IdString": "s3016", + "NameJp": "スフィア回収ゴッド", + "NameEng": "スフィア回収ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3016, + "IdString": "s3017", + "NameJp": "I love \"You and Me\"", + "NameEng": "I love \"You and Me\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3017, + "IdString": "s3018", + "NameJp": "タマシイ呼び出しマスター", + "NameEng": "タマシイ呼び出しマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3018, + "IdString": "s3019", + "NameJp": "タマシイ呼び出しクイーン", + "NameEng": "タマシイ呼び出しクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3019, + "IdString": "s3020", + "NameJp": "タマシイ呼び出しゴッデス", + "NameEng": "タマシイ呼び出しゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3020, + "IdString": "s3021", + "NameJp": "I love \"Overloud\"", + "NameEng": "I love \"Overloud\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3021, + "IdString": "s3022", + "NameJp": "トラップ回避マスター", + "NameEng": "トラップ回避マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3022, + "IdString": "s3023", + "NameJp": "トラップ回避キング", + "NameEng": "トラップ回避キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3023, + "IdString": "s3024", + "NameJp": "トラップ回避ゴッド", + "NameEng": "トラップ回避ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3024, + "IdString": "s3025", + "NameJp": "I love \"東方地神律\"", + "NameEng": "I love \"東方地神律\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3025, + "IdString": "s3026", + "NameJp": "地神律先生", + "NameEng": "地神律先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3026, + "IdString": "s3027", + "NameJp": "地神律大王", + "NameEng": "地神律大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3027, + "IdString": "s3028", + "NameJp": "地神律神", + "NameEng": "地神律神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3028, + "IdString": "s3029", + "NameJp": "I love \"アブストラクト・ナンセンス\"", + "NameEng": "I love \"アブストラクト・ナンセンス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3029, + "IdString": "s3030", + "NameJp": "アブストラクト・マスター", + "NameEng": "アブストラクト・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3030, + "IdString": "s3031", + "NameJp": "アブストラクト・クイーン", + "NameEng": "アブストラクト・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3031, + "IdString": "s3032", + "NameJp": "アブストラクト・ゴッデス", + "NameEng": "アブストラクト・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3032, + "IdString": "s3033", + "NameJp": "I love \"ukigumo\"", + "NameEng": "I love \"ukigumo\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 3033, + "IdString": "s3034", + "NameJp": "┌[・ ・]┘ master", + "NameEng": "┌[・ ・]┘ master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3034, + "IdString": "s3035", + "NameJp": "┌[・ ・]┘ king", + "NameEng": "┌[・ ・]┘ king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3035, + "IdString": "s3036", + "NameJp": "┌[・ ・]┘god", + "NameEng": "┌[・ ・]┘god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 3036, + "IdString": "s3037", + "NameJp": "I love \"シュガーソングとビターステップ\"", + "NameEng": "I love \"シュガーソングとビターステップ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 3037, + "IdString": "s3038", + "NameJp": "技名を叫んでから殴る先生", + "NameEng": "技名を叫んでから殴る先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3038, + "IdString": "s3039", + "NameJp": "技名を叫んでから殴る大王", + "NameEng": "技名を叫んでから殴る大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3039, + "IdString": "s3040", + "NameJp": "技名を叫んでから殴る神", + "NameEng": "技名を叫んでから殴る神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 3040, + "IdString": "s3041", + "NameJp": "I love \"トゥッティ!\"", + "NameEng": "I love \"トゥッティ!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 3041, + "IdString": "s3042", + "NameJp": "次の曲が始まるのです先生", + "NameEng": "次の曲が始まるのです先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3042, + "IdString": "s3043", + "NameJp": "次の曲が始まるのです女王", + "NameEng": "次の曲が始まるのです女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3043, + "IdString": "s3044", + "NameJp": "次の曲が始まるのです女神", + "NameEng": "次の曲が始まるのです女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 3044, + "IdString": "s3045", + "NameJp": "I love \"ハレ晴レユカイ\"", + "NameEng": "I love \"ハレ晴レユカイ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 3045, + "IdString": "s3046", + "NameJp": "世界を大いに盛り上げる先生", + "NameEng": "世界を大いに盛り上げる先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3046, + "IdString": "s3047", + "NameJp": "世界を大いに盛り上げる女王", + "NameEng": "世界を大いに盛り上げる女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3047, + "IdString": "s3048", + "NameJp": "世界を大いに盛り上げる女神", + "NameEng": "世界を大いに盛り上げる女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 3048, + "IdString": "s3049", + "NameJp": "最高のパートナー", + "NameEng": "最高のパートナー", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3049, + "IdString": "s3050", + "NameJp": "超存在タイヨウ", + "NameEng": "超存在タイヨウ", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3050, + "IdString": "s3051", + "NameJp": "超存在ツキ", + "NameEng": "超存在ツキ", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3051, + "IdString": "s3052", + "NameJp": "記憶を司る者", + "NameEng": "記憶を司る者", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3052, + "IdString": "s3053", + "NameJp": "最後のSP", + "NameEng": "最後のSP", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3053, + "IdString": "s3054", + "NameJp": "正体不明の男", + "NameEng": "正体不明の男", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3054, + "IdString": "s3055", + "NameJp": "謎の科学者", + "NameEng": "謎の科学者", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3055, + "IdString": "s3056", + "NameJp": "探偵組織の幹部", + "NameEng": "探偵組織の幹部", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3056, + "IdString": "s3057", + "NameJp": "自称ライバル", + "NameEng": "自称ライバル", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3057, + "IdString": "s3058", + "NameJp": "研究者", + "NameEng": "研究者", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3058, + "IdString": "s3059", + "NameJp": "ヘッドハンター", + "NameEng": "ヘッドハンター", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3059, + "IdString": "s3060", + "NameJp": "ギーク", + "NameEng": "ギーク", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3060, + "IdString": "s3061", + "NameJp": "リサーチャー", + "NameEng": "リサーチャー", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3061, + "IdString": "s3062", + "NameJp": "謎の少女", + "NameEng": "謎の少女", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3062, + "IdString": "s3063", + "NameJp": "運び屋", + "NameEng": "運び屋", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3063, + "IdString": "s3064", + "NameJp": "I LOVE 消滅都市", + "NameEng": "I LOVE 消滅都市", + "UnlockRequirementJp": "『消滅都市』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3064, + "IdString": "s3065", + "NameJp": "I love \"Material of Puppets\"", + "NameEng": "I love \"Material of Puppets\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3065, + "IdString": "s3066", + "NameJp": "Master of Puppets", + "NameEng": "Master of Puppets", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3066, + "IdString": "s3067", + "NameJp": "King of Puppets", + "NameEng": "King of Puppets", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3067, + "IdString": "s3068", + "NameJp": "God of Puppets", + "NameEng": "God of Puppets", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3068, + "IdString": "s3069", + "NameJp": "I love \"ジンガイクライシス\"", + "NameEng": "I love \"ジンガイクライシス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3069, + "IdString": "s3070", + "NameJp": "ジンガイマスター", + "NameEng": "ジンガイマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3070, + "IdString": "s3071", + "NameJp": "ジンガイキング", + "NameEng": "ジンガイキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3071, + "IdString": "s3072", + "NameJp": "ジンガイゴッド", + "NameEng": "ジンガイゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3072, + "IdString": "s3073", + "NameJp": "I love \"Dream Coaster\"", + "NameEng": "I love \"Dream Coaster\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3073, + "IdString": "s3074", + "NameJp": "夢の先生", + "NameEng": "夢の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3074, + "IdString": "s3075", + "NameJp": "夢の大王", + "NameEng": "夢の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3075, + "IdString": "s3076", + "NameJp": "夢の支配者", + "NameEng": "夢の支配者", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3076, + "IdString": "s3077", + "NameJp": "I love \"天ノ弱\"", + "NameEng": "I love \"天ノ弱\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3077, + "IdString": "s3078", + "NameJp": "天性の弱虫", + "NameEng": "天性の弱虫", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3078, + "IdString": "s3079", + "NameJp": "天性の大王", + "NameEng": "天性の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3079, + "IdString": "s3080", + "NameJp": "天性の神", + "NameEng": "天性の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3080, + "IdString": "s3081", + "NameJp": "I love \"INCOGNITO\"", + "NameEng": "I love \"INCOGNITO\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3081, + "IdString": "s3082", + "NameJp": "INCOGNITO MASTER", + "NameEng": "INCOGNITO MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3082, + "IdString": "s3083", + "NameJp": "INCOGNITO QUEEN", + "NameEng": "INCOGNITO QUEEN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3083, + "IdString": "s3084", + "NameJp": "INCOGNITO GODDESS", + "NameEng": "INCOGNITO GODDESS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3084, + "IdString": "s3085", + "NameJp": "I love \"You Need Fxxkin' Anthem\"", + "NameEng": "I love \"You Need Fxxkin' Anthem\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 3085, + "IdString": "s3086", + "NameJp": "xx Master", + "NameEng": "xx Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3086, + "IdString": "s3087", + "NameJp": "xx King", + "NameEng": "xx King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3087, + "IdString": "s3088", + "NameJp": "xx God", + "NameEng": "xx God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 3088, + "IdString": "s3089", + "NameJp": "I love \"すーぱーぬこになりたい\"", + "NameEng": "I love \"すーぱーぬこになりたい\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 3089, + "IdString": "s3090", + "NameJp": "にぼし!にぼし!ますたー", + "NameEng": "にぼし!にぼし!ますたー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3090, + "IdString": "s3091", + "NameJp": "にぼし!にぼし!きんぐ", + "NameEng": "にぼし!にぼし!きんぐ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3091, + "IdString": "s3092", + "NameJp": "にぼし!にぼし!ごっど", + "NameEng": "にぼし!にぼし!ごっど", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 3092, + "IdString": "s3093", + "NameJp": "I love \"清らかな幸福\"", + "NameEng": "I love \"清らかな幸福\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3093, + "IdString": "s3094", + "NameJp": "清らかな先生", + "NameEng": "清らかな先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3094, + "IdString": "s3095", + "NameJp": "清らかな女王", + "NameEng": "清らかな女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3095, + "IdString": "s3096", + "NameJp": "清らかな女神", + "NameEng": "清らかな女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3096, + "IdString": "s3097", + "NameJp": "I love \"Old Heaven\"", + "NameEng": "I love \"Old Heaven\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 3097, + "IdString": "s3098", + "NameJp": "Old Master", + "NameEng": "Old Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3098, + "IdString": "s3099", + "NameJp": "Old King", + "NameEng": "Old King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3099, + "IdString": "s3100", + "NameJp": "Old God", + "NameEng": "Old God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 3100, + "IdString": "s3101", + "NameJp": "I love \"パーティクルパーティ\"", + "NameEng": "I love \"パーティクルパーティ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3101, + "IdString": "s3102", + "NameJp": "パーティクルマスター", + "NameEng": "パーティクルマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3102, + "IdString": "s3103", + "NameJp": "パーティクルクイーン", + "NameEng": "パーティクルクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3103, + "IdString": "s3104", + "NameJp": "パーティクルゴッデス", + "NameEng": "パーティクルゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3104, + "IdString": "s3105", + "NameJp": "I love \"鼓動、零れぬ酒\"", + "NameEng": "I love \"鼓動、零れぬ酒\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3105, + "IdString": "s3106", + "NameJp": "一滴も零さない先生", + "NameEng": "一滴も零さない先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3106, + "IdString": "s3107", + "NameJp": "一滴も零さない女王", + "NameEng": "一滴も零さない女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3107, + "IdString": "s3108", + "NameJp": "一滴も零さない女神", + "NameEng": "一滴も零さない女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3108, + "IdString": "s3109", + "NameJp": "I love \"Lust SIN\"", + "NameEng": "I love \"Lust SIN\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3109, + "IdString": "s3110", + "NameJp": "氷結先生", + "NameEng": "氷結先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3110, + "IdString": "s3111", + "NameJp": "氷結大王", + "NameEng": "氷結大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3111, + "IdString": "s3112", + "NameJp": "氷結神", + "NameEng": "氷結神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3112, + "IdString": "s3113", + "NameJp": "東方参面録", + "NameEng": "東方参面録", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3113, + "IdString": "s3114", + "NameJp": "月符「緋色の狂夢」", + "NameEng": "月符「緋色の狂夢」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3114, + "IdString": "s3115", + "NameJp": "天狼「ハイスピードバウンス」", + "NameEng": "天狼「ハイスピードバウンス」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3115, + "IdString": "s3116", + "NameJp": "四天王奥義「三歩必殺」", + "NameEng": "四天王奥義「三歩必殺」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3116, + "IdString": "s3117", + "NameJp": "河童「スピン・ザ・セファリックプレート」", + "NameEng": "河童「スピン・ザ・セファリックプレート」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3117, + "IdString": "s3118", + "NameJp": "鬼符「怪力乱神」", + "NameEng": "鬼符「怪力乱神」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3118, + "IdString": "s3119", + "NameJp": "虚史「幻想郷伝説」", + "NameEng": "虚史「幻想郷伝説」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3119, + "IdString": "s3120", + "NameJp": "光学「オプティカルカモフラージュ」", + "NameEng": "光学「オプティカルカモフラージュ」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3120, + "IdString": "s3121", + "NameJp": "咒詛「首吊り蓬莱人形」", + "NameEng": "咒詛「首吊り蓬莱人形」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3121, + "IdString": "s3122", + "NameJp": "産霊「ファーストピラミッド」", + "NameEng": "産霊「ファーストピラミッド」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3122, + "IdString": "s3123", + "NameJp": "夢符「藍色の愁夢」", + "NameEng": "夢符「藍色の愁夢」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3123, + "IdString": "s3124", + "NameJp": "変身「スターファング」", + "NameEng": "変身「スターファング」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3124, + "IdString": "s3125", + "NameJp": "操符「マリオネットパラル」", + "NameEng": "操符「マリオネットパラル」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3125, + "IdString": "s3126", + "NameJp": "忿怒「空前絶後大目玉焼き」", + "NameEng": "忿怒「空前絶後大目玉焼き」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3126, + "IdString": "s3127", + "NameJp": "欲符「スコアデザイアイーター」", + "NameEng": "欲符「スコアデザイアイーター」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3127, + "IdString": "s3128", + "NameJp": "彩符「極彩颱風」", + "NameEng": "彩符「極彩颱風」", + "UnlockRequirementJp": "『東方参面録』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3128, + "IdString": "s3129", + "NameJp": "I love \"オレを越えて行け\"", + "NameEng": "I love \"オレを越えて行け\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3129, + "IdString": "s3130", + "NameJp": "新宿先生", + "NameEng": "新宿先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3130, + "IdString": "s3131", + "NameJp": "新宿大王", + "NameEng": "新宿大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3131, + "IdString": "s3132", + "NameJp": "新宿神", + "NameEng": "新宿神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3132, + "IdString": "s3133", + "NameJp": "I love \"KALEIDOSCOPE\"", + "NameEng": "I love \"KALEIDOSCOPE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3133, + "IdString": "s3134", + "NameJp": "大阪先生", + "NameEng": "大阪先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3134, + "IdString": "s3135", + "NameJp": "大阪大王", + "NameEng": "大阪大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3135, + "IdString": "s3136", + "NameJp": "大阪神", + "NameEng": "大阪神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3136, + "IdString": "s3137", + "NameJp": "I love \"Reversible Justice\"", + "NameEng": "I love \"Reversible Justice\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3137, + "IdString": "s3138", + "NameJp": "絶対思想啓蒙局先生", + "NameEng": "絶対思想啓蒙局先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3138, + "IdString": "s3139", + "NameJp": "絶対思想啓蒙局大王", + "NameEng": "絶対思想啓蒙局大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3139, + "IdString": "s3140", + "NameJp": "絶対思想啓蒙局神", + "NameEng": "絶対思想啓蒙局神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3140, + "IdString": "s3141", + "NameJp": "I love \"働かずに食う [IA Ver.]\"", + "NameEng": "I love \"働かずに食う [IA Ver.]\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3141, + "IdString": "s3142", + "NameJp": "働かずに食う先生", + "NameEng": "働かずに食う先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3142, + "IdString": "s3143", + "NameJp": "働かずに食う大王", + "NameEng": "働かずに食う大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3143, + "IdString": "s3144", + "NameJp": "働かずに食う神", + "NameEng": "働かずに食う神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3144, + "IdString": "s3145", + "NameJp": "I love \"We Are The Massive New Krew\"", + "NameEng": "I love \"We Are The Massive New Krew\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 3145, + "IdString": "s3146", + "NameJp": "MNKMaster", + "NameEng": "MNKMaster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3146, + "IdString": "s3147", + "NameJp": "MNKKing", + "NameEng": "MNKKing", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3147, + "IdString": "s3148", + "NameJp": "MNKGod", + "NameEng": "MNKGod", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 3148, + "IdString": "s3149", + "NameJp": "I love \"Bad ∞ End ∞ Night\"", + "NameEng": "I love \"Bad ∞ End ∞ Night\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3149, + "IdString": "s3150", + "NameJp": "Bad ∞ End ∞ Master", + "NameEng": "Bad ∞ End ∞ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3150, + "IdString": "s3151", + "NameJp": "Bad ∞ End ∞ King", + "NameEng": "Bad ∞ End ∞ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3151, + "IdString": "s3152", + "NameJp": "Bad ∞ End ∞ God", + "NameEng": "Bad ∞ End ∞ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3152, + "IdString": "s3153", + "NameJp": "I love \"HG魔改造ポリビニル少年\"", + "NameEng": "I love \"HG魔改造ポリビニル少年\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3153, + "IdString": "s3154", + "NameJp": "HG魔改造ポリビニル先生", + "NameEng": "HG魔改造ポリビニル先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3154, + "IdString": "s3155", + "NameJp": "HG魔改造ポリビニル大王", + "NameEng": "HG魔改造ポリビニル大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3155, + "IdString": "s3156", + "NameJp": "HG魔改造ポリビニル神", + "NameEng": "HG魔改造ポリビニル神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3156, + "IdString": "s3157", + "NameJp": "I love \"Abyssal Withdrawal\"", + "NameEng": "I love \"Abyssal Withdrawal\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3157, + "IdString": "s3158", + "NameJp": "MASTER CLAW", + "NameEng": "MASTER CLAW", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3158, + "IdString": "s3159", + "NameJp": "KING CLAW", + "NameEng": "KING CLAW", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3159, + "IdString": "s3160", + "NameJp": "GOD CLAW", + "NameEng": "GOD CLAW", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3160, + "IdString": "s3161", + "NameJp": "I love \"COSMIC AIR WAY\"", + "NameEng": "I love \"COSMIC AIR WAY\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3161, + "IdString": "s3162", + "NameJp": "MASTER FAN", + "NameEng": "MASTER FAN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3162, + "IdString": "s3163", + "NameJp": "KING FAN", + "NameEng": "KING FAN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3163, + "IdString": "s3164", + "NameJp": "GOD FAN", + "NameEng": "GOD FAN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3164, + "IdString": "s3165", + "NameJp": "I love \"say PaPa re:mix\"", + "NameEng": "I love \"say PaPa re:mix\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3165, + "IdString": "s3166", + "NameJp": "BIO MASTER", + "NameEng": "BIO MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3166, + "IdString": "s3167", + "NameJp": "BIO KING", + "NameEng": "BIO KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3167, + "IdString": "s3168", + "NameJp": "BIO GOD", + "NameEng": "BIO GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3168, + "IdString": "s3169", + "NameJp": "I love \"仙酌絶唱のファンタジア\"", + "NameEng": "I love \"仙酌絶唱のファンタジア\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3169, + "IdString": "s3170", + "NameJp": "例大祭先生", + "NameEng": "例大祭先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3170, + "IdString": "s3171", + "NameJp": "例大祭大王", + "NameEng": "例大祭大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3171, + "IdString": "s3172", + "NameJp": "例大祭神", + "NameEng": "例大祭神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3172, + "IdString": "s3173", + "NameJp": "I love \"十面相\"", + "NameEng": "I love \"十面相\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3173, + "IdString": "s3174", + "NameJp": "多重人格先生", + "NameEng": "多重人格先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3174, + "IdString": "s3175", + "NameJp": "多重人格大王", + "NameEng": "多重人格大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3175, + "IdString": "s3176", + "NameJp": "多重人格神", + "NameEng": "多重人格神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3176, + "IdString": "s3177", + "NameJp": "I love \"Warrior\"", + "NameEng": "I love \"Warrior\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3177, + "IdString": "s3178", + "NameJp": "Master of Warrior", + "NameEng": "Master of Warrior", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3178, + "IdString": "s3179", + "NameJp": "King of Warrior", + "NameEng": "King of Warrior", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3179, + "IdString": "s3180", + "NameJp": "God of Warrior", + "NameEng": "God of Warrior", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3180, + "IdString": "s3181", + "NameJp": "G.T.", + "NameEng": "G.T.", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3181, + "IdString": "s3182", + "NameJp": "LITTLE STRIPES", + "NameEng": "LITTLE STRIPES", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3182, + "IdString": "s3183", + "NameJp": "DARK HELIOS", + "NameEng": "DARK HELIOS", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3183, + "IdString": "s3184", + "NameJp": "FORCE CLAW", + "NameEng": "FORCE CLAW", + "UnlockRequirementJp": "『ダライアス豊漁祭』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3184, + "IdString": "s3185", + "NameJp": "ずんどこずんどこずんどこずんどこ", + "NameEng": "ずんどこずんどこずんどこずんどこ", + "UnlockRequirementJp": "『イオシスミニイベント』報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3185, + "IdString": "s3186", + "NameJp": "どんつくどんつくどんつくどんつく", + "NameEng": "どんつくどんつくどんつくどんつく", + "UnlockRequirementJp": "『イオシスミニイベント』報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3186, + "IdString": "s3187", + "NameJp": "I love IOSYS", + "NameEng": "I love IOSYS", + "UnlockRequirementJp": "『イオシスミニイベント』報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3187, + "IdString": "s3188", + "NameJp": "未来も、希望も、奪還する!", + "NameEng": "未来も、希望も、奪還する!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3188, + "IdString": "s3189", + "NameJp": "頂点に立つのは、この俺だ!", + "NameEng": "頂点に立つのは、この俺だ!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3189, + "IdString": "s3190", + "NameJp": "福音を奏でよう", + "NameEng": "福音を奏でよう", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3190, + "IdString": "s3191", + "NameJp": "排除する!", + "NameEng": "排除する!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3191, + "IdString": "s3192", + "NameJp": "ご覚悟くださいませ☆", + "NameEng": "ご覚悟くださいませ☆", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3192, + "IdString": "s3193", + "NameJp": "残酷な真実を見せてあげる", + "NameEng": "残酷な真実を見せてあげる", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3193, + "IdString": "s3194", + "NameJp": "ミラクルアートでやっつけちゃうヨ!", + "NameEng": "ミラクルアートでやっつけちゃうヨ!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3194, + "IdString": "s3195", + "NameJp": "ガンバ、ガンバ、ファイト♪", + "NameEng": "ガンバ、ガンバ、ファイト♪", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3195, + "IdString": "s3196", + "NameJp": "行くぞシャンドラ!", + "NameEng": "行くぞシャンドラ!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3196, + "IdString": "s3197", + "NameJp": "喧嘩上等!", + "NameEng": "喧嘩上等!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3197, + "IdString": "s3198", + "NameJp": "たーまやーっ!", + "NameEng": "たーまやーっ!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3198, + "IdString": "s3199", + "NameJp": "心!技!体!", + "NameEng": "心!技!体!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3199, + "IdString": "s3200", + "NameJp": "ラブ&ピース!", + "NameEng": "ラブ&ピース!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3200, + "IdString": "s3201", + "NameJp": "懺悔の時間です!", + "NameEng": "懺悔の時間です!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3201, + "IdString": "s3202", + "NameJp": "さぁ…ゲームスタートだ!", + "NameEng": "さぁ…ゲームスタートだ!", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3202, + "IdString": "s3203", + "NameJp": "I love ガンスリンガーストラトス", + "NameEng": "I love ガンスリンガーストラトス", + "UnlockRequirementJp": "『ガンスリンガー ストラトス3』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3203, + "IdString": "s3204", + "NameJp": "ノリノリンカちゃん", + "NameEng": "ノリノリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3204, + "IdString": "s3205", + "NameJp": "ゆったリンカちゃん", + "NameEng": "ゆったリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3205, + "IdString": "s3206", + "NameJp": "キリリンカちゃん", + "NameEng": "キリリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3206, + "IdString": "s3207", + "NameJp": "びっくリンカちゃん", + "NameEng": "びっくリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3207, + "IdString": "s3208", + "NameJp": "スッキリンカちゃん", + "NameEng": "スッキリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3208, + "IdString": "s3209", + "NameJp": "お断リンカちゃん", + "NameEng": "お断リンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3209, + "IdString": "s3210", + "NameJp": "にやリンカちゃん", + "NameEng": "にやリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3210, + "IdString": "s3211", + "NameJp": "がっかリンカちゃん", + "NameEng": "がっかリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3211, + "IdString": "s3212", + "NameJp": "にっこリンカちゃん", + "NameEng": "にっこリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3212, + "IdString": "s3213", + "NameJp": "超COOL!", + "NameEng": "超COOL!", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3213, + "IdString": "s3214", + "NameJp": "しっかリンカちゃん", + "NameEng": "しっかリンカちゃん", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3214, + "IdString": "s3215", + "NameJp": "S+級カニみそ", + "NameEng": "S+級カニみそ", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3215, + "IdString": "s3216", + "NameJp": "かかってきやがれ!", + "NameEng": "かかってきやがれ!", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3216, + "IdString": "s3217", + "NameJp": "I love ロンメイ", + "NameEng": "I love ロンメイ", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3217, + "IdString": "s3218", + "NameJp": "I love 拳", + "NameEng": "I love 拳", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3218, + "IdString": "s3219", + "NameJp": "I love リンカ", + "NameEng": "I love リンカ", + "UnlockRequirementJp": "『Ver.3ありがとう』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3219, + "IdString": "s3220", + "NameJp": "I love \"DreamRiser\"", + "NameEng": "I love \"DreamRiser\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 3220, + "IdString": "s3221", + "NameJp": "戦車先生", + "NameEng": "戦車先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3221, + "IdString": "s3222", + "NameJp": "戦車女王", + "NameEng": "戦車女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3222, + "IdString": "s3223", + "NameJp": "戦車女神", + "NameEng": "戦車女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 3223, + "IdString": "s3224", + "NameJp": "I love \"Punky Funky Love\"", + "NameEng": "I love \"Punky Funky Love\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 3224, + "IdString": "s3225", + "NameJp": "Punky Funky Master", + "NameEng": "Punky Funky Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3225, + "IdString": "s3226", + "NameJp": "Punky Funky King", + "NameEng": "Punky Funky King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3226, + "IdString": "s3227", + "NameJp": "Punky Funky God", + "NameEng": "Punky Funky God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 3227, + "IdString": "s3228", + "NameJp": "I love \"エイリアンエイリアン\"", + "NameEng": "I love \"エイリアンエイリアン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3228, + "IdString": "s3229", + "NameJp": "エイリアンエイリアンマスター", + "NameEng": "エイリアンエイリアンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3229, + "IdString": "s3230", + "NameJp": "エイリアンエイリアンキング", + "NameEng": "エイリアンエイリアンキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3230, + "IdString": "s3231", + "NameJp": "エイリアンエイリアンゴッド", + "NameEng": "エイリアンエイリアンゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3231, + "IdString": "s3232", + "NameJp": "I love \"WARNING×WARNING×WARNING\"", + "NameEng": "I love \"WARNING×WARNING×WARNING\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3232, + "IdString": "s3233", + "NameJp": "星条旗のピエロ", + "NameEng": "星条旗のピエロ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3233, + "IdString": "s3234", + "NameJp": "星条旗の女王", + "NameEng": "星条旗の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3234, + "IdString": "s3235", + "NameJp": "星条旗の女神", + "NameEng": "星条旗の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3235, + "IdString": "s3236", + "NameJp": "I love \"ピリオドのない世界\"", + "NameEng": "I love \"ピリオドのない世界\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3236, + "IdString": "s3237", + "NameJp": "ピリオドゼロマスター", + "NameEng": "ピリオドゼロマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3237, + "IdString": "s3238", + "NameJp": "ピリオドゼロキング", + "NameEng": "ピリオドゼロキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3238, + "IdString": "s3239", + "NameJp": "ピリオドゼロゴッド", + "NameEng": "ピリオドゼロゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3239, + "IdString": "s3240", + "NameJp": "I love \"クレープ・to・ミー。\"", + "NameEng": "I love \"クレープ・to・ミー。\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3240, + "IdString": "s3241", + "NameJp": "クレープ・to・マスター。", + "NameEng": "クレープ・to・マスター。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3241, + "IdString": "s3242", + "NameJp": "クレープ・to・キング。", + "NameEng": "クレープ・to・キング。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3242, + "IdString": "s3243", + "NameJp": "クレープ・to・ゴッド。", + "NameEng": "クレープ・to・ゴッド。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3243, + "IdString": "s3244", + "NameJp": "I love \"VALLISTA\"", + "NameEng": "I love \"VALLISTA\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 3244, + "IdString": "s3245", + "NameJp": "VALLISTA MASTER", + "NameEng": "VALLISTA MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3245, + "IdString": "s3246", + "NameJp": "VALLISTA KING", + "NameEng": "VALLISTA KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3246, + "IdString": "s3247", + "NameJp": "VALLISTA GOD", + "NameEng": "VALLISTA GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 3247, + "IdString": "s3248", + "NameJp": "I love \"残酷な天使のテーゼ\"!!", + "NameEng": "I love \"残酷な天使のテーゼ\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 3248, + "IdString": "s3249", + "NameJp": "この宇宙を抱いて輝く先生", + "NameEng": "この宇宙を抱いて輝く先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3249, + "IdString": "s3250", + "NameJp": "この宇宙を抱いて輝く大王", + "NameEng": "この宇宙を抱いて輝く大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3250, + "IdString": "s3251", + "NameJp": "この宇宙を抱いて輝く神", + "NameEng": "この宇宙を抱いて輝く神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 3251, + "IdString": "s3252", + "NameJp": "I love \"創聖のアクエリオン\"!!", + "NameEng": "I love \"創聖のアクエリオン\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 3252, + "IdString": "s3253", + "NameJp": "一万年と二千年前から先生", + "NameEng": "一万年と二千年前から先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3253, + "IdString": "s3254", + "NameJp": "一万年と二千年前から大王", + "NameEng": "一万年と二千年前から大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3254, + "IdString": "s3255", + "NameJp": "一万年と二千年前から神", + "NameEng": "一万年と二千年前から神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 3255, + "IdString": "s3256", + "NameJp": "I love \"カノン\"!!", + "NameEng": "I love \"カノン\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 3256, + "IdString": "s3257", + "NameJp": "Trancemaster カノン", + "NameEng": "Trancemaster カノン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3257, + "IdString": "s3258", + "NameJp": "Tranceking カノン", + "NameEng": "Tranceking カノン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3258, + "IdString": "s3259", + "NameJp": "Trancegod カノン", + "NameEng": "Trancegod カノン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 3259, + "IdString": "s3260", + "NameJp": "I love \"TECHNO COMPLEX\"", + "NameEng": "I love \"TECHNO COMPLEX\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3260, + "IdString": "s3261", + "NameJp": "TECHNO COMPLEX MASTER", + "NameEng": "TECHNO COMPLEX MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3261, + "IdString": "s3262", + "NameJp": "TECHNO COMPLEX KING", + "NameEng": "TECHNO COMPLEX KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3262, + "IdString": "s3263", + "NameJp": "TECHNO COMPLEX GOD", + "NameEng": "TECHNO COMPLEX GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3263, + "IdString": "s3264", + "NameJp": "I love \"脱法ロック\"", + "NameEng": "I love \"脱法ロック\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3264, + "IdString": "s3265", + "NameJp": "脱法先生", + "NameEng": "脱法先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3265, + "IdString": "s3266", + "NameJp": "脱法大王", + "NameEng": "脱法大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3266, + "IdString": "s3267", + "NameJp": "脱法神", + "NameEng": "脱法神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3267, + "IdString": "s3268", + "NameJp": "I love \"Bright Lights\"", + "NameEng": "I love \"Bright Lights\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3268, + "IdString": "s3269", + "NameJp": "Bright Master", + "NameEng": "Bright Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3269, + "IdString": "s3270", + "NameJp": "Bright King", + "NameEng": "Bright King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3270, + "IdString": "s3271", + "NameJp": "Bright God", + "NameEng": "Bright God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3271, + "IdString": "s3272", + "NameJp": "I love \"東方外魔伝\"", + "NameEng": "I love \"東方外魔伝\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3272, + "IdString": "s3273", + "NameJp": "変なTシャツヤロー", + "NameEng": "変なTシャツヤロー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3273, + "IdString": "s3274", + "NameJp": "変なTシャツ女王", + "NameEng": "変なTシャツ女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3274, + "IdString": "s3275", + "NameJp": "変なTシャツ女神", + "NameEng": "変なTシャツ女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3275, + "IdString": "s3276", + "NameJp": "I love \"Ring a bell beautifully\"", + "NameEng": "I love \"Ring a bell beautifully\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3276, + "IdString": "s3277", + "NameJp": "気を使う程度の先生", + "NameEng": "気を使う程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3277, + "IdString": "s3278", + "NameJp": "気を使う程度の女王", + "NameEng": "気を使う程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3278, + "IdString": "s3279", + "NameJp": "気を使う程度の女神", + "NameEng": "気を使う程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3279, + "IdString": "s3280", + "NameJp": "I love \"いーあるふぁんくらぶ\"", + "NameEng": "I love \"いーあるふぁんくらぶ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3280, + "IdString": "s3281", + "NameJp": "うぉーあいにーますたー", + "NameEng": "うぉーあいにーますたー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3281, + "IdString": "s3282", + "NameJp": "うぉーあいにーきんぐ", + "NameEng": "うぉーあいにーきんぐ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3282, + "IdString": "s3283", + "NameJp": "うぉーあいにーごっど", + "NameEng": "うぉーあいにーごっど", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3283, + "IdString": "s3284", + "NameJp": "I love \"ワールズエンド・ダンスホール\"!!", + "NameEng": "I love \"ワールズエンド・ダンスホール\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3284, + "IdString": "s3285", + "NameJp": "ホップ・ステップでマスター", + "NameEng": "ホップ・ステップでマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3285, + "IdString": "s3286", + "NameJp": "ホップ・ステップでクイーン", + "NameEng": "ホップ・ステップでクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3286, + "IdString": "s3287", + "NameJp": "ホップ・ステップでゴッデス", + "NameEng": "ホップ・ステップでゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3287, + "IdString": "s3288", + "NameJp": "I love \"ペルソナリティ・コンプレックス\"", + "NameEng": "I love \"ペルソナリティ・コンプレックス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3288, + "IdString": "s3289", + "NameJp": "うざったいな先生", + "NameEng": "うざったいな先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3289, + "IdString": "s3290", + "NameJp": "うざったいな女王", + "NameEng": "うざったいな女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3290, + "IdString": "s3291", + "NameJp": "うざったいな女神", + "NameEng": "うざったいな女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3291, + "IdString": "s3292", + "NameJp": "I love \"Moonbound feat. Yukacco\"", + "NameEng": "I love \"Moonbound feat. Yukacco\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 3292, + "IdString": "s3293", + "NameJp": "Moonbound master", + "NameEng": "Moonbound master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3293, + "IdString": "s3294", + "NameJp": "Moonbound king", + "NameEng": "Moonbound king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3294, + "IdString": "s3295", + "NameJp": "Moonbound god", + "NameEng": "Moonbound god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 3295, + "IdString": "s3296", + "NameJp": "I love \"アストロトルーパー\"!!", + "NameEng": "I love \"アストロトルーパー\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3296, + "IdString": "s3297", + "NameJp": "銀河を駆け抜ける先生", + "NameEng": "銀河を駆け抜ける先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3297, + "IdString": "s3298", + "NameJp": "銀河を駆け抜ける女王", + "NameEng": "銀河を駆け抜ける女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3298, + "IdString": "s3299", + "NameJp": "銀河を駆け抜ける女神", + "NameEng": "銀河を駆け抜ける女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3299, + "IdString": "s3300", + "NameJp": "グルーヴ六十万段", + "NameEng": "グルーヴ六十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n510曲で達成", + "UnlockRequirementEng": "Got an S for 510 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3300, + "IdString": "s3301", + "NameJp": "グルーヴ七十万段", + "NameEng": "グルーヴ七十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n520曲で達成", + "UnlockRequirementEng": "Got an S for 520 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3301, + "IdString": "s3302", + "NameJp": "グルーヴ八十万段", + "NameEng": "グルーヴ八十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n530曲で達成", + "UnlockRequirementEng": "Got an S for 530 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3302, + "IdString": "s3303", + "NameJp": "グルーヴ九十万段", + "NameEng": "グルーヴ九十万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n540曲で達成", + "UnlockRequirementEng": "Got an S for 540 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3303, + "IdString": "s3304", + "NameJp": "グルーヴ百万段", + "NameEng": "グルーヴ百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n550曲で達成", + "UnlockRequirementEng": "Got an S for 550 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3304, + "IdString": "s3305", + "NameJp": "グルーヴ二百万段", + "NameEng": "グルーヴ二百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n560曲で達成", + "UnlockRequirementEng": "Got an S for 560 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3305, + "IdString": "s3306", + "NameJp": "グルーヴ三百万段", + "NameEng": "グルーヴ三百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n570曲で達成", + "UnlockRequirementEng": "Got an S for 570 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3306, + "IdString": "s3307", + "NameJp": "グルーヴ四百万段", + "NameEng": "グルーヴ四百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n580曲で達成", + "UnlockRequirementEng": "Got an S for 580 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3307, + "IdString": "s3308", + "NameJp": "グルーヴ五百万段", + "NameEng": "グルーヴ五百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n590曲で達成", + "UnlockRequirementEng": "Got an S for 590 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3308, + "IdString": "s3309", + "NameJp": "グルーヴ六百万段", + "NameEng": "グルーヴ六百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n600曲で達成", + "UnlockRequirementEng": "Got an S for 600 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3309, + "IdString": "s3310", + "NameJp": "グルーヴ七百万段", + "NameEng": "グルーヴ七百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n610曲で達成", + "UnlockRequirementEng": "Got an S for 610 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3310, + "IdString": "s3311", + "NameJp": "グルーヴ八百万段", + "NameEng": "グルーヴ八百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n620曲で達成", + "UnlockRequirementEng": "Got an S for 620 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3311, + "IdString": "s3312", + "NameJp": "グルーヴ九百万段", + "NameEng": "グルーヴ九百万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n630曲で達成", + "UnlockRequirementEng": "Got an S for 630 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3312, + "IdString": "s3313", + "NameJp": "グルーヴ一千万段", + "NameEng": "グルーヴ一千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n640曲で達成", + "UnlockRequirementEng": "Got an S for 640 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3313, + "IdString": "s3314", + "NameJp": "グルーヴ二千万段", + "NameEng": "グルーヴ二千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n650曲で達成", + "UnlockRequirementEng": "Got an S for 650 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3314, + "IdString": "s3315", + "NameJp": "グルーヴ三千万段", + "NameEng": "グルーヴ三千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n660曲で達成", + "UnlockRequirementEng": "Got an S for 660 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3315, + "IdString": "s3316", + "NameJp": "グルーヴ四千万段", + "NameEng": "グルーヴ四千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n670曲で達成", + "UnlockRequirementEng": "Got an S for 670 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3316, + "IdString": "s3317", + "NameJp": "グルーヴ五千万段", + "NameEng": "グルーヴ五千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n680曲で達成", + "UnlockRequirementEng": "Got an S for 680 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3317, + "IdString": "s3318", + "NameJp": "グルーヴ六千万段", + "NameEng": "グルーヴ六千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n690曲で達成", + "UnlockRequirementEng": "Got an S for 690 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3318, + "IdString": "s3319", + "NameJp": "グルーヴ七千万段", + "NameEng": "グルーヴ七千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n700曲で達成", + "UnlockRequirementEng": "Got an S for 700 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3319, + "IdString": "s3320", + "NameJp": "グルーヴ八千万段", + "NameEng": "グルーヴ八千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n710曲で達成", + "UnlockRequirementEng": "Got an S for 710 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3320, + "IdString": "s3321", + "NameJp": "グルーヴ九千万段", + "NameEng": "グルーヴ九千万段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n720曲で達成", + "UnlockRequirementEng": "Got an S for 720 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3321, + "IdString": "s3322", + "NameJp": "グルーヴ一億段", + "NameEng": "グルーヴ一億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n730曲で達成", + "UnlockRequirementEng": "Got an S for 730 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3322, + "IdString": "s3323", + "NameJp": "グルーヴ二億段", + "NameEng": "グルーヴ二億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n740曲で達成", + "UnlockRequirementEng": "Got an S for 740 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3323, + "IdString": "s3324", + "NameJp": "グルーヴ三億段", + "NameEng": "グルーヴ三億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n750曲で達成", + "UnlockRequirementEng": "Got an S for 750 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3324, + "IdString": "s3325", + "NameJp": "グルーヴ四億段", + "NameEng": "グルーヴ四億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n760曲で達成", + "UnlockRequirementEng": "Got an S for 760 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3325, + "IdString": "s3326", + "NameJp": "グルーヴ五億段", + "NameEng": "グルーヴ五億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n770曲で達成", + "UnlockRequirementEng": "Got an S for 770 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3326, + "IdString": "s3327", + "NameJp": "グルーヴ六億段", + "NameEng": "グルーヴ六億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n780曲で達成", + "UnlockRequirementEng": "Got an S for 780 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3327, + "IdString": "s3328", + "NameJp": "グルーヴ七億段", + "NameEng": "グルーヴ七億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n790曲で達成", + "UnlockRequirementEng": "Got an S for 790 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3328, + "IdString": "s3329", + "NameJp": "グルーヴ八億段", + "NameEng": "グルーヴ八億段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS評価を\n800曲で達成", + "UnlockRequirementEng": "Got an S for 800 songs\nin SIMPLE, NORMAL HARD", + "Type": 9 + }, + { + "Id": 3329, + "IdString": "s3330", + "NameJp": "S+級ドリア", + "NameEng": "S+級ドリア", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n510曲で達成", + "UnlockRequirementEng": "Got an S+ for 510 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3330, + "IdString": "s3331", + "NameJp": "S+級ガム", + "NameEng": "S+級ガム", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n520曲で達成", + "UnlockRequirementEng": "Got an S+ for 520 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3331, + "IdString": "s3332", + "NameJp": "S+級せんべい", + "NameEng": "S+級せんべい", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n530曲で達成", + "UnlockRequirementEng": "Got an S+ for 530 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3332, + "IdString": "s3333", + "NameJp": "S+級親子丼", + "NameEng": "S+級親子丼", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n540曲で達成", + "UnlockRequirementEng": "Got an S+ for 540 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3333, + "IdString": "s3334", + "NameJp": "S+級いちご大福", + "NameEng": "S+級いちご大福", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n550曲で達成", + "UnlockRequirementEng": "Got an S+ for 550 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3334, + "IdString": "s3335", + "NameJp": "S+級梅ぼし", + "NameEng": "S+級梅ぼし", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n560曲で達成", + "UnlockRequirementEng": "Got an S+ for 560 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3335, + "IdString": "s3336", + "NameJp": "S+級枝豆", + "NameEng": "S+級枝豆", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n570曲で達成", + "UnlockRequirementEng": "Got an S+ for 570 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3336, + "IdString": "s3337", + "NameJp": "S+級エビピラフ", + "NameEng": "S+級エビピラフ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n580曲で達成", + "UnlockRequirementEng": "Got an S+ for 580 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3337, + "IdString": "s3338", + "NameJp": "S+級キャラメル", + "NameEng": "S+級キャラメル", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n590曲で達成", + "UnlockRequirementEng": "Got an S+ for 590 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3338, + "IdString": "s3339", + "NameJp": "S+級魚肉ソーセージ", + "NameEng": "S+級魚肉ソーセージ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n600曲で達成", + "UnlockRequirementEng": "Got an S+ for 600 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3339, + "IdString": "s3340", + "NameJp": "S+級串団子", + "NameEng": "S+級串団子", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n610曲で達成", + "UnlockRequirementEng": "Got an S+ for 610 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3340, + "IdString": "s3341", + "NameJp": "S+級コーヒー牛乳", + "NameEng": "S+級コーヒー牛乳", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n620曲で達成", + "UnlockRequirementEng": "Got an S+ for 620 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3341, + "IdString": "s3342", + "NameJp": "S+級茶碗蒸し", + "NameEng": "S+級茶碗蒸し", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n630曲で達成", + "UnlockRequirementEng": "Got an S+ for 630 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3342, + "IdString": "s3343", + "NameJp": "S+級チョコバナナ", + "NameEng": "S+級チョコバナナ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n640曲で達成", + "UnlockRequirementEng": "Got an S+ for 640 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3343, + "IdString": "s3344", + "NameJp": "S+級ちらし寿司", + "NameEng": "S+級ちらし寿司", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n650曲で達成", + "UnlockRequirementEng": "Got an S+ for 650 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3344, + "IdString": "s3345", + "NameJp": "S+級焼き鳥", + "NameEng": "S+級焼き鳥", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n660曲で達成", + "UnlockRequirementEng": "Got an S+ for 660 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3345, + "IdString": "s3346", + "NameJp": "S+級馬刺し", + "NameEng": "S+級馬刺し", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n670曲で達成", + "UnlockRequirementEng": "Got an S+ for 670 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3346, + "IdString": "s3347", + "NameJp": "S+級ハヤシライス", + "NameEng": "S+級ハヤシライス", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n680曲で達成", + "UnlockRequirementEng": "Got an S+ for 680 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3347, + "IdString": "s3348", + "NameJp": "S+級クッキー", + "NameEng": "S+級クッキー", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n690曲で達成", + "UnlockRequirementEng": "Got an S+ for 690 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3348, + "IdString": "s3349", + "NameJp": "S+級回鍋肉", + "NameEng": "S+級回鍋肉", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n700曲で達成", + "UnlockRequirementEng": "Got an S+ for 700 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3349, + "IdString": "s3350", + "NameJp": "S+級抹茶", + "NameEng": "S+級抹茶", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n710曲で達成", + "UnlockRequirementEng": "Got an S+ for 710 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3350, + "IdString": "s3351", + "NameJp": "S+級焼きおにぎり", + "NameEng": "S+級焼きおにぎり", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n720曲で達成", + "UnlockRequirementEng": "Got an S+ for 720 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3351, + "IdString": "s3352", + "NameJp": "S+級まんじゅう", + "NameEng": "S+級まんじゅう", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n730曲で達成", + "UnlockRequirementEng": "Got an S+ for 730 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3352, + "IdString": "s3353", + "NameJp": "S+級ヨーグルト", + "NameEng": "S+級ヨーグルト", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n740曲で達成", + "UnlockRequirementEng": "Got an S+ for 740 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3353, + "IdString": "s3354", + "NameJp": "S+級ラザニア", + "NameEng": "S+級ラザニア", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n750曲で達成", + "UnlockRequirementEng": "Got an S+ for 750 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3354, + "IdString": "s3355", + "NameJp": "S+級麦茶", + "NameEng": "S+級麦茶", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n760曲で達成", + "UnlockRequirementEng": "Got an S+ for 760 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3355, + "IdString": "s3356", + "NameJp": "S+級ワンタン", + "NameEng": "S+級ワンタン", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n770曲で達成", + "UnlockRequirementEng": "Got an S+ for 770 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3356, + "IdString": "s3357", + "NameJp": "S+級ロールキャベツ", + "NameEng": "S+級ロールキャベツ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n780曲で達成", + "UnlockRequirementEng": "Got an S+ for 780 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3357, + "IdString": "s3358", + "NameJp": "S+級パンケーキ", + "NameEng": "S+級パンケーキ", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n790曲で達成", + "UnlockRequirementEng": "Got an S+ for 790 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3358, + "IdString": "s3359", + "NameJp": "S+級アイスクリーム", + "NameEng": "S+級アイスクリーム", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS+評価を\n800曲で達成", + "UnlockRequirementEng": "Got an S+ for 800 songs\nin SIMPLE, NORMAL HARD", + "Type": 10 + }, + { + "Id": 3359, + "IdString": "s3360", + "NameJp": "真・十溝段", + "NameEng": "真・十溝段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n510曲で達成", + "UnlockRequirementEng": "Got an S++ for 510 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3360, + "IdString": "s3361", + "NameJp": "真・百溝段", + "NameEng": "真・百溝段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n520曲で達成", + "UnlockRequirementEng": "Got an S++ for 520 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3361, + "IdString": "s3362", + "NameJp": "真・千溝段", + "NameEng": "真・千溝段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n530曲で達成", + "UnlockRequirementEng": "Got an S++ for 530 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3362, + "IdString": "s3363", + "NameJp": "真・一澗段", + "NameEng": "真・一澗段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n540曲で達成", + "UnlockRequirementEng": "Got an S++ for 540 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3363, + "IdString": "s3364", + "NameJp": "真・十澗段", + "NameEng": "真・十澗段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n550曲で達成", + "UnlockRequirementEng": "Got an S++ for 550 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3364, + "IdString": "s3365", + "NameJp": "真・百澗段", + "NameEng": "真・百澗段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n560曲で達成", + "UnlockRequirementEng": "Got an S++ for 560 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3365, + "IdString": "s3366", + "NameJp": "真・千澗段", + "NameEng": "真・千澗段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n570曲で達成", + "UnlockRequirementEng": "Got an S++ for 570 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3366, + "IdString": "s3367", + "NameJp": "真・一正段", + "NameEng": "真・一正段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n580曲で達成", + "UnlockRequirementEng": "Got an S++ for 580 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3367, + "IdString": "s3368", + "NameJp": "真・十正段", + "NameEng": "真・十正段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n590曲で達成", + "UnlockRequirementEng": "Got an S++ for 590 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3368, + "IdString": "s3369", + "NameJp": "真・百正段", + "NameEng": "真・百正段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n600曲で達成", + "UnlockRequirementEng": "Got an S++ for 600 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3369, + "IdString": "s3370", + "NameJp": "真・千正段", + "NameEng": "真・千正段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n610曲で達成", + "UnlockRequirementEng": "Got an S++ for 610 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3370, + "IdString": "s3371", + "NameJp": "真・一載段", + "NameEng": "真・一載段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n620曲で達成", + "UnlockRequirementEng": "Got an S++ for 620 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3371, + "IdString": "s3372", + "NameJp": "真・十載段", + "NameEng": "真・十載段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n630曲で達成", + "UnlockRequirementEng": "Got an S++ for 630 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3372, + "IdString": "s3373", + "NameJp": "真・百載段", + "NameEng": "真・百載段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n640曲で達成", + "UnlockRequirementEng": "Got an S++ for 640 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3373, + "IdString": "s3374", + "NameJp": "真・千載段", + "NameEng": "真・千載段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n650曲で達成", + "UnlockRequirementEng": "Got an S++ for 650 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3374, + "IdString": "s3375", + "NameJp": "真・一極段", + "NameEng": "真・一極段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n660曲で達成", + "UnlockRequirementEng": "Got an S++ for 660 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3375, + "IdString": "s3376", + "NameJp": "真・十極段", + "NameEng": "真・十極段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n670曲で達成", + "UnlockRequirementEng": "Got an S++ for 670 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3376, + "IdString": "s3377", + "NameJp": "真・百極段", + "NameEng": "真・百極段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n680曲で達成", + "UnlockRequirementEng": "Got an S++ for 680 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3377, + "IdString": "s3378", + "NameJp": "真・千極段", + "NameEng": "真・千極段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n690曲で達成", + "UnlockRequirementEng": "Got an S++ for 690 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3378, + "IdString": "s3379", + "NameJp": "真・一恒河沙段", + "NameEng": "真・一恒河沙段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n700曲で達成", + "UnlockRequirementEng": "Got an S++ for 700 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3379, + "IdString": "s3380", + "NameJp": "真・十恒河沙段", + "NameEng": "真・十恒河沙段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n710曲で達成", + "UnlockRequirementEng": "Got an S++ for 710 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3380, + "IdString": "s3381", + "NameJp": "真・百恒河沙段", + "NameEng": "真・百恒河沙段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n720曲で達成", + "UnlockRequirementEng": "Got an S++ for 720 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3381, + "IdString": "s3382", + "NameJp": "真・千恒河沙段", + "NameEng": "真・千恒河沙段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n730曲で達成", + "UnlockRequirementEng": "Got an S++ for 730 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3382, + "IdString": "s3383", + "NameJp": "真・一阿僧祇段", + "NameEng": "真・一阿僧祇段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n740曲で達成", + "UnlockRequirementEng": "Got an S++ for 740 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3383, + "IdString": "s3384", + "NameJp": "真・十阿僧祇段", + "NameEng": "真・十阿僧祇段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n750曲で達成", + "UnlockRequirementEng": "Got an S++ for 750 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3384, + "IdString": "s3385", + "NameJp": "真・百阿僧祇段", + "NameEng": "真・百阿僧祇段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n760曲で達成", + "UnlockRequirementEng": "Got an S++ for 760 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3385, + "IdString": "s3386", + "NameJp": "真・千阿僧祇段", + "NameEng": "真・千阿僧祇段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n770曲で達成", + "UnlockRequirementEng": "Got an S++ for 770 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3386, + "IdString": "s3387", + "NameJp": "真・一那由多段", + "NameEng": "真・一那由多段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n780曲で達成", + "UnlockRequirementEng": "Got an S++ for 780 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3387, + "IdString": "s3388", + "NameJp": "真・十那由多段", + "NameEng": "真・十那由多段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n790曲で達成", + "UnlockRequirementEng": "Got an S++ for 790 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3388, + "IdString": "s3389", + "NameJp": "真・百那由多段", + "NameEng": "真・百那由多段", + "UnlockRequirementJp": "SIMPLE,NORMAL,HARDのS++評価を\n800曲で達成", + "UnlockRequirementEng": "Got an S++ for 800 songs\nin SIMPLE, NORMAL HARD", + "Type": 11 + }, + { + "Id": 3389, + "IdString": "s3390", + "NameJp": "神・伍拾捌段", + "NameEng": "神・伍拾捌段", + "UnlockRequirementJp": "PERFECTを1525ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1525 stages", + "Type": 28 + }, + { + "Id": 3390, + "IdString": "s3391", + "NameJp": "神・伍拾玖段", + "NameEng": "神・伍拾玖段", + "UnlockRequirementJp": "PERFECTを1550ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1550 stages", + "Type": 28 + }, + { + "Id": 3391, + "IdString": "s3392", + "NameJp": "神・陸拾段", + "NameEng": "神・陸拾段", + "UnlockRequirementJp": "PERFECTを1575ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1575 stages", + "Type": 28 + }, + { + "Id": 3392, + "IdString": "s3393", + "NameJp": "神・陸拾壱段", + "NameEng": "神・陸拾壱段", + "UnlockRequirementJp": "PERFECTを1600ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1600 stages", + "Type": 28 + }, + { + "Id": 3393, + "IdString": "s3394", + "NameJp": "神・陸拾弐段", + "NameEng": "神・陸拾弐段", + "UnlockRequirementJp": "PERFECTを1625ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1625 stages", + "Type": 28 + }, + { + "Id": 3394, + "IdString": "s3395", + "NameJp": "神・陸拾参段", + "NameEng": "神・陸拾参段", + "UnlockRequirementJp": "PERFECTを1650ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1650 stages", + "Type": 28 + }, + { + "Id": 3395, + "IdString": "s3396", + "NameJp": "神・陸拾肆段", + "NameEng": "神・陸拾肆段", + "UnlockRequirementJp": "PERFECTを1675ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1675 stages", + "Type": 28 + }, + { + "Id": 3396, + "IdString": "s3397", + "NameJp": "神・陸拾伍段", + "NameEng": "神・陸拾伍段", + "UnlockRequirementJp": "PERFECTを1700ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1700 stages", + "Type": 28 + }, + { + "Id": 3397, + "IdString": "s3398", + "NameJp": "神・陸拾陸段", + "NameEng": "神・陸拾陸段", + "UnlockRequirementJp": "PERFECTを1725ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1725 stages", + "Type": 28 + }, + { + "Id": 3398, + "IdString": "s3399", + "NameJp": "神・陸拾漆段", + "NameEng": "神・陸拾漆段", + "UnlockRequirementJp": "PERFECTを1750ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1750 stages", + "Type": 28 + }, + { + "Id": 3399, + "IdString": "s3400", + "NameJp": "神・陸拾捌段", + "NameEng": "神・陸拾捌段", + "UnlockRequirementJp": "PERFECTを1775ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1775 stages", + "Type": 28 + }, + { + "Id": 3400, + "IdString": "s3401", + "NameJp": "神・陸拾玖段", + "NameEng": "神・陸拾玖段", + "UnlockRequirementJp": "PERFECTを1800ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1800 stages", + "Type": 28 + }, + { + "Id": 3401, + "IdString": "s3402", + "NameJp": "神・漆拾段", + "NameEng": "神・漆拾段", + "UnlockRequirementJp": "PERFECTを1825ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1825 stages", + "Type": 28 + }, + { + "Id": 3402, + "IdString": "s3403", + "NameJp": "神・漆拾壱段", + "NameEng": "神・漆拾壱段", + "UnlockRequirementJp": "PERFECTを1850ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1850 stages", + "Type": 28 + }, + { + "Id": 3403, + "IdString": "s3404", + "NameJp": "神・漆拾弐段", + "NameEng": "神・漆拾弐段", + "UnlockRequirementJp": "PERFECTを1875ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1875 stages", + "Type": 28 + }, + { + "Id": 3404, + "IdString": "s3405", + "NameJp": "神・漆拾参段", + "NameEng": "神・漆拾参段", + "UnlockRequirementJp": "PERFECTを1900ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1900 stages", + "Type": 28 + }, + { + "Id": 3405, + "IdString": "s3406", + "NameJp": "神・漆拾肆段", + "NameEng": "神・漆拾肆段", + "UnlockRequirementJp": "PERFECTを1925ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1925 stages", + "Type": 28 + }, + { + "Id": 3406, + "IdString": "s3407", + "NameJp": "神・漆拾伍段", + "NameEng": "神・漆拾伍段", + "UnlockRequirementJp": "PERFECTを1950ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1950 stages", + "Type": 28 + }, + { + "Id": 3407, + "IdString": "s3408", + "NameJp": "神・漆拾陸段", + "NameEng": "神・漆拾陸段", + "UnlockRequirementJp": "PERFECTを1975ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 1975 stages", + "Type": 28 + }, + { + "Id": 3408, + "IdString": "s3409", + "NameJp": "神・漆拾漆段", + "NameEng": "神・漆拾漆段", + "UnlockRequirementJp": "PERFECTを2000ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2000 stages", + "Type": 28 + }, + { + "Id": 3409, + "IdString": "s3410", + "NameJp": "神・漆拾捌段", + "NameEng": "神・漆拾捌段", + "UnlockRequirementJp": "PERFECTを2025ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2025 stages", + "Type": 28 + }, + { + "Id": 3410, + "IdString": "s3411", + "NameJp": "神・漆拾玖段", + "NameEng": "神・漆拾玖段", + "UnlockRequirementJp": "PERFECTを2050ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2050 stages", + "Type": 28 + }, + { + "Id": 3411, + "IdString": "s3412", + "NameJp": "神・捌拾段", + "NameEng": "神・捌拾段", + "UnlockRequirementJp": "PERFECTを2075ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2075 stages", + "Type": 28 + }, + { + "Id": 3412, + "IdString": "s3413", + "NameJp": "神・捌拾壱段", + "NameEng": "神・捌拾壱段", + "UnlockRequirementJp": "PERFECTを2100ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2100 stages", + "Type": 28 + }, + { + "Id": 3413, + "IdString": "s3414", + "NameJp": "神・捌拾弐段", + "NameEng": "神・捌拾弐段", + "UnlockRequirementJp": "PERFECTを2125ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2125 stages", + "Type": 28 + }, + { + "Id": 3414, + "IdString": "s3415", + "NameJp": "神・捌拾参段", + "NameEng": "神・捌拾参段", + "UnlockRequirementJp": "PERFECTを2150ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2150 stages", + "Type": 28 + }, + { + "Id": 3415, + "IdString": "s3416", + "NameJp": "神・捌拾肆段", + "NameEng": "神・捌拾肆段", + "UnlockRequirementJp": "PERFECTを2175ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2175 stages", + "Type": 28 + }, + { + "Id": 3416, + "IdString": "s3417", + "NameJp": "神・捌拾伍段", + "NameEng": "神・捌拾伍段", + "UnlockRequirementJp": "PERFECTを2200ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2200 stages", + "Type": 28 + }, + { + "Id": 3417, + "IdString": "s3418", + "NameJp": "神・捌拾陸段", + "NameEng": "神・捌拾陸段", + "UnlockRequirementJp": "PERFECTを2225ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2225 stages", + "Type": 28 + }, + { + "Id": 3418, + "IdString": "s3419", + "NameJp": "神・捌拾漆段", + "NameEng": "神・捌拾漆段", + "UnlockRequirementJp": "PERFECTを2250ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2250 stages", + "Type": 28 + }, + { + "Id": 3419, + "IdString": "s3420", + "NameJp": "神・捌拾捌段", + "NameEng": "神・捌拾捌段", + "UnlockRequirementJp": "PERFECTを2275ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2275 stages", + "Type": 28 + }, + { + "Id": 3420, + "IdString": "s3421", + "NameJp": "神・捌拾玖段", + "NameEng": "神・捌拾玖段", + "UnlockRequirementJp": "PERFECTを2300ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2300 stages", + "Type": 28 + }, + { + "Id": 3421, + "IdString": "s3422", + "NameJp": "神・玖拾段", + "NameEng": "神・玖拾段", + "UnlockRequirementJp": "PERFECTを2325ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2325 stages", + "Type": 28 + }, + { + "Id": 3422, + "IdString": "s3423", + "NameJp": "神・玖拾壱段", + "NameEng": "神・玖拾壱段", + "UnlockRequirementJp": "PERFECTを2350ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2350 stages", + "Type": 28 + }, + { + "Id": 3423, + "IdString": "s3424", + "NameJp": "神・玖拾弐段", + "NameEng": "神・玖拾弐段", + "UnlockRequirementJp": "PERFECTを2375ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2375 stages", + "Type": 28 + }, + { + "Id": 3424, + "IdString": "s3425", + "NameJp": "神・玖拾参段", + "NameEng": "神・玖拾参段", + "UnlockRequirementJp": "PERFECTを2400ステージで達成", + "UnlockRequirementEng": "Got a PERFECT in 2400 stages", + "Type": 28 + }, + { + "Id": 3425, + "IdString": "s3426", + "NameJp": "S級武田勝頼", + "NameEng": "S級武田勝頼", + "UnlockRequirementJp": "S評価をSIMPLE525ステージで達成", + "UnlockRequirementEng": "Got an S for 525 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 3426, + "IdString": "s3427", + "NameJp": "S級竹中半兵衛", + "NameEng": "S級竹中半兵衛", + "UnlockRequirementJp": "S評価をSIMPLE550ステージで達成", + "UnlockRequirementEng": "Got an S for 550 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 3427, + "IdString": "s3428", + "NameJp": "S級加藤清正", + "NameEng": "S級加藤清正", + "UnlockRequirementJp": "S評価をSIMPLE575ステージで達成", + "UnlockRequirementEng": "Got an S for 575 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 3428, + "IdString": "s3429", + "NameJp": "S級山内一豊", + "NameEng": "S級山内一豊", + "UnlockRequirementJp": "S評価をSIMPLE600ステージで達成", + "UnlockRequirementEng": "Got an S for 600 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 3429, + "IdString": "s3430", + "NameJp": "S級堀川国広", + "NameEng": "S級堀川国広", + "UnlockRequirementJp": "S評価をSIMPLE625ステージで達成", + "UnlockRequirementEng": "Got an S for 625 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 3430, + "IdString": "s3431", + "NameJp": "S級浦島虎徹", + "NameEng": "S級浦島虎徹", + "UnlockRequirementJp": "S評価をSIMPLE650ステージで達成", + "UnlockRequirementEng": "Got an S for 650 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 3431, + "IdString": "s3432", + "NameJp": "S級にっかり青江", + "NameEng": "S級にっかり青江", + "UnlockRequirementJp": "S評価をSIMPLE675ステージで達成", + "UnlockRequirementEng": "Got an S for 675 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 3432, + "IdString": "s3433", + "NameJp": "S級骨喰藤四郎", + "NameEng": "S級骨喰藤四郎", + "UnlockRequirementJp": "S評価をSIMPLE700ステージで達成", + "UnlockRequirementEng": "Got an S for 700 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 3433, + "IdString": "s3434", + "NameJp": "S級加藤清光", + "NameEng": "S級加藤清光", + "UnlockRequirementJp": "S評価をSIMPLE725ステージで達成", + "UnlockRequirementEng": "Got an S for 725 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 3434, + "IdString": "s3435", + "NameJp": "S級へし切り長谷部", + "NameEng": "S級へし切り長谷部", + "UnlockRequirementJp": "S評価をSIMPLE750ステージで達成", + "UnlockRequirementEng": "Got an S for 750 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 3435, + "IdString": "s3436", + "NameJp": "S級蜂須賀虎徹", + "NameEng": "S級蜂須賀虎徹", + "UnlockRequirementJp": "S評価をSIMPLE775ステージで達成", + "UnlockRequirementEng": "Got an S for 775 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 3436, + "IdString": "s3437", + "NameJp": "S級山姥切国広", + "NameEng": "S級山姥切国広", + "UnlockRequirementJp": "S評価をSIMPLE800ステージで達成", + "UnlockRequirementEng": "Got an S for 800 stages in SIMPLE mode", + "Type": 5 + }, + { + "Id": 3437, + "IdString": "s3438", + "NameJp": "S級服部半蔵", + "NameEng": "S級服部半蔵", + "UnlockRequirementJp": "S評価をNORMAL525ステージで達成", + "UnlockRequirementEng": "Got an S for 525 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 3438, + "IdString": "s3439", + "NameJp": "S級石川五右衛門", + "NameEng": "S級石川五右衛門", + "UnlockRequirementJp": "S評価をNORMAL550ステージで達成", + "UnlockRequirementEng": "Got an S for 550 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 3439, + "IdString": "s3440", + "NameJp": "S級風魔小太郎", + "NameEng": "S級風魔小太郎", + "UnlockRequirementJp": "S評価をNORMAL575ステージで達成", + "UnlockRequirementEng": "Got an S for 575 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 3440, + "IdString": "s3441", + "NameJp": "S級千利休", + "NameEng": "S級千利休", + "UnlockRequirementJp": "S評価をNORMAL600ステージで達成", + "UnlockRequirementEng": "Got an S for 600 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 3441, + "IdString": "s3442", + "NameJp": "S級長曽禰虎徹", + "NameEng": "S級長曽禰虎徹", + "UnlockRequirementJp": "S評価をNORMAL625ステージで達成", + "UnlockRequirementEng": "Got an S for 625 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 3442, + "IdString": "s3443", + "NameJp": "S級陸奥守吉行", + "NameEng": "S級陸奥守吉行", + "UnlockRequirementJp": "S評価をNORMAL650ステージで達成", + "UnlockRequirementEng": "Got an S for 650 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 3443, + "IdString": "s3444", + "NameJp": "S級和泉守兼定", + "NameEng": "S級和泉守兼定", + "UnlockRequirementJp": "S評価をNORMAL675ステージで達成", + "UnlockRequirementEng": "Got an S for 675 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 3444, + "IdString": "s3445", + "NameJp": "S級大倶利伽羅", + "NameEng": "S級大倶利伽羅", + "UnlockRequirementJp": "S評価をNORMAL700ステージで達成", + "UnlockRequirementEng": "Got an S for 700 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 3445, + "IdString": "s3446", + "NameJp": "S級一期一振", + "NameEng": "S級一期一振", + "UnlockRequirementJp": "S評価をNORMAL725ステージで達成", + "UnlockRequirementEng": "Got an S for 725 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 3446, + "IdString": "s3447", + "NameJp": "S級髭切", + "NameEng": "S級髭切", + "UnlockRequirementJp": "S評価をNORMAL750ステージで達成", + "UnlockRequirementEng": "Got an S for 750 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 3447, + "IdString": "s3448", + "NameJp": "S級膝丸", + "NameEng": "S級膝丸", + "UnlockRequirementJp": "S評価をNORMAL775ステージで達成", + "UnlockRequirementEng": "Got an S for 775 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 3448, + "IdString": "s3449", + "NameJp": "S級獅子王", + "NameEng": "S級獅子王", + "UnlockRequirementJp": "S評価をNORMAL800ステージで達成", + "UnlockRequirementEng": "Got an S for 800 stages in NORMAL mode", + "Type": 6 + }, + { + "Id": 3449, + "IdString": "s3450", + "NameJp": "S級真田信之", + "NameEng": "S級真田信之", + "UnlockRequirementJp": "S評価をHARD525ステージで達成", + "UnlockRequirementEng": "Got an S for 525 stages in HARD mode", + "Type": 7 + }, + { + "Id": 3450, + "IdString": "s3451", + "NameJp": "S級真田昌幸", + "NameEng": "S級真田昌幸", + "UnlockRequirementJp": "S評価をHARD550ステージで達成", + "UnlockRequirementEng": "Got an S for 550 stages in HARD mode", + "Type": 7 + }, + { + "Id": 3451, + "IdString": "s3452", + "NameJp": "S級佐々木小次郎", + "NameEng": "S級佐々木小次郎", + "UnlockRequirementJp": "S評価をHARD575ステージで達成", + "UnlockRequirementEng": "Got an S for 575 stages in HARD mode", + "Type": 7 + }, + { + "Id": 3452, + "IdString": "s3453", + "NameJp": "S級宮本武蔵", + "NameEng": "S級宮本武蔵", + "UnlockRequirementJp": "S評価をHARD600ステージで達成", + "UnlockRequirementEng": "Got an S for 600 stages in HARD mode", + "Type": 7 + }, + { + "Id": 3453, + "IdString": "s3454", + "NameJp": "S級小狐丸", + "NameEng": "S級小狐丸", + "UnlockRequirementJp": "S評価をHARD625ステージで達成", + "UnlockRequirementEng": "Got an S for 625 stages in HARD mode", + "Type": 7 + }, + { + "Id": 3454, + "IdString": "s3455", + "NameJp": "S級鬼丸国綱", + "NameEng": "S級鬼丸国綱", + "UnlockRequirementJp": "S評価をHARD650ステージで達成", + "UnlockRequirementEng": "Got an S for 650 stages in HARD mode", + "Type": 7 + }, + { + "Id": 3455, + "IdString": "s3456", + "NameJp": "S級数珠丸恒次", + "NameEng": "S級数珠丸恒次", + "UnlockRequirementJp": "S評価をHARD675ステージで達成", + "UnlockRequirementEng": "Got an S for 675 stages in HARD mode", + "Type": 7 + }, + { + "Id": 3456, + "IdString": "s3457", + "NameJp": "S級大典太光世", + "NameEng": "S級大典太光世", + "UnlockRequirementJp": "S評価をHARD700ステージで達成", + "UnlockRequirementEng": "Got an S for 700 stages in HARD mode", + "Type": 7 + }, + { + "Id": 3457, + "IdString": "s3458", + "NameJp": "S級童子切安綱", + "NameEng": "S級童子切安綱", + "UnlockRequirementJp": "S評価をHARD725ステージで達成", + "UnlockRequirementEng": "Got an S for 725 stages in HARD mode", + "Type": 7 + }, + { + "Id": 3458, + "IdString": "s3459", + "NameJp": "S級三日月宗近", + "NameEng": "S級三日月宗近", + "UnlockRequirementJp": "S評価をHARD750ステージで達成", + "UnlockRequirementEng": "Got an S for 750 stages in HARD mode", + "Type": 7 + }, + { + "Id": 3459, + "IdString": "s3460", + "NameJp": "S級七星剣", + "NameEng": "S級七星剣", + "UnlockRequirementJp": "S評価をHARD775ステージで達成", + "UnlockRequirementEng": "Got an S for 775 stages in HARD mode", + "Type": 7 + }, + { + "Id": 3460, + "IdString": "s3461", + "NameJp": "S級天叢雲剣", + "NameEng": "S級天叢雲剣", + "UnlockRequirementJp": "S評価をHARD800ステージで達成", + "UnlockRequirementEng": "Got an S for 800 stages in HARD mode", + "Type": 7 + }, + { + "Id": 3461, + "IdString": "s3462", + "NameJp": "エンジェル", + "NameEng": "エンジェル", + "UnlockRequirementJp": "NO\u3000MISSを1550ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1550 stages", + "Type": 3 + }, + { + "Id": 3462, + "IdString": "s3463", + "NameJp": "アークエンジェル", + "NameEng": "アークエンジェル", + "UnlockRequirementJp": "NO\u3000MISSを1600ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1600 stages", + "Type": 3 + }, + { + "Id": 3463, + "IdString": "s3464", + "NameJp": "プリンシパリティ", + "NameEng": "プリンシパリティ", + "UnlockRequirementJp": "NO\u3000MISSを1650ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1650 stages", + "Type": 3 + }, + { + "Id": 3464, + "IdString": "s3465", + "NameJp": "パワー", + "NameEng": "パワー", + "UnlockRequirementJp": "NO\u3000MISSを1700ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1700 stages", + "Type": 3 + }, + { + "Id": 3465, + "IdString": "s3466", + "NameJp": "ヴァーチャー", + "NameEng": "ヴァーチャー", + "UnlockRequirementJp": "NO\u3000MISSを1750ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1750 stages", + "Type": 3 + }, + { + "Id": 3466, + "IdString": "s3467", + "NameJp": "ドミニオン", + "NameEng": "ドミニオン", + "UnlockRequirementJp": "NO\u3000MISSを1800ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1800 stages", + "Type": 3 + }, + { + "Id": 3467, + "IdString": "s3468", + "NameJp": "ソロネ", + "NameEng": "ソロネ", + "UnlockRequirementJp": "NO\u3000MISSを1850ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1850 stages", + "Type": 3 + }, + { + "Id": 3468, + "IdString": "s3469", + "NameJp": "ケルビム", + "NameEng": "ケルビム", + "UnlockRequirementJp": "NO\u3000MISSを1900ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1900 stages", + "Type": 3 + }, + { + "Id": 3469, + "IdString": "s3470", + "NameJp": "セラフィム", + "NameEng": "セラフィム", + "UnlockRequirementJp": "NO\u3000MISSを1950ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 1950 stages", + "Type": 3 + }, + { + "Id": 3470, + "IdString": "s3471", + "NameJp": "サンダルフォン", + "NameEng": "サンダルフォン", + "UnlockRequirementJp": "NO\u3000MISSを2000ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 2000 stages", + "Type": 3 + }, + { + "Id": 3471, + "IdString": "s3472", + "NameJp": "ラグエル", + "NameEng": "ラグエル", + "UnlockRequirementJp": "NO\u3000MISSを2050ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 2050 stages", + "Type": 3 + }, + { + "Id": 3472, + "IdString": "s3473", + "NameJp": "ラジエル", + "NameEng": "ラジエル", + "UnlockRequirementJp": "NO\u3000MISSを2100ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 2100 stages", + "Type": 3 + }, + { + "Id": 3473, + "IdString": "s3474", + "NameJp": "カマエル", + "NameEng": "カマエル", + "UnlockRequirementJp": "NO\u3000MISSを2150ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 2150 stages", + "Type": 3 + }, + { + "Id": 3474, + "IdString": "s3475", + "NameJp": "メタトロン", + "NameEng": "メタトロン", + "UnlockRequirementJp": "NO\u3000MISSを2200ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 2200 stages", + "Type": 3 + }, + { + "Id": 3475, + "IdString": "s3476", + "NameJp": "ウリエル", + "NameEng": "ウリエル", + "UnlockRequirementJp": "NO\u3000MISSを2250ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 2250 stages", + "Type": 3 + }, + { + "Id": 3476, + "IdString": "s3477", + "NameJp": "ラファエル", + "NameEng": "ラファエル", + "UnlockRequirementJp": "NO\u3000MISSを2300ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 2300 stages", + "Type": 3 + }, + { + "Id": 3477, + "IdString": "s3478", + "NameJp": "ガブリエル", + "NameEng": "ガブリエル", + "UnlockRequirementJp": "NO\u3000MISSを2350ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 2350 stages", + "Type": 3 + }, + { + "Id": 3478, + "IdString": "s3479", + "NameJp": "ミカエル", + "NameEng": "ミカエル", + "UnlockRequirementJp": "NO\u3000MISSを2400ステージで達成", + "UnlockRequirementEng": "Got a NO MISS in 2400 stages", + "Type": 3 + }, + { + "Id": 3479, + "IdString": "s3480", + "NameJp": "獏", + "NameEng": "獏", + "UnlockRequirementJp": "FULL\u3000CHAINを1550ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1550 stages", + "Type": 4 + }, + { + "Id": 3480, + "IdString": "s3481", + "NameJp": "鵺", + "NameEng": "鵺", + "UnlockRequirementJp": "FULL\u3000CHAINを1600ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1600 stages", + "Type": 4 + }, + { + "Id": 3481, + "IdString": "s3482", + "NameJp": "黒龍", + "NameEng": "黒龍", + "UnlockRequirementJp": "FULL\u3000CHAINを1650ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1650 stages", + "Type": 4 + }, + { + "Id": 3482, + "IdString": "s3483", + "NameJp": "白龍", + "NameEng": "白龍", + "UnlockRequirementJp": "FULL\u3000CHAINを1700ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1700 stages", + "Type": 4 + }, + { + "Id": 3483, + "IdString": "s3484", + "NameJp": "黄龍", + "NameEng": "黄龍", + "UnlockRequirementJp": "FULL\u3000CHAINを1750ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1750 stages", + "Type": 4 + }, + { + "Id": 3484, + "IdString": "s3485", + "NameJp": "ガルダ", + "NameEng": "ガルダ", + "UnlockRequirementJp": "FULL\u3000CHAINを1800ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1800 stages", + "Type": 4 + }, + { + "Id": 3485, + "IdString": "s3486", + "NameJp": "ナーガ", + "NameEng": "ナーガ", + "UnlockRequirementJp": "FULL\u3000CHAINを1850ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1850 stages", + "Type": 4 + }, + { + "Id": 3486, + "IdString": "s3487", + "NameJp": "ラークシャサ", + "NameEng": "ラークシャサ", + "UnlockRequirementJp": "FULL\u3000CHAINを1900ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1900 stages", + "Type": 4 + }, + { + "Id": 3487, + "IdString": "s3488", + "NameJp": "ハヌマーン", + "NameEng": "ハヌマーン", + "UnlockRequirementJp": "FULL\u3000CHAINを1950ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 1950 stages", + "Type": 4 + }, + { + "Id": 3488, + "IdString": "s3489", + "NameJp": "ヴリトラ", + "NameEng": "ヴリトラ", + "UnlockRequirementJp": "FULL\u3000CHAINを2000ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 2000 stages", + "Type": 4 + }, + { + "Id": 3489, + "IdString": "s3490", + "NameJp": "インドラ", + "NameEng": "インドラ", + "UnlockRequirementJp": "FULL\u3000CHAINを2050ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 2050 stages", + "Type": 4 + }, + { + "Id": 3490, + "IdString": "s3491", + "NameJp": "ガネーシャ", + "NameEng": "ガネーシャ", + "UnlockRequirementJp": "FULL\u3000CHAINを2100ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 2100 stages", + "Type": 4 + }, + { + "Id": 3491, + "IdString": "s3492", + "NameJp": "サラスヴァティ", + "NameEng": "サラスヴァティ", + "UnlockRequirementJp": "FULL\u3000CHAINを2150ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 2150 stages", + "Type": 4 + }, + { + "Id": 3492, + "IdString": "s3493", + "NameJp": "アプサラス", + "NameEng": "アプサラス", + "UnlockRequirementJp": "FULL\u3000CHAINを2200ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 2200 stages", + "Type": 4 + }, + { + "Id": 3493, + "IdString": "s3494", + "NameJp": "カーリー", + "NameEng": "カーリー", + "UnlockRequirementJp": "FULL\u3000CHAINを2250ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 2250 stages", + "Type": 4 + }, + { + "Id": 3494, + "IdString": "s3495", + "NameJp": "シヴァ", + "NameEng": "シヴァ", + "UnlockRequirementJp": "FULL\u3000CHAINを2300ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 2300 stages", + "Type": 4 + }, + { + "Id": 3495, + "IdString": "s3496", + "NameJp": "ヴィシュヌ", + "NameEng": "ヴィシュヌ", + "UnlockRequirementJp": "FULL\u3000CHAINを2350ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 2350 stages", + "Type": 4 + }, + { + "Id": 3496, + "IdString": "s3497", + "NameJp": "ブラフマー", + "NameEng": "ブラフマー", + "UnlockRequirementJp": "FULL\u3000CHAINを2400ステージで達成", + "UnlockRequirementEng": "Got a FULL CHAIN in 2400 stages", + "Type": 4 + }, + { + "Id": 3497, + "IdString": "s3498", + "NameJp": "DREAM PARTY!", + "NameEng": "DREAM PARTY!", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3498, + "IdString": "s3499", + "NameJp": "夢のパーティーに飛び込もう!", + "NameEng": "夢のパーティーに飛び込もう!", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3499, + "IdString": "s3500", + "NameJp": "GCナビゲーター(バイト)", + "NameEng": "GCナビゲーター(バイト)", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3500, + "IdString": "s3501", + "NameJp": "うわぁ、夢みたい!", + "NameEng": "うわぁ、夢みたい!", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3501, + "IdString": "s3502", + "NameJp": "パ、パ、パ、パーフェクト!?", + "NameEng": "パ、パ、パ、パーフェクト!?", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3502, + "IdString": "s3503", + "NameJp": "普通の高校生", + "NameEng": "普通の高校生", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3503, + "IdString": "s3504", + "NameJp": "期待の新人", + "NameEng": "期待の新人", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3504, + "IdString": "s3505", + "NameJp": "ピッチピチ16歳", + "NameEng": "ピッチピチ16歳", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3505, + "IdString": "s3506", + "NameJp": "ふわっふわ15歳", + "NameEng": "ふわっふわ15歳", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3506, + "IdString": "s3507", + "NameJp": "がんばユメちゃん", + "NameEng": "がんばユメちゃん", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3507, + "IdString": "s3508", + "NameJp": "がんばリンカちゃん!", + "NameEng": "がんばリンカちゃん!", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3508, + "IdString": "s3509", + "NameJp": "お断ユメちゃん!", + "NameEng": "お断ユメちゃん!", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3509, + "IdString": "s3510", + "NameJp": "S+級カニカマ", + "NameEng": "S+級カニカマ", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3510, + "IdString": "s3511", + "NameJp": "I love ユメ", + "NameEng": "I love ユメ", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3511, + "IdString": "s3512", + "NameJp": "3EX", + "NameEng": "3EX", + "UnlockRequirementJp": "『3EX稼働記念』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3512, + "IdString": "s3513", + "NameJp": "MikuRinGod", + "NameEng": "MikuRinGod", + "UnlockRequirementJp": "『初音ミク&鏡音リン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3513, + "IdString": "s3514", + "NameJp": "ミラクルキュート!", + "NameEng": "ミラクルキュート!", + "UnlockRequirementJp": "『初音ミク&鏡音リン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3514, + "IdString": "s3515", + "NameJp": "NMMN(ネギミカンミカンネギ)", + "NameEng": "NMMN(ネギミカンミカンネギ)", + "UnlockRequirementJp": "『初音ミク&鏡音リン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3515, + "IdString": "s3516", + "NameJp": "リンちゃんマジ天使", + "NameEng": "リンちゃんマジ天使", + "UnlockRequirementJp": "『初音ミク&鏡音リン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3516, + "IdString": "s3517", + "NameJp": "冬のミクさんマジ天使", + "NameEng": "冬のミクさんマジ天使", + "UnlockRequirementJp": "『初音ミク&鏡音リン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3517, + "IdString": "s3518", + "NameJp": "S+級ロードローラー", + "NameEng": "S+級ロードローラー", + "UnlockRequirementJp": "『初音ミク&鏡音リン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3518, + "IdString": "s3519", + "NameJp": "ミクかわいいよミク", + "NameEng": "ミクかわいいよミク", + "UnlockRequirementJp": "『初音ミク&鏡音リン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3519, + "IdString": "s3520", + "NameJp": "「明日はきっと雨だ。」", + "NameEng": "「明日はきっと雨だ。」", + "UnlockRequirementJp": "『初音ミク&鏡音リン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3520, + "IdString": "s3521", + "NameJp": "おやすミクさん!", + "NameEng": "おやすミクさん!", + "UnlockRequirementJp": "『初音ミク&鏡音リン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3521, + "IdString": "s3522", + "NameJp": "お断リンちゃん!", + "NameEng": "お断リンちゃん!", + "UnlockRequirementJp": "『初音ミク&鏡音リン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3522, + "IdString": "s3523", + "NameJp": "「本当の僕はどこに行ったっけ?」", + "NameEng": "「本当の僕はどこに行ったっけ?」", + "UnlockRequirementJp": "『初音ミク&鏡音リン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3523, + "IdString": "s3524", + "NameJp": "I LOVE 鏡音リン 2016", + "NameEng": "I LOVE 鏡音リン 2016", + "UnlockRequirementJp": "『初音ミク&鏡音リン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3524, + "IdString": "s3525", + "NameJp": "I love \"東京テディベア\"!!", + "NameEng": "I love \"東京テディベア\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3525, + "IdString": "s3526", + "NameJp": "今までごめん先生", + "NameEng": "今までごめん先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3526, + "IdString": "s3527", + "NameJp": "今までごめん女王", + "NameEng": "今までごめん女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3527, + "IdString": "s3528", + "NameJp": "今までごめん女神", + "NameEng": "今までごめん女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3528, + "IdString": "s3529", + "NameJp": "I love \"からくりピエロ\"", + "NameEng": "I love \"からくりピエロ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3529, + "IdString": "s3530", + "NameJp": "からくり先生", + "NameEng": "からくり先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3530, + "IdString": "s3531", + "NameJp": "からくり大王", + "NameEng": "からくり大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3531, + "IdString": "s3532", + "NameJp": "からくり神", + "NameEng": "からくり神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3532, + "IdString": "s3533", + "NameJp": "I love \"深海シティアンダーグラウンド\"", + "NameEng": "I love \"深海シティアンダーグラウンド\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3533, + "IdString": "s3534", + "NameJp": "深海シティ先生", + "NameEng": "深海シティ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3534, + "IdString": "s3535", + "NameJp": "深海シティ大王", + "NameEng": "深海シティ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3535, + "IdString": "s3536", + "NameJp": "深海シティ神", + "NameEng": "深海シティ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3536, + "IdString": "s3537", + "NameJp": "I love \"STAGER (ALL STAGE CLEAR)\"", + "NameEng": "I love \"STAGER (ALL STAGE CLEAR)\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 3537, + "IdString": "s3538", + "NameJp": "STAGER MASTER", + "NameEng": "STAGER MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 3538, + "IdString": "s3539", + "NameJp": "STAGER KING", + "NameEng": "STAGER KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 3539, + "IdString": "s3540", + "NameJp": "STAGER GOD", + "NameEng": "STAGER GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 3540, + "IdString": "s3541", + "NameJp": "I love \"無邪気と言う名の正義\"", + "NameEng": "I love \"無邪気と言う名の正義\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3541, + "IdString": "s3542", + "NameJp": "死を操る程度の先生", + "NameEng": "死を操る程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3542, + "IdString": "s3543", + "NameJp": "死を操る程度の女王", + "NameEng": "死を操る程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3543, + "IdString": "s3544", + "NameJp": "死を操る程度の女神", + "NameEng": "死を操る程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3544, + "IdString": "s3545", + "NameJp": "I love \"KUNG\u3000FU\u3000GIRL\"", + "NameEng": "I love \"KUNG\u3000FU\u3000GIRL\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3545, + "IdString": "s3546", + "NameJp": "イー・アル・マスター", + "NameEng": "イー・アル・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3546, + "IdString": "s3547", + "NameJp": "イー・アル・クイーン", + "NameEng": "イー・アル・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3547, + "IdString": "s3548", + "NameJp": "イー・アル・ゴッデス", + "NameEng": "イー・アル・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3548, + "IdString": "s3549", + "NameJp": "I love \"コノハズク\"", + "NameEng": "I love \"コノハズク\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3549, + "IdString": "s3550", + "NameJp": " 十人の話を同時に聞くことが出来る太子", + "NameEng": " 十人の話を同時に聞くことが出来る太子", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3550, + "IdString": "s3551", + "NameJp": " 十人の話を同時に聞くことが出来る女王", + "NameEng": " 十人の話を同時に聞くことが出来る女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3551, + "IdString": "s3552", + "NameJp": " 十人の話を同時に聞くことが出来る女神", + "NameEng": " 十人の話を同時に聞くことが出来る女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3552, + "IdString": "s3553", + "NameJp": "I love \"君色サブリミナル\"", + "NameEng": "I love \"君色サブリミナル\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3553, + "IdString": "s3554", + "NameJp": "壁をすり抜けられる程度の先生", + "NameEng": "壁をすり抜けられる程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3554, + "IdString": "s3555", + "NameJp": "壁をすり抜けられる程度の女王", + "NameEng": "壁をすり抜けられる程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3555, + "IdString": "s3556", + "NameJp": "壁をすり抜けられる程度の女神", + "NameEng": "壁をすり抜けられる程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3556, + "IdString": "s3557", + "NameJp": "I love \"ハイパーゴアムササビスティックディサピアリジーニャス\"", + "NameEng": "I love \"ハイパーゴアムササビスティックディサピアリジーニャス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3557, + "IdString": "s3558", + "NameJp": "大☆先☆生", + "NameEng": "大☆先☆生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3558, + "IdString": "s3559", + "NameJp": "大☆王☆様", + "NameEng": "大☆王☆様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3559, + "IdString": "s3560", + "NameJp": "大☆天☆才", + "NameEng": "大☆天☆才", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3560, + "IdString": "s3561", + "NameJp": "I love \"あの日の蜃気楼\"", + "NameEng": "I love \"あの日の蜃気楼\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3561, + "IdString": "s3562", + "NameJp": "死してなお、愉しい先生", + "NameEng": "死してなお、愉しい先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3562, + "IdString": "s3563", + "NameJp": "死してなお、愉しい女王", + "NameEng": "死してなお、愉しい女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3563, + "IdString": "s3564", + "NameJp": "死してなお、愉しい女神", + "NameEng": "死してなお、愉しい女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3564, + "IdString": "s3565", + "NameJp": "I love \"スターオーシャン\"", + "NameEng": "I love \"スターオーシャン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3565, + "IdString": "s3566", + "NameJp": "スターオーシャンマスター", + "NameEng": "スターオーシャンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3566, + "IdString": "s3567", + "NameJp": "スターオーシャンキング", + "NameEng": "スターオーシャンキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3567, + "IdString": "s3568", + "NameJp": "スターオーシャンゴッド", + "NameEng": "スターオーシャンゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3568, + "IdString": "s3569", + "NameJp": "I love \"UFD\"", + "NameEng": "I love \"UFD\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 3569, + "IdString": "s3570", + "NameJp": "UFD MASTER", + "NameEng": "UFD MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 3570, + "IdString": "s3571", + "NameJp": "UFD KING", + "NameEng": "UFD KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 3571, + "IdString": "s3572", + "NameJp": "UFD GOD", + "NameEng": "UFD GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 3572, + "IdString": "s3573", + "NameJp": "I love \"安全運転♥ムジ娘ちゃん\"", + "NameEng": "I love \"安全運転♥ムジ娘ちゃん\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3573, + "IdString": "s3574", + "NameJp": "安全運転♥先生", + "NameEng": "安全運転♥先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3574, + "IdString": "s3575", + "NameJp": "安全運転♥女王", + "NameEng": "安全運転♥女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3575, + "IdString": "s3576", + "NameJp": "安全運転♥女神", + "NameEng": "安全運転♥女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3576, + "IdString": "s3577", + "NameJp": "I love \"あのね…実はわたし、夢眠ねむなんだ…♡\"", + "NameEng": "I love \"あのね…実はわたし、夢眠ねむなんだ…♡\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3577, + "IdString": "s3578", + "NameJp": "あのね…実はわたし、先生なんだ…♡", + "NameEng": "あのね…実はわたし、先生なんだ…♡", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3578, + "IdString": "s3579", + "NameJp": "あのね…実はわたし、女王様なんだ…♡", + "NameEng": "あのね…実はわたし、女王様なんだ…♡", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3579, + "IdString": "s3580", + "NameJp": "あのね…実はわたし、女神なんだ…♡", + "NameEng": "あのね…実はわたし、女神なんだ…♡", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3580, + "IdString": "s3581", + "NameJp": "I love \"すうぃーと☆プラネット\"", + "NameEng": "I love \"すうぃーと☆プラネット\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3581, + "IdString": "s3582", + "NameJp": "すうぃーと☆マスター", + "NameEng": "すうぃーと☆マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3582, + "IdString": "s3583", + "NameJp": "すうぃーと☆キング", + "NameEng": "すうぃーと☆キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3583, + "IdString": "s3584", + "NameJp": "すうぃーと☆ゴッド", + "NameEng": "すうぃーと☆ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3584, + "IdString": "s3585", + "NameJp": "I love \"バトル#2 ~ヒゲドライバーMIX~\"", + "NameEng": "I love \"バトル#2 ~ヒゲドライバーMIX~\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3585, + "IdString": "s3586", + "NameJp": "エストポリス先生", + "NameEng": "エストポリス先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3586, + "IdString": "s3587", + "NameJp": "エストポリス大王", + "NameEng": "エストポリス大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3587, + "IdString": "s3588", + "NameJp": "エストポリス神", + "NameEng": "エストポリス神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3588, + "IdString": "s3589", + "NameJp": "I love \"フルボッコ\"", + "NameEng": "I love \"フルボッコ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 3589, + "IdString": "s3590", + "NameJp": "フルボッコ先生", + "NameEng": "フルボッコ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3590, + "IdString": "s3591", + "NameJp": "フルボッコ大王", + "NameEng": "フルボッコ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3591, + "IdString": "s3592", + "NameJp": "フルボッコ神", + "NameEng": "フルボッコ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 3592, + "IdString": "s3593", + "NameJp": "I love \"影の伝説 ~豚乙女mix~\"", + "NameEng": "I love \"影の伝説 ~豚乙女mix~\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3593, + "IdString": "s3594", + "NameJp": "影の先生", + "NameEng": "影の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3594, + "IdString": "s3595", + "NameJp": "影の大王", + "NameEng": "影の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3595, + "IdString": "s3596", + "NameJp": "影の神", + "NameEng": "影の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3596, + "IdString": "s3597", + "NameJp": "化け狸 十変化", + "NameEng": "化け狸 十変化", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3597, + "IdString": "s3598", + "NameJp": "聖徳道士", + "NameEng": "聖徳道士", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3598, + "IdString": "s3599", + "NameJp": "古代日本の尸解仙", + "NameEng": "古代日本の尸解仙", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3599, + "IdString": "s3600", + "NameJp": "神の末裔の亡霊", + "NameEng": "神の末裔の亡霊", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3600, + "IdString": "s3601", + "NameJp": "古の妖怪その1", + "NameEng": "古の妖怪その1", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3601, + "IdString": "s3602", + "NameJp": "壁抜けの邪仙", + "NameEng": "壁抜けの邪仙", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3602, + "IdString": "s3603", + "NameJp": "忠実な死体", + "NameEng": "忠実な死体", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3603, + "IdString": "s3604", + "NameJp": "お困りの忘れ物", + "NameEng": "お困りの忘れ物", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3604, + "IdString": "s3605", + "NameJp": "たわむれはおわりじゃ", + "NameEng": "たわむれはおわりじゃ", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3605, + "IdString": "s3606", + "NameJp": "読経するヤマビコ", + "NameEng": "読経するヤマビコ", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3606, + "IdString": "s3607", + "NameJp": "戸惑わない亡霊", + "NameEng": "戸惑わない亡霊", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3607, + "IdString": "s3608", + "NameJp": "我欲の巫女", + "NameEng": "我欲の巫女", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3608, + "IdString": "s3609", + "NameJp": "死欲の半霊", + "NameEng": "死欲の半霊", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3609, + "IdString": "s3610", + "NameJp": "五欲の巫女", + "NameEng": "五欲の巫女", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3610, + "IdString": "s3611", + "NameJp": "強欲の魔法使い", + "NameEng": "強欲の魔法使い", + "UnlockRequirementJp": "『東方神霊廟』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3611, + "IdString": "s3612", + "NameJp": "N・E・M・U・G・O・D", + "NameEng": "N・E・M・U・G・O・D", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3612, + "IdString": "s3613", + "NameJp": "君にネムキュンキュン", + "NameEng": "君にネムキュンキュン", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3613, + "IdString": "s3614", + "NameJp": "輝け!ミドリウム!", + "NameEng": "輝け!ミドリウム!", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3614, + "IdString": "s3615", + "NameJp": "ミントグリーンの宇宙", + "NameEng": "ミントグリーンの宇宙", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3615, + "IdString": "s3616", + "NameJp": "三重の食いしん坊", + "NameEng": "三重の食いしん坊", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3616, + "IdString": "s3617", + "NameJp": "Pureな乙女(бωб)", + "NameEng": "Pureな乙女(бωб)", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3617, + "IdString": "s3618", + "NameJp": "夢眠軒の常連", + "NameEng": "夢眠軒の常連", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3618, + "IdString": "s3619", + "NameJp": "S+級ワンタン麺", + "NameEng": "S+級ワンタン麺", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3619, + "IdString": "s3620", + "NameJp": "ラブリーテクニシャン", + "NameEng": "ラブリーテクニシャン", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3620, + "IdString": "s3621", + "NameJp": "セクシーポリティシャン", + "NameEng": "セクシーポリティシャン", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3621, + "IdString": "s3622", + "NameJp": "安全運転\u3000お願いね", + "NameEng": "安全運転\u3000お願いね", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3622, + "IdString": "s3623", + "NameJp": "I love たぬきゅん", + "NameEng": "I love たぬきゅん", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3623, + "IdString": "s3624", + "NameJp": "おにぎりむしゃ~り!", + "NameEng": "おにぎりむしゃ~り!", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3624, + "IdString": "s3625", + "NameJp": "ユメミスト", + "NameEng": "ユメミスト", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3625, + "IdString": "s3626", + "NameJp": "I love 夢眠ネム", + "NameEng": "I love 夢眠ネム", + "UnlockRequirementJp": "『夢眠ネム』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3626, + "IdString": "s3627", + "NameJp": "piggy", + "NameEng": "piggy", + "UnlockRequirementJp": "『豚乙女』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3627, + "IdString": "s3628", + "NameJp": "I love 豚乙女", + "NameEng": "I love 豚乙女", + "UnlockRequirementJp": "『豚乙女』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3628, + "IdString": "s3629", + "NameJp": "第四ノ封印ヲ解放セシ者", + "NameEng": "第四ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3629, + "IdString": "s3630", + "NameJp": "第五ノ封印ヲ解放セシ者", + "NameEng": "第五ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3630, + "IdString": "s3631", + "NameJp": "第六ノ封印ヲ解放セシ者", + "NameEng": "第六ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3631, + "IdString": "s3632", + "NameJp": "I love \"MERLIN\"", + "NameEng": "I love \"MERLIN\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3632, + "IdString": "s3633", + "NameJp": "MERLIN MASTER", + "NameEng": "MERLIN MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3633, + "IdString": "s3634", + "NameJp": "MERLIN KING", + "NameEng": "MERLIN KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3634, + "IdString": "s3635", + "NameJp": "MERLIN GOD", + "NameEng": "MERLIN GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3635, + "IdString": "s3636", + "NameJp": "I love \"MAD FREAKS\"", + "NameEng": "I love \"MAD FREAKS\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3636, + "IdString": "s3637", + "NameJp": "MAD MASTER", + "NameEng": "MAD MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3637, + "IdString": "s3638", + "NameJp": "MAD KING", + "NameEng": "MAD KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3638, + "IdString": "s3639", + "NameJp": "MAD GOD", + "NameEng": "MAD GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3639, + "IdString": "s3640", + "NameJp": "I love \"Good Night, Bad Luck.\"", + "NameEng": "I love \"Good Night, Bad Luck.\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3640, + "IdString": "s3641", + "NameJp": "Good Night, Bad Master.", + "NameEng": "Good Night, Bad Master.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3641, + "IdString": "s3642", + "NameJp": "Good Night, Bad King.", + "NameEng": "Good Night, Bad King.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3642, + "IdString": "s3643", + "NameJp": "Good Night, Bad God.", + "NameEng": "Good Night, Bad God.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3643, + "IdString": "s3644", + "NameJp": "I love \"MIRACLE PARTY\"", + "NameEng": "I love \"MIRACLE PARTY\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3644, + "IdString": "s3645", + "NameJp": "MIRACLE MASTER", + "NameEng": "MIRACLE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3645, + "IdString": "s3646", + "NameJp": "MIRACLE KING", + "NameEng": "MIRACLE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3646, + "IdString": "s3647", + "NameJp": "MIRACLE GOD", + "NameEng": "MIRACLE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3647, + "IdString": "s3648", + "NameJp": "I love \"Ever Free\"", + "NameEng": "I love \"Ever Free\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 3648, + "IdString": "s3649", + "NameJp": "Ever Free Master", + "NameEng": "Ever Free Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3649, + "IdString": "s3650", + "NameJp": "Ever Free King", + "NameEng": "Ever Free King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3650, + "IdString": "s3651", + "NameJp": "Ever Free God", + "NameEng": "Ever Free God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 3651, + "IdString": "s3652", + "NameJp": "I love \"Extra Mode\"", + "NameEng": "I love \"Extra Mode\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 3652, + "IdString": "s3653", + "NameJp": "Extra Master", + "NameEng": "Extra Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3653, + "IdString": "s3654", + "NameJp": "Extra King", + "NameEng": "Extra King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3654, + "IdString": "s3655", + "NameJp": "Extra God", + "NameEng": "Extra God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 3655, + "IdString": "s3656", + "NameJp": "I love \"初音ミクの暴走\"", + "NameEng": "I love \"初音ミクの暴走\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3656, + "IdString": "s3657", + "NameJp": "つるぺた先生", + "NameEng": "つるぺた先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3657, + "IdString": "s3658", + "NameJp": "つるぺた女王", + "NameEng": "つるぺた女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3658, + "IdString": "s3659", + "NameJp": "つるぺた女神", + "NameEng": "つるぺた女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3659, + "IdString": "s3660", + "NameJp": "I love \"メイドと血の懐中時計\"", + "NameEng": "I love \"メイドと血の懐中時計\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3660, + "IdString": "s3661", + "NameJp": "メイド先生", + "NameEng": "メイド先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3661, + "IdString": "s3662", + "NameJp": "メイド王", + "NameEng": "メイド王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3662, + "IdString": "s3663", + "NameJp": "メイド神", + "NameEng": "メイド神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3663, + "IdString": "s3664", + "NameJp": "I love \"月夜ノ森\"", + "NameEng": "I love \"月夜ノ森\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3664, + "IdString": "s3665", + "NameJp": "月夜ノ先生", + "NameEng": "月夜ノ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3665, + "IdString": "s3666", + "NameJp": "月夜ノ王", + "NameEng": "月夜ノ王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3666, + "IdString": "s3667", + "NameJp": "月夜ノ神", + "NameEng": "月夜ノ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3667, + "IdString": "s3668", + "NameJp": "I love \"恋愛裁判\"", + "NameEng": "I love \"恋愛裁判\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3668, + "IdString": "s3669", + "NameJp": "恋愛裁判長", + "NameEng": "恋愛裁判長", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3669, + "IdString": "s3670", + "NameJp": "恋愛裁判王", + "NameEng": "恋愛裁判王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3670, + "IdString": "s3671", + "NameJp": "恋愛裁判神", + "NameEng": "恋愛裁判神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3671, + "IdString": "s3672", + "NameJp": "I love \"Future Coaster\"", + "NameEng": "I love \"Future Coaster\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3672, + "IdString": "s3673", + "NameJp": "Future Coaster Master", + "NameEng": "Future Coaster Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3673, + "IdString": "s3674", + "NameJp": "Future Coaster King", + "NameEng": "Future Coaster King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3674, + "IdString": "s3675", + "NameJp": "Future Coaster God", + "NameEng": "Future Coaster God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3675, + "IdString": "s3676", + "NameJp": "I love \"脱獄\"", + "NameEng": "I love \"脱獄\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3676, + "IdString": "s3677", + "NameJp": "脱獄先生", + "NameEng": "脱獄先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3677, + "IdString": "s3678", + "NameJp": "脱獄王", + "NameEng": "脱獄王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3678, + "IdString": "s3679", + "NameJp": "脱獄神", + "NameEng": "脱獄神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3679, + "IdString": "s3680", + "NameJp": "I love \"千のクロマ\"", + "NameEng": "I love \"千のクロマ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 3680, + "IdString": "s3681", + "NameJp": "千の先生", + "NameEng": "千の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 3681, + "IdString": "s3682", + "NameJp": "千の大王", + "NameEng": "千の大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 3682, + "IdString": "s3683", + "NameJp": "千の神", + "NameEng": "千の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 3683, + "IdString": "s3684", + "NameJp": "I love \"Linear Accelerator\"", + "NameEng": "I love \"Linear Accelerator\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 3684, + "IdString": "s3685", + "NameJp": "Linear Master", + "NameEng": "Linear Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 3685, + "IdString": "s3686", + "NameJp": "Linear King", + "NameEng": "Linear King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 3686, + "IdString": "s3687", + "NameJp": "Linear God", + "NameEng": "Linear God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 3687, + "IdString": "s3688", + "NameJp": "TANO*C GOD", + "NameEng": "TANO*C GOD", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3688, + "IdString": "s3689", + "NameJp": "TANO*C KING", + "NameEng": "TANO*C KING", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3689, + "IdString": "s3690", + "NameJp": "TANO*C MASTER", + "NameEng": "TANO*C MASTER", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3690, + "IdString": "s3691", + "NameJp": "HARDCORE SYNDROME", + "NameEng": "HARDCORE SYNDROME", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3691, + "IdString": "s3692", + "NameJp": "たのしー!", + "NameEng": "たのしー!", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3692, + "IdString": "s3693", + "NameJp": "狂乱を、味わえ", + "NameEng": "狂乱を、味わえ", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3693, + "IdString": "s3694", + "NameJp": "重低音モンスター", + "NameEng": "重低音モンスター", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3694, + "IdString": "s3695", + "NameJp": "逆鱗に触れろ", + "NameEng": "逆鱗に触れろ", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3695, + "IdString": "s3696", + "NameJp": "紅の魔術師", + "NameEng": "紅の魔術師", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3696, + "IdString": "s3697", + "NameJp": "悪夢再び", + "NameEng": "悪夢再び", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3697, + "IdString": "s3698", + "NameJp": "α", + "NameEng": "α", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3698, + "IdString": "s3699", + "NameJp": "Are you ready?", + "NameEng": "Are you ready?", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3699, + "IdString": "s3700", + "NameJp": "発狂大魔人", + "NameEng": "発狂大魔人", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3700, + "IdString": "s3701", + "NameJp": "果て無き最狂進化", + "NameEng": "果て無き最狂進化", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3701, + "IdString": "s3702", + "NameJp": "Ever…", + "NameEng": "Ever…", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3702, + "IdString": "s3703", + "NameJp": "I love HARDCORE TANO*C", + "NameEng": "I love HARDCORE TANO*C", + "UnlockRequirementJp": "『HARDCORE TANO*C』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3703, + "IdString": "s3704", + "NameJp": "MikuLenGod", + "NameEng": "MikuLenGod", + "UnlockRequirementJp": "『初音ミク&鏡音レン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3704, + "IdString": "s3705", + "NameJp": "伝説のマスター", + "NameEng": "伝説のマスター", + "UnlockRequirementJp": "『初音ミク&鏡音レン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3705, + "IdString": "s3706", + "NameJp": "レンきゅんマジ天使", + "NameEng": "レンきゅんマジ天使", + "UnlockRequirementJp": "『初音ミク&鏡音レン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3706, + "IdString": "s3707", + "NameJp": "「幼女の世界」", + "NameEng": "「幼女の世界」", + "UnlockRequirementJp": "『初音ミク&鏡音レン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3707, + "IdString": "s3708", + "NameJp": "ドウニデモ=ナ=レ(76)", + "NameEng": "ドウニデモ=ナ=レ(76)", + "UnlockRequirementJp": "『初音ミク&鏡音レン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3708, + "IdString": "s3709", + "NameJp": "年中イキっていこう~", + "NameEng": "年中イキっていこう~", + "UnlockRequirementJp": "『初音ミク&鏡音レン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3709, + "IdString": "s3710", + "NameJp": "決シテ逃レルコトノデキヌ夜", + "NameEng": "決シテ逃レルコトノデキヌ夜", + "UnlockRequirementJp": "『初音ミク&鏡音レン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3710, + "IdString": "s3711", + "NameJp": "有\u3000罪", + "NameEng": "有\u3000罪", + "UnlockRequirementJp": "『初音ミク&鏡音レン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3711, + "IdString": "s3712", + "NameJp": "夏だ!海だ!初音ミク", + "NameEng": "夏だ!海だ!初音ミク", + "UnlockRequirementJp": "『初音ミク&鏡音レン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3712, + "IdString": "s3713", + "NameJp": "ほら すぐ キメるぜ!", + "NameEng": "ほら すぐ キメるぜ!", + "UnlockRequirementJp": "『初音ミク&鏡音レン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3713, + "IdString": "s3714", + "NameJp": "ほっぺたぷにぷに", + "NameEng": "ほっぺたぷにぷに", + "UnlockRequirementJp": "『初音ミク&鏡音レン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3714, + "IdString": "s3715", + "NameJp": "Oh! Jesus!", + "NameEng": "Oh! Jesus!", + "UnlockRequirementJp": "『初音ミク&鏡音レン』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3715, + "IdString": "s3716", + "NameJp": "I love Tone Sphere", + "NameEng": "I love Tone Sphere", + "UnlockRequirementJp": "『Tone Sphere』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3716, + "IdString": "s3717", + "NameJp": "世界で一番宇宙で銀河", + "NameEng": "世界で一番宇宙で銀河", + "UnlockRequirementJp": "『Tone Sphere』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3717, + "IdString": "s3718", + "NameJp": "とんすひ勢", + "NameEng": "とんすひ勢", + "UnlockRequirementJp": "『Tone Sphere』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3718, + "IdString": "s3719", + "NameJp": "I love \"ようこそジャパリパークへ\"", + "NameEng": "I love \"ようこそジャパリパークへ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 3719, + "IdString": "s3720", + "NameJp": "わーい!", + "NameEng": "わーい!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3720, + "IdString": "s3721", + "NameJp": "すっごーい!", + "NameEng": "すっごーい!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 3721, + "IdString": "s3722", + "NameJp": "うー!がぉー!", + "NameEng": "うー!がぉー!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 3722, + "IdString": "s3723", + "NameJp": "I love \"Border of Colour\"", + "NameEng": "I love \"Border of Colour\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3723, + "IdString": "s3724", + "NameJp": "天衣無縫の亡霊", + "NameEng": "天衣無縫の亡霊", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3724, + "IdString": "s3725", + "NameJp": "天衣無縫の幻霊", + "NameEng": "天衣無縫の幻霊", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3725, + "IdString": "s3726", + "NameJp": "天衣無縫の神霊", + "NameEng": "天衣無縫の神霊", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3726, + "IdString": "s3727", + "NameJp": "I love \"ジョーカー・ジュンコ ~ 永遠の純化\"", + "NameEng": "I love \"ジョーカー・ジュンコ ~ 永遠の純化\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3727, + "IdString": "s3728", + "NameJp": "無名の先生", + "NameEng": "無名の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3728, + "IdString": "s3729", + "NameJp": "無名の王", + "NameEng": "無名の王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3729, + "IdString": "s3730", + "NameJp": "無名の神", + "NameEng": "無名の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3730, + "IdString": "s3731", + "NameJp": "I love \"DIVINE PLACE\"", + "NameEng": "I love \"DIVINE PLACE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3731, + "IdString": "s3732", + "NameJp": "DIVINE MASTER", + "NameEng": "DIVINE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3732, + "IdString": "s3733", + "NameJp": "DIVINE KING", + "NameEng": "DIVINE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3733, + "IdString": "s3734", + "NameJp": "DIVINE GOD", + "NameEng": "DIVINE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3734, + "IdString": "s3735", + "NameJp": "I love \"幻想の旅人へ ~ Catch the Heart\"", + "NameEng": "I love \"幻想の旅人へ ~ Catch the Heart\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3735, + "IdString": "s3736", + "NameJp": "Master 1969", + "NameEng": "Master 1969", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3736, + "IdString": "s3737", + "NameJp": "King 1969", + "NameEng": "King 1969", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3737, + "IdString": "s3738", + "NameJp": "God 1969", + "NameEng": "God 1969", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3738, + "IdString": "s3739", + "NameJp": "I love \"tete+a+tete\"", + "NameEng": "I love \"tete+a+tete\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3739, + "IdString": "s3740", + "NameJp": "おぜう", + "NameEng": "おぜう", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3740, + "IdString": "s3741", + "NameJp": "おぜうさま", + "NameEng": "おぜうさま", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3741, + "IdString": "s3742", + "NameJp": "お嬢様", + "NameEng": "お嬢様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3742, + "IdString": "s3743", + "NameJp": "I love \"Sad Rain\"", + "NameEng": "I love \"Sad Rain\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3743, + "IdString": "s3744", + "NameJp": "南無三先生", + "NameEng": "南無三先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3744, + "IdString": "s3745", + "NameJp": "南無三大王", + "NameEng": "南無三大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3745, + "IdString": "s3746", + "NameJp": "南無三神", + "NameEng": "南無三神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3746, + "IdString": "s3747", + "NameJp": "I love \"Gloria\"", + "NameEng": "I love \"Gloria\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3747, + "IdString": "s3748", + "NameJp": "フィギュアヘッズ マスター", + "NameEng": "フィギュアヘッズ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3748, + "IdString": "s3749", + "NameJp": "フィギュアヘッズ キング", + "NameEng": "フィギュアヘッズ キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3749, + "IdString": "s3750", + "NameJp": "フィギュアヘッズ ゴッド", + "NameEng": "フィギュアヘッズ ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3750, + "IdString": "s3751", + "NameJp": "I love \"ENDLESS DREAM -GC Mix-\"", + "NameEng": "I love \"ENDLESS DREAM -GC Mix-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3751, + "IdString": "s3752", + "NameJp": "ENDLESS DREAM MASTER", + "NameEng": "ENDLESS DREAM MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3752, + "IdString": "s3753", + "NameJp": "ENDLESS DREAM KING", + "NameEng": "ENDLESS DREAM KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3753, + "IdString": "s3754", + "NameJp": "ENDLESS DREAM GOD", + "NameEng": "ENDLESS DREAM GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3754, + "IdString": "s3755", + "NameJp": "I love \"燃えるハロウィンタウン\"", + "NameEng": "I love \"燃えるハロウィンタウン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3755, + "IdString": "s3756", + "NameJp": "ハロウィンマスター", + "NameEng": "ハロウィンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3756, + "IdString": "s3757", + "NameJp": "ハロウィンキング", + "NameEng": "ハロウィンキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3757, + "IdString": "s3758", + "NameJp": "ハロウィンゴッド", + "NameEng": "ハロウィンゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3758, + "IdString": "s3759", + "NameJp": "I love \"Can't come back?\"", + "NameEng": "I love \"Can't come back?\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3759, + "IdString": "s3760", + "NameJp": "UNDER DEFEAT MASTER", + "NameEng": "UNDER DEFEAT MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3760, + "IdString": "s3761", + "NameJp": "UNDER DEFEAT KING", + "NameEng": "UNDER DEFEAT KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3761, + "IdString": "s3762", + "NameJp": "UNDER DEFEAT GOD", + "NameEng": "UNDER DEFEAT GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3762, + "IdString": "s3763", + "NameJp": "I love \"AXION\"", + "NameEng": "I love \"AXION\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 3763, + "IdString": "s3764", + "NameJp": "AXION FIGHTER", + "NameEng": "AXION FIGHTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3764, + "IdString": "s3765", + "NameJp": "AXION SORCERER", + "NameEng": "AXION SORCERER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 3765, + "IdString": "s3766", + "NameJp": "AXION KING", + "NameEng": "AXION KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 3766, + "IdString": "s3767", + "NameJp": "I love \"RAVE WAR\"", + "NameEng": "I love \"RAVE WAR\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3767, + "IdString": "s3768", + "NameJp": "RAVE MASTER", + "NameEng": "RAVE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3768, + "IdString": "s3769", + "NameJp": "RAVE KING", + "NameEng": "RAVE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3769, + "IdString": "s3770", + "NameJp": "RAVE GOD", + "NameEng": "RAVE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3770, + "IdString": "s3771", + "NameJp": "I love \"Lightning strikes\"", + "NameEng": "I love \"Lightning strikes\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3771, + "IdString": "s3772", + "NameJp": "Lightning master", + "NameEng": "Lightning master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3772, + "IdString": "s3773", + "NameJp": "Lightning king", + "NameEng": "Lightning king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3773, + "IdString": "s3774", + "NameJp": "Lightning god", + "NameEng": "Lightning god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3774, + "IdString": "s3775", + "NameJp": "I love \"バーニングフォースメドレー\"", + "NameEng": "I love \"バーニングフォースメドレー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3775, + "IdString": "s3776", + "NameJp": "バーニングフォースマスター", + "NameEng": "バーニングフォースマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3776, + "IdString": "s3777", + "NameJp": "バーニングフォースキング", + "NameEng": "バーニングフォースキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3777, + "IdString": "s3778", + "NameJp": "バーニングフォースゴッド", + "NameEng": "バーニングフォースゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3778, + "IdString": "s3779", + "NameJp": "I love \"PaⅢ.SENSATION\"", + "NameEng": "I love \"PaⅢ.SENSATION\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3779, + "IdString": "s3780", + "NameJp": "PaⅢ.MASTER", + "NameEng": "PaⅢ.MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3780, + "IdString": "s3781", + "NameJp": "PaⅢ.KING", + "NameEng": "PaⅢ.KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3781, + "IdString": "s3782", + "NameJp": "PaⅢ.GOD", + "NameEng": "PaⅢ.GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3782, + "IdString": "s3783", + "NameJp": "I love \"チルノのパーフェクトさんすう教室\u30009周年\"", + "NameEng": "I love \"チルノのパーフェクトさんすう教室\u30009周年\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3783, + "IdString": "s3784", + "NameJp": "9周年先生", + "NameEng": "9周年先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3784, + "IdString": "s3785", + "NameJp": "9周年大王", + "NameEng": "9周年大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3785, + "IdString": "s3786", + "NameJp": "9周年神", + "NameEng": "9周年神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3786, + "IdString": "s3787", + "NameJp": "I love \"フロストガール\"", + "NameEng": "I love \"フロストガール\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3787, + "IdString": "s3788", + "NameJp": "フロストマスター", + "NameEng": "フロストマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3788, + "IdString": "s3789", + "NameJp": "フロストキング", + "NameEng": "フロストキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3789, + "IdString": "s3790", + "NameJp": "フロストゴッド", + "NameEng": "フロストゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3790, + "IdString": "s3791", + "NameJp": "AUG, 2017 TOP RANKER", + "NameEng": "AUG, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3791, + "IdString": "s3792", + "NameJp": "SEP, 2017 TOP RANKER", + "NameEng": "SEP, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3792, + "IdString": "s3793", + "NameJp": "OCT, 2017 TOP RANKER", + "NameEng": "OCT, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3793, + "IdString": "s3794", + "NameJp": "NOV, 2017 TOP RANKER", + "NameEng": "NOV, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3794, + "IdString": "s3795", + "NameJp": "DEC, 2017 TOP RANKER", + "NameEng": "DEC, 2017 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3795, + "IdString": "s3796", + "NameJp": "JAN, 2018 TOP RANKER", + "NameEng": "JAN, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3796, + "IdString": "s3797", + "NameJp": "FEB, 2018 TOP RANKER", + "NameEng": "FEB, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3797, + "IdString": "s3798", + "NameJp": "MAR, 2018 TOP RANKER", + "NameEng": "MAR, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3798, + "IdString": "s3799", + "NameJp": "APR, 2018 TOP RANKER", + "NameEng": "APR, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3799, + "IdString": "s3800", + "NameJp": "MAY, 2018 TOP RANKER", + "NameEng": "MAY, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3800, + "IdString": "s3801", + "NameJp": "JUN, 2018 TOP RANKER", + "NameEng": "JUN, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3801, + "IdString": "s3802", + "NameJp": "JUL, 2018 TOP RANKER", + "NameEng": "JUL, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3802, + "IdString": "s3803", + "NameJp": "第七ノ封印ヲ解放セシ者", + "NameEng": "第七ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3803, + "IdString": "s3804", + "NameJp": "第八ノ封印ヲ解放セシ者", + "NameEng": "第八ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3804, + "IdString": "s3805", + "NameJp": "第九ノ封印ヲ解放セシ者", + "NameEng": "第九ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3805, + "IdString": "s3806", + "NameJp": "第十ノ封印ヲ解放セシ者", + "NameEng": "第十ノ封印ヲ解放セシ者", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 3806, + "IdString": "s3807", + "NameJp": "東方六楽抄", + "NameEng": "東方六楽抄", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3807, + "IdString": "s3808", + "NameJp": "「紅色の幻想郷」", + "NameEng": "「紅色の幻想郷」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3808, + "IdString": "s3809", + "NameJp": "「反魂蝶 -八分咲-」", + "NameEng": "「反魂蝶 -八分咲-」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3809, + "IdString": "s3810", + "NameJp": "「永夜返し -世明け」", + "NameEng": "「永夜返し -世明け」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3810, + "IdString": "s3811", + "NameJp": "「風神様の神徳」", + "NameEng": "「風神様の神徳」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3811, + "IdString": "s3812", + "NameJp": "純符「純粋な弾幕地獄」", + "NameEng": "純符「純粋な弾幕地獄」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3812, + "IdString": "s3813", + "NameJp": "超人「聖白蓮」", + "NameEng": "超人「聖白蓮」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3813, + "IdString": "s3814", + "NameJp": "神宝「蓬莱の玉の枝 -夢色の郷-」", + "NameEng": "神宝「蓬莱の玉の枝 -夢色の郷-」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3814, + "IdString": "s3815", + "NameJp": "神術「吸血鬼幻想」", + "NameEng": "神術「吸血鬼幻想」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3815, + "IdString": "s3816", + "NameJp": "仙符「日出ずる処の天子」", + "NameEng": "仙符「日出ずる処の天子」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3816, + "IdString": "s3817", + "NameJp": "神秘「ヤマトトーラス」", + "NameEng": "神秘「ヤマトトーラス」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3817, + "IdString": "s3818", + "NameJp": "華霊「バタフライディルージョン」", + "NameEng": "華霊「バタフライディルージョン」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3818, + "IdString": "s3819", + "NameJp": "爆符「ペタフレア」", + "NameEng": "爆符「ペタフレア」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3819, + "IdString": "s3820", + "NameJp": "奇術「エターナルミーク」", + "NameEng": "奇術「エターナルミーク」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3820, + "IdString": "s3821", + "NameJp": "小槌「お前が大きくなあれ」", + "NameEng": "小槌「お前が大きくなあれ」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3821, + "IdString": "s3822", + "NameJp": "薬符「壺中の大銀河」", + "NameEng": "薬符「壺中の大銀河」", + "UnlockRequirementJp": "『東方六楽抄』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3822, + "IdString": "s3823", + "NameJp": "エース", + "NameEng": "エース", + "UnlockRequirementJp": "『フィギュアヘッズ エース』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3823, + "IdString": "s3824", + "NameJp": "フィギュアヘッズ勢", + "NameEng": "フィギュアヘッズ勢", + "UnlockRequirementJp": "『フィギュアヘッズ エース』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3824, + "IdString": "s3825", + "NameJp": "二代目超シューティング神", + "NameEng": "二代目超シューティング神", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3825, + "IdString": "s3826", + "NameJp": "蘇る赤いクリスタル", + "NameEng": "蘇る赤いクリスタル", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3826, + "IdString": "s3827", + "NameJp": "栄光のスペースファイター", + "NameEng": "栄光のスペースファイター", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3827, + "IdString": "s3828", + "NameJp": "ブローン自走要塞", + "NameEng": "ブローン自走要塞", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3828, + "IdString": "s3829", + "NameJp": "衝撃のIMPULSE,ゆらめくMIRAGE", + "NameEng": "衝撃のIMPULSE,ゆらめくMIRAGE", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3829, + "IdString": "s3830", + "NameJp": "魔界帝王", + "NameEng": "魔界帝王", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3830, + "IdString": "s3831", + "NameJp": "RED ALERT", + "NameEng": "RED ALERT", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3831, + "IdString": "s3832", + "NameJp": "我が駆るは、天翔る鉄騎兵", + "NameEng": "我が駆るは、天翔る鉄騎兵", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3832, + "IdString": "s3833", + "NameJp": "砕ける前に撃て!!", + "NameEng": "砕ける前に撃て!!", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3833, + "IdString": "s3834", + "NameJp": "招かれざりし者", + "NameEng": "招かれざりし者", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3834, + "IdString": "s3835", + "NameJp": "雷の系譜", + "NameEng": "雷の系譜", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3835, + "IdString": "s3836", + "NameJp": "VKL5.03", + "NameEng": "VKL5.03", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3836, + "IdString": "s3837", + "NameJp": "ジルバラードのエンジェル", + "NameEng": "ジルバラードのエンジェル", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3837, + "IdString": "s3838", + "NameJp": "空間騎兵", + "NameEng": "空間騎兵", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3838, + "IdString": "s3839", + "NameJp": "Get down everybody!", + "NameEng": "Get down everybody!", + "UnlockRequirementJp": "『超シューティングゲーム祭其の弐』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3839, + "IdString": "s3840", + "NameJp": "ゆっくりしていってね!", + "NameEng": "ゆっくりしていってね!", + "UnlockRequirementJp": "『チルパ9周年』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3840, + "IdString": "s3841", + "NameJp": "バーカバーカ!", + "NameEng": "バーカバーカ!", + "UnlockRequirementJp": "『チルパ9周年』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3841, + "IdString": "s3842", + "NameJp": "あたいったら最強ね!", + "NameEng": "あたいったら最強ね!", + "UnlockRequirementJp": "『チルパ9周年』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3842, + "IdString": "s3843", + "NameJp": "I love チルノ", + "NameEng": "I love チルノ", + "UnlockRequirementJp": "『チルパ9周年』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3843, + "IdString": "s3844", + "NameJp": "I love \"Penetration of light into morality\"", + "NameEng": "I love \"Penetration of light into morality\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3844, + "IdString": "s3845", + "NameJp": "RAY FORCE MASTER", + "NameEng": "RAY FORCE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3845, + "IdString": "s3846", + "NameJp": "RAY FORCE KING", + "NameEng": "RAY FORCE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3846, + "IdString": "s3847", + "NameJp": "RAY FORCE GOD", + "NameEng": "RAY FORCE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3847, + "IdString": "s3848", + "NameJp": "I love \"恋愛勇者\"", + "NameEng": "I love \"恋愛勇者\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3848, + "IdString": "s3849", + "NameJp": "恋愛勇者", + "NameEng": "恋愛勇者", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3849, + "IdString": "s3850", + "NameJp": "恋愛王", + "NameEng": "恋愛王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3850, + "IdString": "s3851", + "NameJp": "恋愛神", + "NameEng": "恋愛神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3851, + "IdString": "s3852", + "NameJp": "I love \"飛び立て!ドリームパーティー\"", + "NameEng": "I love \"飛び出せ!ドリームパーティー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3852, + "IdString": "s3853", + "NameJp": "ドリームパーティーマスター", + "NameEng": "ドリームパーティーマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3853, + "IdString": "s3854", + "NameJp": "ドリームパーティーキング", + "NameEng": "ドリームパーティーキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3854, + "IdString": "s3855", + "NameJp": "ドリームパーティーゴッド", + "NameEng": "ドリームパーティーゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3855, + "IdString": "s3856", + "NameJp": "I love \"ラベンダーの咲く庭-Progressive Flute Ver.-\"", + "NameEng": "I love \"ラベンダーの咲く庭-Progressive Flute Ver.-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3856, + "IdString": "s3857", + "NameJp": "RAY CRISIS MASTER", + "NameEng": "RAY CRISIS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3857, + "IdString": "s3858", + "NameJp": "RAY CRISIS KING", + "NameEng": "RAY CRISIS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3858, + "IdString": "s3859", + "NameJp": "RAY CRISIS GOD", + "NameEng": "RAY CRISIS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3859, + "IdString": "s3860", + "NameJp": "I love \"小夜のテーマ ~とぱぞのアレンジ~\"", + "NameEng": "I love \"小夜のテーマ ~とぱぞのアレンジ~\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 3860, + "IdString": "s3861", + "NameJp": "小夜ちゃん先生", + "NameEng": "小夜ちゃん先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3861, + "IdString": "s3862", + "NameJp": "小夜ちゃん女王", + "NameEng": "小夜ちゃん女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 3862, + "IdString": "s3863", + "NameJp": "小夜ちゃん女神", + "NameEng": "小夜ちゃん女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 3863, + "IdString": "s3864", + "NameJp": "I love \"九十九星降\"", + "NameEng": "I love \"九十九星降\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3864, + "IdString": "s3865", + "NameJp": "九十九姉妹", + "NameEng": "九十九姉妹", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3865, + "IdString": "s3866", + "NameJp": "九十九大王", + "NameEng": "九十九大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3866, + "IdString": "s3867", + "NameJp": "付喪神", + "NameEng": "付喪神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3867, + "IdString": "s3868", + "NameJp": "I love \"APELIOTES\"", + "NameEng": "I love \"APELIOTES\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3868, + "IdString": "s3869", + "NameJp": "APELIOTES MASTER", + "NameEng": "APELIOTES MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3869, + "IdString": "s3870", + "NameJp": "APELIOTES KING", + "NameEng": "APELIOTES KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3870, + "IdString": "s3871", + "NameJp": "APELIOTES", + "NameEng": "APELIOTES", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3871, + "IdString": "s3872", + "NameJp": "I love \"東方輝仁裂\"", + "NameEng": "I love \"東方輝仁裂\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3872, + "IdString": "s3873", + "NameJp": "雷先生", + "NameEng": "雷先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3873, + "IdString": "s3874", + "NameJp": "雷王", + "NameEng": "雷王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3874, + "IdString": "s3875", + "NameJp": "雷神", + "NameEng": "雷神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3875, + "IdString": "s3876", + "NameJp": "I love \"マーメイドダンス\"", + "NameEng": "I love \"マーメイドダンス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3876, + "IdString": "s3877", + "NameJp": "水中だと力が増す先生", + "NameEng": "水中だと力が増す先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3877, + "IdString": "s3878", + "NameJp": "水中だと力が増す女王", + "NameEng": "水中だと力が増す女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3878, + "IdString": "s3879", + "NameJp": "水中だと力が増す人魚", + "NameEng": "水中だと力が増す人魚", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3879, + "IdString": "s3880", + "NameJp": "I love \"DullaRush\"", + "NameEng": "I love \"DullaRush\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3880, + "IdString": "s3881", + "NameJp": "DullaMaster", + "NameEng": "DullaMaster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3881, + "IdString": "s3882", + "NameJp": "DullaQueen", + "NameEng": "DullaQueen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3882, + "IdString": "s3883", + "NameJp": "DullaGoddess", + "NameEng": "DullaGoddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3883, + "IdString": "s3884", + "NameJp": "I love \"ouroboros -twin stroke of the end-\"", + "NameEng": "I love \"ouroboros -twin stroke of the end-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3884, + "IdString": "s3885", + "NameJp": "ouroboros master", + "NameEng": "ouroboros master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3885, + "IdString": "s3886", + "NameJp": "ouroboros king", + "NameEng": "ouroboros king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3886, + "IdString": "s3887", + "NameJp": "ouroboros god", + "NameEng": "ouroboros god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3887, + "IdString": "s3888", + "NameJp": "I love \"Grow Bigger!!\"", + "NameEng": "I love \"Grow Bigger!!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3888, + "IdString": "s3889", + "NameJp": "輝く針の先生", + "NameEng": "輝く針の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3889, + "IdString": "s3890", + "NameJp": "輝く針の女王", + "NameEng": "輝く針の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3890, + "IdString": "s3891", + "NameJp": "輝く針のリリパット", + "NameEng": "輝く針のリリパット", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3891, + "IdString": "s3892", + "NameJp": "I love \"Caramel Mocha\"", + "NameEng": "I love \"Caramel Mocha\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3892, + "IdString": "s3893", + "NameJp": "Caramel Mocha Master", + "NameEng": "Caramel Mocha Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3893, + "IdString": "s3894", + "NameJp": "Caramel Mocha King", + "NameEng": "Caramel Mocha King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3894, + "IdString": "s3895", + "NameJp": "Caramel Mocha God", + "NameEng": "Caramel Mocha God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3895, + "IdString": "s3896", + "NameJp": "I love \"LIMIT BURST\"", + "NameEng": "I love \"LIMIT BURST\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3896, + "IdString": "s3897", + "NameJp": "なにもかも逆さまな先生", + "NameEng": "なにもかも逆さまな先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3897, + "IdString": "s3898", + "NameJp": "なにもかも逆さまな女王", + "NameEng": "なにもかも逆さまな女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3898, + "IdString": "s3899", + "NameJp": "なにもかも逆さまな女神", + "NameEng": "なにもかも逆さまな女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3899, + "IdString": "s3900", + "NameJp": "I love \"Crazy ∞ NighT\"", + "NameEng": "I love \"Crazy ∞ NighT\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3900, + "IdString": "s3901", + "NameJp": "Crazy ∞ Master", + "NameEng": "Crazy ∞ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3901, + "IdString": "s3902", + "NameJp": "Crazy ∞ Queen", + "NameEng": "Crazy ∞ Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3902, + "IdString": "s3903", + "NameJp": "Crazy ∞ Goddess", + "NameEng": "Crazy ∞ Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3903, + "IdString": "s3904", + "NameJp": "I love \"Lethal Dose\"", + "NameEng": "I love \"Lethal Dose\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3904, + "IdString": "s3905", + "NameJp": "Lethal Dose Master", + "NameEng": "Lethal Dose Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3905, + "IdString": "s3906", + "NameJp": "Lethal Dose King", + "NameEng": "Lethal Dose King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3906, + "IdString": "s3907", + "NameJp": "Lethal Dose God", + "NameEng": "Lethal Dose God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3907, + "IdString": "s3908", + "NameJp": "I love \"GLITHCRE\"", + "NameEng": "I love \"GLITHCRE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3908, + "IdString": "s3909", + "NameJp": "GLITHCRE MASTER", + "NameEng": "GLITHCRE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3909, + "IdString": "s3910", + "NameJp": "GLITHCRE KING", + "NameEng": "GLITHCRE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3910, + "IdString": "s3911", + "NameJp": "GLITHCRE GOD", + "NameEng": "GLITHCRE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3911, + "IdString": "s3912", + "NameJp": "infinity", + "NameEng": "infinity", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3912, + "IdString": "s3913", + "NameJp": "ユグドラシル", + "NameEng": "ユグドラシル", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3913, + "IdString": "s3914", + "NameJp": "ダークコンヒューマン", + "NameEng": "ダークコンヒューマン", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3914, + "IdString": "s3915", + "NameJp": "七福神", + "NameEng": "七福神", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3915, + "IdString": "s3916", + "NameJp": "夢に向かって飛び立て!", + "NameEng": "夢に向かって飛び立て!", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3916, + "IdString": "s3917", + "NameJp": "dis-human", + "NameEng": "dis-human", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3917, + "IdString": "s3918", + "NameJp": "ペンドラゴン", + "NameEng": "ペンドラゴン", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3918, + "IdString": "s3919", + "NameJp": "デュアルランス", + "NameEng": "デュアルランス", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3919, + "IdString": "s3920", + "NameJp": "迫り来る未来の選択", + "NameEng": "迫り来る未来の選択", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3920, + "IdString": "s3921", + "NameJp": "魔奴化", + "NameEng": "魔奴化", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3921, + "IdString": "s3922", + "NameJp": "最高の舞台を目指せ!", + "NameEng": "最高の舞台を目指せ!", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3922, + "IdString": "s3923", + "NameJp": "ALERT", + "NameEng": "ALERT", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3923, + "IdString": "s3924", + "NameJp": "I love Ray series", + "NameEng": "I love Ray series", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3924, + "IdString": "s3925", + "NameJp": "LOCK", + "NameEng": "LOCK", + "UnlockRequirementJp": "『4th Anniversary』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3925, + "IdString": "s3926", + "NameJp": "下剋上", + "NameEng": "下剋上", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3926, + "IdString": "s3927", + "NameJp": "何でもリズムに乗らせる程度の能力", + "NameEng": "何でもリズムに乗らせる程度の能力", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3927, + "IdString": "s3928", + "NameJp": "夢幻のパーカッショニスト", + "NameEng": "夢幻のパーカッショニスト", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3928, + "IdString": "s3929", + "NameJp": "小人の末裔", + "NameEng": "小人の末裔", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3929, + "IdString": "s3930", + "NameJp": "逆襲のあまのじゃく", + "NameEng": "逆襲のあまのじゃく", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3930, + "IdString": "s3931", + "NameJp": "古びた琴の付喪神", + "NameEng": "古びた琴の付喪神", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3931, + "IdString": "s3932", + "NameJp": "古びた琵琶の付喪神", + "NameEng": "古びた琵琶の付喪神", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3932, + "IdString": "s3933", + "NameJp": "草の根妖怪ネットワーク", + "NameEng": "草の根妖怪ネットワーク", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3933, + "IdString": "s3934", + "NameJp": "小槌「大きくなあれ」", + "NameEng": "小槌「大きくなあれ」", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3934, + "IdString": "s3935", + "NameJp": "竹林のルーガルー", + "NameEng": "竹林のルーガルー", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3935, + "IdString": "s3936", + "NameJp": "ろくろ首の怪奇", + "NameEng": "ろくろ首の怪奇", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3936, + "IdString": "s3937", + "NameJp": "淡水に棲む人魚", + "NameEng": "淡水に棲む人魚", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3937, + "IdString": "s3938", + "NameJp": "赤い悪魔のメイド", + "NameEng": "赤い悪魔のメイド", + "UnlockRequirementJp": "『東方輝針城』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3938, + "IdString": "s3939", + "NameJp": "I love ATTACK THE MUSIC", + "NameEng": "I love ATTACK THE MUSIC", + "UnlockRequirementJp": "『ATTACK THE MUSIC』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 3939, + "IdString": "s3940", + "NameJp": "第四回天下一チャレンジャー", + "NameEng": "第四回天下一チャレンジャー", + "UnlockRequirementJp": "対象曲を1回プレイ", + "UnlockRequirementEng": "Play a set song 1 times", + "Type": 12 + }, + { + "Id": 3940, + "IdString": "s3941", + "NameJp": "第四回天下一音ゲ祭 ファイナリスト", + "NameEng": "第四回天下一音ゲ祭 ファイナリスト", + "UnlockRequirementJp": "第四回天下一音ゲ祭全国頂上決戦進出", + "UnlockRequirementEng": "第四回天下一音ゲ祭全国頂上決戦進出", + "Type": 12 + }, + { + "Id": 3941, + "IdString": "s3942", + "NameJp": "第四回天下一音ゲ祭 チャンピオン", + "NameEng": "第四回天下一音ゲ祭 チャンピオン", + "UnlockRequirementJp": "第四回天下一音ゲ祭優勝", + "UnlockRequirementEng": "第四回天下一音ゲ祭優勝", + "Type": 12 + }, + { + "Id": 3942, + "IdString": "s3943", + "NameJp": "I love \"AM貴族\u3000すたどんたん殿下\"", + "NameEng": "I love \"AM貴族\u3000すたどんたん殿下\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3943, + "IdString": "s3944", + "NameJp": "AM貴族\u3000すたどんたん先生", + "NameEng": "AM貴族\u3000すたどんたん先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3944, + "IdString": "s3945", + "NameJp": "AM貴族\u3000すたどんたん女王", + "NameEng": "AM貴族\u3000すたどんたん女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3945, + "IdString": "s3946", + "NameJp": "AM貴族\u3000すたどんたん女神", + "NameEng": "AM貴族\u3000すたどんたん女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3946, + "IdString": "s3947", + "NameJp": "I love \"完全の模様を刳り貫いて\"", + "NameEng": "I love \"完全の模様を刳り貫いて\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3947, + "IdString": "s3948", + "NameJp": "団子を食べる程に強くなる先生", + "NameEng": "団子を食べる程に強くなる先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3948, + "IdString": "s3949", + "NameJp": "団子を食べる程に強くなる女王", + "NameEng": "団子を食べる程に強くなる女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3949, + "IdString": "s3950", + "NameJp": "団子を食べる程に強くなる女神", + "NameEng": "団子を食べる程に強くなる女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3950, + "IdString": "s3951", + "NameJp": "I love \"Singularity\"", + "NameEng": "I love \"Singularity\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3951, + "IdString": "s3952", + "NameJp": "Singularity Master", + "NameEng": "Singularity Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3952, + "IdString": "s3953", + "NameJp": "Singularity King", + "NameEng": "Singularity King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3953, + "IdString": "s3954", + "NameJp": "Singularity God", + "NameEng": "Singularity God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3954, + "IdString": "s3955", + "NameJp": "I love \"シンドイ・ザ・ライド\"", + "NameEng": "I love \"シンドイ・ザ・ライド\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3955, + "IdString": "s3956", + "NameJp": "シンドイ・ザ・マスター", + "NameEng": "シンドイ・ザ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3956, + "IdString": "s3957", + "NameJp": "シンドイ・ザ・クイーン", + "NameEng": "シンドイ・ザ・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3957, + "IdString": "s3958", + "NameJp": "シンドイ・ザ・ゴッデス", + "NameEng": "シンドイ・ザ・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3958, + "IdString": "s3959", + "NameJp": "I love \"Got recover run\"", + "NameEng": "I love \"Got recover run\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3959, + "IdString": "s3960", + "NameJp": "Groove current", + "NameEng": "Groove current", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3960, + "IdString": "s3961", + "NameJp": "King of Groove current", + "NameEng": "King of Groove current", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3961, + "IdString": "s3962", + "NameJp": "God recover run", + "NameEng": "God recover run", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3962, + "IdString": "s3963", + "NameJp": "I love \"LOVE FOR YOU\"", + "NameEng": "I love \"LOVE FOR YOU\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3963, + "IdString": "s3964", + "NameJp": "緑眼の先生", + "NameEng": "緑眼の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3964, + "IdString": "s3965", + "NameJp": "緑眼の女王", + "NameEng": "緑眼の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3965, + "IdString": "s3966", + "NameJp": "緑眼のジェラシー", + "NameEng": "緑眼のジェラシー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3966, + "IdString": "s3967", + "NameJp": "I love \"いろは唄\"", + "NameEng": "I love \"いろは唄\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3967, + "IdString": "s3968", + "NameJp": "イロハニホヘト マスター", + "NameEng": "イロハニホヘト マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3968, + "IdString": "s3969", + "NameJp": "イロハニホヘト クイーン", + "NameEng": "イロハニホヘト クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3969, + "IdString": "s3970", + "NameJp": "イロハニホヘト ゴッデス", + "NameEng": "イロハニホヘト ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3970, + "IdString": "s3971", + "NameJp": "I love \"ADRENA\"", + "NameEng": "I love \"ADRENA\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3971, + "IdString": "s3972", + "NameJp": "ADRENA MASTER", + "NameEng": "ADRENA MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3972, + "IdString": "s3973", + "NameJp": "ADRENA KING", + "NameEng": "ADRENA KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3973, + "IdString": "s3974", + "NameJp": "ADRENA GOD", + "NameEng": "ADRENA GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3974, + "IdString": "s3975", + "NameJp": "I love \"六兆年と一夜物語\"", + "NameEng": "I love \"六兆年と一夜物語\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3975, + "IdString": "s3976", + "NameJp": "名も無い幼い少年", + "NameEng": "名も無い幼い少年", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3976, + "IdString": "s3977", + "NameJp": "名も無い幼い王", + "NameEng": "名も無い幼い王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3977, + "IdString": "s3978", + "NameJp": "名も無い幼い神", + "NameEng": "名も無い幼い神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3978, + "IdString": "s3979", + "NameJp": "I love \"Reload\"", + "NameEng": "I love \"Reload\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3979, + "IdString": "s3980", + "NameJp": "Reload Master", + "NameEng": "Reload Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3980, + "IdString": "s3981", + "NameJp": "Reload King", + "NameEng": "Reload King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3981, + "IdString": "s3982", + "NameJp": "Reload God", + "NameEng": "Reload God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3982, + "IdString": "s3983", + "NameJp": "I love \"東方双地舞\"", + "NameEng": "I love \"東方双地舞\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 3983, + "IdString": "s3984", + "NameJp": "双地舞先生", + "NameEng": "双地舞先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3984, + "IdString": "s3985", + "NameJp": "双地舞大王", + "NameEng": "双地舞大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 3985, + "IdString": "s3986", + "NameJp": "双地舞神", + "NameEng": "双地舞神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 3986, + "IdString": "s3987", + "NameJp": "I love \"ビットチューン\"", + "NameEng": "I love \"ビットチューン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3987, + "IdString": "s3988", + "NameJp": "ビットチューン マスター", + "NameEng": "ビットチューン マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3988, + "IdString": "s3989", + "NameJp": "ビットチューン クイーン", + "NameEng": "ビットチューン クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3989, + "IdString": "s3990", + "NameJp": "ビットチューン ゴッデス", + "NameEng": "ビットチューン ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3990, + "IdString": "s3991", + "NameJp": "I love \"おねがいダーリン\"", + "NameEng": "I love \"おねがいダーリン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 3991, + "IdString": "s3992", + "NameJp": "おねがい先生", + "NameEng": "おねがい先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3992, + "IdString": "s3993", + "NameJp": "おねがい王様", + "NameEng": "おねがい王様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 3993, + "IdString": "s3994", + "NameJp": "おねがい神様", + "NameEng": "おねがい神様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 3994, + "IdString": "s3995", + "NameJp": "I love \"全人類犬化計画\"", + "NameEng": "I love \"全人類犬化計画\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3995, + "IdString": "s3996", + "NameJp": "犬先生", + "NameEng": "犬先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3996, + "IdString": "s3997", + "NameJp": "犬大王", + "NameEng": "犬大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 3997, + "IdString": "s3998", + "NameJp": "犬神", + "NameEng": "犬神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 3998, + "IdString": "s3999", + "NameJp": "I love \"聖者の覚醒\"", + "NameEng": "I love \"聖者の覚醒\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 3999, + "IdString": "s4000", + "NameJp": "覚醒先生", + "NameEng": "覚醒先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4000, + "IdString": "s4001", + "NameJp": "覚醒大王", + "NameEng": "覚醒大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4001, + "IdString": "s4002", + "NameJp": "覚醒神", + "NameEng": "覚醒神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4002, + "IdString": "s4003", + "NameJp": "I love \"Shiny★STARS\"", + "NameEng": "I love \"Shiny★STARS\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4003, + "IdString": "s4004", + "NameJp": "Shiny★STARS Master", + "NameEng": "Shiny★STARS Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4004, + "IdString": "s4005", + "NameJp": "Shiny★STARS King", + "NameEng": "Shiny★STARS King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4005, + "IdString": "s4006", + "NameJp": "Shiny★STARS God", + "NameEng": "Shiny★STARS God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4006, + "IdString": "s4007", + "NameJp": "私のことは殿下と呼びたまえ!", + "NameEng": "私のことは殿下と呼びたまえ!", + "UnlockRequirementJp": "『ずんどこどんつくすたどんたん』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4007, + "IdString": "s4008", + "NameJp": "Don't stop funky music!", + "NameEng": "Don't stop funky music!", + "UnlockRequirementJp": "『ずんどこどんつくすたどんたん』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4008, + "IdString": "s4009", + "NameJp": "クリスマスパーティーマスター", + "NameEng": "クリスマスパーティーマスター", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4009, + "IdString": "s4010", + "NameJp": "聖なるグルーヴァー", + "NameEng": "聖なるグルーヴァー", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4010, + "IdString": "s4011", + "NameJp": "メリーグルコスシマス!", + "NameEng": "メリーグルコスシマス!", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4011, + "IdString": "s4012", + "NameJp": "S+級クリスマスツリー", + "NameEng": "S+級クリスマスツリー", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4012, + "IdString": "s4013", + "NameJp": "尊い・・・", + "NameEng": "尊い・・・", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4013, + "IdString": "s4014", + "NameJp": "メリクリンカちゃん!", + "NameEng": "メリクリンカちゃん!", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4014, + "IdString": "s4015", + "NameJp": "メリクリユメちゃん!", + "NameEng": "メリクリユメちゃん!", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4015, + "IdString": "s4016", + "NameJp": "S+級ブッシュ・ド・ノエル", + "NameEng": "S+級ブッシュ・ド・ノエル", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4016, + "IdString": "s4017", + "NameJp": "S+級ローストチキン", + "NameEng": "S+級ローストチキン", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4017, + "IdString": "s4018", + "NameJp": "しんどい", + "NameEng": "しんどい", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4018, + "IdString": "s4019", + "NameJp": "S+級ゆきだるま", + "NameEng": "S+級ゆきだるま", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4019, + "IdString": "s4020", + "NameJp": "無理", + "NameEng": "無理", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4020, + "IdString": "s4021", + "NameJp": "ジングルベル!", + "NameEng": "ジングルベル!", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4021, + "IdString": "s4022", + "NameJp": "つらい", + "NameEng": "つらい", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4022, + "IdString": "s4023", + "NameJp": "メリークルシミマス!", + "NameEng": "メリークルシミマス!", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4023, + "IdString": "s4024", + "NameJp": "メリークリスマス!", + "NameEng": "メリークリスマス!", + "UnlockRequirementJp": "『2017クリスマスパーティー』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4024, + "IdString": "s4025", + "NameJp": "導きのARIA", + "NameEng": "導きのARIA", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4025, + "IdString": "s4026", + "NameJp": "癒しの歌姫", + "NameEng": "癒しの歌姫", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4026, + "IdString": "s4027", + "NameJp": "仲良し姉妹", + "NameEng": "仲良し姉妹", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4027, + "IdString": "s4028", + "NameJp": "天然ボケ", + "NameEng": "天然ボケ", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4028, + "IdString": "s4029", + "NameJp": "甘えん坊", + "NameEng": "甘えん坊", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4029, + "IdString": "s4030", + "NameJp": "「馬鹿じゃないの?」", + "NameEng": "「馬鹿じゃないの?」", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4030, + "IdString": "s4031", + "NameJp": "「おねだりしてみてほしいの」", + "NameEng": "「おねだりしてみてほしいの」", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4031, + "IdString": "s4032", + "NameJp": "「荒ぶる戦士」", + "NameEng": "「荒ぶる戦士」", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4032, + "IdString": "s4033", + "NameJp": "「燃やせ 燃やせ その心を」", + "NameEng": "「燃やせ 燃やせ その心を」", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4033, + "IdString": "s4034", + "NameJp": "「一緒に帰ろう」", + "NameEng": "「皆いなくなればいいのにな」", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4034, + "IdString": "s4035", + "NameJp": "「ちゃんとこっち向いてったら」", + "NameEng": "「ちゃんとこっち向いてったら」", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4035, + "IdString": "s4036", + "NameJp": "「未熟な暴れ者」", + "NameEng": "「未熟な暴れ者」", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4036, + "IdString": "s4037", + "NameJp": "「叫べ 叫べ 遠くへ」", + "NameEng": "「叫べ 叫べ 遠くへ」", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4037, + "IdString": "s4038", + "NameJp": "「誰も知らない おとぎばなし」", + "NameEng": "「誰も知らない おとぎばなし」", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4038, + "IdString": "s4039", + "NameJp": "I love ONE 2017", + "NameEng": "I love ONE 2017", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4039, + "IdString": "s4040", + "NameJp": "I love IA 2017", + "NameEng": "I love IA 2017", + "UnlockRequirementJp": "『IA&ONE 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4040, + "IdString": "s4041", + "NameJp": "I love \"だってだってだって\"", + "NameEng": "I love \"だってだってだって\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4041, + "IdString": "s4042", + "NameJp": "だってだってだって先生", + "NameEng": "だってだってだって先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4042, + "IdString": "s4043", + "NameJp": "だってだってだって女王", + "NameEng": "だってだってだって女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4043, + "IdString": "s4044", + "NameJp": "だってだってだって女神", + "NameEng": "だってだってだって女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4044, + "IdString": "s4045", + "NameJp": "I love \"パンダヒーロー\" !!", + "NameEng": "I love \"パンダヒーロー\" !!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4045, + "IdString": "s4046", + "NameJp": "金属バット先生", + "NameEng": "金属バット先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4046, + "IdString": "s4047", + "NameJp": "金属バット大王", + "NameEng": "金属バット大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4047, + "IdString": "s4048", + "NameJp": "金属バット神", + "NameEng": "金属バット神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4048, + "IdString": "s4049", + "NameJp": "I love \"イニシャルイニシャルエコーエゴー\"", + "NameEng": "I love \"イニシャルイニシャルエコーエゴー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4049, + "IdString": "s4050", + "NameJp": "ヤマビコ先生", + "NameEng": "ヤマビコ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4050, + "IdString": "s4051", + "NameJp": "ヤマビコ大王", + "NameEng": "ヤマビコ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4051, + "IdString": "s4052", + "NameJp": "ヤマビコ神", + "NameEng": "ヤマビコ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4052, + "IdString": "s4053", + "NameJp": "I love \"しわ\"", + "NameEng": "I love \"しわ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4053, + "IdString": "s4054", + "NameJp": "しわ先生", + "NameEng": "しわ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4054, + "IdString": "s4055", + "NameJp": "しわ大王", + "NameEng": "しわ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4055, + "IdString": "s4056", + "NameJp": "しわ神", + "NameEng": "しわ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4056, + "IdString": "s4057", + "NameJp": "I love \"Miraculous Encounter\"", + "NameEng": "I love \"Miraculous Encounter\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4057, + "IdString": "s4058", + "NameJp": "Miraculous Master", + "NameEng": "Miraculous Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4058, + "IdString": "s4059", + "NameJp": "Miraculous King", + "NameEng": "Miraculous King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4059, + "IdString": "s4060", + "NameJp": "Miraculous God", + "NameEng": "Miraculous God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4060, + "IdString": "s4061", + "NameJp": "I love \"マーメイド\"", + "NameEng": "I love \"マーメイド\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4061, + "IdString": "s4062", + "NameJp": "マーメイド マスター", + "NameEng": "マーメイド マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4062, + "IdString": "s4063", + "NameJp": "マーメイド クイーン", + "NameEng": "マーメイド クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4063, + "IdString": "s4064", + "NameJp": "マーメイド ゴッデス", + "NameEng": "マーメイド ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4064, + "IdString": "s4065", + "NameJp": "I love \"マトリョシカ\" !!", + "NameEng": "I love \"マトリョシカ\" !!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4065, + "IdString": "s4066", + "NameJp": "継ぎ接ぎ狂った先生", + "NameEng": "継ぎ接ぎ狂った先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4066, + "IdString": "s4067", + "NameJp": "継ぎ接ぎ狂った大王", + "NameEng": "継ぎ接ぎ狂った大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4067, + "IdString": "s4068", + "NameJp": "継ぎ接ぎ狂った神", + "NameEng": "継ぎ接ぎ狂った神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4068, + "IdString": "s4069", + "NameJp": "七色の歌姫", + "NameEng": "七色の歌姫", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4069, + "IdString": "s4070", + "NameJp": "青春の1ページ", + "NameEng": "青春の1ページ", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4070, + "IdString": "s4071", + "NameJp": "英語ペラペラ", + "NameEng": "英語ペラペラ", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4071, + "IdString": "s4072", + "NameJp": "「僕は幸せだ。」", + "NameEng": "「僕は幸せだ。」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4072, + "IdString": "s4073", + "NameJp": "「tick ti ti tick」", + "NameEng": "「tick ti ti tick」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4073, + "IdString": "s4074", + "NameJp": "「ただただ\u3000魅了されている!」", + "NameEng": "「ただただ\u3000魅了されている!」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4074, + "IdString": "s4075", + "NameJp": "「あなたと私でランデブー?」", + "NameEng": "「あなたと私でランデブー?」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4075, + "IdString": "s4076", + "NameJp": "「だって、、」", + "NameEng": "「だって、、」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4076, + "IdString": "s4077", + "NameJp": "「I won't let you go」", + "NameEng": "「I won't let you go」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4077, + "IdString": "s4078", + "NameJp": "「パッパッパラッパパパラパ」", + "NameEng": "「パッパッパラッパパパラパ」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4078, + "IdString": "s4079", + "NameJp": "「Remember」", + "NameEng": "「Remember」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4079, + "IdString": "s4080", + "NameJp": "「惑、惑星が飛び出す」", + "NameEng": "「惑、惑星が飛び出す」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4080, + "IdString": "s4081", + "NameJp": "「なんで???」", + "NameEng": "「なんで???」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4081, + "IdString": "s4082", + "NameJp": "「さらば 一昨日殺人ライナー」", + "NameEng": "「さらば 一昨日殺人ライナー」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4082, + "IdString": "s4083", + "NameJp": "「あのね、もっといっぱい舞って頂戴」", + "NameEng": "「あのね、もっといっぱい舞って頂戴」", + "UnlockRequirementJp": "『GUMI 2』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4083, + "IdString": "s4084", + "NameJp": "I love Xenoa", + "NameEng": "I love Xenoa", + "UnlockRequirementJp": "『Tatsh世阿弥』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4084, + "IdString": "s4085", + "NameJp": "I love DJ MURASAME", + "NameEng": "I love DJ MURASAME", + "UnlockRequirementJp": "『Tatsh世阿弥』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4085, + "IdString": "s4086", + "NameJp": "I love 世阿弥", + "NameEng": "I love 世阿弥", + "UnlockRequirementJp": "『Tatsh世阿弥』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4086, + "IdString": "s4087", + "NameJp": "I love Tatsh", + "NameEng": "I love Tatsh", + "UnlockRequirementJp": "『Tatsh世阿弥』\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4087, + "IdString": "s4088", + "NameJp": "DENEB", + "NameEng": "DENEB", + "UnlockRequirementJp": "トロフィーを550個獲得", + "UnlockRequirementEng": "Get 550 trophies", + "Type": 30 + }, + { + "Id": 4088, + "IdString": "s4089", + "NameJp": "SPICA", + "NameEng": "SPICA", + "UnlockRequirementJp": "トロフィーを600個獲得", + "UnlockRequirementEng": "Get 600 trophies", + "Type": 30 + }, + { + "Id": 4089, + "IdString": "s4090", + "NameJp": "ANTARES", + "NameEng": "ANTARES", + "UnlockRequirementJp": "トロフィーを650個獲得", + "UnlockRequirementEng": "Get 650 trophies", + "Type": 30 + }, + { + "Id": 4090, + "IdString": "s4091", + "NameJp": "ALDEBARAN", + "NameEng": "ALDEBARAN", + "UnlockRequirementJp": "トロフィーを700個獲得", + "UnlockRequirementEng": "Get 700 trophies", + "Type": 30 + }, + { + "Id": 4091, + "IdString": "s4092", + "NameJp": "ALTAIR", + "NameEng": "ALTAIR", + "UnlockRequirementJp": "トロフィーを750個獲得", + "UnlockRequirementEng": "Get 750 trophies", + "Type": 30 + }, + { + "Id": 4092, + "IdString": "s4093", + "NameJp": "PROCYON", + "NameEng": "PROCYON", + "UnlockRequirementJp": "トロフィーを800個獲得", + "UnlockRequirementEng": "Get 800 trophies", + "Type": 30 + }, + { + "Id": 4093, + "IdString": "s4094", + "NameJp": "CAPELLA", + "NameEng": "CAPELLA", + "UnlockRequirementJp": "トロフィーを850個獲得", + "UnlockRequirementEng": "Get 850 trophies", + "Type": 30 + }, + { + "Id": 4094, + "IdString": "s4095", + "NameJp": "VEGA", + "NameEng": "VEGA", + "UnlockRequirementJp": "トロフィーを900個獲得", + "UnlockRequirementEng": "Get 900 trophies", + "Type": 30 + }, + { + "Id": 4095, + "IdString": "s4096", + "NameJp": "CANOPUS", + "NameEng": "CANOPUS", + "UnlockRequirementJp": "トロフィーを950個獲得", + "UnlockRequirementEng": "Get 950 trophies", + "Type": 30 + }, + { + "Id": 4096, + "IdString": "s4097", + "NameJp": "SERIUS", + "NameEng": "SERIUS", + "UnlockRequirementJp": "トロフィーを1000個獲得", + "UnlockRequirementEng": "Get 1000 trophies", + "Type": 30 + }, + { + "Id": 4097, + "IdString": "s4098", + "NameJp": "I love \"トラウマレコーダー\"", + "NameEng": "I love \"トラウマレコーダー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 4098, + "IdString": "s4099", + "NameJp": "トラウママスター", + "NameEng": "トラウママスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4099, + "IdString": "s4100", + "NameJp": "トラウマキング", + "NameEng": "トラウマキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4100, + "IdString": "s4101", + "NameJp": "トラウマゴッド", + "NameEng": "トラウマゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 4101, + "IdString": "s4102", + "NameJp": "I love \"Secret Answer\"", + "NameEng": "I love \"Secret Answer\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 4102, + "IdString": "s4103", + "NameJp": "XYZ Master", + "NameEng": "XYZ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4103, + "IdString": "s4104", + "NameJp": "XYZ King", + "NameEng": "XYZ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4104, + "IdString": "s4105", + "NameJp": "XYZ God", + "NameEng": "XYZ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 4105, + "IdString": "s4106", + "NameJp": "I love \"fake town baby\"", + "NameEng": "I love \"fake town baby\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 4106, + "IdString": "s4107", + "NameJp": "血界先生", + "NameEng": "血界先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4107, + "IdString": "s4108", + "NameJp": "血界王", + "NameEng": "血界王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4108, + "IdString": "s4109", + "NameJp": "血界神", + "NameEng": "血界神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 4109, + "IdString": "s4110", + "NameJp": "I love \"アンノウン・マザーグース\"", + "NameEng": "I love \"アンノウン・マザーグース\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4110, + "IdString": "s4111", + "NameJp": "アンノウン・マスター", + "NameEng": "アンノウン・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4111, + "IdString": "s4112", + "NameJp": "アンノウン・クイーン", + "NameEng": "アンノウン・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4112, + "IdString": "s4113", + "NameJp": "アンノウン・ゴッデス", + "NameEng": "アンノウン・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4113, + "IdString": "s4114", + "NameJp": "I love \"あるいは夢眠ねむという概念へのサクシード \"", + "NameEng": "I love \"あるいは夢眠ねむという概念へのサクシード \"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4114, + "IdString": "s4115", + "NameJp": "あるいは先生という概念へのサクシード", + "NameEng": "あるいは先生という概念へのサクシード", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4115, + "IdString": "s4116", + "NameJp": "あるいは王という概念へのサクシード", + "NameEng": "あるいは王という概念へのサクシード", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4116, + "IdString": "s4117", + "NameJp": "あるいは神という概念へのサクシード", + "NameEng": "あるいは神という概念へのサクシード", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4117, + "IdString": "s4118", + "NameJp": "I love \"チュルリラ・チュルリラ・ダッダッダ! \"", + "NameEng": "I love \"チュルリラ・チュルリラ・ダッダッダ !\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4118, + "IdString": "s4119", + "NameJp": "チュルリラ・チュルリラ・マスター", + "NameEng": "チュルリラ・チュルリラ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4119, + "IdString": "s4120", + "NameJp": "チュルリラ・チュルリラ・キング", + "NameEng": "チュルリラ・チュルリラ・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4120, + "IdString": "s4121", + "NameJp": "チュルリラ・チュルリラ・ゴッド", + "NameEng": "チュルリラ・チュルリラ・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4121, + "IdString": "s4122", + "NameJp": "I love \"アマノジャック \"", + "NameEng": "I love \"アマノジャック \"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4122, + "IdString": "s4123", + "NameJp": "ひよっこアマノジャク", + "NameEng": "ひよっこアマノジャク", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4123, + "IdString": "s4124", + "NameJp": "伝説のアマノジャク", + "NameEng": "伝説のアマノジャク", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4124, + "IdString": "s4125", + "NameJp": "神話のアマノジャク", + "NameEng": "神話のアマノジャク", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4125, + "IdString": "s4126", + "NameJp": "I love \"Treasure\"", + "NameEng": "I love \"Treasure\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4126, + "IdString": "s4127", + "NameJp": "Treasure Master", + "NameEng": "Treasure Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4127, + "IdString": "s4128", + "NameJp": "Treasure King", + "NameEng": "Treasure King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4128, + "IdString": "s4129", + "NameJp": "Treasure God", + "NameEng": "Treasure God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4129, + "IdString": "s4130", + "NameJp": "I love \"GROOVE IT LUCKY \"", + "NameEng": "I love \"GROOVE IT LUCKY \"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4130, + "IdString": "s4131", + "NameJp": "厄先生", + "NameEng": "厄先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4131, + "IdString": "s4132", + "NameJp": "厄王様", + "NameEng": "厄王様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4132, + "IdString": "s4133", + "NameJp": "厄神様", + "NameEng": "厄神様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4133, + "IdString": "s4134", + "NameJp": "I love \"Bad Apple!! feat. nomico\"!!", + "NameEng": "I love \"Bad Apple!! feat. nomico\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4134, + "IdString": "s4135", + "NameJp": "Bad Apple!! Master", + "NameEng": "Bad Apple!! Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4135, + "IdString": "s4136", + "NameJp": "Bad Apple!! King", + "NameEng": "Bad Apple!! King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4136, + "IdString": "s4137", + "NameJp": "Bad Apple!! God", + "NameEng": "Bad Apple!! God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4137, + "IdString": "s4138", + "NameJp": "I love \"cyanine\"", + "NameEng": "I love \"cyanine\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4138, + "IdString": "s4139", + "NameJp": "cyanine master", + "NameEng": "cyanine master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4139, + "IdString": "s4140", + "NameJp": "cyanine king", + "NameEng": "cyanine king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4140, + "IdString": "s4141", + "NameJp": "cyanine god", + "NameEng": "cyanine god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4141, + "IdString": "s4142", + "NameJp": "I love \"Frey's Philosophy\"", + "NameEng": "I love \"Frey's Philosophy\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4142, + "IdString": "s4143", + "NameJp": "Frey's Master", + "NameEng": "Frey's Philosophy Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4143, + "IdString": "s4144", + "NameJp": "Frey's King", + "NameEng": "Frey's Philosophy King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4144, + "IdString": "s4145", + "NameJp": "Frey's God", + "NameEng": "Frey's Philosophy God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4145, + "IdString": "s4146", + "NameJp": "I love \"ナムコットメドレー\"", + "NameEng": "I love \"ナムコットメドレー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4146, + "IdString": "s4147", + "NameJp": "ナムコットメドレー・マスター", + "NameEng": "ナムコットメドレー・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4147, + "IdString": "s4148", + "NameJp": "ナムコットメドレー・キング", + "NameEng": "ナムコットメドレー・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4148, + "IdString": "s4149", + "NameJp": "ナムコットメドレー・ゴッド", + "NameEng": "ナムコットメドレー・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4149, + "IdString": "s4150", + "NameJp": "I love \"君のStarlight Road\"", + "NameEng": "I love \"君のStarlight Road\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4150, + "IdString": "s4151", + "NameJp": "Starlight Road Master", + "NameEng": "Starlight Road Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4151, + "IdString": "s4152", + "NameJp": "Starlight Road King", + "NameEng": "Starlight Road King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4152, + "IdString": "s4153", + "NameJp": "Starlight Road God", + "NameEng": "Starlight Road God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4153, + "IdString": "s4154", + "NameJp": "I love \"Horizons\"", + "NameEng": "I love \"Horizons\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4154, + "IdString": "s4155", + "NameJp": "Horizons Master", + "NameEng": "Horizons Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4155, + "IdString": "s4156", + "NameJp": "Horizons King", + "NameEng": "Horizons King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4156, + "IdString": "s4157", + "NameJp": "Horizons God", + "NameEng": "Horizons God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4157, + "IdString": "s4158", + "NameJp": "I love \"Wandering One\"", + "NameEng": "I love \"Wandering One\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4158, + "IdString": "s4159", + "NameJp": "Wandering Master", + "NameEng": "Wandering Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4159, + "IdString": "s4160", + "NameJp": "Wandering King", + "NameEng": "Wandering King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4160, + "IdString": "s4161", + "NameJp": "Wandering God", + "NameEng": "Wandering God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4161, + "IdString": "s4162", + "NameJp": "I love \"FM音源黙示録\"", + "NameEng": "I love \"FM音源黙示録\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4162, + "IdString": "s4163", + "NameJp": "FM音源先生", + "NameEng": "FM音源先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4163, + "IdString": "s4164", + "NameJp": "FM音源大王", + "NameEng": "FM音源大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4164, + "IdString": "s4165", + "NameJp": "FM音源神", + "NameEng": "FM音源神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4165, + "IdString": "s4166", + "NameJp": "I love \"JUMPEE!\"", + "NameEng": "I love \"JUMPEE!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4166, + "IdString": "s4167", + "NameJp": "JUMPEE! MASTER!", + "NameEng": "JUMPEE! MASTER!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4167, + "IdString": "s4168", + "NameJp": "JUMPEE! KING!", + "NameEng": "JUMPEE! KING!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4168, + "IdString": "s4169", + "NameJp": "JUMPEE! GOD!", + "NameEng": "JUMPEE! GOD!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4169, + "IdString": "s4170", + "NameJp": "I love \"トリノコシティ\"", + "NameEng": "I love \"トリノコシティ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4170, + "IdString": "s4171", + "NameJp": "トリノコシティ・マスター", + "NameEng": "トリノコシティ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4171, + "IdString": "s4172", + "NameJp": "トリノコシティ・キング", + "NameEng": "トリノコシティ・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4172, + "IdString": "s4173", + "NameJp": "トリノコシティ・ゴッド", + "NameEng": "トリノコシティ・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4173, + "IdString": "s4174", + "NameJp": "I love \"Got more raves? -xiRemix-\"", + "NameEng": "I love \"Got more raves? -xiRemix-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4174, + "IdString": "s4175", + "NameJp": "Groove master? -xiRemix-", + "NameEng": "Groove master? -xiRemix-", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4175, + "IdString": "s4176", + "NameJp": "King of Groove master? -xiRemix-", + "NameEng": "King of Groove master? -xiRemix-", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4176, + "IdString": "s4177", + "NameJp": "God more raves? -xiRemix-", + "NameEng": "God more raves? -xiRemix-", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4177, + "IdString": "s4178", + "NameJp": "I love \"Ψ発見伝!\"", + "NameEng": "I love \"Ψ発見伝!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 4178, + "IdString": "s4179", + "NameJp": "Ψ発見伝!マスター", + "NameEng": "Ψ発見伝!マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4179, + "IdString": "s4180", + "NameJp": "Ψ発見伝!キング", + "NameEng": "Ψ発見伝!キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4180, + "IdString": "s4181", + "NameJp": "Ψ発見伝!ゴッド", + "NameEng": "Ψ発見伝!ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 4181, + "IdString": "s4182", + "NameJp": "I love \"Crimson Phoenix\"", + "NameEng": "I love \"Crimson Phoenix\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4182, + "IdString": "s4183", + "NameJp": "Crimson Phoenix Master", + "NameEng": "Crimson Phoenix Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4183, + "IdString": "s4184", + "NameJp": "Crimson Phoenix King", + "NameEng": "Crimson Phoenix King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4184, + "IdString": "s4185", + "NameJp": "Crimson Phoenix God", + "NameEng": "Crimson Phoenix God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4185, + "IdString": "s4186", + "NameJp": "宇宙を救うのはやっぱり、でんぱ組.inc!", + "NameEng": "宇宙を救うのはやっぱり、でんぱ組.inc!", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4186, + "IdString": "s4187", + "NameJp": "上上下下ABAB", + "NameEng": "上上下下ABAB", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4187, + "IdString": "s4188", + "NameJp": "もっと愛してー!", + "NameEng": "もっと愛してー!", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4188, + "IdString": "s4189", + "NameJp": "君にねむきゅんきゅん!", + "NameEng": "君にねむきゅんきゅん!", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4189, + "IdString": "s4190", + "NameJp": "わぁーい!", + "NameEng": "わぁーい!", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4190, + "IdString": "s4191", + "NameJp": "子供じゃないも~ん!", + "NameEng": "子供じゃないも~ん!", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4191, + "IdString": "s4192", + "NameJp": "彼女とデートなうって使っていいよ。", + "NameEng": "彼女とデートなうって使っていいよ。", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4192, + "IdString": "s4193", + "NameJp": "カワウソに似ててもいいよね?", + "NameEng": "カワウソに似ててもいいよね?", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4193, + "IdString": "s4194", + "NameJp": "イラストも描けちゃうあなたの彼女♡", + "NameEng": "イラストも描けちゃうあなたの彼女♡", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4194, + "IdString": "s4195", + "NameJp": "歌って描けるポンコツカワウソ", + "NameEng": "歌って描けるポンコツカワウソ", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4195, + "IdString": "s4196", + "NameJp": "I love 新生『でんぱ組.inc』", + "NameEng": "I love 新生『でんぱ組.inc』", + "UnlockRequirementJp": "『でんぱ組.inc』宇宙的コラボ\nイベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4196, + "IdString": "s4197", + "NameJp": "I love \"Specta\"", + "NameEng": "I love \"Specta\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4197, + "IdString": "s4198", + "NameJp": "Specta Master", + "NameEng": "Specta Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4198, + "IdString": "s4199", + "NameJp": "Specta King", + "NameEng": "Specta King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4199, + "IdString": "s4200", + "NameJp": "Specta God", + "NameEng": "Specta God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4200, + "IdString": "s4201", + "NameJp": "I love \"7 days a week\"", + "NameEng": "I love \"7 days a week\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4201, + "IdString": "s4202", + "NameJp": "火水木金土日月先生", + "NameEng": "火水木金土日月先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4202, + "IdString": "s4203", + "NameJp": "火水木金土日月大王", + "NameEng": "火水木金土日月大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4203, + "IdString": "s4204", + "NameJp": "火水木金土日月神", + "NameEng": "火水木金土日月神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4204, + "IdString": "s4205", + "NameJp": "I love \"TODAY THE FUTURE\"", + "NameEng": "I love \"TODAY THE FUTURE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4205, + "IdString": "s4206", + "NameJp": "TODAY THE FUTURE MASTER", + "NameEng": "TODAY THE FUTURE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4206, + "IdString": "s4207", + "NameJp": "TODAY THE FUTURE KING", + "NameEng": "TODAY THE FUTURE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4207, + "IdString": "s4208", + "NameJp": "TODAY THE FUTURE GOD", + "NameEng": "TODAY THE FUTURE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4208, + "IdString": "s4209", + "NameJp": "I love \"You are the Miserable\"", + "NameEng": "I love \"You are the Miserable\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4209, + "IdString": "s4210", + "NameJp": "You are the Miserable Master", + "NameEng": "You are the Miserable Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4210, + "IdString": "s4211", + "NameJp": "You are the Miserable King", + "NameEng": "You are the Miserable King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4211, + "IdString": "s4212", + "NameJp": "You are the Miserable God", + "NameEng": "You are the Miserable God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4212, + "IdString": "s4213", + "NameJp": "I love \"Androgynos\"", + "NameEng": "I love \"Androgynos\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4213, + "IdString": "s4214", + "NameJp": "Androgynos Master", + "NameEng": "Androgynos Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4214, + "IdString": "s4215", + "NameJp": "Androgynos King", + "NameEng": "Androgynos King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4215, + "IdString": "s4216", + "NameJp": "Androgynos God", + "NameEng": "Androgynos God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4216, + "IdString": "s4217", + "NameJp": "I love \"孤独な花\"", + "NameEng": "I love \"孤独な花\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4217, + "IdString": "s4218", + "NameJp": " 聖域を作る程度の先生", + "NameEng": " 聖域を作る程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4218, + "IdString": "s4219", + "NameJp": " 聖域を作る程度の女王", + "NameEng": " 聖域を作る程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4219, + "IdString": "s4220", + "NameJp": " 聖域を作る程度の女神", + "NameEng": " 聖域を作る程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4220, + "IdString": "s4221", + "NameJp": "I love \"焼痕煉黑、冷艶ノ絶\"", + "NameEng": "I love \"焼痕煉黑、冷艶ノ絶\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4221, + "IdString": "s4222", + "NameJp": "溶けない炎天下の先生", + "NameEng": "溶けない炎天下の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4222, + "IdString": "s4223", + "NameJp": "溶けない炎天下の女王", + "NameEng": "溶けない炎天下の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4223, + "IdString": "s4224", + "NameJp": "溶けない炎天下の女神", + "NameEng": "溶けない炎天下の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4224, + "IdString": "s4225", + "NameJp": "I love \"揺蕩うLove\"", + "NameEng": "I love \"揺蕩うLove\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4225, + "IdString": "s4226", + "NameJp": "揺蕩う先生", + "NameEng": "揺蕩う先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4226, + "IdString": "s4227", + "NameJp": "揺蕩う女王", + "NameEng": "揺蕩う女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4227, + "IdString": "s4228", + "NameJp": "揺蕩う女神", + "NameEng": "揺蕩う女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4228, + "IdString": "s4229", + "NameJp": "I love \"宵闇鳥\"", + "NameEng": "I love \"宵闇鳥\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4229, + "IdString": "s4230", + "NameJp": " 歌で人を狂わせる先生", + "NameEng": " 歌で人を狂わせる先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4230, + "IdString": "s4231", + "NameJp": " 歌で人を狂わせる女王", + "NameEng": " 歌で人を狂わせる女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4231, + "IdString": "s4232", + "NameJp": " 歌で人を狂わせる女神", + "NameEng": " 歌で人を狂わせる女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4232, + "IdString": "s4233", + "NameJp": "I love \"IN MY LIFE\"", + "NameEng": "I love \"IN MY LIFE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4233, + "IdString": "s4234", + "NameJp": "IN MY LIFE MASTER", + "NameEng": "IN MY LIFE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4234, + "IdString": "s4235", + "NameJp": "IN MY LIFE QUEEN", + "NameEng": "IN MY LIFE QUEEN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4235, + "IdString": "s4236", + "NameJp": "IN MY LIFE GODDESS", + "NameEng": "IN MY LIFE GODDESS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4236, + "IdString": "s4237", + "NameJp": "I love \"クレープが食べたい\"", + "NameEng": "I love \"クレープが食べたい\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4237, + "IdString": "s4238", + "NameJp": "クレープが食べたい先生", + "NameEng": "クレープが食べたい先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4238, + "IdString": "s4239", + "NameJp": "クレープが食べたい女王", + "NameEng": "クレープが食べたい女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4239, + "IdString": "s4240", + "NameJp": "クレープが食べたい女神", + "NameEng": "クレープが食べたい女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4240, + "IdString": "s4241", + "NameJp": "I love \"あさき夢眠シ\u3000恋模様\"", + "NameEng": "I love \"あさき夢眠シ\u3000恋模様\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4241, + "IdString": "s4242", + "NameJp": "あさき夢眠シ先生", + "NameEng": "あさき夢眠シ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4242, + "IdString": "s4243", + "NameJp": "あさき夢眠シ女王", + "NameEng": "あさき夢眠シ女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4243, + "IdString": "s4244", + "NameJp": "あさき夢眠シ女神", + "NameEng": "あさき夢眠シ女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4244, + "IdString": "s4245", + "NameJp": "I love \"領域のカナタVIIICELL\"", + "NameEng": "I love \"領域のカナタVIIICELL\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4245, + "IdString": "s4246", + "NameJp": "領域のカナタVIIICELL MASTER", + "NameEng": "領域のカナタVIIICELL MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4246, + "IdString": "s4247", + "NameJp": "領域のカナタVIIICELL KING", + "NameEng": "領域のカナタVIIICELL KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4247, + "IdString": "s4248", + "NameJp": "領域のカナタVIIICELL GOD", + "NameEng": "領域のカナタVIIICELL GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4248, + "IdString": "s4249", + "NameJp": "I love \"39みゅーじっく!\"", + "NameEng": "I love \"39みゅーじっく!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4249, + "IdString": "s4250", + "NameJp": "39みゅーじっく! ますたー", + "NameEng": "39みゅーじっく! ますたー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4250, + "IdString": "s4251", + "NameJp": "39みゅーじっく! くいーん", + "NameEng": "39みゅーじっく! くいーん", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4251, + "IdString": "s4252", + "NameJp": "39みゅーじっく! ごっです", + "NameEng": "39みゅーじっく! ごっです", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4252, + "IdString": "s4253", + "NameJp": "I love \"千本桜\" !!", + "NameEng": "I love \"千本桜\" !!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4253, + "IdString": "s4254", + "NameJp": "ハイカラ先生", + "NameEng": "ハイカラ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4254, + "IdString": "s4255", + "NameJp": "ハイカラ大王", + "NameEng": "ハイカラ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4255, + "IdString": "s4256", + "NameJp": "ハイカラ神", + "NameEng": "ハイカラ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4256, + "IdString": "s4257", + "NameJp": "I love \"ボロボロだ \"", + "NameEng": "I love \"ボロボロだ \"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4257, + "IdString": "s4258", + "NameJp": "ボロボロ先生", + "NameEng": "ボロボロ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4258, + "IdString": "s4259", + "NameJp": "ボロボロ大王", + "NameEng": "ボロボロ大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4259, + "IdString": "s4260", + "NameJp": "ボロボロ神", + "NameEng": "ボロボロ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4260, + "IdString": "s4261", + "NameJp": "I love \"快晴 \"", + "NameEng": "I love \"快晴 \"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4261, + "IdString": "s4262", + "NameJp": "快晴先生", + "NameEng": "快晴先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4262, + "IdString": "s4263", + "NameJp": "快晴大王", + "NameEng": "快晴大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4263, + "IdString": "s4264", + "NameJp": "快晴神", + "NameEng": "快晴神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4264, + "IdString": "s4265", + "NameJp": "I love \"アンハッピーリフレイン \" !!", + "NameEng": "I love \"アンハッピーリフレイン \" !!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4265, + "IdString": "s4266", + "NameJp": "リフレインマスター", + "NameEng": "リフレインマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4266, + "IdString": "s4267", + "NameJp": "リフレインキング", + "NameEng": "リフレインキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4267, + "IdString": "s4268", + "NameJp": "リフレインゴッド", + "NameEng": "リフレインゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4268, + "IdString": "s4269", + "NameJp": "I love \"Black or White \"", + "NameEng": "I love \"Black or White \"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4269, + "IdString": "s4270", + "NameJp": "Black or White Master", + "NameEng": "Black or White Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4270, + "IdString": "s4271", + "NameJp": "Black or White King", + "NameEng": "Black or White King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4271, + "IdString": "s4272", + "NameJp": "Black or White God", + "NameEng": "Black or White God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4272, + "IdString": "s4273", + "NameJp": "音律に祝福されし者", + "NameEng": "音律に祝福されし者", + "UnlockRequirementJp": "『Lanota』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4273, + "IdString": "s4274", + "NameJp": "I love Lanota", + "NameEng": "I love Lanota", + "UnlockRequirementJp": "『Lanota』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4274, + "IdString": "s4275", + "NameJp": "東方弐集想", + "NameEng": "東方弐集想", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4275, + "IdString": "s4276", + "NameJp": "雪符「ダイアモンドブリザード」", + "NameEng": "雪符「ダイアモンドブリザード」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4276, + "IdString": "s4277", + "NameJp": "尽符「ブラッディマウンテンマーダー」", + "NameEng": "尽符「ブラッディマウンテンマーダー」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4277, + "IdString": "s4278", + "NameJp": "化鉄「置き傘特急ナイトカーニバル」", + "NameEng": "化鉄「置き傘特急ナイトカーニバル」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4278, + "IdString": "s4279", + "NameJp": "恨符「丑の刻参り」", + "NameEng": "恨符「丑の刻参り」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4279, + "IdString": "s4280", + "NameJp": "創符「流刑人形」", + "NameEng": "創符「流刑人形」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4280, + "IdString": "s4281", + "NameJp": "鬼神「飛翔毘沙門天」", + "NameEng": "鬼神「飛翔毘沙門天」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4281, + "IdString": "s4282", + "NameJp": "大声「チャージドヤッホー」", + "NameEng": "大声「チャージドヤッホー」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4282, + "IdString": "s4283", + "NameJp": "雨符「囚われの秋雨」", + "NameEng": "雨符「囚われの秋雨」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4283, + "IdString": "s4284", + "NameJp": "兎符「ベリーベリーダンゴ」", + "NameEng": "兎符「ベリーベリーダンゴ」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4284, + "IdString": "s4285", + "NameJp": "飛符「フライングヘッド」", + "NameEng": "飛符「フライングヘッド」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4285, + "IdString": "s4286", + "NameJp": "響符「パワーレゾナンス」", + "NameEng": "響符「パワーレゾナンス」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4286, + "IdString": "s4287", + "NameJp": "大輪「からかさ後光」", + "NameEng": "大輪「からかさ後光」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4287, + "IdString": "s4288", + "NameJp": "妬符「グリーンアイドモンスター」", + "NameEng": "妬符「グリーンアイドモンスター」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4288, + "IdString": "s4289", + "NameJp": "疵痕「壊されたお守り」", + "NameEng": "疵痕「壊されたお守り」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4289, + "IdString": "s4290", + "NameJp": "仙符「鳳凰展翅」", + "NameEng": "仙符「鳳凰展翅」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4290, + "IdString": "s4291", + "NameJp": "氷符「アイシクルフォール」", + "NameEng": "氷符「アイシクルフォール」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4291, + "IdString": "s4292", + "NameJp": "夜雀「真夜中のコーラスマスター」", + "NameEng": "夜雀「真夜中のコーラスマスター」", + "UnlockRequirementJp": "『東方弐集想』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4292, + "IdString": "s4293", + "NameJp": "39!", + "NameEng": "39!", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4293, + "IdString": "s4294", + "NameJp": "このゆめはつづいてく", + "NameEng": "このゆめはつづいてく", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4294, + "IdString": "s4295", + "NameJp": "アイラブユウ……「♡」", + "NameEng": "アイラブユウ……「♡」", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4295, + "IdString": "s4296", + "NameJp": "君は笑っていて", + "NameEng": "君は笑っていて", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4296, + "IdString": "s4297", + "NameJp": "磊々落々反戦国家", + "NameEng": "磊々落々反戦国家", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4297, + "IdString": "s4298", + "NameJp": "それは美しい", + "NameEng": "それは美しい", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4298, + "IdString": "s4299", + "NameJp": "それはラッキー", + "NameEng": "それはラッキー", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4299, + "IdString": "s4300", + "NameJp": "Making Groovy", + "NameEng": "Making Groovy", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4300, + "IdString": "s4301", + "NameJp": "少年少女戦国無双", + "NameEng": "少年少女戦国無双", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4301, + "IdString": "s4302", + "NameJp": "あたしの全部に\u3000その意味はあると", + "NameEng": "あたしの全部に\u3000その意味はあると", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4302, + "IdString": "s4303", + "NameJp": "立ち上がろうか、ねえ?", + "NameEng": "立ち上がろうか、ねえ?", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4303, + "IdString": "s4304", + "NameJp": "夕焼けの赤に消えていく", + "NameEng": "夕焼けの赤に消えていく", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4304, + "IdString": "s4305", + "NameJp": "また笑えますように", + "NameEng": "また笑えますように", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4305, + "IdString": "s4306", + "NameJp": "「ワンマンライブ大成功!」", + "NameEng": "「ワンマンライブ大成功!」", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4306, + "IdString": "s4307", + "NameJp": "I love 初音ミク 2018", + "NameEng": "I love 初音ミク 2018", + "UnlockRequirementJp": "『初音ミク 10周年』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4307, + "IdString": "s4308", + "NameJp": "I love \"ピアノ・ソナタ「月光」第三楽章\"!!", + "NameEng": "I love \"ピアノ・ソナタ「月光」第三楽章\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4308, + "IdString": "s4309", + "NameJp": "Trancemaster 月光", + "NameEng": "Trancemaster 月光", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4309, + "IdString": "s4310", + "NameJp": "Tranceking 月光", + "NameEng": "Tranceking 月光", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4310, + "IdString": "s4311", + "NameJp": "Trancegod 月光", + "NameEng": "Trancegod 月光", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4311, + "IdString": "s4312", + "NameJp": "I love \"B.B.K.K.B.K.K. \"", + "NameEng": "I love \"B.B.K.K.B.K.K. \"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4312, + "IdString": "s4313", + "NameJp": "\"B.B.K.K.B.K.K.M.", + "NameEng": "\"B.B.K.K.B.K.K.M.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4313, + "IdString": "s4314", + "NameJp": "\"B.B.K.K.B.K.K.K.", + "NameEng": "\"B.B.K.K.B.K.K.K.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4314, + "IdString": "s4315", + "NameJp": "\"B.B.K.K.B.K.K.G.", + "NameEng": "\"B.B.K.K.B.K.K.G.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4315, + "IdString": "s4316", + "NameJp": "I love \"HAPPY! LUCKY! FUTURE WORLD\"", + "NameEng": "I love \"HAPPY! LUCKY! FUTURE WORLD\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4316, + "IdString": "s4317", + "NameJp": "HAPPY LUCKY MASTER!", + "NameEng": "HAPPY LUCKY MASTER!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4317, + "IdString": "s4318", + "NameJp": "HAPPY LUCKY KING!", + "NameEng": "HAPPY LUCKY KING!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4318, + "IdString": "s4319", + "NameJp": "HAPPY LUCKY GOD!", + "NameEng": "HAPPY LUCKY GOD!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4319, + "IdString": "s4320", + "NameJp": "I love \"MOVING FASTER\"", + "NameEng": "I love \"MOVING FASTER\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4320, + "IdString": "s4321", + "NameJp": "MOVING FASTER MASTER", + "NameEng": "MOVING FASTER MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4321, + "IdString": "s4322", + "NameJp": "MOVING FASTER KING", + "NameEng": "MOVING FASTER KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4322, + "IdString": "s4323", + "NameJp": "MOVING FASTER GOD", + "NameEng": "MOVING FASTER GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4323, + "IdString": "s4324", + "NameJp": "I love \"人生リセットボタン\"", + "NameEng": "I love \"人生リセットボタン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4324, + "IdString": "s4325", + "NameJp": "人生リセットマスター", + "NameEng": "人生リセットマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4325, + "IdString": "s4326", + "NameJp": "人生リセットキング", + "NameEng": "人生リセットキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4326, + "IdString": "s4327", + "NameJp": "人生リセットゴッド", + "NameEng": "人生リセットゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4327, + "IdString": "s4328", + "NameJp": "I love \"最終鬼畜妹フランドール・S\"", + "NameEng": "I love \"最終鬼畜妹フランドール・S\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4328, + "IdString": "s4329", + "NameJp": "最終鬼畜先生", + "NameEng": "最終鬼畜先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4329, + "IdString": "s4330", + "NameJp": "最終鬼畜女王", + "NameEng": "最終鬼畜女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4330, + "IdString": "s4331", + "NameJp": "最終鬼畜妹", + "NameEng": "最終鬼畜妹", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4331, + "IdString": "s4332", + "NameJp": "I love \"Put Your Hands Up\"", + "NameEng": "I love \"Put Your Hands Up\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4332, + "IdString": "s4333", + "NameJp": "Hands Up Master", + "NameEng": "Hands Up Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4333, + "IdString": "s4334", + "NameJp": "Hands Up King", + "NameEng": "Hands Up King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4334, + "IdString": "s4335", + "NameJp": "Hands Up God", + "NameEng": "Hands Up God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4335, + "IdString": "s4336", + "NameJp": "I love \"秘神マターラ-HYPER TECHNO MIX-\"", + "NameEng": "I love \"秘神マターラ-HYPER TECHNO MIX-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4336, + "IdString": "s4337", + "NameJp": "秘人マターラ", + "NameEng": "秘人マターラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4337, + "IdString": "s4338", + "NameJp": "秘王マターラ", + "NameEng": "秘王マターラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4338, + "IdString": "s4339", + "NameJp": "秘神マターラ", + "NameEng": "秘神マターラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4339, + "IdString": "s4340", + "NameJp": "I love \"夜咄ディセイブ\"!!", + "NameEng": "I love \"夜咄ディセイブ\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4340, + "IdString": "s4341", + "NameJp": "目を欺く先生", + "NameEng": "目を欺く先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4341, + "IdString": "s4342", + "NameJp": "目を欺く王", + "NameEng": "目を欺く王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4342, + "IdString": "s4343", + "NameJp": "目を欺く神", + "NameEng": "目を欺く神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4343, + "IdString": "s4344", + "NameJp": "I love \"彗星ハネムーン\"", + "NameEng": "I love \"彗星ハネムーン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4344, + "IdString": "s4345", + "NameJp": "彗星ハネムーンマスター", + "NameEng": "彗星ハネムーンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4345, + "IdString": "s4346", + "NameJp": "彗星ハネムーンクイーン", + "NameEng": "彗星ハネムーンクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4346, + "IdString": "s4347", + "NameJp": "彗星ハネムーンゴッデス", + "NameEng": "彗星ハネムーンゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4347, + "IdString": "s4348", + "NameJp": "I love \"Finder\"", + "NameEng": "I love \"Finder\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4348, + "IdString": "s4349", + "NameJp": "もう歌しか聞こえない先生", + "NameEng": "もう歌しか聞こえない先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4349, + "IdString": "s4350", + "NameJp": "もう歌しか聞こえない女王", + "NameEng": "もう歌しか聞こえない女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4350, + "IdString": "s4351", + "NameJp": "もう歌しか聞こえない女神", + "NameEng": "もう歌しか聞こえない女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4351, + "IdString": "s4352", + "NameJp": "AUG, 2018 TOP RANKER", + "NameEng": "AUG, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4352, + "IdString": "s4353", + "NameJp": "SEP, 2018 TOP RANKER", + "NameEng": "SEP, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4353, + "IdString": "s4354", + "NameJp": "OCT, 2018 TOP RANKER", + "NameEng": "OCT, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4354, + "IdString": "s4355", + "NameJp": "NOV, 2018 TOP RANKER", + "NameEng": "NOV, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4355, + "IdString": "s4356", + "NameJp": "DEC, 2018 TOP RANKER", + "NameEng": "DEC, 2018 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4356, + "IdString": "s4357", + "NameJp": "JAN, 2019 TOP RANKER", + "NameEng": "JAN, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4357, + "IdString": "s4358", + "NameJp": "FEB, 2019 TOP RANKER", + "NameEng": "FEB, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4358, + "IdString": "s4359", + "NameJp": "MAR, 2019 TOP RANKER", + "NameEng": "MAR, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4359, + "IdString": "s4360", + "NameJp": "APR, 2019 TOP RANKER", + "NameEng": "APR, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4360, + "IdString": "s4361", + "NameJp": "MAY, 2019 TOP RANKER", + "NameEng": "MAY, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4361, + "IdString": "s4362", + "NameJp": "JUN, 2019 TOP RANKER", + "NameEng": "JUN, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4362, + "IdString": "s4363", + "NameJp": "JUL, 2019 TOP RANKER", + "NameEng": "JUL, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4363, + "IdString": "s4364", + "NameJp": "AUG, 2019 TOP RANKER", + "NameEng": "AUG, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4364, + "IdString": "s4365", + "NameJp": "SEP, 2019 TOP RANKER", + "NameEng": "SEP, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4365, + "IdString": "s4366", + "NameJp": "OCT, 2019 TOP RANKER", + "NameEng": "OCT, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4366, + "IdString": "s4367", + "NameJp": "NOV, 2019 TOP RANKER", + "NameEng": "NOV, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4367, + "IdString": "s4368", + "NameJp": "DEC, 2019 TOP RANKER", + "NameEng": "DEC, 2019 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4368, + "IdString": "s4369", + "NameJp": "JAN, 2020 TOP RANKER", + "NameEng": "JAN, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4369, + "IdString": "s4370", + "NameJp": "FEB, 2020 TOP RANKER", + "NameEng": "FEB, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4370, + "IdString": "s4371", + "NameJp": "MAR, 2020 TOP RANKER", + "NameEng": "MAR, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4371, + "IdString": "s4372", + "NameJp": "APR, 2020 TOP RANKER", + "NameEng": "APR, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4372, + "IdString": "s4373", + "NameJp": "MAY, 2020 TOP RANKER", + "NameEng": "MAY, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4373, + "IdString": "s4374", + "NameJp": "JUN, 2020 TOP RANKER", + "NameEng": "JUN, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4374, + "IdString": "s4375", + "NameJp": "JUL, 2020 TOP RANKER", + "NameEng": "JUL, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 4375, + "IdString": "s4376", + "NameJp": "I love \"夜明けまであと3秒\"", + "NameEng": "I love \"夜明けまであと3秒\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4376, + "IdString": "s4377", + "NameJp": "明星", + "NameEng": "明星", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4377, + "IdString": "s4378", + "NameJp": "旅立つ鳥たち", + "NameEng": "旅立つ鳥たち", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4378, + "IdString": "s4379", + "NameJp": "ネオンカラー", + "NameEng": "ネオンカラー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4379, + "IdString": "s4380", + "NameJp": "I love \"Libera Ray\"", + "NameEng": "I love \"Libera Ray\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4380, + "IdString": "s4381", + "NameJp": "絶望リフレイン", + "NameEng": "絶望リフレイン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4381, + "IdString": "s4382", + "NameJp": "予期せぬ前兆", + "NameEng": "予期せぬ前兆", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4382, + "IdString": "s4383", + "NameJp": "メランコリックジャーニー", + "NameEng": "メランコリックジャーニー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4383, + "IdString": "s4384", + "NameJp": "I love \"M.S.S.Phoenix\"", + "NameEng": "I love \"M.S.S.Phoenix\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 4384, + "IdString": "s4385", + "NameJp": "M.S.S.Phoenix Master", + "NameEng": "M.S.S.Phoenix Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4385, + "IdString": "s4386", + "NameJp": "M.S.S.Phoenix King", + "NameEng": "M.S.S.Phoenix King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4386, + "IdString": "s4387", + "NameJp": "M.S.S.Phoenix God", + "NameEng": "M.S.S.Phoenix God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 4387, + "IdString": "s4388", + "NameJp": "I love \"Seyana.~何でも言うことを聞いてくれるアカネチャン~\"", + "NameEng": "I love \"Seyana.~何でも言うことを聞いてくれるアカネチャン~\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4388, + "IdString": "s4389", + "NameJp": "せやな", + "NameEng": "せやな", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4389, + "IdString": "s4390", + "NameJp": "ええんちゃう?", + "NameEng": "ええんちゃう?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4390, + "IdString": "s4391", + "NameJp": "わかる(天下無双)", + "NameEng": "わかる(天下無双)", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4391, + "IdString": "s4392", + "NameJp": "I love \"GO BACK 2 YOUR RAVE\"", + "NameEng": "I love \"GO BACK 2 YOUR RAVE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4392, + "IdString": "s4393", + "NameJp": "GO BACK 2 YOUR MASTER", + "NameEng": "GO BACK 2 YOUR MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4393, + "IdString": "s4394", + "NameJp": "GO BACK 2 YOUR KING", + "NameEng": "GO BACK 2 YOUR KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4394, + "IdString": "s4395", + "NameJp": "GO BACK 2 YOUR GOD", + "NameEng": "GO BACK 2 YOUR GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4395, + "IdString": "s4396", + "NameJp": "I love \"Desert Bread\"", + "NameEng": "I love \"Desert Bread\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4396, + "IdString": "s4397", + "NameJp": "Desert Bread Master", + "NameEng": "Desert Bread Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4397, + "IdString": "s4398", + "NameJp": "Desert Bread King", + "NameEng": "Desert Bread King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4398, + "IdString": "s4399", + "NameJp": "Desert Bread God", + "NameEng": "Desert Bread God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4399, + "IdString": "s4400", + "NameJp": "I love \"イカサマライフゲイム\"", + "NameEng": "I love \"イカサマライフゲイム\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4400, + "IdString": "s4401", + "NameJp": "イカサマライフマスター", + "NameEng": "イカサマライフマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4401, + "IdString": "s4402", + "NameJp": "イカサマライフキング", + "NameEng": "イカサマライフキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4402, + "IdString": "s4403", + "NameJp": "イカサマライフゴッド", + "NameEng": "イカサマライフゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4403, + "IdString": "s4404", + "NameJp": "I love \"Cosmic Express\"", + "NameEng": "I love \"Cosmic Express\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4404, + "IdString": "s4405", + "NameJp": "Cosmic Express Master", + "NameEng": "Cosmic Express Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4405, + "IdString": "s4406", + "NameJp": "Cosmic Express King", + "NameEng": "Cosmic Express King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4406, + "IdString": "s4407", + "NameJp": "Cosmic Express God", + "NameEng": "Cosmic Express God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4407, + "IdString": "s4408", + "NameJp": "I love \"Tropics -GC edit-\"", + "NameEng": "I love \"Tropics -GC edit-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4408, + "IdString": "s4409", + "NameJp": "Tropics Master", + "NameEng": "Tropics Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4409, + "IdString": "s4410", + "NameJp": "Tropics King", + "NameEng": "Tropics King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4410, + "IdString": "s4411", + "NameJp": "Tropics God", + "NameEng": "Tropics God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4411, + "IdString": "s4412", + "NameJp": "I love \"Xand-Roid\"", + "NameEng": "I love \"Xand-Roid\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4412, + "IdString": "s4413", + "NameJp": "Xand-Roid Master", + "NameEng": "Xand-Roid Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4413, + "IdString": "s4414", + "NameJp": "Xand-Roid King", + "NameEng": "Xand-Roid King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4414, + "IdString": "s4415", + "NameJp": "Xand-Roid God", + "NameEng": "Xand-Roid God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4415, + "IdString": "s4416", + "NameJp": "I love \"シャルル\"", + "NameEng": "I love \"シャルル\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 4416, + "IdString": "s4417", + "NameJp": "シャルル先生", + "NameEng": "シャルル先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4417, + "IdString": "s4418", + "NameJp": "シャルル大王", + "NameEng": "シャルル大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4418, + "IdString": "s4419", + "NameJp": "シャルル神", + "NameEng": "シャルル神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 4419, + "IdString": "s4420", + "NameJp": "I love \"SACRIFICE feat. ayame (GC REFIX)\"", + "NameEng": "I love \"SACRIFICE feat. ayame (GC REFIX)\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4420, + "IdString": "s4421", + "NameJp": "SACRIFICE MASTER", + "NameEng": "SACRIFICE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4421, + "IdString": "s4422", + "NameJp": "SACRIFICE QUEEN", + "NameEng": "SACRIFICE QUEEN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4422, + "IdString": "s4423", + "NameJp": "SACRIFICE GODDESS", + "NameEng": "SACRIFICE GODDESS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4423, + "IdString": "s4424", + "NameJp": "I love \"Floor of Lava\"", + "NameEng": "I love \"Floor of Lava\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4424, + "IdString": "s4425", + "NameJp": "Master of Lava", + "NameEng": "Master of Lava", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4425, + "IdString": "s4426", + "NameJp": "King of Lava", + "NameEng": "King of Lava", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4426, + "IdString": "s4427", + "NameJp": "God of Lava", + "NameEng": "God of Lava", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4427, + "IdString": "s4428", + "NameJp": "2018夏の中二病God", + "NameEng": "2018夏の中二病God", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4428, + "IdString": "s4429", + "NameJp": "REZONATED", + "NameEng": "REZONATED", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4429, + "IdString": "s4430", + "NameJp": "FULL MULTI-COMBO", + "NameEng": "FULL MULTI-COMBO", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4430, + "IdString": "s4431", + "NameJp": "希望を抱きしめて", + "NameEng": "希望を抱きしめて", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4431, + "IdString": "s4432", + "NameJp": "永遠に廻る世界", + "NameEng": "永遠に廻る世界", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4432, + "IdString": "s4433", + "NameJp": "シンクメイト", + "NameEng": "シンクメイト", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4433, + "IdString": "s4434", + "NameJp": "I Love シンクロニカ", + "NameEng": "I Love シンクロニカ", + "UnlockRequirementJp": "『MSSP・シンクロニカ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4434, + "IdString": "s4435", + "NameJp": "Xgod", + "NameEng": "Xgod", + "UnlockRequirementJp": "『Tatsh』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4435, + "IdString": "s4436", + "NameJp": "Xking", + "NameEng": "Xking", + "UnlockRequirementJp": "『Tatsh』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4436, + "IdString": "s4437", + "NameJp": "Xmaster", + "NameEng": "Xmaster", + "UnlockRequirementJp": "『Tatsh』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4437, + "IdString": "s4438", + "NameJp": "キミズPを破りし者", + "NameEng": "キミズPを破りし者", + "UnlockRequirementJp": "『シンクロニカ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4438, + "IdString": "s4439", + "NameJp": "I love \"バーチャルのじゃロリ狐娘Youtuberおじさんのうた\"", + "NameEng": "I love \"バーチャルのじゃロリ狐娘Youtuberおじさんのうた\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 4439, + "IdString": "s4440", + "NameJp": "ねこみみマスター", + "NameEng": "ねこみみマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4440, + "IdString": "s4441", + "NameJp": "けもみみ王国国王", + "NameEng": "けもみみ王国国王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4441, + "IdString": "s4442", + "NameJp": "バーチャルのじゃロリ狐娘Youtuberおじさん", + "NameEng": "バーチャルのじゃロリ狐娘Youtuberおじさん", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 4442, + "IdString": "s4443", + "NameJp": "I love \"グリーンライツ・セレナーデ\"", + "NameEng": "I love \"グリーンライツ・セレナーデ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4443, + "IdString": "s4444", + "NameJp": "グリーンライツ・マスター", + "NameEng": "グリーンライツ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4444, + "IdString": "s4445", + "NameJp": "グリーンライツ・クイーン", + "NameEng": "グリーンライツ・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4445, + "IdString": "s4446", + "NameJp": "グリーンライツ・ゴッデス", + "NameEng": "グリーンライツ・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4446, + "IdString": "s4447", + "NameJp": "I love \"ダンスロボットダンス\"", + "NameEng": "I love \"ダンスロボットダンス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4447, + "IdString": "s4448", + "NameJp": "Voidoll Master", + "NameEng": "Voidoll Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4448, + "IdString": "s4449", + "NameJp": "Voidoll King", + "NameEng": "Voidoll King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4449, + "IdString": "s4450", + "NameJp": "Voidoll God", + "NameEng": "Voidoll God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4450, + "IdString": "s4451", + "NameJp": "I love \"アルカリレットウセイ\"", + "NameEng": "I love \"アルカリレットウセイ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4451, + "IdString": "s4452", + "NameJp": "リリカ Master", + "NameEng": "リリカ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4452, + "IdString": "s4453", + "NameJp": "リリカ King", + "NameEng": "リリカ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4453, + "IdString": "s4454", + "NameJp": "リリカ God", + "NameEng": "リリカ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4454, + "IdString": "s4455", + "NameJp": "I love \"天使だと思っていたのに\"", + "NameEng": "I love \"天使だと思っていたのに\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4455, + "IdString": "s4456", + "NameJp": "13 +サーティーン+ Master", + "NameEng": "13 +サーティーン+ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4456, + "IdString": "s4457", + "NameJp": "13 +サーティーン+ King", + "NameEng": "13 +サーティーン+ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4457, + "IdString": "s4458", + "NameJp": "13 +サーティーン+ God", + "NameEng": "13 +サーティーン+ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4458, + "IdString": "s4459", + "NameJp": "I love \"グラーヴェ\"", + "NameEng": "I love \"グラーヴェ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4459, + "IdString": "s4460", + "NameJp": "グスタフ ハイドリヒ Master", + "NameEng": "グスタフ ハイドリヒ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4460, + "IdString": "s4461", + "NameJp": "グスタフ ハイドリヒ King", + "NameEng": "グスタフ ハイドリヒ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4461, + "IdString": "s4462", + "NameJp": "グスタフ ハイドリヒ God", + "NameEng": "グスタフ ハイドリヒ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4462, + "IdString": "s4463", + "NameJp": "I love \"Say Around\"", + "NameEng": "I love \"Say Around\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4463, + "IdString": "s4464", + "NameJp": " 異次元から弾丸を飛ばす先生", + "NameEng": " 異次元から弾丸を飛ばす先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4464, + "IdString": "s4465", + "NameJp": " 異次元から弾丸を飛ばす女王", + "NameEng": " 異次元から弾丸を飛ばす女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4465, + "IdString": "s4466", + "NameJp": " 異次元から弾丸を飛ばす女神", + "NameEng": " 異次元から弾丸を飛ばす女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4466, + "IdString": "s4467", + "NameJp": "I love \"Special Smile\"", + "NameEng": "I love \"Special Smile\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4467, + "IdString": "s4468", + "NameJp": "人を狂わす程度の先生", + "NameEng": "人を狂わす程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4468, + "IdString": "s4469", + "NameJp": "人を狂わす程度の女王", + "NameEng": "人を狂わす程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4469, + "IdString": "s4470", + "NameJp": "人を狂わす程度の女神", + "NameEng": "人を狂わす程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4470, + "IdString": "s4471", + "NameJp": "I love \"Reversal Process\"", + "NameEng": "I love \"Reversal Process\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4471, + "IdString": "s4472", + "NameJp": "口に出すと事態を逆転させる程度の先生", + "NameEng": "口に出すと事態を逆転させる程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4472, + "IdString": "s4473", + "NameJp": "口に出すと事態を逆転させる程度の女王", + "NameEng": "口に出すと事態を逆転させる程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4473, + "IdString": "s4474", + "NameJp": "口に出すと事態を逆転させる程度の女神", + "NameEng": "口に出すと事態を逆転させる程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4474, + "IdString": "s4475", + "NameJp": "I love \"EZ Mode\"", + "NameEng": "I love \"EZ Mode\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4475, + "IdString": "s4476", + "NameJp": "EZ Master", + "NameEng": "EZ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4476, + "IdString": "s4477", + "NameJp": "EZ King", + "NameEng": "EZ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4477, + "IdString": "s4478", + "NameJp": "EZ God", + "NameEng": "EZ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4478, + "IdString": "s4479", + "NameJp": "I love \"シンデレラケージ\"", + "NameEng": "I love \"シンデレラケージ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4479, + "IdString": "s4480", + "NameJp": "狂気を操る程度の先生", + "NameEng": "狂気を操る程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4480, + "IdString": "s4481", + "NameJp": "狂気を操る程度の女王", + "NameEng": "狂気を操る程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4481, + "IdString": "s4482", + "NameJp": "狂気を操る程度の女神", + "NameEng": "狂気を操る程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4482, + "IdString": "s4483", + "NameJp": "I love \"UP & DOWN\"", + "NameEng": "I love \"UP & DOWN\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4483, + "IdString": "s4484", + "NameJp": "UP & DOWN MASTER", + "NameEng": "UP & DOWN MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4484, + "IdString": "s4485", + "NameJp": "UP & DOWN KING", + "NameEng": "UP & DOWN KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4485, + "IdString": "s4486", + "NameJp": "UP & DOWN GOD", + "NameEng": "UP & DOWN GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4486, + "IdString": "s4487", + "NameJp": "完全無欠", + "NameEng": "完全無欠", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4487, + "IdString": "s4488", + "NameJp": "Legacy", + "NameEng": "Legacy", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4488, + "IdString": "s4489", + "NameJp": "嫦娥よ。見てるか!?", + "NameEng": "嫦娥よ。見てるか!?", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4489, + "IdString": "s4490", + "NameJp": "月の民", + "NameEng": "月の民", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4490, + "IdString": "s4491", + "NameJp": " 地獄の女神", + "NameEng": " 地獄の女神", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4491, + "IdString": "s4492", + "NameJp": "(無名の存在)", + "NameEng": "(無名の存在)", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4492, + "IdString": "s4493", + "NameJp": "地獄の妖精", + "NameEng": "地獄の妖精", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4493, + "IdString": "s4494", + "NameJp": "舌禍をもたらす女神", + "NameEng": "舌禍をもたらす女神", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4494, + "IdString": "s4495", + "NameJp": "夢を見せる妖怪", + "NameEng": "夢を見せる妖怪", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4495, + "IdString": "s4496", + "NameJp": "橘色のイーグルラヴィ", + "NameEng": "橘色のイーグルラヴィ", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4496, + "IdString": "s4497", + "NameJp": "浅葱色のイーグルラヴィ", + "NameEng": "浅葱色のイーグルラヴィ", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4497, + "IdString": "s4498", + "NameJp": "月の頭脳", + "NameEng": "月の頭脳", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4498, + "IdString": "s4499", + "NameJp": "地上の月兎", + "NameEng": "地上の月兎", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4499, + "IdString": "s4500", + "NameJp": "山に住む奇跡の現人神", + "NameEng": "山に住む奇跡の現人神", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4500, + "IdString": "s4501", + "NameJp": "空飛ぶ不思議な巫女", + "NameEng": "空飛ぶ不思議な巫女", + "UnlockRequirementJp": "『東方紺珠伝』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4501, + "IdString": "s4502", + "NameJp": "I love \"BUCHiGiRE Berserker\"", + "NameEng": "I love \"BUCHiGiRE Berserker\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4502, + "IdString": "s4503", + "NameJp": "BUCHiGiRE Master", + "NameEng": "BUCHiGiRE Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4503, + "IdString": "s4504", + "NameJp": "BUCHiGiRE King", + "NameEng": "BUCHiGiRE King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4504, + "IdString": "s4505", + "NameJp": "BUCHiGiRE God", + "NameEng": "BUCHiGiRE God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4505, + "IdString": "s4506", + "NameJp": "I love \"Pegasus\"", + "NameEng": "I love \"Pegasus\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4506, + "IdString": "s4507", + "NameJp": "Pegasus Master", + "NameEng": "Pegasus Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4507, + "IdString": "s4508", + "NameJp": "Pegasus King", + "NameEng": "Pegasus King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4508, + "IdString": "s4509", + "NameJp": "Pegasus God", + "NameEng": "Pegasus God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4509, + "IdString": "s4510", + "NameJp": "I love \"METEOR\"", + "NameEng": "I love \"METEOR\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4510, + "IdString": "s4511", + "NameJp": "METEOR MASTER", + "NameEng": "METEOR MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4511, + "IdString": "s4512", + "NameJp": "METEOR QUEEN", + "NameEng": "METEOR QUEEN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4512, + "IdString": "s4513", + "NameJp": "METEOR GODDESS", + "NameEng": "METEOR GODDESS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4513, + "IdString": "s4514", + "NameJp": "I love \"熟成!醸造!発酵星◎〜スペースヨーグルアース〜\"", + "NameEng": "I love \"熟成!醸造!発酵星◎〜スペースヨーグルアース〜\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4514, + "IdString": "s4515", + "NameJp": "ふ・な・ず・し・ますたー", + "NameEng": "ふ・な・ず・し・ますたー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4515, + "IdString": "s4516", + "NameJp": "ふ・な・ず・し・くいーん", + "NameEng": "ふ・な・ず・し・くいーん", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4516, + "IdString": "s4517", + "NameJp": "ふ・な・ず・し・ごっです", + "NameEng": "ふ・な・ず・し・ごっです", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4517, + "IdString": "s4518", + "NameJp": "I love \"チルドレンレコード\"!!", + "NameEng": "I love \"チルドレンレコード\"!!", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4518, + "IdString": "s4519", + "NameJp": "目に物見せる先生", + "NameEng": "目に物見せる先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4519, + "IdString": "s4520", + "NameJp": "目に物見せる王", + "NameEng": "目に物見せる王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4520, + "IdString": "s4521", + "NameJp": "目に物見せる神", + "NameEng": "目に物見せる神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4521, + "IdString": "s4522", + "NameJp": "I love \"Never Stop (GC Mix)\"", + "NameEng": "I love \"Never Stop (GC Mix)\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4522, + "IdString": "s4523", + "NameJp": "Never Stop Master", + "NameEng": "Never Stop Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4523, + "IdString": "s4524", + "NameJp": "Never Stop King", + "NameEng": "Never Stop King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4524, + "IdString": "s4525", + "NameJp": "Never Stop God", + "NameEng": "Never Stop God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4525, + "IdString": "s4526", + "NameJp": "I love \"Magic Time, Future Show!\"", + "NameEng": "I love \"Magic Time, Future Show!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4526, + "IdString": "s4527", + "NameJp": "Magic Time, Future Master!", + "NameEng": "Magic Time, Future Master!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4527, + "IdString": "s4528", + "NameJp": "Magic Time, Future Queen!", + "NameEng": "Magic Time, Future Queen!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4528, + "IdString": "s4529", + "NameJp": "Magic Time, Future Goddess!", + "NameEng": "Magic Time, Future Goddess!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4529, + "IdString": "s4530", + "NameJp": "I love \"ちがう!!!\"", + "NameEng": "I love \"ちがう!!!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4530, + "IdString": "s4531", + "NameJp": "ちがう!!!先生", + "NameEng": "ちがう!!!先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4531, + "IdString": "s4532", + "NameJp": "ちがう!!!女王", + "NameEng": "ちがう!!!女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4532, + "IdString": "s4533", + "NameJp": "ちがう!!!女神", + "NameEng": "ちがう!!!女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4533, + "IdString": "s4534", + "NameJp": "I love \"はやくそれになりたい!\"", + "NameEng": "I love \"はやくそれになりたい!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4534, + "IdString": "s4535", + "NameJp": "あいわなびーますたー!", + "NameEng": "あいわなびーますたー!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4535, + "IdString": "s4536", + "NameJp": "あいわなびーくいーん!", + "NameEng": "あいわなびーくいーん!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4536, + "IdString": "s4537", + "NameJp": "あいわなびーごっです!", + "NameEng": "あいわなびーごっです!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4537, + "IdString": "s4538", + "NameJp": "I love \"Little Higher\"", + "NameEng": "I love \"Little Higher\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4538, + "IdString": "s4539", + "NameJp": "Little Higher Master", + "NameEng": "Little Higher Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4539, + "IdString": "s4540", + "NameJp": "Little Higher King", + "NameEng": "Little Higher King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4540, + "IdString": "s4541", + "NameJp": "Little Higher God", + "NameEng": "Little Higher God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4541, + "IdString": "s4542", + "NameJp": "I love \"クレイジークレイジーダンサーズ\"", + "NameEng": "I love \"クレイジークレイジーダンサーズ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4542, + "IdString": "s4543", + "NameJp": "危険すぎるマスターズ", + "NameEng": "危険すぎるマスターズ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4543, + "IdString": "s4544", + "NameJp": "危険すぎるクイーンズ", + "NameEng": "危険すぎるクイーンズ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4544, + "IdString": "s4545", + "NameJp": "危険すぎるゴッデシズ", + "NameEng": "危険すぎるゴッデシズ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4545, + "IdString": "s4546", + "NameJp": "オンライン合同大会参加賞", + "NameEng": "オンライン合同大会参加賞", + "UnlockRequirementJp": "店舗イベント参加賞", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4546, + "IdString": "s4547", + "NameJp": "GROOVE▼TRIANGLE", + "NameEng": "GROOVE▼TRIANGLE", + "UnlockRequirementJp": "店舗イベント参加賞", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4547, + "IdString": "s4548", + "NameJp": "第五回天下一チャレンジャー", + "NameEng": "第五回天下一チャレンジャー", + "UnlockRequirementJp": "対象曲を1回プレイ", + "UnlockRequirementEng": "Play a set song 1 times", + "Type": 12 + }, + { + "Id": 4548, + "IdString": "s4549", + "NameJp": "第五回天下一音ゲ祭 ファイナリスト", + "NameEng": "第五回天下一音ゲ祭 ファイナリスト", + "UnlockRequirementJp": "第五回天下一音ゲ祭全国頂上決戦進出", + "UnlockRequirementEng": "第五回天下一音ゲ祭全国頂上決戦進出", + "Type": 12 + }, + { + "Id": 4549, + "IdString": "s4550", + "NameJp": "第五回天下一音ゲ祭 チャンピオン", + "NameEng": "第五回天下一音ゲ祭 チャンピオン", + "UnlockRequirementJp": "第五回天下一音ゲ祭優勝", + "UnlockRequirementEng": "第五回天下一音ゲ祭優勝", + "Type": 12 + }, + { + "Id": 4550, + "IdString": "s4551", + "NameJp": "発酵星スペースヨーグルアース", + "NameEng": "発酵星スペースヨーグルアース", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4551, + "IdString": "s4552", + "NameJp": "どこまでも光り輝け", + "NameEng": "どこまでも光り輝け", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4552, + "IdString": "s4553", + "NameJp": "どこまでも愛を飛ばして", + "NameEng": "どこまでも愛を飛ばして", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4553, + "IdString": "s4554", + "NameJp": "ふ・な・ず・し", + "NameEng": "ふ・な・ず・し", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4554, + "IdString": "s4555", + "NameJp": "納・豆・星・団", + "NameEng": "納・豆・星・団", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4555, + "IdString": "s4556", + "NameJp": "萌やせ萌やせ", + "NameEng": "萌やせ萌やせ", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4556, + "IdString": "s4557", + "NameJp": "極小サイズ!", + "NameEng": "極小サイズ!", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4557, + "IdString": "s4558", + "NameJp": "キミに届け個性的な魅力", + "NameEng": "キミに届け個性的な魅力", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4558, + "IdString": "s4559", + "NameJp": "ミクロコスモス", + "NameEng": "ミクロコスモス", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4559, + "IdString": "s4560", + "NameJp": "キミに届け謎のアツイ香り", + "NameEng": "キミに届け謎のアツイ香り", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4560, + "IdString": "s4561", + "NameJp": "惑星M-ISO", + "NameEng": "惑星M-ISO", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4561, + "IdString": "s4562", + "NameJp": "I love \"MOSAIC.WAV\"", + "NameEng": "I love \"MOSAIC.WAV\"", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4562, + "IdString": "s4563", + "NameJp": "I love \"小泉ケフィア\"", + "NameEng": "I love \"小泉ケフィア\"", + "UnlockRequirementJp": "『スペースヨーグルアース』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4563, + "IdString": "s4564", + "NameJp": "I love \"Scream Out!\"", + "NameEng": "I love \"Scream Out!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4564, + "IdString": "s4565", + "NameJp": "坤を創造する程度の先生", + "NameEng": "坤を創造する程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4565, + "IdString": "s4566", + "NameJp": "坤を創造する程度の女王", + "NameEng": "坤を創造する程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4566, + "IdString": "s4567", + "NameJp": "坤を創造する程度の女神", + "NameEng": "坤を創造する程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4567, + "IdString": "s4568", + "NameJp": "I love \"華麗なる死闘\"", + "NameEng": "I love \"華麗なる死闘\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4568, + "IdString": "s4569", + "NameJp": "ロボット料理番組司会者", + "NameEng": "ロボット料理番組司会者", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4569, + "IdString": "s4570", + "NameJp": "ロボットミュージカル俳優", + "NameEng": "ロボットミュージカル俳優", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4570, + "IdString": "s4571", + "NameJp": "地下世界のエンターテイナー", + "NameEng": "地下世界のエンターテイナー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4571, + "IdString": "s4572", + "NameJp": "I love \"本物のヒーローとの戦い\"", + "NameEng": "I love \"本物のヒーローとの戦い\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4572, + "IdString": "s4573", + "NameJp": "お寿司の匂い", + "NameEng": "お寿司の匂い", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4573, + "IdString": "s4574", + "NameJp": "ロイヤルガード隊長", + "NameEng": "ロイヤルガード隊長", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4574, + "IdString": "s4575", + "NameJp": "ゆうしゃ", + "NameEng": "ゆうしゃ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4575, + "IdString": "s4576", + "NameJp": "I love \"MEGALOVANIA\"", + "NameEng": "I love \"MEGALOVANIA\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4576, + "IdString": "s4577", + "NameJp": "いたずら好きのスケルトン", + "NameEng": "いたずら好きのスケルトン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4577, + "IdString": "s4578", + "NameJp": "神出鬼没のスケルトン", + "NameEng": "神出鬼没のスケルトン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4578, + "IdString": "s4579", + "NameJp": "もっとも ラクなてき", + "NameEng": "もっとも ラクなてき", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4579, + "IdString": "s4580", + "NameJp": "I love \"甲賀忍法帖\"", + "NameEng": "I love \"甲賀忍法帖\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 4580, + "IdString": "s4581", + "NameJp": "甲賀の師匠", + "NameEng": "甲賀の師匠", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4581, + "IdString": "s4582", + "NameJp": "甲賀の首領", + "NameEng": "甲賀の首領", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4582, + "IdString": "s4583", + "NameJp": "甲賀の神", + "NameEng": "甲賀の神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 4583, + "IdString": "s4584", + "NameJp": "I love \"これでホントにサヨナラ\"", + "NameEng": "I love \"これでホントにサヨナラ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4584, + "IdString": "s4585", + "NameJp": "またね", + "NameEng": "またね", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4585, + "IdString": "s4586", + "NameJp": "バイバイ", + "NameEng": "バイバイ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4586, + "IdString": "s4587", + "NameJp": "それでは\u3000\nおやすみなさい…", + "NameEng": "それでは\u3000\nおやすみなさい…", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4587, + "IdString": "s4588", + "NameJp": "I love \"悪ノ召使\"", + "NameEng": "I love \"悪ノ召使\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4588, + "IdString": "s4589", + "NameJp": "悪ノ召使先生", + "NameEng": "悪ノ召使先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4589, + "IdString": "s4590", + "NameJp": "悪ノ召使大王", + "NameEng": "悪ノ召使大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4590, + "IdString": "s4591", + "NameJp": "悪ノ召使神", + "NameEng": "悪ノ召使神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4591, + "IdString": "s4592", + "NameJp": "I love \"Ignotus\"", + "NameEng": "I love \"Ignotus\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4592, + "IdString": "s4593", + "NameJp": "Ignotus Master", + "NameEng": "Ignotus Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4593, + "IdString": "s4594", + "NameJp": "Ignotus King", + "NameEng": "Ignotus King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4594, + "IdString": "s4595", + "NameJp": "Ignotus God", + "NameEng": "Ignotus God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4595, + "IdString": "s4596", + "NameJp": "I love \"Be There\"", + "NameEng": "I love \"Be There\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4596, + "IdString": "s4597", + "NameJp": "Be There Master", + "NameEng": "Be There Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4597, + "IdString": "s4598", + "NameJp": "Be There King", + "NameEng": "Be There King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4598, + "IdString": "s4599", + "NameJp": "Be There God", + "NameEng": "Be There God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4599, + "IdString": "s4600", + "NameJp": "I love \"Modelista\"", + "NameEng": "I love \"Modelista\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4600, + "IdString": "s4601", + "NameJp": "Modelista Master", + "NameEng": "Modelista Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4601, + "IdString": "s4602", + "NameJp": "Modelista King", + "NameEng": "Modelista King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4602, + "IdString": "s4603", + "NameJp": "Modelista God", + "NameEng": "Modelista God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4603, + "IdString": "s4604", + "NameJp": "I love \"Metallic Punisher\"", + "NameEng": "I love \"Metallic Punisher\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4604, + "IdString": "s4605", + "NameJp": "Metallic Punisher Master", + "NameEng": "Metallic Punisher Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4605, + "IdString": "s4606", + "NameJp": "Metallic Punisher King", + "NameEng": "Metallic Punisher King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4606, + "IdString": "s4607", + "NameJp": "Metallic Punisher God", + "NameEng": "Metallic Punisher God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4607, + "IdString": "s4608", + "NameJp": "I love \"Singularity -Binary Enfold-\"", + "NameEng": "I love \"Singularity -Binary Enfold-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4608, + "IdString": "s4609", + "NameJp": "Binary Enfold Master", + "NameEng": "Binary Enfold Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4609, + "IdString": "s4610", + "NameJp": "Binary Enfold King", + "NameEng": "Binary Enfold King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4610, + "IdString": "s4611", + "NameJp": "Binary Enfold God", + "NameEng": "Binary Enfold God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4611, + "IdString": "s4612", + "NameJp": "ケツイが\u3000みなぎった", + "NameEng": "ケツイが\u3000みなぎった", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4612, + "IdString": "s4613", + "NameJp": "ダジャレ好きのスケルトン", + "NameEng": "ダジャレ好きのスケルトン", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4613, + "IdString": "s4614", + "NameJp": "スリル!ロマンス!バイオレンス!", + "NameEng": "スリル!ロマンス!バイオレンス!", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4614, + "IdString": "s4615", + "NameJp": "ふじみ", + "NameEng": "ふじみ", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4615, + "IdString": "s4616", + "NameJp": "こねこちゃん", + "NameEng": "こねこちゃん", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4616, + "IdString": "s4617", + "NameJp": "うざいイヌ", + "NameEng": "うざいイヌ", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4617, + "IdString": "s4618", + "NameJp": "OoooH YES・・・!", + "NameEng": "OoooH YES・・・!", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4618, + "IdString": "s4619", + "NameJp": "ホットドッグ屋のスケルトン", + "NameEng": "ホットドッグ屋のスケルトン", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4619, + "IdString": "s4620", + "NameJp": "魚人の戦士", + "NameEng": "魚人の戦士", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4620, + "IdString": "s4621", + "NameJp": "ハロー!", + "NameEng": "ハロー!", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4621, + "IdString": "s4622", + "NameJp": "ロボットニュースキャスター", + "NameEng": "ロボットニュースキャスター", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4622, + "IdString": "s4623", + "NameJp": "おはなの\u3000フラウィー", + "NameEng": "おはなの\u3000フラウィー", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4623, + "IdString": "s4624", + "NameJp": "ロボットクイズ司会者", + "NameEng": "ロボットクイズ司会者", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4624, + "IdString": "s4625", + "NameJp": "地底に落ちたニンゲン", + "NameEng": "地底に落ちたニンゲン", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4625, + "IdString": "s4626", + "NameJp": "I love \"UNDERTALE\"", + "NameEng": "I love \"UNDERTALE\"", + "UnlockRequirementJp": "『UNDERTALE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4626, + "IdString": "s4627", + "NameJp": "I love \"てるみい\"", + "NameEng": "I love \"てるみい\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4627, + "IdString": "s4628", + "NameJp": "ちぇるみい先生", + "NameEng": "ちぇるみい先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4628, + "IdString": "s4629", + "NameJp": "ちぇるみい女王", + "NameEng": "ちぇるみい女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4629, + "IdString": "s4630", + "NameJp": "ちぇるみい女神", + "NameEng": "ちぇるみい女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4630, + "IdString": "s4631", + "NameJp": "I love \"STAY GOLD\"", + "NameEng": "I love \"STAY GOLD\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4631, + "IdString": "s4632", + "NameJp": "STAY GOLD MASTER", + "NameEng": "STAY GOLD MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4632, + "IdString": "s4633", + "NameJp": "STAY GOLD QUEEN", + "NameEng": "STAY GOLD QUEEN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4633, + "IdString": "s4634", + "NameJp": "STAY GOLD GODDESS", + "NameEng": "STAY GOLD GODDESS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4634, + "IdString": "s4635", + "NameJp": "I love \"≪AI≫リアリィ・フェアリィ≪tubers≫\"", + "NameEng": "I love \"≪AI≫リアリィ・フェアリィ≪tubers≫\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4635, + "IdString": "s4636", + "NameJp": "リアリィ・フェアリィ・マスター", + "NameEng": "リアリィ・フェアリィ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4636, + "IdString": "s4637", + "NameJp": "リアリィ・フェアリィ・クイーン", + "NameEng": "リアリィ・フェアリィ・クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4637, + "IdString": "s4638", + "NameJp": "リアリィ・フェアリィ・ゴッデス", + "NameEng": "リアリィ・フェアリィ・ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4638, + "IdString": "s4639", + "NameJp": "I love \"Nyanyanyanyanyanyanya!\"", + "NameEng": "I love \"Nyanyanyanyanyanyanya!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4639, + "IdString": "s4640", + "NameJp": "Nyanyanyanyamaster!", + "NameEng": "Nyanyanyanyamaster!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4640, + "IdString": "s4641", + "NameJp": "Nyanyanyanyaqueen!", + "NameEng": "Nyanyanyanyaqueen!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4641, + "IdString": "s4642", + "NameJp": "Nyanyanyanyagoddess!", + "NameEng": "Nyanyanyanyagoddess!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4642, + "IdString": "s4643", + "NameJp": "I love \"だれかの心臓になれたなら\"", + "NameEng": "I love \"だれかの心臓になれたなら\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4643, + "IdString": "s4644", + "NameJp": "だれかの先生になれたなら", + "NameEng": "だれかの先生になれたなら", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4644, + "IdString": "s4645", + "NameJp": "だれかの大王になれたなら", + "NameEng": "だれかの大王になれたなら", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4645, + "IdString": "s4646", + "NameJp": "だれかの神様になれたなら", + "NameEng": "だれかの神様になれたなら", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4646, + "IdString": "s4647", + "NameJp": "I love \"ナイト・オブ・ナイツ 豚乙女ver.\"", + "NameEng": "I love \"ナイト・オブ・ナイツ 豚乙女ver.\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4647, + "IdString": "s4648", + "NameJp": "時止めて闇操り光求めた先生", + "NameEng": "時止めて闇操り光求めた先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4648, + "IdString": "s4649", + "NameJp": "時止めて闇操り光求めた女王", + "NameEng": "時止めて闇操り光求めた女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4649, + "IdString": "s4650", + "NameJp": "時止めて闇操り光求めた女神", + "NameEng": "時止めて闇操り光求めた女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4650, + "IdString": "s4651", + "NameJp": "I love \"ナイト・オブ・ナイツ (feat. y t r) - TOS Remix\"", + "NameEng": "I love \"ナイト・オブ・ナイツ (feat. y t r) - TOS Remix\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4651, + "IdString": "s4652", + "NameJp": "種も仕掛けも無い先生", + "NameEng": "種も仕掛けも無い先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4652, + "IdString": "s4653", + "NameJp": "種も仕掛けも無い王様", + "NameEng": "種も仕掛けも無い王様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4653, + "IdString": "s4654", + "NameJp": "種も仕掛けも無い神様", + "NameEng": "種も仕掛けも無い神様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4654, + "IdString": "s4655", + "NameJp": "I love \"ビートシンカー\"", + "NameEng": "I love \"ビートシンカー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4655, + "IdString": "s4656", + "NameJp": "ビートシンカーマスター", + "NameEng": "ビートシンカーマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4656, + "IdString": "s4657", + "NameJp": "ビートシンカークイーン", + "NameEng": "ビートシンカークイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4657, + "IdString": "s4658", + "NameJp": "ビートシンカーゴッデス", + "NameEng": "ビートシンカーゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4658, + "IdString": "s4659", + "NameJp": "I love \"U.A.D\"", + "NameEng": "I love \"U.A.D\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4659, + "IdString": "s4660", + "NameJp": "U.A.D MASTER", + "NameEng": "U.A.D MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4660, + "IdString": "s4661", + "NameJp": "U.A.D KING", + "NameEng": "U.A.D KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4661, + "IdString": "s4662", + "NameJp": "U.A.D GOD", + "NameEng": "U.A.D GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4662, + "IdString": "s4663", + "NameJp": "I love \"Don’t Die\"", + "NameEng": "I love \"Don’t Die\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4663, + "IdString": "s4664", + "NameJp": "Don’t Die Master", + "NameEng": "Don’t Die Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4664, + "IdString": "s4665", + "NameJp": "Don’t Die King", + "NameEng": "Don’t Die King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4665, + "IdString": "s4666", + "NameJp": "Don’t Die God", + "NameEng": "Don’t Die God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4666, + "IdString": "s4667", + "NameJp": "I love \"glory day\"", + "NameEng": "I love \"glory day\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4667, + "IdString": "s4668", + "NameJp": "glory day master", + "NameEng": "glory day master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4668, + "IdString": "s4669", + "NameJp": "glory day king", + "NameEng": "glory day king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4669, + "IdString": "s4670", + "NameJp": "glory day god", + "NameEng": "glory day god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4670, + "IdString": "s4671", + "NameJp": "I love \"OBLIVION\"", + "NameEng": "I love \"OBLIVION\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4671, + "IdString": "s4672", + "NameJp": "OBLIVION MASTER", + "NameEng": "OBLIVION MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4672, + "IdString": "s4673", + "NameJp": "OBLIVION KING", + "NameEng": "OBLIVION KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4673, + "IdString": "s4674", + "NameJp": "OBLIVION GOD", + "NameEng": "OBLIVION GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4674, + "IdString": "s4675", + "NameJp": "I love \"Fermion\"", + "NameEng": "I love \"Fermion\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4675, + "IdString": "s4676", + "NameJp": "Fermion Master", + "NameEng": "Fermion Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4676, + "IdString": "s4677", + "NameJp": "Fermion King", + "NameEng": "Fermion King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4677, + "IdString": "s4678", + "NameJp": "Fermion God", + "NameEng": "Fermion God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4678, + "IdString": "s4679", + "NameJp": "ARIAの精霊姉妹", + "NameEng": "ARIAの精霊姉妹", + "UnlockRequirementJp": "『IA & ONE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4679, + "IdString": "s4680", + "NameJp": "世界を駆け巡る歌姫", + "NameEng": "世界を駆け巡る歌姫", + "UnlockRequirementJp": "『IA & ONE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4680, + "IdString": "s4681", + "NameJp": "いあおねスイッチ", + "NameEng": "いあおねスイッチ", + "UnlockRequirementJp": "『IA & ONE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4681, + "IdString": "s4682", + "NameJp": "ありよりのARIAer", + "NameEng": "ありよりのARIAer", + "UnlockRequirementJp": "『IA & ONE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4682, + "IdString": "s4683", + "NameJp": "「ちぇるみー!ちぇるみー!」", + "NameEng": "「ちぇるみー!ちぇるみー!」", + "UnlockRequirementJp": "『IA & ONE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4683, + "IdString": "s4684", + "NameJp": "「Fly evermore」", + "NameEng": "「Fly evermore」", + "UnlockRequirementJp": "『IA & ONE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4684, + "IdString": "s4685", + "NameJp": "まじゅちゅし", + "NameEng": "まじゅちゅし", + "UnlockRequirementJp": "『IA & ONE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4685, + "IdString": "s4686", + "NameJp": "ARIAer", + "NameEng": "ARIAer", + "UnlockRequirementJp": "『IA & ONE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4686, + "IdString": "s4687", + "NameJp": "I love IA 2019", + "NameEng": "I love IA 2019", + "UnlockRequirementJp": "『IA & ONE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4687, + "IdString": "s4688", + "NameJp": "I love ONE 2019", + "NameEng": "I love ONE 2019", + "UnlockRequirementJp": "『IA & ONE』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4688, + "IdString": "s4689", + "NameJp": "ゴールド・オブ・ナイツ", + "NameEng": "ゴールド・オブ・ナイツ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4689, + "IdString": "s4690", + "NameJp": "シルバー・オブ・ナイツ", + "NameEng": "シルバー・オブ・ナイツ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4690, + "IdString": "s4691", + "NameJp": "ブロンズ・オブ・ナイツ", + "NameEng": "ブロンズ・オブ・ナイツ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4691, + "IdString": "s4692", + "NameJp": "ナイツ・ハンパ・ナイツ", + "NameEng": "ナイツ・ハンパ・ナイツ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4692, + "IdString": "s4693", + "NameJp": "銀符「パーフェクトメイド」 ", + "NameEng": "銀符「パーフェクトメイド」 ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4693, + "IdString": "s4694", + "NameJp": "完全で瀟洒な従者", + "NameEng": "完全で瀟洒な従者", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4694, + "IdString": "s4695", + "NameJp": "<:::::]ー<:::::]ー<:::::]ー<:::::]ー<:::::]ー", + "NameEng": "<:::::]ー<:::::]ー<:::::]ー<:::::]ー<:::::]ー", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4695, + "IdString": "s4696", + "NameJp": "パーフェクト・トレ・ナイツ", + "NameEng": "パーフェクト・トレ・ナイツ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4696, + "IdString": "s4697", + "NameJp": "○○○・○○・○○○", + "NameEng": "○○○・○○・○○○", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4697, + "IdString": "s4698", + "NameJp": "クリア・デキ・ナイツ", + "NameEng": "クリア・デキ・ナイツ", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4698, + "IdString": "s4699", + "NameJp": "I love 十六夜咲夜", + "NameEng": "I love 十六夜咲夜", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4699, + "IdString": "s4700", + "NameJp": "I love COOL&CREATE", + "NameEng": "I love COOL&CREATE", + "UnlockRequirementJp": "『ナイト・オブ・ナイツ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4700, + "IdString": "s4701", + "NameJp": "I love \"THE SEVENTH BOSS 2019\"", + "NameEng": "I love \"THE SEVENTH BOSS 2019\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4701, + "IdString": "s4702", + "NameJp": "THE SEVENTH BOSS MASTER", + "NameEng": "THE SEVENTH BOSS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4702, + "IdString": "s4703", + "NameJp": "THE SEVENTH BOSS KING", + "NameEng": "THE SEVENTH BOSS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4703, + "IdString": "s4704", + "NameJp": "THE SEVENTH BOSS GOD", + "NameEng": "THE SEVENTH BOSS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4704, + "IdString": "s4705", + "NameJp": "I love \"ライトニング・デュアルホープ\"", + "NameEng": "I love \"ライトニング・デュアルホープ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4705, + "IdString": "s4706", + "NameJp": "ライトニング・デュアルホープ・マスター", + "NameEng": "ライトニング・デュアルホープ・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4706, + "IdString": "s4707", + "NameJp": "ライトニング・デュアルホープ・キング", + "NameEng": "ライトニング・デュアルホープ・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4707, + "IdString": "s4708", + "NameJp": "ライトニング・デュアルホープ・ゴッド", + "NameEng": "ライトニング・デュアルホープ・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4708, + "IdString": "s4709", + "NameJp": "I love \"FAKE -PROGRESSIVE KOTA MIX-\"", + "NameEng": "I love \"FAKE -PROGRESSIVE KOTA MIX-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4709, + "IdString": "s4710", + "NameJp": "FAKE MASTER", + "NameEng": "FAKE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4710, + "IdString": "s4711", + "NameJp": "FAKE KING", + "NameEng": "FAKE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4711, + "IdString": "s4712", + "NameJp": "FAKE GOD", + "NameEng": "FAKE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4712, + "IdString": "s4713", + "NameJp": "I love \"Got sorted view.\"", + "NameEng": "I love \"Got sorted view.\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4713, + "IdString": "s4714", + "NameJp": "Groove twisted.", + "NameEng": "Groove twisted.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4714, + "IdString": "s4715", + "NameJp": "King of groove twisted.", + "NameEng": "King of groove twisted.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4715, + "IdString": "s4716", + "NameJp": "God sorted view.", + "NameEng": "God sorted view.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4716, + "IdString": "s4717", + "NameJp": "I love \"ただ君に晴れ\"", + "NameEng": "I love \"ただ君に晴れ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 4717, + "IdString": "s4718", + "NameJp": "ただ君に晴れ先生", + "NameEng": "ただ君に晴れ先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4718, + "IdString": "s4719", + "NameJp": "ただ君に晴れ女王", + "NameEng": "ただ君に晴れ女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4719, + "IdString": "s4720", + "NameJp": "ただ君に晴れ神", + "NameEng": "ただ君に晴れ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 4720, + "IdString": "s4721", + "NameJp": "I love \"ロキ\"", + "NameEng": "I love \"ロキ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4721, + "IdString": "s4722", + "NameJp": "ロキロキマスター", + "NameEng": "ロキロキマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4722, + "IdString": "s4723", + "NameJp": "ロキロキキング", + "NameEng": "ロキロキキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4723, + "IdString": "s4724", + "NameJp": "ロキロキゴッド", + "NameEng": "ロキロキゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4724, + "IdString": "s4725", + "NameJp": "I love \"幸せになれる隠しコマンドがあるらしい\"", + "NameEng": "I love \"幸せになれる隠しコマンドがあるらしい\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4725, + "IdString": "s4726", + "NameJp": "→↓↑→→↓→→", + "NameEng": "→↓↑→→↓→→", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4726, + "IdString": "s4727", + "NameJp": "回転\u3000反転\u3000一回転", + "NameEng": "回転\u3000反転\u3000一回転", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4727, + "IdString": "s4728", + "NameJp": "疲労\u3000心労\u3000問答無用", + "NameEng": "疲労\u3000心労\u3000問答無用", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4728, + "IdString": "s4729", + "NameJp": "I love \"チェチェ・チェック・ワンツー!\"", + "NameEng": "I love \"チェチェ・チェック・ワンツー!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4729, + "IdString": "s4730", + "NameJp": "チェチェ・チェック・マスター!", + "NameEng": "チェチェ・チェック・マスター!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4730, + "IdString": "s4731", + "NameJp": "チェチェ・チェック・クイーン!", + "NameEng": "チェチェ・チェック・クイーン!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4731, + "IdString": "s4732", + "NameJp": "チェチェ・チェック・ゴッデス!", + "NameEng": "チェチェ・チェック・ゴッデス!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4732, + "IdString": "s4733", + "NameJp": "I love \"Captain Murasa [Tracy vs. Astronomical Mix]\"", + "NameEng": "I love \"Captain Murasa [Tracy vs. Astronomical Mix]\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4733, + "IdString": "s4734", + "NameJp": "水難事故を引き起こす程度の先生", + "NameEng": "水難事故を引き起こす程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4734, + "IdString": "s4735", + "NameJp": "水難事故を引き起こす程度の女王", + "NameEng": "水難事故を引き起こす程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4735, + "IdString": "s4736", + "NameJp": "水難事故を引き起こす程度の女神", + "NameEng": "水難事故を引き起こす程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4736, + "IdString": "s4737", + "NameJp": "I love \"悪戯センセーション\"", + "NameEng": "I love \"悪戯センセーション\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4737, + "IdString": "s4738", + "NameJp": "Vamp\u3000紅魔\u3000Who are you", + "NameEng": "Vamp\u3000紅魔\u3000Who are you", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4738, + "IdString": "s4739", + "NameJp": "Jump\u3000紅魔\u3000Are You Ready", + "NameEng": "Jump\u3000紅魔\u3000Are You Ready", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4739, + "IdString": "s4740", + "NameJp": "はっとなってきゅっとしてドッカ-ン!", + "NameEng": "はっとなってきゅっとしてドッカ-ン!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4740, + "IdString": "s4741", + "NameJp": "I love \"Shiny Memory\"", + "NameEng": "I love \"Shiny Memory\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4741, + "IdString": "s4742", + "NameJp": "Shiny Memory Master", + "NameEng": "Shiny Memory Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4742, + "IdString": "s4743", + "NameJp": "Shiny Memory King", + "NameEng": "Shiny Memory King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4743, + "IdString": "s4744", + "NameJp": "Shiny Memory God", + "NameEng": "Shiny Memory God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4744, + "IdString": "s4745", + "NameJp": "I love \"Brain Power\"", + "NameEng": "I love \"Brain Power\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4745, + "IdString": "s4746", + "NameJp": "O-oooooooooo", + "NameEng": "O-oooooooooo", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4746, + "IdString": "s4747", + "NameJp": "JO-oooooooooooo", + "NameEng": "JO-oooooooooooo", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4747, + "IdString": "s4748", + "NameJp": "E-eee-ee-eee", + "NameEng": "E-eee-ee-eee", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4748, + "IdString": "s4749", + "NameJp": "I love \"Lemegeton -little key of solomon-\"", + "NameEng": "I love \"Lemegeton -little key of solomon-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4749, + "IdString": "s4750", + "NameJp": "Lemegeton Master", + "NameEng": "Lemegeton Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4750, + "IdString": "s4751", + "NameJp": "Lemegeton King", + "NameEng": "Lemegeton King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4751, + "IdString": "s4752", + "NameJp": "Lemegeton God", + "NameEng": "Lemegeton God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4752, + "IdString": "s4753", + "NameJp": "I love \"マインドイブ\"", + "NameEng": "I love \"マインドイブ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4753, + "IdString": "s4754", + "NameJp": "マインドイブマスター", + "NameEng": "マインドイブマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4754, + "IdString": "s4755", + "NameJp": "マインドイブクイーン", + "NameEng": "マインドイブクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4755, + "IdString": "s4756", + "NameJp": "マインドイブゴッデス", + "NameEng": "マインドイブゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4756, + "IdString": "s4757", + "NameJp": "I love \"太陽系デスコ\"", + "NameEng": "I love \"太陽系デスコ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4757, + "IdString": "s4758", + "NameJp": "オー・オ・オー!マスター", + "NameEng": "オー・オ・オー!マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4758, + "IdString": "s4759", + "NameJp": "オー・オ・オー!クイーン", + "NameEng": "オー・オ・オー!クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4759, + "IdString": "s4760", + "NameJp": "オー・オ・オー!ゴッデス", + "NameEng": "オー・オ・オー!ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4760, + "IdString": "s4761", + "NameJp": "I love \"リバースユニバース\"", + "NameEng": "I love \"リバースユニバース\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4761, + "IdString": "s4762", + "NameJp": "リバースユニバースマスター", + "NameEng": "リバースユニバースマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4762, + "IdString": "s4763", + "NameJp": "リバースユニバースクイーン", + "NameEng": "リバースユニバースクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4763, + "IdString": "s4764", + "NameJp": "リバースユニバースゴッデス", + "NameEng": "リバースユニバースゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4764, + "IdString": "s4765", + "NameJp": "I love \"エレキキュレーター\"", + "NameEng": "I love \"エレキキュレーター\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4765, + "IdString": "s4766", + "NameJp": "エレキキュレーターマスター", + "NameEng": "エレキキュレーターマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4766, + "IdString": "s4767", + "NameJp": "エレキキュレータークイーン", + "NameEng": "エレキキュレータークイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4767, + "IdString": "s4768", + "NameJp": "エレキキュレーターゴッデス", + "NameEng": "エレキキュレーターゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4768, + "IdString": "s4769", + "NameJp": "I love \"DJノブナガのテーマ\"", + "NameEng": "I love \"DJノブナガのテーマ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4769, + "IdString": "s4770", + "NameJp": "DJヒデヨシ", + "NameEng": "DJヒデヨシ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4770, + "IdString": "s4771", + "NameJp": "DJイエヤス", + "NameEng": "DJイエヤス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4771, + "IdString": "s4772", + "NameJp": "DJノブナガ", + "NameEng": "DJノブナガ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4772, + "IdString": "s4773", + "NameJp": "RESPECT You", + "NameEng": "RESPECT You", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4773, + "IdString": "s4774", + "NameJp": "DJMAXグランドマスター", + "NameEng": "DJMAXグランドマスター", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4774, + "IdString": "s4775", + "NameJp": "ヤバイ、ヤバイ", + "NameEng": "ヤバイ、ヤバイ", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4775, + "IdString": "s4776", + "NameJp": "Try your ability. Do it!!", + "NameEng": "Try your ability. Do it!!", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4776, + "IdString": "s4777", + "NameJp": "ARCADE KID", + "NameEng": "ARCADE KID", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4777, + "IdString": "s4778", + "NameJp": "最大尊敬", + "NameEng": "最大尊敬", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4778, + "IdString": "s4779", + "NameJp": "超越者", + "NameEng": "超越者", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4779, + "IdString": "s4780", + "NameJp": "無視できない実力", + "NameEng": "無視できない実力", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4780, + "IdString": "s4781", + "NameJp": "生涯現役", + "NameEng": "生涯現役", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4781, + "IdString": "s4782", + "NameJp": "音ゲーマニア", + "NameEng": "音ゲーマニア", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4782, + "IdString": "s4783", + "NameJp": "努力家", + "NameEng": "努力家", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4783, + "IdString": "s4784", + "NameJp": "リズムパワー集中力", + "NameEng": "リズムパワー集中力", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4784, + "IdString": "s4785", + "NameJp": "いつも記憶されたい", + "NameEng": "いつも記憶されたい", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4785, + "IdString": "s4786", + "NameJp": "ペコペコ", + "NameEng": "ペコペコ", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4786, + "IdString": "s4787", + "NameJp": "I love \"DJMAX RESPECT\"", + "NameEng": "I love \"DJMAX RESPECT\"", + "UnlockRequirementJp": "『DJMAX Respect』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4787, + "IdString": "s4788", + "NameJp": "GROOVE▼TRIANGLE 2", + "NameEng": "GROOVE▼TRIANGLE 2", + "UnlockRequirementJp": "店舗イベント参加賞", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4788, + "IdString": "s4789", + "NameJp": "I love \"あうんどばいみー\"", + "NameEng": "I love \"あうんどばいみー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4789, + "IdString": "s4790", + "NameJp": "神仏を見つけ出す程度の先生", + "NameEng": "神仏を見つけ出す程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4790, + "IdString": "s4791", + "NameJp": "神仏を見つけ出す程度の女王", + "NameEng": "神仏を見つけ出す程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4791, + "IdString": "s4792", + "NameJp": "神仏を見つけ出す程度の女神", + "NameEng": "神仏を見つけ出す程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4792, + "IdString": "s4793", + "NameJp": "I love \"Metamorphosis\"", + "NameEng": "I love \"Metamorphosis\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4793, + "IdString": "s4794", + "NameJp": "あらゆるものの背中に扉を作る程度の先生", + "NameEng": "あらゆるものの背中に扉を作る程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4794, + "IdString": "s4795", + "NameJp": "あらゆるものの背中に扉を作る程度の女王", + "NameEng": "あらゆるものの背中に扉を作る程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4795, + "IdString": "s4796", + "NameJp": "あらゆるものの背中に扉を作る程度の秘神", + "NameEng": "あらゆるものの背中に扉を作る程度の秘神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4796, + "IdString": "s4797", + "NameJp": "I love \"畢竟成仏\"", + "NameEng": "I love \"畢竟成仏\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4797, + "IdString": "s4798", + "NameJp": "魔法地蔵の先生", + "NameEng": "魔法地蔵の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4798, + "IdString": "s4799", + "NameJp": "魔法地蔵の女王", + "NameEng": "魔法地蔵の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4799, + "IdString": "s4800", + "NameJp": "魔法地蔵の神様", + "NameEng": "魔法地蔵の神様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4800, + "IdString": "s4801", + "NameJp": "I love \"紅一葉\"", + "NameEng": "I love \"紅一葉\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4801, + "IdString": "s4802", + "NameJp": "紅一葉先生", + "NameEng": "紅一葉先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4802, + "IdString": "s4803", + "NameJp": "紅一葉女王", + "NameEng": "紅一葉女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4803, + "IdString": "s4804", + "NameJp": "紅一葉女神", + "NameEng": "紅一葉女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4804, + "IdString": "s4805", + "NameJp": "I love \"Ray of Illuminati\"", + "NameEng": "I love \"Ray of Illuminati\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4805, + "IdString": "s4806", + "NameJp": "Master of Illuminati", + "NameEng": "Master of Illuminati", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4806, + "IdString": "s4807", + "NameJp": "King of Illuminati", + "NameEng": "King of Illuminati", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4807, + "IdString": "s4808", + "NameJp": "God of Illuminati", + "NameEng": "God of Illuminati", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4808, + "IdString": "s4809", + "NameJp": "I love \"Nevermind\"", + "NameEng": "I love \"Nevermind\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4809, + "IdString": "s4810", + "NameJp": "Nevermind Master", + "NameEng": "Nevermind Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4810, + "IdString": "s4811", + "NameJp": "Nevermind King", + "NameEng": "Nevermind King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4811, + "IdString": "s4812", + "NameJp": "Nevermind God", + "NameEng": "Nevermind God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4812, + "IdString": "s4813", + "NameJp": "I love \"Thor\"", + "NameEng": "I love \"Thor\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4813, + "IdString": "s4814", + "NameJp": "Thor Master", + "NameEng": "Thor Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4814, + "IdString": "s4815", + "NameJp": "Thor King", + "NameEng": "Thor King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4815, + "IdString": "s4816", + "NameJp": "Thor God", + "NameEng": "Thor God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4816, + "IdString": "s4817", + "NameJp": "I love \"SON OF SUN\"", + "NameEng": "I love \"SON OF SUN\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4817, + "IdString": "s4818", + "NameJp": "MASTER OF SUN", + "NameEng": "MASTER OF SUN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4818, + "IdString": "s4819", + "NameJp": "KING OF SUN", + "NameEng": "KING OF SUN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4819, + "IdString": "s4820", + "NameJp": "GOD OF SUN", + "NameEng": "GOD OF SUN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4820, + "IdString": "s4821", + "NameJp": "I love \"I want You\"", + "NameEng": "I love \"I want You\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4821, + "IdString": "s4822", + "NameJp": "I want You Master", + "NameEng": "I want You Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4822, + "IdString": "s4823", + "NameJp": "I want You King", + "NameEng": "I want You King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4823, + "IdString": "s4824", + "NameJp": "I want You God", + "NameEng": "I want You God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4824, + "IdString": "s4825", + "NameJp": "I love \"ハロ/ハワユ\"", + "NameEng": "I love \"ハロ/ハワユ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4825, + "IdString": "s4826", + "NameJp": "ハロ/マスター", + "NameEng": "ハロ/マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4826, + "IdString": "s4827", + "NameJp": "ハロ/クイーン", + "NameEng": "ハロ/クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4827, + "IdString": "s4828", + "NameJp": "ハロ/ゴッデス", + "NameEng": "ハロ/ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4828, + "IdString": "s4829", + "NameJp": "I love \"インビジブル\"", + "NameEng": "I love \"インビジブル\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4829, + "IdString": "s4830", + "NameJp": "インビジブルマスター", + "NameEng": "インビジブルマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4830, + "IdString": "s4831", + "NameJp": "インビジブルクイーン", + "NameEng": "インビジブルクイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4831, + "IdString": "s4832", + "NameJp": "インビジブルゴッデス", + "NameEng": "インビジブルゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4832, + "IdString": "s4833", + "NameJp": "I love \"ouroVoros\"", + "NameEng": "I love \"ouroVoros\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4833, + "IdString": "s4834", + "NameJp": "ouroVoros master", + "NameEng": "ouroVoros master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4834, + "IdString": "s4835", + "NameJp": "ouroVoros king", + "NameEng": "ouroVoros king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4835, + "IdString": "s4836", + "NameJp": "ouroVoros god", + "NameEng": "ouroVoros god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4836, + "IdString": "s4837", + "NameJp": "I love \"Bonetrousle\"", + "NameEng": "I love \"Bonetrousle\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4837, + "IdString": "s4838", + "NameJp": "自信家なスケルトン", + "NameEng": "自信家なスケルトン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4838, + "IdString": "s4839", + "NameJp": "パスタを愛するスケルトン", + "NameEng": "パスタを愛するスケルトン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4839, + "IdString": "s4840", + "NameJp": "お人好しなスケルトン", + "NameEng": "お人好しなスケルトン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4840, + "IdString": "s4841", + "NameJp": "I love \"スパイダーダンス\"", + "NameEng": "I love \"スパイダーダンス\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4841, + "IdString": "s4842", + "NameJp": "蜘蛛の巣の匂い", + "NameEng": "蜘蛛の巣の匂い", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4842, + "IdString": "s4843", + "NameJp": "スパイダースイーツ即売会店主", + "NameEng": "スパイダースイーツ即売会店主", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4843, + "IdString": "s4844", + "NameJp": "すべては蜘蛛のために", + "NameEng": "すべては蜘蛛のために", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4844, + "IdString": "s4845", + "NameJp": "I love \"アズゴア\"", + "NameEng": "I love \"アズゴア\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4845, + "IdString": "s4846", + "NameJp": "ガーデニング好きの王様", + "NameEng": "ガーデニング好きの王様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4846, + "IdString": "s4847", + "NameJp": "地下世界の優しき王様", + "NameEng": "地下世界の優しき王様", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4847, + "IdString": "s4848", + "NameJp": "フワリン王", + "NameEng": "フワリン王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4848, + "IdString": "s4849", + "NameJp": "I love \"最高の悪夢\"", + "NameEng": "I love \"最高の悪夢\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4849, + "IdString": "s4850", + "NameJp": "きみはバカだね", + "NameEng": "きみはバカだね", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4850, + "IdString": "s4851", + "NameJp": "弱肉強食", + "NameEng": "弱肉強食", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4851, + "IdString": "s4852", + "NameJp": "残酷な金色の花", + "NameEng": "残酷な金色の花", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4852, + "IdString": "s4853", + "NameJp": "「背面の暗黒猿楽」", + "NameEng": "「背面の暗黒猿楽」", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4853, + "IdString": "s4854", + "NameJp": "ヴァカンスの生命", + "NameEng": "ヴァカンスの生命", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4854, + "IdString": "s4855", + "NameJp": "後戸の国", + "NameEng": "後戸の国", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4855, + "IdString": "s4856", + "NameJp": "二童子", + "NameEng": "二童子", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4856, + "IdString": "s4857", + "NameJp": "季節解放", + "NameEng": "季節解放", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4857, + "IdString": "s4858", + "NameJp": "究極の絶対秘神", + "NameEng": "究極の絶対秘神", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4858, + "IdString": "s4859", + "NameJp": "危険すぎるバックダンサーズ", + "NameEng": "危険すぎるバックダンサーズ", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4859, + "IdString": "s4860", + "NameJp": "森で垂迹した魔法地蔵", + "NameEng": "森で垂迹した魔法地蔵", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4860, + "IdString": "s4861", + "NameJp": "神仏に心酔する守護神獣", + "NameEng": "神仏に心酔する守護神獣", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4861, + "IdString": "s4862", + "NameJp": "浮世の関を超える山姥", + "NameEng": "浮世の関を超える山姥", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4862, + "IdString": "s4863", + "NameJp": "神に近づく蝶の妖精", + "NameEng": "神に近づく蝶の妖精", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4863, + "IdString": "s4864", + "NameJp": "極寒に震える魔法使い", + "NameEng": "極寒に震える魔法使い", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4864, + "IdString": "s4865", + "NameJp": "紅葉を散らす天狗", + "NameEng": "紅葉を散らす天狗", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4865, + "IdString": "s4866", + "NameJp": "溶けない炎天下の氷精", + "NameEng": "溶けない炎天下の氷精", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4866, + "IdString": "s4867", + "NameJp": "春の陽に暢気な巫女", + "NameEng": "春の陽に暢気な巫女", + "UnlockRequirementJp": "『東方天空璋』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4867, + "IdString": "s4868", + "NameJp": "キミ、よっぽどヒマなんだね", + "NameEng": "キミ、よっぽどヒマなんだね", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4868, + "IdString": "s4869", + "NameJp": "…ダメだワン、もうネタ切れワン", + "NameEng": "…ダメだワン、もうネタ切れワン", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4869, + "IdString": "s4870", + "NameJp": "懐かしのバタースコッチパイ", + "NameEng": "懐かしのバタースコッチパイ", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4870, + "IdString": "s4871", + "NameJp": "蜘蛛の女王", + "NameEng": "蜘蛛の女王", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4871, + "IdString": "s4872", + "NameJp": "ニャハハハ!", + "NameEng": "ニャハハハ!", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4872, + "IdString": "s4873", + "NameJp": "さくじょ\u3000されました。", + "NameEng": "さくじょ\u3000されました。", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4873, + "IdString": "s4874", + "NameJp": "大学資金", + "NameEng": "大学資金", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4874, + "IdString": "s4875", + "NameJp": "ボクのせかい", + "NameEng": "ボクのせかい", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4875, + "IdString": "s4876", + "NameJp": "HP(ヒットプードル)", + "NameEng": "HP(ヒットプードル)", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4876, + "IdString": "s4877", + "NameJp": "おちゃでも いかがかな?", + "NameEng": "おちゃでも いかがかな?", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4877, + "IdString": "s4878", + "NameJp": "メランコリックなゴースト", + "NameEng": "メランコリックなゴースト", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4878, + "IdString": "s4879", + "NameJp": "冷やかし厳禁", + "NameEng": "冷やかし厳禁", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4879, + "IdString": "s4880", + "NameJp": "ホィ!", + "NameEng": "ホィ!", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4880, + "IdString": "s4881", + "NameJp": "パズル大好きスケルトン", + "NameEng": "パズル大好きスケルトン", + "UnlockRequirementJp": "『UNDERTALE』イベント2報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4881, + "IdString": "s4882", + "NameJp": "I love \"While Shining\"", + "NameEng": "I love \"While Shining\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4882, + "IdString": "s4883", + "NameJp": "While Shining...Master", + "NameEng": "While Shining...Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4883, + "IdString": "s4884", + "NameJp": "While Shining...King", + "NameEng": "While Shining...King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4884, + "IdString": "s4885", + "NameJp": "While Shining...God", + "NameEng": "While Shining...God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4885, + "IdString": "s4886", + "NameJp": "天の海が繋ぐ東照の朋", + "NameEng": "天の海が繋ぐ東照の朋", + "UnlockRequirementJp": "店舗イベント参加賞", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4886, + "IdString": "s4887", + "NameJp": "I love \"弾・幕・決・壊\"", + "NameEng": "I love \"弾・幕・決・壊\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4887, + "IdString": "s4888", + "NameJp": "境界を操る程度の先生", + "NameEng": "境界を操る程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4888, + "IdString": "s4889", + "NameJp": "境界を操る程度の女王", + "NameEng": "境界を操る程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4889, + "IdString": "s4890", + "NameJp": "境界を操る程度の女神", + "NameEng": "境界を操る程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4890, + "IdString": "s4891", + "NameJp": "I love \"Journey\"", + "NameEng": "I love \"Journey\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4891, + "IdString": "s4892", + "NameJp": "Journey Master", + "NameEng": "Journey Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4892, + "IdString": "s4893", + "NameJp": "Journey King", + "NameEng": "Journey King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4893, + "IdString": "s4894", + "NameJp": "Journey God", + "NameEng": "Journey God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4894, + "IdString": "s4895", + "NameJp": "I love \"Song for Sprites\"", + "NameEng": "I love \"Song for Sprites\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4895, + "IdString": "s4896", + "NameJp": "Song for Sprites Master", + "NameEng": "Song for Sprites Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4896, + "IdString": "s4897", + "NameJp": "Song for Sprites King", + "NameEng": "Song for Sprites King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4897, + "IdString": "s4898", + "NameJp": "Song for Sprites God", + "NameEng": "Song for Sprites God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4898, + "IdString": "s4899", + "NameJp": "I love \"Apocalypse\"", + "NameEng": "I love \"Apocalypse\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4899, + "IdString": "s4900", + "NameJp": "Apocalypse Master", + "NameEng": "Apocalypse Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4900, + "IdString": "s4901", + "NameJp": "Apocalypse King", + "NameEng": "Apocalypse King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4901, + "IdString": "s4902", + "NameJp": "Apocalypse God", + "NameEng": "Apocalypse God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4902, + "IdString": "s4903", + "NameJp": "I love \"Hayabusa\"", + "NameEng": "I love \"Hayabusa\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 4903, + "IdString": "s4904", + "NameJp": "Hayabusa Master", + "NameEng": "Hayabusa Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4904, + "IdString": "s4905", + "NameJp": "Hayabusa King", + "NameEng": "Hayabusa King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 4905, + "IdString": "s4906", + "NameJp": "Hayabusa God", + "NameEng": "Hayabusa God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 4906, + "IdString": "s4907", + "NameJp": "I love \"10pt8ion\"", + "NameEng": "I love \"10pt8ion\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4907, + "IdString": "s4908", + "NameJp": "10pt8ion master", + "NameEng": "10pt8ion master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4908, + "IdString": "s4909", + "NameJp": "10pt8ion king", + "NameEng": "10pt8ion king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4909, + "IdString": "s4910", + "NameJp": "10pt8ion god", + "NameEng": "10pt8ion god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4910, + "IdString": "s4911", + "NameJp": "I love \"Got OVA store.\"", + "NameEng": "I love \"Got OVA store.\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4911, + "IdString": "s4912", + "NameJp": "Groove toast.", + "NameEng": "Groove toast.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4912, + "IdString": "s4913", + "NameJp": "King of groove toast.", + "NameEng": "King of groove toast.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4913, + "IdString": "s4914", + "NameJp": "God OVA store.", + "NameEng": "God OVA store.", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4914, + "IdString": "s4915", + "NameJp": "I love \"Got temporary haven?\"", + "NameEng": "I love \"Got temporary haven?\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4915, + "IdString": "s4916", + "NameJp": "Groove anthem party? ", + "NameEng": "Groove anthem party? ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4916, + "IdString": "s4917", + "NameJp": "King of groove anthem party? ", + "NameEng": "King of groove anthem party? ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4917, + "IdString": "s4918", + "NameJp": "God temporary haven?", + "NameEng": "God temporary haven?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4918, + "IdString": "s4919", + "NameJp": "I love \"劇場版\u3000怪談「カーナビ」\"", + "NameEng": "I love \"劇場版\u3000怪談「カーナビ」\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4919, + "IdString": "s4920", + "NameJp": "劇場版\u3000怪談「カーナビ」先生", + "NameEng": "劇場版\u3000怪談「カーナビ」先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4920, + "IdString": "s4921", + "NameJp": "劇場版\u3000怪談「カーナビ」大王", + "NameEng": "劇場版\u3000怪談「カーナビ」大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4921, + "IdString": "s4922", + "NameJp": "劇場版\u3000怪談「カーナビ」神", + "NameEng": "劇場版\u3000怪談「カーナビ」神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4922, + "IdString": "s4923", + "NameJp": "Everything Get Groove", + "NameEng": "Everything Get Groove", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4923, + "IdString": "s4924", + "NameJp": "グルーヴに熟練したもの", + "NameEng": "グルーヴに熟練したもの", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4924, + "IdString": "s4925", + "NameJp": "拍節という概念からの解放", + "NameEng": "拍節という概念からの解放", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4925, + "IdString": "s4926", + "NameJp": "希望と絶望のフレーズ", + "NameEng": "希望と絶望のフレーズ", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4926, + "IdString": "s4927", + "NameJp": "グルーヴ将軍", + "NameEng": "グルーヴ将軍", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4927, + "IdString": "s4928", + "NameJp": "アナグラム体質", + "NameEng": "アナグラム体質", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4928, + "IdString": "s4929", + "NameJp": "E.G.G.の正体を知る者", + "NameEng": "E.G.G.の正体を知る者", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4929, + "IdString": "s4930", + "NameJp": "天空と地獄を行き来するフレーズ", + "NameEng": "天空と地獄を行き来するフレーズ", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4930, + "IdString": "s4931", + "NameJp": "グルーヴの新たな境地", + "NameEng": "グルーヴの新たな境地", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4931, + "IdString": "s4932", + "NameJp": "グルーヴ信仰", + "NameEng": "グルーヴ信仰", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4932, + "IdString": "s4933", + "NameJp": "ゆく河の流れは絶えずして、しかも、もとの水にあらず。", + "NameEng": "ゆく河の流れは絶えずして、しかも、もとの水にあらず。", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4933, + "IdString": "s4934", + "NameJp": "グルーヴの流れ", + "NameEng": "グルーヴの流れ", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4934, + "IdString": "s4935", + "NameJp": "ねじれたグルーヴ", + "NameEng": "ねじれたグルーヴ", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4935, + "IdString": "s4936", + "NameJp": "都会と喧騒", + "NameEng": "都会と喧騒", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4936, + "IdString": "s4937", + "NameJp": "グルーヴに乾杯", + "NameEng": "グルーヴに乾杯", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4937, + "IdString": "s4938", + "NameJp": "鉄板のグルーヴ", + "NameEng": "鉄板のグルーヴ", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4938, + "IdString": "s4939", + "NameJp": "I love \"E.G.G.\"", + "NameEng": "I love \"E.G.G.\"", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4939, + "IdString": "s4940", + "NameJp": "グルーヴバタフライ", + "NameEng": "グルーヴバタフライ", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4940, + "IdString": "s4941", + "NameJp": "音の海を揺蕩う蝶", + "NameEng": "音の海を揺蕩う蝶", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4941, + "IdString": "s4942", + "NameJp": "音の海を舞う蝶", + "NameEng": "音の海を舞う蝶", + "UnlockRequirementJp": "『E.G.G.』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4942, + "IdString": "s4943", + "NameJp": "I love \"ドラマツルギー\"", + "NameEng": "I love \"ドラマツルギー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 4943, + "IdString": "s4944", + "NameJp": "その目に映るマスター", + "NameEng": "その目に映るマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4944, + "IdString": "s4945", + "NameJp": "その目に映るキング", + "NameEng": "その目に映るキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4945, + "IdString": "s4946", + "NameJp": "その目に映るゴッド", + "NameEng": "その目に映るゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 4946, + "IdString": "s4947", + "NameJp": "I love \"ヒトガタ\"", + "NameEng": "I love \"ヒトガタ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 4947, + "IdString": "s4948", + "NameJp": "ココロを叫べ マスター", + "NameEng": "ココロを叫べ マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4948, + "IdString": "s4949", + "NameJp": "ココロを叫べ クイーン", + "NameEng": "ココロを叫べ クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 4949, + "IdString": "s4950", + "NameJp": "ココロを叫べ ゴッデス", + "NameEng": "ココロを叫べ ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 4950, + "IdString": "s4951", + "NameJp": "I love \"Re:End of a Dream\"", + "NameEng": "I love \"Re:End of a Dream\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4951, + "IdString": "s4952", + "NameJp": "Re:End of Master", + "NameEng": "Re:End of Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4952, + "IdString": "s4953", + "NameJp": "Re:End of King", + "NameEng": "Re:End of King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4953, + "IdString": "s4954", + "NameJp": "Re:End of God", + "NameEng": "Re:End of God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4954, + "IdString": "s4955", + "NameJp": "I love \"VALEDICT\"", + "NameEng": "I love \"VALEDICT\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 4955, + "IdString": "s4956", + "NameJp": "VALEDICT MASTER", + "NameEng": "VALEDICT MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4956, + "IdString": "s4957", + "NameJp": "VALEDICT KING", + "NameEng": "VALEDICT KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 4957, + "IdString": "s4958", + "NameJp": "VALEDICT GOD", + "NameEng": "VALEDICT GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 4958, + "IdString": "s4959", + "NameJp": "I love \"バブルの呪文はシュー!ポッ!プッシュ!\"", + "NameEng": "I love \"バブルの呪文はシュー!ポッ!プッシュ!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4959, + "IdString": "s4960", + "NameJp": "シュー!ポッ!プッシュ!マスター!", + "NameEng": "シュー!ポッ!プッシュ!マスター!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4960, + "IdString": "s4961", + "NameJp": "シュー!ポッ!プッシュ!キング!", + "NameEng": "シュー!ポッ!プッシュ!キング!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4961, + "IdString": "s4962", + "NameJp": "シュー!ポッ!プッシュ!ゴッド!", + "NameEng": "シュー!ポッ!プッシュ!ゴッド!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4962, + "IdString": "s4963", + "NameJp": "I love \"君色Petal\"", + "NameEng": "I love \"君色Petal\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4963, + "IdString": "s4964", + "NameJp": "Bloom! Master", + "NameEng": "Bloom! Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4964, + "IdString": "s4965", + "NameJp": "Bloom! Queen", + "NameEng": "Bloom! Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4965, + "IdString": "s4966", + "NameJp": "Bloom! Goddess", + "NameEng": "Bloom! Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4966, + "IdString": "s4967", + "NameJp": "I love \"正義の槍\"", + "NameEng": "I love \"正義の槍\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4967, + "IdString": "s4968", + "NameJp": "ええい めんどくさいっ!", + "NameEng": "ええい めんどくさいっ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4968, + "IdString": "s4969", + "NameJp": "じかんの ムダだッ!", + "NameEng": "じかんの ムダだッ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4969, + "IdString": "s4970", + "NameJp": "ズッとも", + "NameEng": "ズッとも", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4970, + "IdString": "s4971", + "NameJp": "I love \"THE WORLD REVOLVING\"", + "NameEng": "I love \"THE WORLD REVOLVING\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 4971, + "IdString": "s4972", + "NameJp": "カオスのニオイがする。", + "NameEng": "カオスのニオイがする。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4972, + "IdString": "s4973", + "NameJp": "カオスだヨ?\u3000カオスだネ!", + "NameEng": "カオスだヨ?\u3000カオスだネ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 4973, + "IdString": "s4974", + "NameJp": "世界が回る\u3000回るよ世界。", + "NameEng": "世界が回る\u3000回るよ世界。", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 4974, + "IdString": "s4975", + "NameJp": "I love \"脳漿炸裂ガール\"", + "NameEng": "I love \"脳漿炸裂ガール\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4975, + "IdString": "s4976", + "NameJp": "脳漿炸裂マスター", + "NameEng": "脳漿炸裂マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4976, + "IdString": "s4977", + "NameJp": "脳漿炸裂クイーン", + "NameEng": "脳漿炸裂クイーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4977, + "IdString": "s4978", + "NameJp": "脳漿炸裂ゴッデス", + "NameEng": "脳漿炸裂ゴッデス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4978, + "IdString": "s4979", + "NameJp": "I love \"Cosmic Ray\"", + "NameEng": "I love \"Cosmic Ray\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 4979, + "IdString": "s4980", + "NameJp": "COSYS MASTER", + "NameEng": "COSYS MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4980, + "IdString": "s4981", + "NameJp": "COSYS KING", + "NameEng": "COSYS KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 4981, + "IdString": "s4982", + "NameJp": "COSYS GOD", + "NameEng": "COSYS GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 4982, + "IdString": "s4983", + "NameJp": "アカリがやってきたぞっ", + "NameEng": "アカリがやってきたぞっ", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4983, + "IdString": "s4984", + "NameJp": "ドゥンぱーぱーぱーぱー", + "NameEng": "ドゥンぱーぱーぱーぱー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4984, + "IdString": "s4985", + "NameJp": "ガタンゴトン ガタンゴトン", + "NameEng": "ガタンゴトン ガタンゴトン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4985, + "IdString": "s4986", + "NameJp": "シャキーン", + "NameEng": "シャキーン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4986, + "IdString": "s4987", + "NameJp": "ぐる☆ネーション", + "NameEng": "ぐる☆ネーション", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 4987, + "IdString": "s4988", + "NameJp": "Shooting☆みるきーうぇい", + "NameEng": "Shooting☆みるきーうぇい", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4988, + "IdString": "s4989", + "NameJp": "Shooting☆めておしゃわー", + "NameEng": "Shooting☆めておしゃわー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 4989, + "IdString": "s4990", + "NameJp": "ぐるる、ぐるる、イマジネーション☆", + "NameEng": "ぐるる、ぐるる、イマジネーション☆", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 4990, + "IdString": "s4991", + "NameJp": "GROOVE▼TRIANGLE 3", + "NameEng": "GROOVE▼TRIANGLE 3", + "UnlockRequirementJp": "店舗イベント参加賞", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 4991, + "IdString": "s4992", + "NameJp": "闘神祭2020チャレンジャー", + "NameEng": "闘神祭2020チャレンジャー", + "UnlockRequirementJp": "闘神祭2020予選参加", + "UnlockRequirementEng": "闘神祭2020予選参加", + "Type": 12 + }, + { + "Id": 4992, + "IdString": "s4993", + "NameJp": "闘神祭2020ファイナリスト", + "NameEng": "闘神祭2020ファイナリスト", + "UnlockRequirementJp": "闘神祭2020決勝進出", + "UnlockRequirementEng": "闘神祭2020決勝進出", + "Type": 12 + }, + { + "Id": 4993, + "IdString": "s4994", + "NameJp": "闘神祭2020チャンピオン", + "NameEng": "闘神祭2020チャンピオン", + "UnlockRequirementJp": "闘神祭2020優勝", + "UnlockRequirementEng": "闘神祭2020優勝", + "Type": 12 + }, + { + "Id": 4994, + "IdString": "s4995", + "NameJp": "I love \"フィクサー\"", + "NameEng": "I love \"フィクサー\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4995, + "IdString": "s4996", + "NameJp": "沈め 沈め", + "NameEng": "沈め 沈め", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4996, + "IdString": "s4997", + "NameJp": "落とせ 落とせ", + "NameEng": "落とせ 落とせ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 4997, + "IdString": "s4998", + "NameJp": "奪え 奪え", + "NameEng": "奪え 奪え", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 4998, + "IdString": "s4999", + "NameJp": "I love \"テオ\"", + "NameEng": "I love \"テオ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 4999, + "IdString": "s5000", + "NameJp": "クラクラクラ", + "NameEng": "クラクラクラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5000, + "IdString": "s5001", + "NameJp": "ユラユラユラ", + "NameEng": "ユラユラユラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5001, + "IdString": "s5002", + "NameJp": "キラキラキラ", + "NameEng": "キラキラキラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 5002, + "IdString": "s5003", + "NameJp": "I love \"ベノム\"", + "NameEng": "I love \"ベノム\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 5003, + "IdString": "s5004", + "NameJp": "叫ベベベノム", + "NameEng": "叫ベベベノム", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5004, + "IdString": "s5005", + "NameJp": "叫ベベベノム 叫ベベベノム", + "NameEng": "叫ベベベノム 叫ベベベノム", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5005, + "IdString": "s5006", + "NameJp": "めっ!", + "NameEng": "めっ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 5006, + "IdString": "s5007", + "NameJp": "I love \"DOWN DOWN DOLL\"", + "NameEng": "I love \"DOWN DOWN DOLL\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5007, + "IdString": "s5008", + "NameJp": "Spell to corse!", + "NameEng": "Spell to corse!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5008, + "IdString": "s5009", + "NameJp": "Curse My Heart!", + "NameEng": "Curse My Heart!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5009, + "IdString": "s5010", + "NameJp": "Hey!Down Down Doll!", + "NameEng": "Hey!Down Down Doll!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5010, + "IdString": "s5011", + "NameJp": "I love \"ミライトミライ\"", + "NameEng": "I love \"ミライトミライ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5011, + "IdString": "s5012", + "NameJp": "いっせーの、はい!", + "NameEng": "いっせーの、はい!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5012, + "IdString": "s5013", + "NameJp": "OH YEAH!!", + "NameEng": "OH YEAH!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5013, + "IdString": "s5014", + "NameJp": "ハロー\u3000ハロー", + "NameEng": "ハロー\u3000ハロー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5014, + "IdString": "s5015", + "NameJp": "I love \"Let you DIVE!\"", + "NameEng": "I love \"Let you DIVE!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5015, + "IdString": "s5016", + "NameJp": "光と音の輪で遊んで", + "NameEng": "光と音の輪で遊んで", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5016, + "IdString": "s5017", + "NameJp": "君の心の中 全てWACCA", + "NameEng": "君の心の中 全てWACCA", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5017, + "IdString": "s5018", + "NameJp": "君も共に行こう Let you DIVE!", + "NameEng": "君も共に行こう Let you DIVE!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5018, + "IdString": "s5019", + "NameJp": "I love \"Poseidon\"", + "NameEng": "I love \"Poseidon\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5019, + "IdString": "s5020", + "NameJp": "Poseidon Master", + "NameEng": "Poseidon Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5020, + "IdString": "s5021", + "NameJp": "Poseidon King", + "NameEng": "Poseidon King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5021, + "IdString": "s5022", + "NameJp": "Poseidon God", + "NameEng": "Poseidon God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5022, + "IdString": "s5023", + "NameJp": "I love \"ヒバリ\"", + "NameEng": "I love \"ヒバリ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5023, + "IdString": "s5024", + "NameJp": "日晴", + "NameEng": "日晴", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5024, + "IdString": "s5025", + "NameJp": "ヒバリの天", + "NameEng": "ヒバリの天", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5025, + "IdString": "s5026", + "NameJp": "姫雛鳥の天", + "NameEng": "姫雛鳥の天", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5026, + "IdString": "s5027", + "NameJp": "I love \"Gate One\"", + "NameEng": "I love \"Gate One\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5027, + "IdString": "s5028", + "NameJp": "Gate One Master", + "NameEng": "Gate One Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5028, + "IdString": "s5029", + "NameJp": "Gate One King", + "NameEng": "Gate One King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5029, + "IdString": "s5030", + "NameJp": "Gate One God", + "NameEng": "Gate One God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5030, + "IdString": "s5031", + "NameJp": "I love \"Exitium\"", + "NameEng": "I love \"Exitium\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5031, + "IdString": "s5032", + "NameJp": "Exitium Master", + "NameEng": "Exitium Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5032, + "IdString": "s5033", + "NameJp": "Exitium King", + "NameEng": "Exitium King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5033, + "IdString": "s5034", + "NameJp": "Exitium God", + "NameEng": "Exitium God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5034, + "IdString": "s5035", + "NameJp": "AUG, 2020 TOP RANKER", + "NameEng": "AUG, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5035, + "IdString": "s5036", + "NameJp": "SEP, 2020 TOP RANKER", + "NameEng": "SEP, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5036, + "IdString": "s5037", + "NameJp": "OCT, 2020 TOP RANKER", + "NameEng": "OCT, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5037, + "IdString": "s5038", + "NameJp": "NOV, 2020 TOP RANKER", + "NameEng": "NOV, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5038, + "IdString": "s5039", + "NameJp": "DEC, 2020 TOP RANKER", + "NameEng": "DEC, 2020 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5039, + "IdString": "s5040", + "NameJp": "JAN, 2021 TOP RANKER", + "NameEng": "JAN, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5040, + "IdString": "s5041", + "NameJp": "FEB, 2021 TOP RANKER", + "NameEng": "FEB, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5041, + "IdString": "s5042", + "NameJp": "MAR, 2021 TOP RANKER", + "NameEng": "MAR, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5042, + "IdString": "s5043", + "NameJp": "APR, 2021 TOP RANKER", + "NameEng": "APR, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5043, + "IdString": "s5044", + "NameJp": "MAY, 2021 TOP RANKER", + "NameEng": "MAY, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5044, + "IdString": "s5045", + "NameJp": "JUN, 2021 TOP RANKER", + "NameEng": "JUN, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5045, + "IdString": "s5046", + "NameJp": "JUL, 2021 TOP RANKER", + "NameEng": "JUL, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5046, + "IdString": "s5047", + "NameJp": "AUG, 2021 TOP RANKER", + "NameEng": "AUG, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5047, + "IdString": "s5048", + "NameJp": "SEP, 2021 TOP RANKER", + "NameEng": "SEP, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5048, + "IdString": "s5049", + "NameJp": "OCT, 2021 TOP RANKER", + "NameEng": "OCT, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5049, + "IdString": "s5050", + "NameJp": "NOV, 2021 TOP RANKER", + "NameEng": "NOV, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5050, + "IdString": "s5051", + "NameJp": "DEC, 2021 TOP RANKER", + "NameEng": "DEC, 2021 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5051, + "IdString": "s5052", + "NameJp": "JAN, 2022 TOP RANKER", + "NameEng": "JAN, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5052, + "IdString": "s5053", + "NameJp": "FEB, 2022 TOP RANKER", + "NameEng": "FEB, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5053, + "IdString": "s5054", + "NameJp": "MAR, 2022 TOP RANKER", + "NameEng": "MAR, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5054, + "IdString": "s5055", + "NameJp": "APR, 2022 TOP RANKER", + "NameEng": "APR, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5055, + "IdString": "s5056", + "NameJp": "MAY, 2022 TOP RANKER", + "NameEng": "MAY, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5056, + "IdString": "s5057", + "NameJp": "JUN, 2022 TOP RANKER", + "NameEng": "JUN, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5057, + "IdString": "s5058", + "NameJp": "JUL, 2022 TOP RANKER", + "NameEng": "JUL, 2022 TOP RANKER", + "UnlockRequirementJp": "プレゼントキャンペーン・イベントで獲得", + "UnlockRequirementEng": "Get via a campaign", + "Type": 12 + }, + { + "Id": 5058, + "IdString": "s5059", + "NameJp": "WACCA MASTER", + "NameEng": "WACCA MASTER", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5059, + "IdString": "s5060", + "NameJp": "十分に強い", + "NameEng": "十分に強い", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5060, + "IdString": "s5061", + "NameJp": "永久機関", + "NameEng": "永久機関", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5061, + "IdString": "s5062", + "NameJp": "素人は黙っとれ", + "NameEng": "素人は黙っとれ", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5062, + "IdString": "s5063", + "NameJp": "君グルコスうまいねぇ", + "NameEng": "君グルコスうまいねぇ", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5063, + "IdString": "s5064", + "NameJp": "Laur信者", + "NameEng": "Laur信者", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5064, + "IdString": "s5065", + "NameJp": "くぅ~疲れましたw", + "NameEng": "くぅ~疲れましたw", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5065, + "IdString": "s5066", + "NameJp": "MNKメンバー", + "NameEng": "MNKメンバー", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5066, + "IdString": "s5067", + "NameJp": "俺たちの戦いは始まったばかりだ", + "NameEng": "俺たちの戦いは始まったばかりだ", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5067, + "IdString": "s5068", + "NameJp": "aranはダチ", + "NameEng": "aranはダチ", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5068, + "IdString": "s5069", + "NameJp": "t+pazoliteファミリー", + "NameEng": "t+pazoliteファミリー", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5069, + "IdString": "s5070", + "NameJp": "REDALiCEファン", + "NameEng": "REDALiCEファン", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5070, + "IdString": "s5071", + "NameJp": "Kobaryo推し", + "NameEng": "Kobaryo推し", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5071, + "IdString": "s5072", + "NameJp": "ウェルカムトゥワッカ!", + "NameEng": "ウェルカムトゥワッカ!", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5072, + "IdString": "s5073", + "NameJp": "WACCAはじめました", + "NameEng": "WACCAはじめました", + "UnlockRequirementJp": "『WACCA』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5073, + "IdString": "s5074", + "NameJp": "I love \"An indignant world\"", + "NameEng": "I love \"An indignant world\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5074, + "IdString": "s5075", + "NameJp": "An indignant master", + "NameEng": "An indignant master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5075, + "IdString": "s5076", + "NameJp": "An indignant king", + "NameEng": "An indignant king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5076, + "IdString": "s5077", + "NameJp": "An indignant god", + "NameEng": "An indignant god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5077, + "IdString": "s5078", + "NameJp": "I love \"アンドロメダアンドロメダ -Invade MIX-\"", + "NameEng": "I love \"アンドロメダアンドロメダ -Invade MIX-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 5078, + "IdString": "s5079", + "NameJp": "ワレワレは宇宙人ダ", + "NameEng": "ワレワレは宇宙人ダ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5079, + "IdString": "s5080", + "NameJp": "届ける思いは超電波", + "NameEng": "届ける思いは超電波", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5080, + "IdString": "s5081", + "NameJp": "パルラパルラパルラッタッタラ", + "NameEng": "パルラパルラパルラッタッタラ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 5081, + "IdString": "s5082", + "NameJp": "I love \"バレリーコ\"", + "NameEng": "I love \"バレリーコ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 5082, + "IdString": "s5083", + "NameJp": "ディン・ディン・ダン♪", + "NameEng": "ディン・ディン・ダン♪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5083, + "IdString": "s5084", + "NameJp": "アン・ドゥ・トロワ", + "NameEng": "アン・ドゥ・トロワ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5084, + "IdString": "s5085", + "NameJp": "シャル・ウィ・ダンス", + "NameEng": "シャル・ウィ・ダンス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 5085, + "IdString": "s5086", + "NameJp": "I love \"MariannE (Lanota Edit)\"", + "NameEng": "I love \"MariannE (Lanota Edit)\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5086, + "IdString": "s5087", + "NameJp": "MariannE Master", + "NameEng": "MariannE Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5087, + "IdString": "s5088", + "NameJp": "MariannE Queen", + "NameEng": "MariannE Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5088, + "IdString": "s5089", + "NameJp": "MariannE Goddess", + "NameEng": "MariannE Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5089, + "IdString": "s5090", + "NameJp": "I love \"-A.I.D-\"", + "NameEng": "I love \"-A.I.D-\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5090, + "IdString": "s5091", + "NameJp": "A.I.D Master", + "NameEng": "A.I.D Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5091, + "IdString": "s5092", + "NameJp": "A.I.D King", + "NameEng": "A.I.D King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5092, + "IdString": "s5093", + "NameJp": "A.I.D God", + "NameEng": "A.I.D God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5093, + "IdString": "s5094", + "NameJp": "I love \"改革のバラッド\"", + "NameEng": "I love \"改革のバラッド\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5094, + "IdString": "s5095", + "NameJp": "改革のバラッド Master", + "NameEng": "改革のバラッド Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5095, + "IdString": "s5096", + "NameJp": "改革のバラッド King", + "NameEng": "改革のバラッド King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5096, + "IdString": "s5097", + "NameJp": "改革のバラッド God", + "NameEng": "改革のバラッド God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5097, + "IdString": "s5098", + "NameJp": "I love \"uranus\"", + "NameEng": "I love \"uranus\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5098, + "IdString": "s5099", + "NameJp": "uranus Master", + "NameEng": "uranus Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5099, + "IdString": "s5100", + "NameJp": "uranus Queen", + "NameEng": "uranus Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5100, + "IdString": "s5101", + "NameJp": "uranus Goddess", + "NameEng": "uranus Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5101, + "IdString": "s5102", + "NameJp": "I love \"ヒトリシズカ\"", + "NameEng": "I love \"ヒトリシズカ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5102, + "IdString": "s5103", + "NameJp": "闇を操る程度の先生", + "NameEng": "闇を操る程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5103, + "IdString": "s5104", + "NameJp": "闇を操る程度の女王", + "NameEng": "闇を操る程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5104, + "IdString": "s5105", + "NameJp": "闇を操る程度の女神", + "NameEng": "闇を操る程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5105, + "IdString": "s5106", + "NameJp": "I love \"エピクロスの虹はもう見えない\"", + "NameEng": "I love \"エピクロスの虹はもう見えない\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5106, + "IdString": "s5107", + "NameJp": "色鮮やかに虹色な先生", + "NameEng": "色鮮やかに虹色な先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5107, + "IdString": "s5108", + "NameJp": "色鮮やかに虹色な女王", + "NameEng": "色鮮やかに虹色な女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5108, + "IdString": "s5109", + "NameJp": "色鮮やかに虹色な女神", + "NameEng": "色鮮やかに虹色な女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5109, + "IdString": "s5110", + "NameJp": "I love \"taboo tears you up 2017\"", + "NameEng": "I love \"taboo tears you up 2017\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5110, + "IdString": "s5111", + "NameJp": "ありとあらゆるものを破壊する程度の先生", + "NameEng": "ありとあらゆるものを破壊する程度の先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5111, + "IdString": "s5112", + "NameJp": "ありとあらゆるものを破壊する程度の女王", + "NameEng": "ありとあらゆるものを破壊する程度の女王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5112, + "IdString": "s5113", + "NameJp": "ありとあらゆるものを破壊する程度の女神", + "NameEng": "ありとあらゆるものを破壊する程度の女神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5113, + "IdString": "s5114", + "NameJp": "I love \"Omega Ax\"", + "NameEng": "I love \"Omega Ax\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5114, + "IdString": "s5115", + "NameJp": "Omega Ax Master", + "NameEng": "Omega Ax Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5115, + "IdString": "s5116", + "NameJp": "Omega Ax King", + "NameEng": "Omega Ax King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5116, + "IdString": "s5117", + "NameJp": "Omega Ax God", + "NameEng": "Omega Ax God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5117, + "IdString": "s5118", + "NameJp": "I love \"Corruption\"", + "NameEng": "I love \"Corruption\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5118, + "IdString": "s5119", + "NameJp": "Corruption Master", + "NameEng": "Corruption Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5119, + "IdString": "s5120", + "NameJp": "Corruption King", + "NameEng": "Corruption King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5120, + "IdString": "s5121", + "NameJp": "Corruption God", + "NameEng": "Corruption God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5121, + "IdString": "s5122", + "NameJp": "I love \"Grievous Lady\"", + "NameEng": "I love \"Grievous Lady\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5122, + "IdString": "s5123", + "NameJp": "Grievous Lady Master", + "NameEng": "Grievous Lady Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5123, + "IdString": "s5124", + "NameJp": "Grievous Lady King", + "NameEng": "Grievous Lady King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5124, + "IdString": "s5125", + "NameJp": "Grievous Lady God", + "NameEng": "Grievous Lady God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5125, + "IdString": "s5126", + "NameJp": "東方紅魔狂", + "NameEng": "東方紅魔狂", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5126, + "IdString": "s5127", + "NameJp": "恐ろしい波動", + "NameEng": "恐ろしい波動", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5127, + "IdString": "s5128", + "NameJp": "紅色の世界", + "NameEng": "紅色の世界", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5128, + "IdString": "s5129", + "NameJp": "知識と日陰の少女", + "NameEng": "知識と日陰の少女", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5129, + "IdString": "s5130", + "NameJp": "エリュシオンに血の雨", + "NameEng": "エリュシオンに血の雨", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5130, + "IdString": "s5131", + "NameJp": "危険な手品師", + "NameEng": "危険な手品師", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5131, + "IdString": "s5132", + "NameJp": "色鮮やかに虹色な門番", + "NameEng": "色鮮やかに虹色な門番", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5132, + "IdString": "s5133", + "NameJp": "氷の妖怪", + "NameEng": "氷の妖怪", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5133, + "IdString": "s5134", + "NameJp": "宵闇の妖怪", + "NameEng": "宵闇の妖怪", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5134, + "IdString": "s5135", + "NameJp": "弾幕ごっこ", + "NameEng": "弾幕ごっこ", + "UnlockRequirementJp": "『東方紅魔郷』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5135, + "IdString": "s5136", + "NameJp": "I love \"絶対にチョコミントを食べるアオイチャン\"", + "NameEng": "I love \"絶対にチョコミントを食べるアオイチャン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 5136, + "IdString": "s5137", + "NameJp": "Chocomint Ice", + "NameEng": "Chocomint Ice", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5137, + "IdString": "s5138", + "NameJp": "Chocomint Cake", + "NameEng": "Chocomint Cake", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5138, + "IdString": "s5139", + "NameJp": "Chocolate Ice", + "NameEng": "Chocolate Ice", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 5139, + "IdString": "s5140", + "NameJp": "I love \"スーサイドパレヱド\"", + "NameEng": "I love \"スーサイドパレヱド\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 5140, + "IdString": "s5141", + "NameJp": "スーサイドパレヱド・マスター", + "NameEng": "スーサイドパレヱド・マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5141, + "IdString": "s5142", + "NameJp": "スーサイドパレヱド・キング", + "NameEng": "スーサイドパレヱド・キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5142, + "IdString": "s5143", + "NameJp": "スーサイドパレヱド・ゴッド", + "NameEng": "スーサイドパレヱド・ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 5143, + "IdString": "s5144", + "NameJp": "I love \"HANIPAGANDA\"", + "NameEng": "I love \"HANIPAGANDA\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5144, + "IdString": "s5145", + "NameJp": "弓兵埴輪", + "NameEng": "弓兵埴輪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5145, + "IdString": "s5146", + "NameJp": "剣士埴輪", + "NameEng": "剣士埴輪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5146, + "IdString": "s5147", + "NameJp": "騎馬兵埴輪", + "NameEng": "騎馬兵埴輪", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5147, + "IdString": "s5148", + "NameJp": "I love \"穢れなきユーフォリア\"", + "NameEng": "I love \"穢れなきユーフォリア\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5148, + "IdString": "s5149", + "NameJp": "造形先生", + "NameEng": "造形先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5149, + "IdString": "s5150", + "NameJp": "造形王", + "NameEng": "造形王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5150, + "IdString": "s5151", + "NameJp": "造形神", + "NameEng": "造形神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5151, + "IdString": "s5152", + "NameJp": "I love \"夢色プレリュード\"", + "NameEng": "I love \"夢色プレリュード\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5152, + "IdString": "s5153", + "NameJp": "ニワタリ", + "NameEng": "ニワタリ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5153, + "IdString": "s5154", + "NameJp": "ニワタリ王", + "NameEng": "ニワタリ王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5154, + "IdString": "s5155", + "NameJp": "ニワタリ神", + "NameEng": "ニワタリ神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5155, + "IdString": "s5156", + "NameJp": "I love \"Vanity on the future\"", + "NameEng": "I love \"Vanity on the future\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5156, + "IdString": "s5157", + "NameJp": "黒駒", + "NameEng": "黒駒", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5157, + "IdString": "s5158", + "NameJp": "漆黒の天馬", + "NameEng": "漆黒の天馬", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5158, + "IdString": "s5159", + "NameJp": "聖徳太子のペガサス", + "NameEng": "聖徳太子のペガサス", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5159, + "IdString": "s5160", + "NameJp": "イドラデウス", + "NameEng": "イドラデウス", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5160, + "IdString": "s5161", + "NameJp": "鬼畜生の所業", + "NameEng": "鬼畜生の所業", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5161, + "IdString": "s5162", + "NameJp": "勁牙組\u3000組長", + "NameEng": "勁牙組\u3000組長", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5162, + "IdString": "s5163", + "NameJp": "孤立無援が誂えた造形神", + "NameEng": "孤立無援が誂えた造形神", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5163, + "IdString": "s5164", + "NameJp": "埴輪兵長", + "NameEng": "埴輪兵長", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5164, + "IdString": "s5165", + "NameJp": "鬼傑組\u3000組長", + "NameEng": "鬼傑組\u3000組長", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5165, + "IdString": "s5166", + "NameJp": "地獄関所の番頭神", + "NameEng": "地獄関所の番頭神", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5166, + "IdString": "s5167", + "NameJp": "古代魚の子連れ番人", + "NameEng": "古代魚の子連れ番人", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5167, + "IdString": "s5168", + "NameJp": "半人半霊の二刀剣士 魂魄妖夢", + "NameEng": "半人半霊の二刀剣士 魂魄妖夢", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5168, + "IdString": "s5169", + "NameJp": "オオワシ霊", + "NameEng": "オオワシ霊", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5169, + "IdString": "s5170", + "NameJp": "河原のアイドル水子", + "NameEng": "河原のアイドル水子", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5170, + "IdString": "s5171", + "NameJp": "カワウソ霊", + "NameEng": "カワウソ霊", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5171, + "IdString": "s5172", + "NameJp": "至極普通の魔法使い", + "NameEng": "至極普通の魔法使い", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5172, + "IdString": "s5173", + "NameJp": "オオカミ霊", + "NameEng": "オオカミ霊", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5173, + "IdString": "s5174", + "NameJp": "楽園の素敵な巫女", + "NameEng": "楽園の素敵な巫女", + "UnlockRequirementJp": "『東方鬼形獣』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5174, + "IdString": "s5175", + "NameJp": "トーナメント オブ ザ マスターズ チャンピオン", + "NameEng": "トーナメント オブ ザ マスターズ チャンピオン", + "UnlockRequirementJp": "トーナメント オブ ザ マスターズ優勝", + "UnlockRequirementEng": "Tournament of the Masters\nWinner", + "Type": 12 + }, + { + "Id": 5175, + "IdString": "s5176", + "NameJp": "I love \"Light of Muse\"", + "NameEng": "I love \"Light of Muse\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5176, + "IdString": "s5177", + "NameJp": "Light of Muse Master", + "NameEng": "Light of Muse Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5177, + "IdString": "s5178", + "NameJp": "Light of Muse King", + "NameEng": "Light of Muse King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5178, + "IdString": "s5179", + "NameJp": "Light of Muse God", + "NameEng": "Light of Muse God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5179, + "IdString": "s5180", + "NameJp": "I love \"Stargazer\"", + "NameEng": "I love \"Stargazer\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5180, + "IdString": "s5181", + "NameJp": "Stargazer Master", + "NameEng": "Stargazer Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5181, + "IdString": "s5182", + "NameJp": "Stargazer King", + "NameEng": "Stargazer King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5182, + "IdString": "s5183", + "NameJp": "Stargazer God", + "NameEng": "Stargazer God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5183, + "IdString": "s5184", + "NameJp": "I love \"XING\"", + "NameEng": "I love \"XING\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5184, + "IdString": "s5185", + "NameJp": "XING Master", + "NameEng": "XING Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5185, + "IdString": "s5186", + "NameJp": "XING King", + "NameEng": "XING King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5186, + "IdString": "s5187", + "NameJp": "XING God", + "NameEng": "XING God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5187, + "IdString": "s5188", + "NameJp": "I love \"粉骨砕身カジノゥ\"", + "NameEng": "I love \"粉骨砕身カジノゥ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5188, + "IdString": "s5189", + "NameJp": "粉骨砕身カジノゥ マスタァ", + "NameEng": "粉骨砕身カジノゥ マスタァ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5189, + "IdString": "s5190", + "NameJp": "粉骨砕身カジノゥ キングゥ", + "NameEng": "粉骨砕身カジノゥ キングゥ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5190, + "IdString": "s5191", + "NameJp": "粉骨砕身カジノゥ ゴッドゥ", + "NameEng": "粉骨砕身カジノゥ ゴッドゥ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5191, + "IdString": "s5192", + "NameJp": "I love \"GROOVE LOOP\"", + "NameEng": "I love \"GROOVE LOOP\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5192, + "IdString": "s5193", + "NameJp": "GROOVE LOOP MASTER", + "NameEng": "GROOVE LOOP MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5193, + "IdString": "s5194", + "NameJp": "GROOVE LOOP KING", + "NameEng": "GROOVE LOOP KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5194, + "IdString": "s5195", + "NameJp": "GROOVE LOOP GOD", + "NameEng": "GROOVE LOOP GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5195, + "IdString": "s5196", + "NameJp": "I love \"Aurgelmir\"", + "NameEng": "I love \"Aurgelmir\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5196, + "IdString": "s5197", + "NameJp": "Aurgelmir Master", + "NameEng": "Aurgelmir Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5197, + "IdString": "s5198", + "NameJp": "Aurgelmir King", + "NameEng": "Aurgelmir King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5198, + "IdString": "s5199", + "NameJp": "Aurgelmir God", + "NameEng": "Aurgelmir God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5199, + "IdString": "s5200", + "NameJp": "I love \"ヴィラン\"", + "NameEng": "I love \"ヴィラン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 5200, + "IdString": "s5201", + "NameJp": "ヴィラン マスター", + "NameEng": "ヴィラン マスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5201, + "IdString": "s5202", + "NameJp": "ヴィラン キング", + "NameEng": "ヴィラン キング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5202, + "IdString": "s5203", + "NameJp": "ヴィラン ゴッド", + "NameEng": "ヴィラン ゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 5203, + "IdString": "s5204", + "NameJp": "DIAMOND GALAXY", + "NameEng": "DIAMOND GALAXY", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5204, + "IdString": "s5205", + "NameJp": "君も僕もGROOVEしちゃおう", + "NameEng": "君も僕もGROOVEしちゃおう", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5205, + "IdString": "s5206", + "NameJp": "削除", + "NameEng": "削除", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5206, + "IdString": "s5207", + "NameJp": "ラッキー7", + "NameEng": "ラッキー7", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5207, + "IdString": "s5208", + "NameJp": "I love VTuber", + "NameEng": "I love VTuber", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5208, + "IdString": "s5209", + "NameJp": "ときめきこそ正義なのだ", + "NameEng": "ときめきこそ正義なのだ", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5209, + "IdString": "s5210", + "NameJp": "ミライ部", + "NameEng": "ミライ部", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5210, + "IdString": "s5211", + "NameJp": "シロ組", + "NameEng": "シロ組", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5211, + "IdString": "s5212", + "NameJp": "クラスメイト", + "NameEng": "クラスメイト", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5212, + "IdString": "s5213", + "NameJp": "削除", + "NameEng": "削除", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5213, + "IdString": "s5214", + "NameJp": "I love ミライアカリ", + "NameEng": "I love ミライアカリ", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5214, + "IdString": "s5215", + "NameJp": "I love 電脳少女シロ", + "NameEng": "I love 電脳少女シロ", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5215, + "IdString": "s5216", + "NameJp": "I love 月ノ美兎", + "NameEng": "I love 月ノ美兎", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5216, + "IdString": "s5217", + "NameJp": "削除", + "NameEng": "削除", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5217, + "IdString": "s5218", + "NameJp": "祝7周年!", + "NameEng": "祝7周年!", + "UnlockRequirementJp": "『祝7周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5218, + "IdString": "s5219", + "NameJp": "I love \"QiXiN MAdN3ss 2153\"", + "NameEng": "I love \"QiXiN MAdN3ss 2153\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5219, + "IdString": "s5220", + "NameJp": "QiXiN MAdN3ss 2153 Master", + "NameEng": "QiXiN MAdN3ss 2153 Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5220, + "IdString": "s5221", + "NameJp": "QiXiN MAdN3ss 2153 King", + "NameEng": "QiXiN MAdN3ss 2153 King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5221, + "IdString": "s5222", + "NameJp": "QiXiN MAdN3ss 2153 God", + "NameEng": "QiXiN MAdN3ss 2153 God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5222, + "IdString": "s5223", + "NameJp": "I love \"with U\"", + "NameEng": "I love \"with U\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5223, + "IdString": "s5224", + "NameJp": "with U Master", + "NameEng": "with U Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5224, + "IdString": "s5225", + "NameJp": "with U King", + "NameEng": "with U King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5225, + "IdString": "s5226", + "NameJp": "with U God", + "NameEng": "with U God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5226, + "IdString": "s5227", + "NameJp": "I love \"Invisible Frenzy\"", + "NameEng": "I love \"Invisible Frenzy\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5227, + "IdString": "s5228", + "NameJp": "Invisible Frenzy Master", + "NameEng": "Invisible Frenzy Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5228, + "IdString": "s5229", + "NameJp": "Invisible Frenzy King", + "NameEng": "Invisible Frenzy King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5229, + "IdString": "s5230", + "NameJp": "Invisible Frenzy God", + "NameEng": "Invisible Frenzy God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5230, + "IdString": "s5231", + "NameJp": "I love \"Knight Rider\"", + "NameEng": "I love \"Knight Rider\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5231, + "IdString": "s5232", + "NameJp": "Knight Rider Master", + "NameEng": "Knight Rider Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5232, + "IdString": "s5233", + "NameJp": "Knight Rider King", + "NameEng": "Knight Rider King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5233, + "IdString": "s5234", + "NameJp": "Knight Rider God", + "NameEng": "Knight Rider God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5234, + "IdString": "s5235", + "NameJp": "I love \"乙女解剖\"", + "NameEng": "I love \"乙女解剖\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 5235, + "IdString": "s5236", + "NameJp": "乙女解剖 Master", + "NameEng": "乙女解剖 Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5236, + "IdString": "s5237", + "NameJp": "乙女解剖 Queen", + "NameEng": "乙女解剖 Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5237, + "IdString": "s5238", + "NameJp": "乙女解剖 Goddess", + "NameEng": "乙女解剖 Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 5238, + "IdString": "s5239", + "NameJp": "I love \"ロストワードクロニカル\"", + "NameEng": "I love \"ロストワードクロニカル\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5239, + "IdString": "s5240", + "NameJp": "ロストワードクロニカル Master", + "NameEng": "ロストワードクロニカル Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5240, + "IdString": "s5241", + "NameJp": "ロストワードクロニカル King", + "NameEng": "ロストワードクロニカル King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5241, + "IdString": "s5242", + "NameJp": "ロストワードクロニカル God", + "NameEng": "ロストワードクロニカル God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5242, + "IdString": "s5243", + "NameJp": "I love \"プナイプナイたいそう\"", + "NameEng": "I love \"プナイプナイたいそう\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 5243, + "IdString": "s5244", + "NameJp": "プナイプナイたいそうマスター", + "NameEng": "プナイプナイたいそうマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5244, + "IdString": "s5245", + "NameJp": "プナイプナイたいそうキング", + "NameEng": "プナイプナイたいそうキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5245, + "IdString": "s5246", + "NameJp": "プナイプナイたいそうゴッド", + "NameEng": "プナイプナイたいそうゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 5246, + "IdString": "s5247", + "NameJp": "I love \"GOODBOUNCE\"", + "NameEng": "I love \"GOODBOUNCE\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 5247, + "IdString": "s5248", + "NameJp": "GOODBOUNCE MASTER", + "NameEng": "GOODBOUNCE MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5248, + "IdString": "s5249", + "NameJp": "GOODBOUNCE KING", + "NameEng": "GOODBOUNCE KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5249, + "IdString": "s5250", + "NameJp": "GOODBOUNCE GOD", + "NameEng": "GOODBOUNCE GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 5250, + "IdString": "s5251", + "NameJp": "I love \"Altale\"", + "NameEng": "I love \"Altale\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 5251, + "IdString": "s5252", + "NameJp": "Altale Master", + "NameEng": "Altale Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5252, + "IdString": "s5253", + "NameJp": "Altale King", + "NameEng": "Altale King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5253, + "IdString": "s5254", + "NameJp": "Altale God", + "NameEng": "Altale God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 5254, + "IdString": "s5255", + "NameJp": "I love \"MilK\"", + "NameEng": "I love \"MilK\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 5255, + "IdString": "s5256", + "NameJp": "MilK Master", + "NameEng": "MilK Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5256, + "IdString": "s5257", + "NameJp": "MilK King", + "NameEng": "MilK King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5257, + "IdString": "s5258", + "NameJp": "MilK God", + "NameEng": "MilK God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 5258, + "IdString": "s5259", + "NameJp": "神の光", + "NameEng": "神の光", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5259, + "IdString": "s5260", + "NameJp": "うーっ!プナイプナ~イっ!", + "NameEng": "うーっ!プナイプナ~イっ!", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5260, + "IdString": "s5261", + "NameJp": "本日休講", + "NameEng": "本日休講", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5261, + "IdString": "s5262", + "NameJp": "星と月の鍵", + "NameEng": "星と月の鍵", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5262, + "IdString": "s5263", + "NameJp": "(><)", + "NameEng": "(><)", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5263, + "IdString": "s5264", + "NameJp": "世界の目覚め", + "NameEng": "世界の目覚め", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5264, + "IdString": "s5265", + "NameJp": "STOMP YOUR FEET", + "NameEng": "STOMP YOUR FEET", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5265, + "IdString": "s5266", + "NameJp": "メリーゴーランドまわれーっ!", + "NameEng": "メリーゴーランドまわれーっ!", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5266, + "IdString": "s5267", + "NameJp": "懸垂式汽車", + "NameEng": "懸垂式汽車", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5267, + "IdString": "s5268", + "NameJp": "4000", + "NameEng": "4000", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5268, + "IdString": "s5269", + "NameJp": "星空の釣り人", + "NameEng": "星空の釣り人", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5269, + "IdString": "s5270", + "NameJp": "I love 飛騨 跳", + "NameEng": "I love 飛騨 跳", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5270, + "IdString": "s5271", + "NameJp": "XO", + "NameEng": "XO", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5271, + "IdString": "s5272", + "NameJp": "I love ユミル", + "NameEng": "I love ユミル", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5272, + "IdString": "s5273", + "NameJp": "I love てるやま", + "NameEng": "I love てるやま", + "UnlockRequirementJp": "『オリジナル&バラエティ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5273, + "IdString": "s5274", + "NameJp": "I love \"Gimme吟味virtuaる最高star!!!!\"", + "NameEng": "I love \"Gimme吟味virtuaる最高star!!!!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5274, + "IdString": "s5275", + "NameJp": "Groovin Groovin Party!", + "NameEng": "Groovin Groovin Party!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5275, + "IdString": "s5276", + "NameJp": "もっと”グルーヴ”したくないですか?", + "NameEng": "もっと”グルーヴ”したくないですか?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5276, + "IdString": "s5277", + "NameJp": "最強 Virtual Beats!!", + "NameEng": "最強 Virtual Beats!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5277, + "IdString": "s5278", + "NameJp": "I love \"Shiny Smily Story\"", + "NameEng": "I love \"Shiny Smily Story\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5278, + "IdString": "s5279", + "NameJp": "走れGO", + "NameEng": "走れGO", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5279, + "IdString": "s5280", + "NameJp": "とまらないホロライブ", + "NameEng": "とまらないホロライブ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5280, + "IdString": "s5281", + "NameJp": "こえていくホロライブ", + "NameEng": "こえていくホロライブ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5281, + "IdString": "s5282", + "NameJp": "I love \"サトリアイ(feat. ytr)\"", + "NameEng": "I love \"サトリアイ(feat. ytr)\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5282, + "IdString": "s5283", + "NameJp": "独りきりで屋敷の中", + "NameEng": "独りきりで屋敷の中", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5283, + "IdString": "s5284", + "NameJp": "サトリサトラレ", + "NameEng": "サトリサトラレ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5284, + "IdString": "s5285", + "NameJp": "逃れられないEyes", + "NameEng": "逃れられないEyes", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5285, + "IdString": "s5286", + "NameJp": "I love \"お空のニュークリアフュージョン道場\"", + "NameEng": "I love \"お空のニュークリアフュージョン道場\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5286, + "IdString": "s5287", + "NameJp": "制御棒をぶちかませ!", + "NameEng": "制御棒をぶちかませ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5287, + "IdString": "s5288", + "NameJp": "最強装備だ\u3000核融合!", + "NameEng": "最強装備だ\u3000核融合!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5288, + "IdString": "s5289", + "NameJp": "それでもゆっくりしたいですか?", + "NameEng": "それでもゆっくりしたいですか?", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5289, + "IdString": "s5290", + "NameJp": "I love \"眠れぬ夜君を想フ\"", + "NameEng": "I love \"眠れぬ夜君を想フ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5290, + "IdString": "s5291", + "NameJp": "眠れぬ夜君を想フ Master", + "NameEng": "眠れぬ夜君を想フ Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5291, + "IdString": "s5292", + "NameJp": "眠れぬ夜君を想フ King", + "NameEng": "眠れぬ夜君を想フ King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5292, + "IdString": "s5293", + "NameJp": "眠れぬ夜君を想フ God", + "NameEng": "眠れぬ夜君を想フ God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5293, + "IdString": "s5294", + "NameJp": "I love \"World Vanquisher\"", + "NameEng": "I love \"World Vanquisher\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5294, + "IdString": "s5295", + "NameJp": "World Vanquisher Master", + "NameEng": "World Vanquisher Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5295, + "IdString": "s5296", + "NameJp": "World Vanquisher King", + "NameEng": "World Vanquisher King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5296, + "IdString": "s5297", + "NameJp": "World Vanquisher God", + "NameEng": "World Vanquisher God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5297, + "IdString": "s5298", + "NameJp": "I love \"光線チューニング\"", + "NameEng": "I love \"光線チューニング\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5298, + "IdString": "s5299", + "NameJp": "光線チューニング Master", + "NameEng": "光線チューニング Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5299, + "IdString": "s5300", + "NameJp": "光線チューニング King", + "NameEng": "光線チューニング King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5300, + "IdString": "s5301", + "NameJp": "光線チューニング God", + "NameEng": "光線チューニング God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5301, + "IdString": "s5302", + "NameJp": "I love \"Paqqin\"", + "NameEng": "I love \"Paqqin\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5302, + "IdString": "s5303", + "NameJp": "Paqqin Master", + "NameEng": "Paqqin Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5303, + "IdString": "s5304", + "NameJp": "Paqqin King", + "NameEng": "Paqqin King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5304, + "IdString": "s5305", + "NameJp": "Paqqin God", + "NameEng": "Paqqin God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5305, + "IdString": "s5306", + "NameJp": "I love \"Trrricksters!!\"", + "NameEng": "I love \"Trrricksters!!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5306, + "IdString": "s5307", + "NameJp": "Trrricksters!! Master", + "NameEng": "Trrricksters!! Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5307, + "IdString": "s5308", + "NameJp": "Trrricksters!! King", + "NameEng": "Trrricksters!! King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5308, + "IdString": "s5309", + "NameJp": "Trrricksters!! God", + "NameEng": "Trrricksters!! God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5309, + "IdString": "s5310", + "NameJp": "I love \"大江山ジャイアントスイング\"", + "NameEng": "I love \"大江山ジャイアントスイング\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5310, + "IdString": "s5311", + "NameJp": "おえおぅぃぇ\u3000おえおぅぃぇ", + "NameEng": "おえおぅぃぇ\u3000おえおぅぃぇ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5311, + "IdString": "s5312", + "NameJp": "ぼんばぃぇぁ\u3000ぼんばぃぇぁ", + "NameEng": "ぼんばぃぇぁ\u3000ぼんばぃぇぁ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5312, + "IdString": "s5313", + "NameJp": "「えびばりげっだんなう!」", + "NameEng": "「えびばりげっだんなう!」", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5313, + "IdString": "s5314", + "NameJp": "I love \"無間嫉妬劇場『666』\"", + "NameEng": "I love \"無間嫉妬劇場『666』\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5314, + "IdString": "s5315", + "NameJp": "\n第一幕『閑静な日常』", + "NameEng": "\n第一幕『閑静な日常』", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5315, + "IdString": "s5316", + "NameJp": "第二幕『覚醒』", + "NameEng": "第二幕『覚醒』", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5316, + "IdString": "s5317", + "NameJp": "空虚な 無間嫉妬", + "NameEng": "空虚な 無間嫉妬", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5317, + "IdString": "s5318", + "NameJp": "I love \"Dreamin' Attraction!!\"", + "NameEng": "I love \"Dreamin' Attraction!!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 5318, + "IdString": "s5319", + "NameJp": "Dreamin' Attraction!! Master", + "NameEng": "Dreamin' Attraction!! Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5319, + "IdString": "s5320", + "NameJp": "Dreamin' Attraction!! King", + "NameEng": "Dreamin' Attraction!! King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5320, + "IdString": "s5321", + "NameJp": "Dreamin' Attraction!! God", + "NameEng": "Dreamin' Attraction!! God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 5321, + "IdString": "s5322", + "NameJp": "I love \"Black Lotus\"", + "NameEng": "I love \"Black Lotus\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 5322, + "IdString": "s5323", + "NameJp": "Black Lotus Master", + "NameEng": "Black Lotus Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5323, + "IdString": "s5324", + "NameJp": "Black Lotus King", + "NameEng": "Black Lotus King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5324, + "IdString": "s5325", + "NameJp": "Black Lotus God", + "NameEng": "Black Lotus God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 5325, + "IdString": "s5326", + "NameJp": "CHUNITHM\u3000PARADISE", + "NameEng": "CHUNITHM\u3000PARADISE", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5326, + "IdString": "s5327", + "NameJp": "CHUNITHM\u3000CRYSTAL", + "NameEng": "CHUNITHM\u3000CRYSTAL", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5327, + "IdString": "s5328", + "NameJp": "CHUNITHM\u3000AMAZON", + "NameEng": "CHUNITHM\u3000AMAZON", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5328, + "IdString": "s5329", + "NameJp": "CHUNITHM\u3000STAR", + "NameEng": "CHUNITHM\u3000STAR", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5329, + "IdString": "s5330", + "NameJp": "CHUNITHM\u3000AIR", + "NameEng": "CHUNITHM\u3000AIR", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5330, + "IdString": "s5331", + "NameJp": "虹レ", + "NameEng": "虹レ", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5331, + "IdString": "s5332", + "NameJp": "断罪せし御使い", + "NameEng": "断罪せし御使い", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5332, + "IdString": "s5333", + "NameJp": "恋のキューピット", + "NameEng": "恋のキューピット", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5333, + "IdString": "s5334", + "NameJp": "ALL JUSTICE", + "NameEng": "AJC", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5334, + "IdString": "s5335", + "NameJp": "ラブリーハンター", + "NameEng": "ラブリーハンター", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5335, + "IdString": "s5336", + "NameJp": "ね、かんたんでしょ?", + "NameEng": "ね、かんたんでしょ?", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5336, + "IdString": "s5337", + "NameJp": "WORLD'S END", + "NameEng": "WORLD'S END", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5337, + "IdString": "s5338", + "NameJp": "サウンドパレード!!", + "NameEng": "サウンドパレード!!", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5338, + "IdString": "s5339", + "NameJp": "チュウニズム勢", + "NameEng": "チュウニズム勢", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5339, + "IdString": "s5340", + "NameJp": "I love CHUNITHM", + "NameEng": "I love CHUNITHM", + "UnlockRequirementJp": "『CHUNITHM』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5340, + "IdString": "s5341", + "NameJp": "I love \"Apocalypse Lotus\"", + "NameEng": "I love \"Apocalypse Lotus\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5341, + "IdString": "s5342", + "NameJp": "Apocalypse Lotus Master", + "NameEng": "Apocalypse Lotus Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5342, + "IdString": "s5343", + "NameJp": "Apocalypse Lotus King", + "NameEng": "Apocalypse Lotus King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5343, + "IdString": "s5344", + "NameJp": "Apocalypse Lotus God", + "NameEng": "Apocalypse Lotus God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5344, + "IdString": "s5345", + "NameJp": "I love \"Third Time UNLucky\"", + "NameEng": "I love \"Third Time UNLucky\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5345, + "IdString": "s5346", + "NameJp": "UNLucky Master", + "NameEng": "UNLucky Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5346, + "IdString": "s5347", + "NameJp": "UNLucky King", + "NameEng": "UNLucky King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5347, + "IdString": "s5348", + "NameJp": "UNLucky God", + "NameEng": "UNLucky God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5348, + "IdString": "s5349", + "NameJp": "I love \"セイレーンの邀撃\"", + "NameEng": "I love \"セイレーンの邀撃\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5349, + "IdString": "s5350", + "NameJp": "Master of SIREN", + "NameEng": "Master of SIREN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5350, + "IdString": "s5351", + "NameJp": "King of SIREN", + "NameEng": "King of SIREN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5351, + "IdString": "s5352", + "NameJp": "God of SIREN", + "NameEng": "God of SIREN", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5352, + "IdString": "s5353", + "NameJp": "I love \"KING\"", + "NameEng": "I love \"KING\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 5353, + "IdString": "s5354", + "NameJp": "You are master", + "NameEng": "You are master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5354, + "IdString": "s5355", + "NameJp": "You are king", + "NameEng": "You are king", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5355, + "IdString": "s5356", + "NameJp": "You are god", + "NameEng": "You are god", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 5356, + "IdString": "s5357", + "NameJp": "I love \"ジャンキーナイトタウンオーケストラ\"", + "NameEng": "I love \"ジャンキーナイトタウンオーケストラ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 21 + }, + { + "Id": 5357, + "IdString": "s5358", + "NameJp": "ジャンキーナイトタウンマスター", + "NameEng": "ジャンキーナイトタウンマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5358, + "IdString": "s5359", + "NameJp": "ジャンキーナイトタウンキング", + "NameEng": "ジャンキーナイトタウンキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 21 + }, + { + "Id": 5359, + "IdString": "s5360", + "NameJp": "ジャンキーナイトタウンゴッド", + "NameEng": "ジャンキーナイトタウンゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 21 + }, + { + "Id": 5360, + "IdString": "s5361", + "NameJp": "I love \"1llusion 0f the FAIRYtALE hARMONY\"", + "NameEng": "I love \"1llusion 0f the FAIRYtALE hARMONY\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5361, + "IdString": "s5362", + "NameJp": "1llusion Master", + "NameEng": "1llusion Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5362, + "IdString": "s5363", + "NameJp": "1llusion King", + "NameEng": "1llusion King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5363, + "IdString": "s5364", + "NameJp": "1llusion God", + "NameEng": "1llusion God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5364, + "IdString": "s5365", + "NameJp": "I love \"Happy 10th anniversary\"", + "NameEng": "I love \"Happy 10th anniversary\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5365, + "IdString": "s5366", + "NameJp": "10th anniversary Master", + "NameEng": "10th anniversary Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5366, + "IdString": "s5367", + "NameJp": "10th anniversary King", + "NameEng": "10th anniversary King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5367, + "IdString": "s5368", + "NameJp": "10th anniversary God", + "NameEng": "10th anniversary God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5368, + "IdString": "s5369", + "NameJp": "I love \"聖者の祈願\"", + "NameEng": "I love \"聖者の祈願\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5369, + "IdString": "s5370", + "NameJp": "祈願先生", + "NameEng": "祈願先生", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5370, + "IdString": "s5371", + "NameJp": "祈願大王", + "NameEng": "祈願大王", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5371, + "IdString": "s5372", + "NameJp": "祈願神", + "NameEng": "祈願神", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5372, + "IdString": "s5373", + "NameJp": "I love \"Invader OnDo\"", + "NameEng": "I love \"Invader OnDo\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5373, + "IdString": "s5374", + "NameJp": "OnDo Master", + "NameEng": "OnDo Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5374, + "IdString": "s5375", + "NameJp": "OnDo King", + "NameEng": "OnDo King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5375, + "IdString": "s5376", + "NameJp": "OnDo God", + "NameEng": "OnDo God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5376, + "IdString": "s5377", + "NameJp": "I love \"幻想に咲いた花\"", + "NameEng": "I love \"幻想に咲いた花\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5377, + "IdString": "s5378", + "NameJp": "幻想に咲いた花Master", + "NameEng": "幻想に咲いた花Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5378, + "IdString": "s5379", + "NameJp": "幻想に咲いた花Queen", + "NameEng": "幻想に咲いた花Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5379, + "IdString": "s5380", + "NameJp": "幻想に咲いた花Goddess", + "NameEng": "幻想に咲いた花Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5380, + "IdString": "s5381", + "NameJp": "I love \"マツヨイナイトバグ\"", + "NameEng": "I love \"マツヨイナイトバグ\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 22 + }, + { + "Id": 5381, + "IdString": "s5382", + "NameJp": "マツヨイナイトバグMaster", + "NameEng": "マツヨイナイトバグMaster", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5382, + "IdString": "s5383", + "NameJp": "マツヨイナイトバグQueen", + "NameEng": "マツヨイナイトバグQueen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 22 + }, + { + "Id": 5383, + "IdString": "s5384", + "NameJp": "マツヨイナイトバグGoddess", + "NameEng": "マツヨイナイトバグGoddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 22 + }, + { + "Id": 5384, + "IdString": "s5385", + "NameJp": "I love \"Mr.VIRTUALIZER\"", + "NameEng": "I love \"Mr.VIRTUALIZER\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5385, + "IdString": "s5386", + "NameJp": "タラッタッタタッツタッター", + "NameEng": "タラッタッタタッツタッター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5386, + "IdString": "s5387", + "NameJp": "Right away, Right away", + "NameEng": "Right away, Right away", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5387, + "IdString": "s5388", + "NameJp": "「お願いMr.」", + "NameEng": "「お願いMr.」", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5388, + "IdString": "s5389", + "NameJp": "I love \"だから僕は音楽を辞めた\"", + "NameEng": "I love \"だから僕は音楽を辞めた\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5389, + "IdString": "s5390", + "NameJp": "考えたってわからないし", + "NameEng": "考えたってわからないし", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5390, + "IdString": "s5391", + "NameJp": "間違ってるんだよ", + "NameEng": "間違ってるんだよ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5391, + "IdString": "s5392", + "NameJp": "だから僕は音楽を辞めた", + "NameEng": "だから僕は音楽を辞めた", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5392, + "IdString": "s5393", + "NameJp": "ToM 2021SUMMER チャンピオン", + "NameEng": "ToM 2021SUMMER チャンピオン", + "UnlockRequirementJp": "トーナメント オブ ザ マスターズ\n2021 SUMMER優勝", + "UnlockRequirementEng": "Tournament of the Masters\n2021 SUMMER Winner", + "Type": 12 + }, + { + "Id": 5393, + "IdString": "s5394", + "NameJp": "テンションあげてFever", + "NameEng": "テンションあげてFever", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5394, + "IdString": "s5395", + "NameJp": "リズムのレール", + "NameEng": "リズムのレール", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5395, + "IdString": "s5396", + "NameJp": "夢は無限に広がる", + "NameEng": "夢は無限に広がる", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5396, + "IdString": "s5397", + "NameJp": "ビートの宇宙", + "NameEng": "ビートの宇宙", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5397, + "IdString": "s5398", + "NameJp": "もう一回転!", + "NameEng": "もう一回転!", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5398, + "IdString": "s5399", + "NameJp": "一緒に歌いたい", + "NameEng": "一緒に歌いたい", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5399, + "IdString": "s5400", + "NameJp": "クレープ食べながら", + "NameEng": "ときめきこそ正義なのだ", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5400, + "IdString": "s5401", + "NameJp": "みとれたらがぶっとするぜ", + "NameEng": "鏡に映る自分を\u3000突き破ろう", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5401, + "IdString": "s5402", + "NameJp": "HARMONY奏でよう", + "NameEng": "HARMONY奏でよう", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5402, + "IdString": "s5403", + "NameJp": "CHAIN CHAIN CHAIN FEVER!!!", + "NameEng": "CHAIN CHAIN CHAIN FEVER!!!", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5403, + "IdString": "s5404", + "NameJp": "1llusion", + "NameEng": "1llusion", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5404, + "IdString": "s5405", + "NameJp": "Come 0n! Groove Coaster", + "NameEng": "Come 0n! Groove Coaster", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5405, + "IdString": "s5406", + "NameJp": "Monday Sunday 一週間", + "NameEng": "Monday Sunday 一週間", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5406, + "IdString": "s5407", + "NameJp": "10年目の記念日", + "NameEng": "10年目の記念日", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5407, + "IdString": "s5408", + "NameJp": "Let's Groove!", + "NameEng": "Let's Groove!", + "UnlockRequirementJp": "『シリーズ10周年記念』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5408, + "IdString": "s5409", + "NameJp": "I love \"LOVE!HUG!GROOVY!!\"", + "NameEng": "I love \"LOVE!HUG!GROOVY!!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5409, + "IdString": "s5410", + "NameJp": "SHAKING!", + "NameEng": "SHAKING!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5410, + "IdString": "s5411", + "NameJp": "BEATING!", + "NameEng": "BEATING!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5411, + "IdString": "s5412", + "NameJp": "BIGBANG!!", + "NameEng": "BIGBANG!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5412, + "IdString": "s5413", + "NameJp": "I love \"CAPTAIN NEO~BOSS SCENE1\"", + "NameEng": "I love \"CAPTAIN NEO~BOSS SCENE1\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 5413, + "IdString": "s5414", + "NameJp": "ZONE A MASTER", + "NameEng": "ZONE A MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 5414, + "IdString": "s5415", + "NameJp": "ZONE A KING", + "NameEng": "ZONE A KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 5415, + "IdString": "s5416", + "NameJp": "ZONE A GOD", + "NameEng": "ZONE A GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 5416, + "IdString": "s5417", + "NameJp": "I love \"ぐるぐるDJ TURN!!\"", + "NameEng": "I love \"ぐるぐるDJ TURN!!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5417, + "IdString": "s5418", + "NameJp": "Let's Dance with D4DJ!", + "NameEng": "Let's Dance with D4DJ!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5418, + "IdString": "s5419", + "NameJp": "ココで踊らにゃSong!Song!", + "NameEng": "ココで踊らにゃSong!Song!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5419, + "IdString": "s5420", + "NameJp": "届け DJ4U", + "NameEng": "届け DJ4U", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5420, + "IdString": "s5421", + "NameJp": "I love \"CHAOS~BOSS SCENE7\"", + "NameEng": "I love \"CHAOS~BOSS SCENE7\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 24 + }, + { + "Id": 5421, + "IdString": "s5422", + "NameJp": "ZONE Z MASTER", + "NameEng": "ZONE Z MASTER", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 5422, + "IdString": "s5423", + "NameJp": "ZONE Z KING", + "NameEng": "ZONE Z KING", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 24 + }, + { + "Id": 5423, + "IdString": "s5424", + "NameJp": "ZONE Z GOD", + "NameEng": "ZONE Z GOD", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 24 + }, + { + "Id": 5424, + "IdString": "s5425", + "NameJp": "I love \"電乱★カウントダウン\"", + "NameEng": "I love \"電乱★カウントダウン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5425, + "IdString": "s5426", + "NameJp": "Super beat", + "NameEng": "Super beat", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5426, + "IdString": "s5427", + "NameJp": "電乱無双", + "NameEng": "電乱無双", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5427, + "IdString": "s5428", + "NameJp": "Peaky P-key", + "NameEng": "Peaky P-key", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5428, + "IdString": "s5429", + "NameJp": "I love \"Photon Melodies\"", + "NameEng": "I love \"Photon Melodies\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5429, + "IdString": "s5430", + "NameJp": "いまだ誰も望み得ぬ未踏", + "NameEng": "いまだ誰も望み得ぬ未踏", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5430, + "IdString": "s5431", + "NameJp": "Fill the earth with melodies", + "NameEng": "Fill the earth with melodies", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5431, + "IdString": "s5432", + "NameJp": "Photon Maiden", + "NameEng": "Photon Maiden", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5432, + "IdString": "s5433", + "NameJp": "I love \"Per Aspera Ad Astra\"", + "NameEng": "I love \"Per Aspera Ad Astra\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5433, + "IdString": "s5434", + "NameJp": "Aspera", + "NameEng": "Aspera", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5434, + "IdString": "s5435", + "NameJp": "Astra", + "NameEng": "Astra", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5435, + "IdString": "s5436", + "NameJp": "困難を通じて天へ", + "NameEng": "困難を通じて天へ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5436, + "IdString": "s5437", + "NameJp": "闘神祭2021チャレンジャー", + "NameEng": "闘神祭2021チャレンジャー", + "UnlockRequirementJp": "闘神祭2021 REVENGE予選参加", + "UnlockRequirementEng": "闘神祭2021 REVENGE予選参加", + "Type": 12 + }, + { + "Id": 5437, + "IdString": "s5438", + "NameJp": "闘神祭2021ファイナリスト", + "NameEng": "闘神祭2021ファイナリスト", + "UnlockRequirementJp": "闘神祭2021 REVENGE決勝進出", + "UnlockRequirementEng": "闘神祭2021 REVENGE決勝進出", + "Type": 12 + }, + { + "Id": 5438, + "IdString": "s5439", + "NameJp": "闘神祭2021チャンピオン", + "NameEng": "闘神祭2021チャンピオン", + "UnlockRequirementJp": "闘神祭2021 REVENGE優勝", + "UnlockRequirementEng": "闘神祭2021 REVENGE優勝", + "Type": 12 + }, + { + "Id": 5439, + "IdString": "s5440", + "NameJp": "I love \"8-EM\"", + "NameEng": "I love \"8-EM\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5440, + "IdString": "s5441", + "NameJp": "ATM Master", + "NameEng": "ATM Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5441, + "IdString": "s5442", + "NameJp": "ATM King", + "NameEng": "ATM King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5442, + "IdString": "s5443", + "NameJp": "ATM God", + "NameEng": "ATM God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5443, + "IdString": "s5444", + "NameJp": "I love \"Oshama Scramble!\"", + "NameEng": "I love \"Oshama Scramble!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5444, + "IdString": "s5445", + "NameJp": "牛乳 Master", + "NameEng": "牛乳 Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5445, + "IdString": "s5446", + "NameJp": "牛乳 King", + "NameEng": "牛乳 King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5446, + "IdString": "s5447", + "NameJp": "牛乳 God", + "NameEng": "牛乳 God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5447, + "IdString": "s5448", + "NameJp": "I love \"RDY\"", + "NameEng": "I love \"RDY\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5448, + "IdString": "s5449", + "NameJp": "孤独な夜を超えて", + "NameEng": "孤独な夜を超えて", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5449, + "IdString": "s5450", + "NameJp": "鋭いその眼差しで", + "NameEng": "鋭いその眼差しで", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5450, + "IdString": "s5451", + "NameJp": "Go fight!", + "NameEng": "Go fight!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5451, + "IdString": "s5452", + "NameJp": "I love \"アゲナゲン\"", + "NameEng": "I love \"アゲナゲン\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5452, + "IdString": "s5453", + "NameJp": "What! again&again", + "NameEng": "What! again&again", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5453, + "IdString": "s5454", + "NameJp": "Ha! カマセ", + "NameEng": "Ha! カマセ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5454, + "IdString": "s5455", + "NameJp": "俺らNO.1プレイヤー", + "NameEng": "俺らNO.1プレイヤー", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5455, + "IdString": "s5456", + "NameJp": "I love \"DX超野生!サバイバルずんど子ちゃん\"", + "NameEng": "I love \"DX超野生!サバイバルずんど子ちゃん\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5456, + "IdString": "s5457", + "NameJp": "ちゃかぽこ\u3000ちゃかぽこ", + "NameEng": "ちゃかぽこ\u3000ちゃかぽこ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5457, + "IdString": "s5458", + "NameJp": "ちゃかちゃ ちゃかちゃ", + "NameEng": "ちゃかちゃ ちゃかちゃ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5458, + "IdString": "s5459", + "NameJp": "ズンドコ\u3000ちゃかぽこ", + "NameEng": "ズンドコ\u3000ちゃかぽこ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5459, + "IdString": "s5460", + "NameJp": "I love \"希\"", + "NameEng": "I love \"希\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5460, + "IdString": "s5461", + "NameJp": "馳せる想い君へ", + "NameEng": "馳せる想い君へ", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5461, + "IdString": "s5462", + "NameJp": "叶わぬ恋心", + "NameEng": "叶わぬ恋心", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5462, + "IdString": "s5463", + "NameJp": "散りゆく桜のよう", + "NameEng": "散りゆく桜のよう", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5463, + "IdString": "s5464", + "NameJp": "I love \"Valkyrja Requiem\"", + "NameEng": "I love \"Valkyrja Requiem\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5464, + "IdString": "s5465", + "NameJp": "Valkyrja Master", + "NameEng": "Valkyrja Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5465, + "IdString": "s5466", + "NameJp": "Valkyrja Queen", + "NameEng": "Valkyrja Queen", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5466, + "IdString": "s5467", + "NameJp": "Valkyrja Goddess", + "NameEng": "Valkyrja Goddess", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5467, + "IdString": "s5468", + "NameJp": "I love \"コスモスタート\"", + "NameEng": "I love \"コスモスタート\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 26 + }, + { + "Id": 5468, + "IdString": "s5469", + "NameJp": "コスモスタートマスター", + "NameEng": "コスモスタートマスター", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5469, + "IdString": "s5470", + "NameJp": "コスモスタートキング", + "NameEng": "コスモスタートキング", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 26 + }, + { + "Id": 5470, + "IdString": "s5471", + "NameJp": "コスモスタートゴッド", + "NameEng": "コスモスタートゴッド", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 26 + }, + { + "Id": 5471, + "IdString": "s5472", + "NameJp": "I love \"GOODTEK\"", + "NameEng": "I love \"GOODTEK\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 5472, + "IdString": "s5473", + "NameJp": "TURN THE BASS", + "NameEng": "TURN THE BASS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5473, + "IdString": "s5474", + "NameJp": "PUMP THAT BASS", + "NameEng": "PUMP THAT BASS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5474, + "IdString": "s5475", + "NameJp": "Y\"Y\"Y\"Y\"Y\"Y\"Y\"Y", + "NameEng": "Y\"Y\"Y\"Y\"Y\"Y\"Y\"Y", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 5475, + "IdString": "s5476", + "NameJp": "I love \"RAV#GIRL\"", + "NameEng": "I love \"RAV#GIRL\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 25 + }, + { + "Id": 5476, + "IdString": "s5477", + "NameJp": "RAV# MAST3R", + "NameEng": "RAV# MAST3R", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5477, + "IdString": "s5478", + "NameJp": "RAV# QU33N", + "NameEng": "RAV# QU33N", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 25 + }, + { + "Id": 5478, + "IdString": "s5479", + "NameJp": "RAV# GODD3SS", + "NameEng": "RAV# GODD3SS", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 25 + }, + { + "Id": 5479, + "IdString": "s5480", + "NameJp": "I love \"オペレーション・ネバーランド\"", + "NameEng": "I love \"オペレーション・ネバーランド\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5480, + "IdString": "s5481", + "NameJp": "究極の安全地帯", + "NameEng": "究極の安全地帯", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5481, + "IdString": "s5482", + "NameJp": "6畳一間の約束の地", + "NameEng": "6畳一間の約束の地", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5482, + "IdString": "s5483", + "NameJp": "GG~~!!!!!!", + "NameEng": "GG~~!!!!!!", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5483, + "IdString": "s5484", + "NameJp": "I love \"We are VOX MONSTERS\"", + "NameEng": "I love \"We are VOX MONSTERS\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5484, + "IdString": "s5485", + "NameJp": "時には半狂乱でオーバーラン", + "NameEng": "時には半狂乱でオーバーラン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5485, + "IdString": "s5486", + "NameJp": "魅せつけるぜウィニングラン", + "NameEng": "魅せつけるぜウィニングラン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5486, + "IdString": "s5487", + "NameJp": "口からぶっ放すぜマシンガン", + "NameEng": "口からぶっ放すぜマシンガン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5487, + "IdString": "s5488", + "NameJp": "I love \"No Limit RED Force\"", + "NameEng": "I love \"No Limit RED Force\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5488, + "IdString": "s5489", + "NameJp": "今 キミが起こす イリュージョン", + "NameEng": "今 キミが起こす イリュージョン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5489, + "IdString": "s5490", + "NameJp": "キミよ 超えろホライゾン", + "NameEng": "キミよ 超えろホライゾン", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5490, + "IdString": "s5491", + "NameJp": "ほらもう止まらない", + "NameEng": "ほらもう止まらない", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5491, + "IdString": "s5492", + "NameJp": "I love \"MEGATON BLAST\"", + "NameEng": "I love \"MEGATON BLAST\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5492, + "IdString": "s5493", + "NameJp": "MEGATON BLAST Master", + "NameEng": "MEGATON BLAST Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5493, + "IdString": "s5494", + "NameJp": "MEGATON BLAST King", + "NameEng": "MEGATON BLAST King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5494, + "IdString": "s5495", + "NameJp": "MEGATON BLAST God", + "NameEng": "MEGATON BLAST God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5495, + "IdString": "s5496", + "NameJp": "I love \"Y.Y.Y.計画!!!!\"", + "NameEng": "I love \"Y.Y.Y.計画!!!!\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5496, + "IdString": "s5497", + "NameJp": "日本の首都は?\"Y.Y.Y.!!!!\"", + "NameEng": "日本の首都は?\"Y.Y.Y.!!!!\"", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5497, + "IdString": "s5498", + "NameJp": "一富士二鷹?\"Y.Y.Y.!!!!\"", + "NameEng": "一富士二鷹?\"Y.Y.Y.!!!!\"", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5498, + "IdString": "s5499", + "NameJp": "世界のすべては\"Y.Y.Y.!!!!\"", + "NameEng": "世界のすべては\"Y.Y.Y.!!!!\"", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5499, + "IdString": "s5500", + "NameJp": "I love \"FLUFFY FLASH\"", + "NameEng": "I love \"FLUFFY FLASH\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5500, + "IdString": "s5501", + "NameJp": "FLUFFY FLASH Master", + "NameEng": "FLUFFY FLASH Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5501, + "IdString": "s5502", + "NameJp": "FLUFFY FLASH King", + "NameEng": "FLUFFY FLASH King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5502, + "IdString": "s5503", + "NameJp": "FLUFFY FLASH God", + "NameEng": "FLUFFY FLASH God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5503, + "IdString": "s5504", + "NameJp": "I love \"Don't Fight The Music\"", + "NameEng": "I love \"Don't Fight The Music\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 23 + }, + { + "Id": 5504, + "IdString": "s5505", + "NameJp": "Don't Fight The Music Master", + "NameEng": "Don't Fight The Music Master", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5505, + "IdString": "s5506", + "NameJp": "Don't Fight The Music King", + "NameEng": "Don't Fight The Music King", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 23 + }, + { + "Id": 5506, + "IdString": "s5507", + "NameJp": "Don't Fight The Music God", + "NameEng": "Don't Fight The Music God", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 23 + }, + { + "Id": 5507, + "IdString": "s5508", + "NameJp": "I love \"Second Sight Stella\"", + "NameEng": "I love \"Second Sight Stella\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5508, + "IdString": "s5509", + "NameJp": "空を目指してStars of wish", + "NameEng": "空を目指してStars of wish", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5509, + "IdString": "s5510", + "NameJp": "I can't look back anymore", + "NameEng": "I can't look back anymore", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5510, + "IdString": "s5511", + "NameJp": "駆け巡る夢描いてく", + "NameEng": "駆け巡る夢描いてく", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5511, + "IdString": "s5512", + "NameJp": "I love \"マイアングル\"", + "NameEng": "I love \"マイアングル\"", + "UnlockRequirementJp": "対象曲を100回以上プレイ", + "UnlockRequirementEng": "Play a set song 100 times or more", + "Type": 20 + }, + { + "Id": 5512, + "IdString": "s5513", + "NameJp": "目を見つめられなくても", + "NameEng": "目を見つめられなくても", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS以上の評価", + "UnlockRequirementEng": "Play a set song and get S or higher\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5513, + "IdString": "s5514", + "NameJp": "離れた手が怖くても", + "NameEng": "離れた手が怖くても", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\nS++の評価", + "UnlockRequirementEng": "Play a set song and get S++\nin SIMPLE, NORMAL and HARD", + "Type": 20 + }, + { + "Id": 5514, + "IdString": "s5515", + "NameJp": "思いが届かなくても", + "NameEng": "思いが届かなくても", + "UnlockRequirementJp": "対象曲のSIMPLE, NORMAL, HARDで\n1,000,000点", + "UnlockRequirementEng": "Play a set song and earn 1,000,000 points", + "Type": 20 + }, + { + "Id": 5515, + "IdString": "s5516", + "NameJp": "プリメラ", + "NameEng": "プリメラ", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5516, + "IdString": "s5517", + "NameJp": "頑張り屋さんのNO.1サポーター", + "NameEng": "頑張り屋さんのNO.1サポーター", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5517, + "IdString": "s5518", + "NameJp": "ブサかわキャラハンターの相棒", + "NameEng": "ブサかわキャラハンターの相棒", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5518, + "IdString": "s5519", + "NameJp": "柚子専属アメちゃん補充部隊", + "NameEng": "柚子専属アメちゃん補充部隊", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5519, + "IdString": "s5520", + "NameJp": "エリート娘の頼れるパートナー", + "NameEng": "エリート娘の頼れるパートナー", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5520, + "IdString": "s5521", + "NameJp": "俺は虹レだぞ!", + "NameEng": "俺は虹レだぞ!", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5521, + "IdString": "s5522", + "NameJp": "ヤバイクライヨノナカヲワイワイサセチャウゾ", + "NameEng": "ヤバイクライヨノナカヲワイワイサセチャウゾ", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5522, + "IdString": "s5523", + "NameJp": "私たちは…負けない!", + "NameEng": "私たちは…負けない!", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5523, + "IdString": "s5524", + "NameJp": "I love ナビニャン", + "NameEng": "I love ナビニャン", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5524, + "IdString": "s5525", + "NameJp": "I love 皇城 セツナ", + "NameEng": "I love 皇城 セツナ", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5525, + "IdString": "s5526", + "NameJp": "I love 藤沢 柚子", + "NameEng": "I love 藤沢 柚子", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5526, + "IdString": "s5527", + "NameJp": "I love 三角 葵", + "NameEng": "I love 三角 葵", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5527, + "IdString": "s5528", + "NameJp": "I love 星咲 あかり", + "NameEng": "I love 星咲 あかり", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5528, + "IdString": "s5529", + "NameJp": "Let's shoot!", + "NameEng": "オンゲキ勢", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + }, + { + "Id": 5529, + "IdString": "s5530", + "NameJp": "オンゲキーズ", + "NameEng": "オンゲキーズ", + "UnlockRequirementJp": "『オンゲキ』イベント報酬", + "UnlockRequirementEng": "Event Award", + "Type": 12 + } +] \ No newline at end of file diff --git a/SharedProject/enums/NavigatorDefaultAvailability.cs b/SharedProject/enums/NavigatorDefaultAvailability.cs new file mode 100644 index 0000000..1ce455b --- /dev/null +++ b/SharedProject/enums/NavigatorDefaultAvailability.cs @@ -0,0 +1,8 @@ +namespace SharedProject.enums; + +public enum NavigatorDefaultAvailability +{ + NotAvailable = 0, + Available = 1, + AvailableWithVoice = 2, +} \ No newline at end of file diff --git a/SharedProject/enums/NavigatorGenre.cs b/SharedProject/enums/NavigatorGenre.cs new file mode 100644 index 0000000..194fb11 --- /dev/null +++ b/SharedProject/enums/NavigatorGenre.cs @@ -0,0 +1,11 @@ +namespace SharedProject.enums; + +public enum NavigatorGenre +{ + Default = 1, + Original = 2, + Game = 3, + Touhou = 4, + Vocaloid = 5, + Collab = 6, +} \ No newline at end of file diff --git a/SharedProject/enums/TitleUnlockType.cs b/SharedProject/enums/TitleUnlockType.cs new file mode 100644 index 0000000..a82d2fa --- /dev/null +++ b/SharedProject/enums/TitleUnlockType.cs @@ -0,0 +1,36 @@ +namespace SharedProject.enums; + +public enum TitleUnlockType +{ + Invalid = 0, + Default = 1, + Clear = 2, + NoMiss = 3, + FullChain = 4, + SRankSimpleStages = 5, + SRankNormalStages = 6, + SRankHardStages = 7, + SRankExtraStages = 8, + SRankAllDifficulties = 9, + SPlusRankAllDifficulties = 10, + SPlusPlusRankAllDifficulties = 11, + Event = 12, + Prefecture = 13, + ChainMilestone = 14, + Adlibs = 15, + ConsecutiveNoMiss = 16, + ClearsUsingItems = 17, + Avatars = 18, + MultiplayerStarsTotal = 19, + SongSet20 = 20, + SongSet21 = 21, + SongSet22 = 22, + SongSet23 = 23, + SongSet24 = 24, + SongSet25 = 25, + SongSet26 = 26, + ProfileLevel = 27, + Perfect = 28, + OnlineMatching = 29, + Trophies = 30, +} \ No newline at end of file diff --git a/SharedProject/models/Avatar.cs b/SharedProject/models/Avatar.cs new file mode 100644 index 0000000..1cc9a52 --- /dev/null +++ b/SharedProject/models/Avatar.cs @@ -0,0 +1,15 @@ +namespace SharedProject.models; + +public class Avatar +{ + public uint Id { get; set; } + public string? IdString { get; set; } + public string? FullName { get; set; } + public string? Name { get; set; } + public string? Variant { get; set; } + public string? AcquireMethod { get; set; } + + public override string ToString() { + return $"{Id}: {FullName}, {AcquireMethod}"; + } +} \ No newline at end of file diff --git a/SharedProject/models/NameEntry.cs b/SharedProject/models/NameEntry.cs new file mode 100644 index 0000000..0252a50 --- /dev/null +++ b/SharedProject/models/NameEntry.cs @@ -0,0 +1,12 @@ +namespace SharedProject.models; + +public class NameEntry +{ + public string? NameWithVariant { get; set; } + public string? NameWithoutVariant{ get; set; } + public string? Variant{ get; set; } + public string? IllustrationCredit{ get; set; } + public override string ToString() { + return $"{NameWithVariant}"; + } +} \ No newline at end of file diff --git a/SharedProject/models/Navigator.cs b/SharedProject/models/Navigator.cs new file mode 100644 index 0000000..23f2f6d --- /dev/null +++ b/SharedProject/models/Navigator.cs @@ -0,0 +1,25 @@ +using SharedProject.enums; + +namespace SharedProject.models; + +public class Navigator +{ + public uint Id { get; set; } + + public string? IdString { get; set; } + + public string? FileName { get; set; } + + public NameEntry? NameEntry0 { get; set; } + public NameEntry? NameEntry1 { get; set; } + + public NavigatorGenre Genre { get; set; } + + public NavigatorDefaultAvailability DefaultAvailability { get; set; } + + public string? ToolTipJp { get; set; } + public string? ToolTipEn { get; set; } + public override string ToString() { + return $"{Id}: {NameEntry1}, {ToolTipEn}"; + } +} \ No newline at end of file diff --git a/SharedProject/models/Navigators.cs b/SharedProject/models/Navigators.cs new file mode 100644 index 0000000..90f8de3 --- /dev/null +++ b/SharedProject/models/Navigators.cs @@ -0,0 +1,8 @@ +namespace SharedProject.models; + +public class Navigators +{ + public int Count { get; set; } + + public List? NavigatorList { get; set; } +} \ No newline at end of file diff --git a/SharedProject/models/PlayOption.cs b/SharedProject/models/PlayOption.cs index 0795e68..77c1697 100644 --- a/SharedProject/models/PlayOption.cs +++ b/SharedProject/models/PlayOption.cs @@ -13,4 +13,13 @@ public class PlayOption [JsonPropertyName(nameof(FeverTrance))] public PlayOptions.FeverTranceShow FeverTrance { get; set; } + + [JsonPropertyName(nameof(AvatarId))] + public long AvatarId { get; set; } + + [JsonPropertyName(nameof(NavigatorId))] + public long NavigatorId { get; set; } + + [JsonPropertyName(nameof(TitleId))] + public long TitleId { get; set; } } \ No newline at end of file diff --git a/SharedProject/models/SongPlayData.cs b/SharedProject/models/SongPlayData.cs index 67f7ef5..572576b 100644 --- a/SharedProject/models/SongPlayData.cs +++ b/SharedProject/models/SongPlayData.cs @@ -1,5 +1,6 @@ using System.Text.Json.Serialization; using SharedProject.common; +using SharedProject.enums; namespace SharedProject.models; @@ -25,4 +26,15 @@ public class SongPlayData return SongPlaySubDataList.Sum(data => data.PlayCount); } } + + [JsonIgnore] + public DateTime LastPlayTime + { + get + { + var songPlayDetailData = SongPlaySubDataList.Where(data => data.ClearState != ClearState.NotPlayed) + .MinBy(data => data.LastPlayTime); + return songPlayDetailData?.LastPlayTime ?? DateTime.MaxValue; + } + } } \ No newline at end of file diff --git a/SharedProject/models/SongPlayDetailData.cs b/SharedProject/models/SongPlayDetailData.cs index 26ecebc..924388f 100644 --- a/SharedProject/models/SongPlayDetailData.cs +++ b/SharedProject/models/SongPlayDetailData.cs @@ -13,4 +13,6 @@ public class SongPlayDetailData public Difficulty Difficulty { get; set; } public ClearState ClearState { get; set; } + + public DateTime LastPlayTime { get; set; } } \ No newline at end of file diff --git a/SharedProject/models/Title.cs b/SharedProject/models/Title.cs new file mode 100644 index 0000000..72005fd --- /dev/null +++ b/SharedProject/models/Title.cs @@ -0,0 +1,17 @@ +using SharedProject.enums; + +namespace SharedProject.models; + +public class Title +{ + public uint Id { get; set; } + public string? IdString { get; set; } + public string? NameJp { get; set; } + public string? NameEng { get; set; } + public string? UnlockRequirementJp { get; set; } + public string? UnlockRequirementEng { get; set; } + public TitleUnlockType Type { get; set; } + public override string ToString() { + return $"{Id}: {NameEng}, {UnlockRequirementEng}"; + } +} \ No newline at end of file