commit ef92c3fb7f3a176c461d660c4185ecf9196f0b45 Author: zhushenwudi <55681140@163.com> Date: Fri Jan 10 07:50:05 2025 +0800 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0e9e244 --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Kotlin ### +.kotlin + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store +/.idea/ diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..5d57fc8 --- /dev/null +++ b/build.gradle @@ -0,0 +1,23 @@ +plugins { + id 'org.jetbrains.kotlin.jvm' version '2.0.20' + id 'org.jetbrains.kotlin.plugin.serialization' version '2.0.20' +} + +group = 'org.example' +version = '1.0-SNAPSHOT' + +repositories { + mavenCentral() +} + +dependencies { + testImplementation 'org.jetbrains.kotlin:kotlin-test' + implementation('org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.1') +} + +test { + useJUnitPlatform() +} +kotlin { + jvmToolchain(21) +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..7fc6f1f --- /dev/null +++ b/gradle.properties @@ -0,0 +1 @@ +kotlin.code.style=official diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..249e583 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..1458089 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Thu Jan 09 22:08:03 CST 2025 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..1b6c787 --- /dev/null +++ b/gradlew @@ -0,0 +1,234 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..ac1b06f --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..e40085c --- /dev/null +++ b/settings.gradle @@ -0,0 +1,5 @@ +plugins { + id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0' +} +rootProject.name = 'Sif2Card' + diff --git a/src/main/kotlin/Main.kt b/src/main/kotlin/Main.kt new file mode 100644 index 0000000..e486e38 --- /dev/null +++ b/src/main/kotlin/Main.kt @@ -0,0 +1,38 @@ +import kotlinx.serialization.ExperimentalSerializationApi +import kotlinx.serialization.encodeToString +import kotlinx.serialization.json.Json +import kotlinx.serialization.json.decodeFromStream +import model.Card +import model.GameCh +import java.io.File + +@ExperimentalSerializationApi +fun main(args: Array) { + val cardList = readJson>(fileName = "card.json") + cardList.forEach { card -> + card.illustId = "c_${card.illustId}.png" + card.evolveIllustId = "c_${card.evolveIllustId}.png" + } + + val gameList = readJson>(fileName = "gamerch.json") + + cardList.forEach { card -> + gameList.find { gameCh -> gameCh.name.contains(card.name) }?.let { gameCh -> + card.url = gameCh.url + } + } + + val encodeJson = Json { prettyPrint = true } + val prettyJson = encodeJson.encodeToString(cardList) +// println(prettyJson) + + val outputFile = File("src/main/resources/card_fix.json") + outputFile.writeText(prettyJson) +} + +@OptIn(ExperimentalSerializationApi::class) +inline fun readJson(fileName: String): T { + val fis = object {}.javaClass.getResourceAsStream(fileName)!! + val decodeJson = Json { ignoreUnknownKeys = true } + return decodeJson.decodeFromStream(fis) +} \ No newline at end of file diff --git a/src/main/kotlin/model/Card.kt b/src/main/kotlin/model/Card.kt new file mode 100644 index 0000000..803cff8 --- /dev/null +++ b/src/main/kotlin/model/Card.kt @@ -0,0 +1,19 @@ +package model + +import kotlinx.serialization.Serializable + +@Serializable +data class Card ( + val id: Int, // 卡牌id + val masterCharacterId: Int, // 角色id + val name: String, // 卡牌名称 + val type: Int, // 类型 1:甜美 2:清纯 3:帅气 + val rarity: Int, // 稀有性 1:UR 2:SR 3:R + val hp: Int, // 血量 + val smile: Int, // 甜美值 + val cool: Int, // 清纯值 + val pure: Int, // 帅气值 + var illustId: String, // 通常图片文件名 + var evolveIllustId: String, // 觉醒图片文件名 + var url: String? = null, // gamech url +) diff --git a/src/main/kotlin/model/GameCh.kt b/src/main/kotlin/model/GameCh.kt new file mode 100644 index 0000000..b792664 --- /dev/null +++ b/src/main/kotlin/model/GameCh.kt @@ -0,0 +1,9 @@ +package model + +import kotlinx.serialization.Serializable + +@Serializable +data class GameCh( + val name: String, + val url: String, +) diff --git a/src/main/resources/card.json b/src/main/resources/card.json new file mode 100644 index 0000000..aa00ce7 --- /dev/null +++ b/src/main/resources/card.json @@ -0,0 +1,7516 @@ +[ + { + "id": 10010001, + "masterCharacterId": 1001, + "name": "発起人", + "type": 2, + "rarity": 2, + "hp": 2, + "smile": 3767, + "cool": 2968, + "pure": 3265, + "illustId": "01001_0001_00", + "evolveIllustId": "01001_0001_01" + }, + { + "id": 10010002, + "masterCharacterId": 1001, + "name": "猪突猛進!", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3102, + "cool": 2899, + "pure": 3999, + "illustId": "01001_0002_00", + "evolveIllustId": "01001_0002_01" + }, + { + "id": 10010003, + "masterCharacterId": 1001, + "name": "ポジティブ", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3235, + "cool": 3774, + "pure": 2991, + "illustId": "01001_0003_00", + "evolveIllustId": "01001_0003_01" + }, + { + "id": 10010004, + "masterCharacterId": 1001, + "name": "元気が取り柄", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3005, + "cool": 3085, + "pure": 3910, + "illustId": "01001_0004_00", + "evolveIllustId": "01001_0004_01" + }, + { + "id": 10010005, + "masterCharacterId": 1001, + "name": "練習準備!", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3130, + "cool": 3634, + "pure": 3236, + "illustId": "01001_0005_00", + "evolveIllustId": "01001_0005_01" + }, + { + "id": 10010006, + "masterCharacterId": 1001, + "name": "一緒に歌おう", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3600, + "cool": 3113, + "pure": 3287, + "illustId": "01001_0006_00", + "evolveIllustId": "01001_0006_01" + }, + { + "id": 10010007, + "masterCharacterId": 1001, + "name": "おやすみ笑顔", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3224, + "cool": 3035, + "pure": 3741, + "illustId": "01001_0007_00", + "evolveIllustId": "01001_0007_01" + }, + { + "id": 10010008, + "masterCharacterId": 1001, + "name": "おでかけ笑顔", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3720, + "cool": 3337, + "pure": 2943, + "illustId": "01001_0008_00", + "evolveIllustId": "01001_0008_01" + }, + { + "id": 10010009, + "masterCharacterId": 1001, + "name": "スマッシュするよ", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2992, + "cool": 4077, + "pure": 2931, + "illustId": "01001_0009_00", + "evolveIllustId": "01001_0009_01" + }, + { + "id": 10010010, + "masterCharacterId": 1001, + "name": "笑顔全開!", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4599, + "cool": 3417, + "pure": 3484, + "illustId": "01001_0010_00", + "evolveIllustId": "01001_0010_01" + }, + { + "id": 10010011, + "masterCharacterId": 1001, + "name": "炎の心", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3344, + "cool": 3471, + "pure": 4685, + "illustId": "01001_0011_00", + "evolveIllustId": "01001_0011_01" + }, + { + "id": 10010012, + "masterCharacterId": 1001, + "name": "たべちゃうぞ?", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3665, + "cool": 4185, + "pure": 3650, + "illustId": "01001_0012_00", + "evolveIllustId": "01001_0012_01" + }, + { + "id": 10010013, + "masterCharacterId": 1001, + "name": "満開の桜", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4769, + "cool": 3962, + "pure": 4269, + "illustId": "01001_0013_00", + "evolveIllustId": "01001_0013_01" + }, + { + "id": 10010014, + "masterCharacterId": 1001, + "name": "ライスフルーツ!?", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4263, + "cool": 4693, + "pure": 4044, + "illustId": "01001_0014_00", + "evolveIllustId": "01001_0014_01" + }, + { + "id": 10020001, + "masterCharacterId": 1002, + "name": "クォーター", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3867, + "cool": 3108, + "pure": 3025, + "illustId": "01002_0001_00", + "evolveIllustId": "01002_0001_01" + }, + { + "id": 10020002, + "masterCharacterId": 1002, + "name": "頭脳明晰", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3196, + "cool": 2943, + "pure": 3861, + "illustId": "01002_0002_00", + "evolveIllustId": "01002_0002_01" + }, + { + "id": 10020003, + "masterCharacterId": 1002, + "name": "みんなの人気者", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2962, + "cool": 3805, + "pure": 3233, + "illustId": "01002_0003_00", + "evolveIllustId": "01002_0003_01" + }, + { + "id": 10020004, + "masterCharacterId": 1002, + "name": "運動神経抜群", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3166, + "cool": 2807, + "pure": 4027, + "illustId": "01002_0004_00", + "evolveIllustId": "01002_0004_01" + }, + { + "id": 10020005, + "masterCharacterId": 1002, + "name": "責任感", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3063, + "cool": 3608, + "pure": 3329, + "illustId": "01002_0005_00", + "evolveIllustId": "01002_0005_01" + }, + { + "id": 10020006, + "masterCharacterId": 1002, + "name": "生徒会長", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3926, + "cool": 2840, + "pure": 3234, + "illustId": "01002_0006_00", + "evolveIllustId": "01002_0006_01" + }, + { + "id": 10020007, + "masterCharacterId": 1002, + "name": "眠りにつく前", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3083, + "cool": 3008, + "pure": 3909, + "illustId": "01002_0007_00", + "evolveIllustId": "01002_0007_01" + }, + { + "id": 10020008, + "masterCharacterId": 1002, + "name": "おでかけするわ!", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4015, + "cool": 2866, + "pure": 3119, + "illustId": "01002_0008_00", + "evolveIllustId": "01002_0008_01" + }, + { + "id": 10020009, + "masterCharacterId": 1002, + "name": "応援しましょ♪", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3195, + "cool": 4009, + "pure": 2796, + "illustId": "01002_0009_00", + "evolveIllustId": "01002_0009_01" + }, + { + "id": 10020010, + "masterCharacterId": 1002, + "name": "ハラショー♪", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4487, + "cool": 3621, + "pure": 3392, + "illustId": "01002_0010_00", + "evolveIllustId": "01002_0010_01" + }, + { + "id": 10020011, + "masterCharacterId": 1002, + "name": "エリーの懺悔室", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3783, + "cool": 3385, + "pure": 4332, + "illustId": "01002_0011_00", + "evolveIllustId": "01002_0011_01" + }, + { + "id": 10020012, + "masterCharacterId": 1002, + "name": "狐の嫁入り", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3656, + "cool": 4281, + "pure": 3563, + "illustId": "01002_0012_00", + "evolveIllustId": "01002_0012_01" + }, + { + "id": 10020013, + "masterCharacterId": 1002, + "name": "夕暮れの生徒会室", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3954, + "cool": 5270, + "pure": 3776, + "illustId": "01002_0013_00", + "evolveIllustId": "01002_0013_01" + }, + { + "id": 10020014, + "masterCharacterId": 1002, + "name": "亜里沙のイタズラ?", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3958, + "cool": 4091, + "pure": 4951, + "illustId": "01002_0014_00", + "evolveIllustId": "01002_0014_01" + }, + { + "id": 10030001, + "masterCharacterId": 1003, + "name": "おっとり柔らか", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3940, + "cool": 2872, + "pure": 3188, + "illustId": "01003_0001_00", + "evolveIllustId": "01003_0001_01" + }, + { + "id": 10030002, + "masterCharacterId": 1003, + "name": "実はメイドさん", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2938, + "cool": 3073, + "pure": 3989, + "illustId": "01003_0002_00", + "evolveIllustId": "01003_0002_01" + }, + { + "id": 10030003, + "masterCharacterId": 1003, + "name": "ことりと遊ぼう♪", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3202, + "cool": 3717, + "pure": 3081, + "illustId": "01003_0003_00", + "evolveIllustId": "01003_0003_01" + }, + { + "id": 10030004, + "masterCharacterId": 1003, + "name": "準備はできてる!", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3200, + "cool": 3042, + "pure": 3758, + "illustId": "01003_0004_00", + "evolveIllustId": "01003_0004_01" + }, + { + "id": 10030005, + "masterCharacterId": 1003, + "name": "いっくよー!", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3209, + "cool": 3635, + "pure": 3156, + "illustId": "01003_0005_00", + "evolveIllustId": "01003_0005_01" + }, + { + "id": 10030006, + "masterCharacterId": 1003, + "name": "♡のサイン", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3764, + "cool": 2937, + "pure": 3299, + "illustId": "01003_0006_00", + "evolveIllustId": "01003_0006_01" + }, + { + "id": 10030007, + "masterCharacterId": 1003, + "name": "おねむな時間", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2987, + "cool": 2914, + "pure": 4099, + "illustId": "01003_0007_00", + "evolveIllustId": "01003_0007_01" + }, + { + "id": 10030008, + "masterCharacterId": 1003, + "name": "おでかけおめかし", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4028, + "cool": 2893, + "pure": 3079, + "illustId": "01003_0008_00", + "evolveIllustId": "01003_0008_01" + }, + { + "id": 10030009, + "masterCharacterId": 1003, + "name": "コートを駆け抜けて", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3323, + "cool": 3624, + "pure": 3053, + "illustId": "01003_0009_00", + "evolveIllustId": "01003_0009_01" + }, + { + "id": 10030010, + "masterCharacterId": 1003, + "name": "癒しの女神", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4500, + "cool": 3609, + "pure": 3391, + "illustId": "01003_0010_00", + "evolveIllustId": "01003_0010_01" + }, + { + "id": 10030011, + "masterCharacterId": 1003, + "name": "素敵なお菓子", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3668, + "cool": 3662, + "pure": 4170, + "illustId": "01003_0011_00", + "evolveIllustId": "01003_0011_01" + }, + { + "id": 10030012, + "masterCharacterId": 1003, + "name": "ひつじのきもち", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3667, + "cool": 4383, + "pure": 3450, + "illustId": "01003_0012_00", + "evolveIllustId": "01003_0012_01" + }, + { + "id": 10030013, + "masterCharacterId": 1003, + "name": "いらっしゃいませ♪", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3725, + "cool": 3960, + "pure": 5315, + "illustId": "01003_0013_00", + "evolveIllustId": "01003_0013_01" + }, + { + "id": 10030014, + "masterCharacterId": 1003, + "name": "間違えないで〜!", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4030, + "cool": 5285, + "pure": 3685, + "illustId": "01003_0014_00", + "evolveIllustId": "01003_0014_01" + }, + { + "id": 10040001, + "masterCharacterId": 1004, + "name": "大和撫子", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3815, + "cool": 3193, + "pure": 2992, + "illustId": "01004_0001_00", + "evolveIllustId": "01004_0001_01" + }, + { + "id": 10040002, + "masterCharacterId": 1004, + "name": "日舞の家元", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3061, + "cool": 3124, + "pure": 3815, + "illustId": "01004_0002_00", + "evolveIllustId": "01004_0002_01" + }, + { + "id": 10040003, + "masterCharacterId": 1004, + "name": "凛として", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3081, + "cool": 3934, + "pure": 2985, + "illustId": "01004_0003_00", + "evolveIllustId": "01004_0003_01" + }, + { + "id": 10040004, + "masterCharacterId": 1004, + "name": "厳しい練習", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3114, + "cool": 2955, + "pure": 3931, + "illustId": "01004_0004_00", + "evolveIllustId": "01004_0004_01" + }, + { + "id": 10040005, + "masterCharacterId": 1004, + "name": "身体をほぐす", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2861, + "cool": 4081, + "pure": 3058, + "illustId": "01004_0005_00", + "evolveIllustId": "01004_0005_01" + }, + { + "id": 10040006, + "masterCharacterId": 1004, + "name": "撫子の微笑", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3732, + "cool": 3209, + "pure": 3059, + "illustId": "01004_0006_00", + "evolveIllustId": "01004_0006_01" + }, + { + "id": 10040007, + "masterCharacterId": 1004, + "name": "おやすみの挨拶", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3055, + "cool": 3273, + "pure": 3672, + "illustId": "01004_0007_00", + "evolveIllustId": "01004_0007_01" + }, + { + "id": 10040008, + "masterCharacterId": 1004, + "name": "ハイカーのやまびこ", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3796, + "cool": 2919, + "pure": 3285, + "illustId": "01004_0008_00", + "evolveIllustId": "01004_0008_01" + }, + { + "id": 10040009, + "masterCharacterId": 1004, + "name": "白衣でキリッと", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3022, + "cool": 3641, + "pure": 3337, + "illustId": "01004_0009_00", + "evolveIllustId": "01004_0009_01" + }, + { + "id": 10040010, + "masterCharacterId": 1004, + "name": "精神統一", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4452, + "cool": 3673, + "pure": 3375, + "illustId": "01004_0010_00", + "evolveIllustId": "01004_0010_01" + }, + { + "id": 10040011, + "masterCharacterId": 1004, + "name": "ラブバインド", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3471, + "cool": 3618, + "pure": 4411, + "illustId": "01004_0011_00", + "evolveIllustId": "01004_0011_01" + }, + { + "id": 10040012, + "masterCharacterId": 1004, + "name": "幸運の白うさぎ", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3522, + "cool": 4678, + "pure": 3300, + "illustId": "01004_0012_00", + "evolveIllustId": "01004_0012_01" + }, + { + "id": 10040013, + "masterCharacterId": 1004, + "name": "無心へと", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4773, + "cool": 4158, + "pure": 4069, + "illustId": "01004_0013_00", + "evolveIllustId": "01004_0013_01" + }, + { + "id": 10040014, + "masterCharacterId": 1004, + "name": "気持ちは一つ", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4251, + "cool": 4013, + "pure": 4736, + "illustId": "01004_0014_00", + "evolveIllustId": "01004_0014_01" + }, + { + "id": 10050001, + "masterCharacterId": 1005, + "name": "体育会系", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3821, + "cool": 3019, + "pure": 3160, + "illustId": "01005_0001_00", + "evolveIllustId": "01005_0001_01" + }, + { + "id": 10050002, + "masterCharacterId": 1005, + "name": "いつでも明るく", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3180, + "cool": 2892, + "pure": 3928, + "illustId": "01005_0002_00", + "evolveIllustId": "01005_0002_01" + }, + { + "id": 10050003, + "masterCharacterId": 1005, + "name": "元気にジャンプ☆", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3107, + "cool": 4073, + "pure": 2820, + "illustId": "01005_0003_00", + "evolveIllustId": "01005_0003_01" + }, + { + "id": 10050004, + "masterCharacterId": 1005, + "name": "準備万端", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3352, + "cool": 2952, + "pure": 3696, + "illustId": "01005_0004_00", + "evolveIllustId": "01005_0004_01" + }, + { + "id": 10050005, + "masterCharacterId": 1005, + "name": "屋上練習", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3275, + "cool": 3805, + "pure": 2920, + "illustId": "01005_0005_00", + "evolveIllustId": "01005_0005_01" + }, + { + "id": 10050006, + "masterCharacterId": 1005, + "name": "よろしくにゃ♪", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3915, + "cool": 3180, + "pure": 2905, + "illustId": "01005_0006_00", + "evolveIllustId": "01005_0006_01" + }, + { + "id": 10050007, + "masterCharacterId": 1005, + "name": "おやすみ準備", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3001, + "cool": 3191, + "pure": 3808, + "illustId": "01005_0007_00", + "evolveIllustId": "01005_0007_01" + }, + { + "id": 10050008, + "masterCharacterId": 1005, + "name": "レッツハイキング", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3751, + "cool": 3113, + "pure": 3136, + "illustId": "01005_0008_00", + "evolveIllustId": "01005_0008_01" + }, + { + "id": 10050009, + "masterCharacterId": 1005, + "name": "タイムを競う", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3019, + "cool": 3809, + "pure": 3172, + "illustId": "01005_0009_00", + "evolveIllustId": "01005_0009_01" + }, + { + "id": 10050010, + "masterCharacterId": 1005, + "name": "μ'sの元気印", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4192, + "cool": 3481, + "pure": 3827, + "illustId": "01005_0010_00", + "evolveIllustId": "01005_0010_01" + }, + { + "id": 10050011, + "masterCharacterId": 1005, + "name": "凛をご覧下さいにゃ♪", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3564, + "cool": 3272, + "pure": 4664, + "illustId": "01005_0011_00", + "evolveIllustId": "01005_0011_01" + }, + { + "id": 10050012, + "masterCharacterId": 1005, + "name": "きまぐれにゃんこ", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3508, + "cool": 4533, + "pure": 3459, + "illustId": "01005_0012_00", + "evolveIllustId": "01005_0012_01" + }, + { + "id": 10050013, + "masterCharacterId": 1005, + "name": "きらめく屋上", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4136, + "cool": 4958, + "pure": 3906, + "illustId": "01005_0013_00", + "evolveIllustId": "01005_0013_01" + }, + { + "id": 10050014, + "masterCharacterId": 1005, + "name": "初めての手作りチョコ", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5229, + "cool": 3828, + "pure": 3943, + "illustId": "01005_0014_00", + "evolveIllustId": "01005_0014_01" + }, + { + "id": 10060001, + "masterCharacterId": 1006, + "name": "大病院のお嬢様", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3748, + "cool": 3179, + "pure": 3073, + "illustId": "01006_0001_00", + "evolveIllustId": "01006_0001_01" + }, + { + "id": 10060002, + "masterCharacterId": 1006, + "name": "高飛車", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3136, + "cool": 3023, + "pure": 3841, + "illustId": "01006_0002_00", + "evolveIllustId": "01006_0002_01" + }, + { + "id": 10060003, + "masterCharacterId": 1006, + "name": "誇りを持って", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3216, + "cool": 3632, + "pure": 3152, + "illustId": "01006_0003_00", + "evolveIllustId": "01006_0003_01" + }, + { + "id": 10060004, + "masterCharacterId": 1006, + "name": "強気で練習", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3301, + "cool": 2932, + "pure": 3767, + "illustId": "01006_0004_00", + "evolveIllustId": "01006_0004_01" + }, + { + "id": 10060005, + "masterCharacterId": 1006, + "name": "ストレッチから", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2944, + "cool": 3999, + "pure": 3057, + "illustId": "01006_0005_00", + "evolveIllustId": "01006_0005_01" + }, + { + "id": 10060006, + "masterCharacterId": 1006, + "name": "果敢に意見", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4025, + "cool": 2960, + "pure": 3015, + "illustId": "01006_0006_00", + "evolveIllustId": "01006_0006_01" + }, + { + "id": 10060007, + "masterCharacterId": 1006, + "name": "明日の予定は", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2841, + "cool": 3071, + "pure": 4088, + "illustId": "01006_0007_00", + "evolveIllustId": "01006_0007_01" + }, + { + "id": 10060008, + "masterCharacterId": 1006, + "name": "お嬢様のおでかけ", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3775, + "cool": 2938, + "pure": 3287, + "illustId": "01006_0008_00", + "evolveIllustId": "01006_0008_01" + }, + { + "id": 10060009, + "masterCharacterId": 1006, + "name": "スパイラルを決めて", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2955, + "cool": 3878, + "pure": 3167, + "illustId": "01006_0009_00", + "evolveIllustId": "01006_0009_01" + }, + { + "id": 10060010, + "masterCharacterId": 1006, + "name": "放課後の歌姫", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4433, + "cool": 3516, + "pure": 3551, + "illustId": "01006_0010_00", + "evolveIllustId": "01006_0010_01" + }, + { + "id": 10060011, + "masterCharacterId": 1006, + "name": "秘密の診察室", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3697, + "cool": 3487, + "pure": 4316, + "illustId": "01006_0011_00", + "evolveIllustId": "01006_0011_01" + }, + { + "id": 10060012, + "masterCharacterId": 1006, + "name": "次の獲物はアナタ", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3563, + "cool": 4649, + "pure": 3288, + "illustId": "01006_0012_00", + "evolveIllustId": "01006_0012_01" + }, + { + "id": 10060013, + "masterCharacterId": 1006, + "name": "スマホ越しのはにかみ", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4107, + "cool": 4070, + "pure": 4823, + "illustId": "01006_0013_00", + "evolveIllustId": "01006_0013_01" + }, + { + "id": 10060014, + "masterCharacterId": 1006, + "name": "フルーツティー", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3984, + "cool": 4866, + "pure": 4150, + "illustId": "01006_0014_00", + "evolveIllustId": "01006_0014_01" + }, + { + "id": 10070001, + "masterCharacterId": 1007, + "name": "意外と策士", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3880, + "cool": 3020, + "pure": 3100, + "illustId": "01007_0001_00", + "evolveIllustId": "01007_0001_01" + }, + { + "id": 10070002, + "masterCharacterId": 1007, + "name": "巻き込んじゃうぞ", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3075, + "cool": 2825, + "pure": 4100, + "illustId": "01007_0002_00", + "evolveIllustId": "01007_0002_01" + }, + { + "id": 10070003, + "masterCharacterId": 1007, + "name": "のほほんとして", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2862, + "cool": 4066, + "pure": 3072, + "illustId": "01007_0003_00", + "evolveIllustId": "01007_0003_01" + }, + { + "id": 10070004, + "masterCharacterId": 1007, + "name": "まぶしい光", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2920, + "cool": 3043, + "pure": 4037, + "illustId": "01007_0004_00", + "evolveIllustId": "01007_0004_01" + }, + { + "id": 10070005, + "masterCharacterId": 1007, + "name": "今から練習♪", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2982, + "cool": 4060, + "pure": 2958, + "illustId": "01007_0005_00", + "evolveIllustId": "01007_0005_01" + }, + { + "id": 10070006, + "masterCharacterId": 1007, + "name": "占いの力", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3648, + "cool": 3299, + "pure": 3053, + "illustId": "01007_0006_00", + "evolveIllustId": "01007_0006_01" + }, + { + "id": 10070007, + "masterCharacterId": 1007, + "name": "明日もよろしく", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3141, + "cool": 3209, + "pure": 3650, + "illustId": "01007_0007_00", + "evolveIllustId": "01007_0007_01" + }, + { + "id": 10070008, + "masterCharacterId": 1007, + "name": "おでかけ日和", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3736, + "cool": 2955, + "pure": 3309, + "illustId": "01007_0008_00", + "evolveIllustId": "01007_0008_01" + }, + { + "id": 10070009, + "masterCharacterId": 1007, + "name": "アタックしちゃうぞ", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3273, + "cool": 3854, + "pure": 2873, + "illustId": "01007_0009_00", + "evolveIllustId": "01007_0009_01" + }, + { + "id": 10070010, + "masterCharacterId": 1007, + "name": "スピリチュアルパワー", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4564, + "cool": 3417, + "pure": 3519, + "illustId": "01007_0010_00", + "evolveIllustId": "01007_0010_01" + }, + { + "id": 10070011, + "masterCharacterId": 1007, + "name": "運命のカード", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3440, + "cool": 3781, + "pure": 4279, + "illustId": "01007_0011_00", + "evolveIllustId": "01007_0011_01" + }, + { + "id": 10070012, + "masterCharacterId": 1007, + "name": "たぬき寝入り♪", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3583, + "cool": 4310, + "pure": 3607, + "illustId": "01007_0012_00", + "evolveIllustId": "01007_0012_01" + }, + { + "id": 10070013, + "masterCharacterId": 1007, + "name": "降り注ぐ光", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4954, + "cool": 4084, + "pure": 3962, + "illustId": "01007_0013_00", + "evolveIllustId": "01007_0013_01" + }, + { + "id": 10070014, + "masterCharacterId": 1007, + "name": "サプライズ希望☆", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4202, + "cool": 3816, + "pure": 4982, + "illustId": "01007_0014_00", + "evolveIllustId": "01007_0014_01" + }, + { + "id": 10080001, + "masterCharacterId": 1008, + "name": "白米大好き", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3970, + "cool": 3061, + "pure": 2969, + "illustId": "01008_0001_00", + "evolveIllustId": "01008_0001_01" + }, + { + "id": 10080002, + "masterCharacterId": 1008, + "name": "自信はないけど", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2954, + "cool": 3047, + "pure": 3999, + "illustId": "01008_0002_00", + "evolveIllustId": "01008_0002_01" + }, + { + "id": 10080003, + "masterCharacterId": 1008, + "name": "アイドルへの憧れ", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3035, + "cool": 3764, + "pure": 3201, + "illustId": "01008_0003_00", + "evolveIllustId": "01008_0003_01" + }, + { + "id": 10080004, + "masterCharacterId": 1008, + "name": "頑張ります!", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2993, + "cool": 3127, + "pure": 3880, + "illustId": "01008_0004_00", + "evolveIllustId": "01008_0004_01" + }, + { + "id": 10080005, + "masterCharacterId": 1008, + "name": "上達したい", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3083, + "cool": 3831, + "pure": 3086, + "illustId": "01008_0005_00", + "evolveIllustId": "01008_0005_01" + }, + { + "id": 10080006, + "masterCharacterId": 1008, + "name": "人見知り", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4017, + "cool": 3121, + "pure": 2862, + "illustId": "01008_0006_00", + "evolveIllustId": "01008_0006_01" + }, + { + "id": 10080007, + "masterCharacterId": 1008, + "name": "ひとりじゃ寂しい", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3076, + "cool": 3143, + "pure": 3781, + "illustId": "01008_0007_00", + "evolveIllustId": "01008_0007_01" + }, + { + "id": 10080008, + "masterCharacterId": 1008, + "name": "おでかけわくわく", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3843, + "cool": 3219, + "pure": 2938, + "illustId": "01008_0008_00", + "evolveIllustId": "01008_0008_01" + }, + { + "id": 10080009, + "masterCharacterId": 1008, + "name": "まるごとみかん", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3268, + "cool": 3827, + "pure": 2905, + "illustId": "01008_0009_00", + "evolveIllustId": "01008_0009_01" + }, + { + "id": 10080010, + "masterCharacterId": 1008, + "name": "炊き立てご飯です♪", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4460, + "cool": 3632, + "pure": 3408, + "illustId": "01008_0010_00", + "evolveIllustId": "01008_0010_01" + }, + { + "id": 10080011, + "masterCharacterId": 1008, + "name": "ご注文のお品物です♪", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3594, + "cool": 3202, + "pure": 4704, + "illustId": "01008_0011_00", + "evolveIllustId": "01008_0011_01" + }, + { + "id": 10080012, + "masterCharacterId": 1008, + "name": "不思議なシンパシー", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3322, + "cool": 4681, + "pure": 3497, + "illustId": "01008_0012_00", + "evolveIllustId": "01008_0012_01" + }, + { + "id": 10080013, + "masterCharacterId": 1008, + "name": "µ'sへの想い", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4123, + "cool": 4952, + "pure": 3925, + "illustId": "01008_0013_00", + "evolveIllustId": "01008_0013_01" + }, + { + "id": 10080014, + "masterCharacterId": 1008, + "name": "キラキラリップ", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4678, + "cool": 4265, + "pure": 4057, + "illustId": "01008_0014_00", + "evolveIllustId": "01008_0014_01" + }, + { + "id": 10090001, + "masterCharacterId": 1009, + "name": "アイドルオタク", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3706, + "cool": 2950, + "pure": 3344, + "illustId": "01009_0001_00", + "evolveIllustId": "01009_0001_01" + }, + { + "id": 10090002, + "masterCharacterId": 1009, + "name": "日夜励んで", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2902, + "cool": 3257, + "pure": 3841, + "illustId": "01009_0002_00", + "evolveIllustId": "01009_0002_01" + }, + { + "id": 10090003, + "masterCharacterId": 1009, + "name": "かわいい仕草", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3094, + "cool": 3922, + "pure": 2984, + "illustId": "01009_0003_00", + "evolveIllustId": "01009_0003_01" + }, + { + "id": 10090004, + "masterCharacterId": 1009, + "name": "がんばるにこ!", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2856, + "cool": 3135, + "pure": 4009, + "illustId": "01009_0004_00", + "evolveIllustId": "01009_0004_01" + }, + { + "id": 10090005, + "masterCharacterId": 1009, + "name": "努力なら任せなさい", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2854, + "cool": 4045, + "pure": 3101, + "illustId": "01009_0005_00", + "evolveIllustId": "01009_0005_01" + }, + { + "id": 10090006, + "masterCharacterId": 1009, + "name": "みんなのニコニー", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3839, + "cool": 3104, + "pure": 3057, + "illustId": "01009_0006_00", + "evolveIllustId": "01009_0006_01" + }, + { + "id": 10090007, + "masterCharacterId": 1009, + "name": "ぎゅっと抱きしめて", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3049, + "cool": 3349, + "pure": 3602, + "illustId": "01009_0007_00", + "evolveIllustId": "01009_0007_01" + }, + { + "id": 10090008, + "masterCharacterId": 1009, + "name": "お待たせ♪", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3859, + "cool": 2883, + "pure": 3258, + "illustId": "01009_0008_00", + "evolveIllustId": "01009_0008_01" + }, + { + "id": 10090009, + "masterCharacterId": 1009, + "name": "心身の鍛錬をして", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2851, + "cool": 3935, + "pure": 3214, + "illustId": "01009_0009_00", + "evolveIllustId": "01009_0009_01" + }, + { + "id": 10090010, + "masterCharacterId": 1009, + "name": "にっこにっこにー", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4310, + "cool": 3609, + "pure": 3581, + "illustId": "01009_0010_00", + "evolveIllustId": "01009_0010_01" + }, + { + "id": 10090011, + "masterCharacterId": 1009, + "name": "教えてあげる♪", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3499, + "cool": 3564, + "pure": 4437, + "illustId": "01009_0011_00", + "evolveIllustId": "01009_0011_01" + }, + { + "id": 10090012, + "masterCharacterId": 1009, + "name": "にこは人気者", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3744, + "cool": 4346, + "pure": 3410, + "illustId": "01009_0012_00", + "evolveIllustId": "01009_0012_01" + }, + { + "id": 10090013, + "masterCharacterId": 1009, + "name": "ありがた~い講義", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3754, + "cool": 4011, + "pure": 5235, + "illustId": "01009_0013_00", + "evolveIllustId": "01009_0013_01" + }, + { + "id": 10090014, + "masterCharacterId": 1009, + "name": "スイカケーキ?", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3839, + "cool": 5164, + "pure": 3997, + "illustId": "01009_0014_00", + "evolveIllustId": "01009_0014_01" + }, + { + "id": 20010001, + "masterCharacterId": 2001, + "name": "憧れのスクールアイドル", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3256, + "cool": 2951, + "pure": 3793, + "illustId": "02001_0001_00", + "evolveIllustId": "02001_0001_01" + }, + { + "id": 20010002, + "masterCharacterId": 2001, + "name": "夢は叶うよ!", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3982, + "cool": 3042, + "pure": 2976, + "illustId": "02001_0002_00", + "evolveIllustId": "02001_0002_01" + }, + { + "id": 20010003, + "masterCharacterId": 2001, + "name": "やってみなくちゃ", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3124, + "cool": 3873, + "pure": 3003, + "illustId": "02001_0003_00", + "evolveIllustId": "02001_0003_01" + }, + { + "id": 20010004, + "masterCharacterId": 2001, + "name": "負けず嫌い", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3307, + "cool": 3049, + "pure": 3644, + "illustId": "02001_0004_00", + "evolveIllustId": "02001_0004_01" + }, + { + "id": 20010005, + "masterCharacterId": 2001, + "name": "遠出の準備", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3779, + "cool": 2929, + "pure": 3292, + "illustId": "02001_0005_00", + "evolveIllustId": "02001_0005_01" + }, + { + "id": 20010006, + "masterCharacterId": 2001, + "name": "想いを馳せて", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3036, + "cool": 4080, + "pure": 2884, + "illustId": "02001_0006_00", + "evolveIllustId": "02001_0006_01" + }, + { + "id": 20010007, + "masterCharacterId": 2001, + "name": "水泳日和!", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3289, + "cool": 3088, + "pure": 3623, + "illustId": "02001_0007_00", + "evolveIllustId": "02001_0007_01" + }, + { + "id": 20010008, + "masterCharacterId": 2001, + "name": "みかんパワー!", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4224, + "cool": 3467, + "pure": 3809, + "illustId": "02001_0008_00", + "evolveIllustId": "02001_0008_01" + }, + { + "id": 20010009, + "masterCharacterId": 2001, + "name": "ブラッシングタイム!", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3483, + "cool": 3608, + "pure": 4409, + "illustId": "02001_0009_00", + "evolveIllustId": "02001_0009_01" + }, + { + "id": 20010010, + "masterCharacterId": 2001, + "name": "コアラの眠り", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3513, + "cool": 4440, + "pure": 3547, + "illustId": "02001_0010_00", + "evolveIllustId": "02001_0010_01" + }, + { + "id": 20010011, + "masterCharacterId": 2001, + "name": "練習帰りの談笑", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5181, + "cool": 3778, + "pure": 4041, + "illustId": "02001_0011_00", + "evolveIllustId": "02001_0011_01" + }, + { + "id": 20010012, + "masterCharacterId": 2001, + "name": "オレンジマーメイド", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4022, + "cool": 3870, + "pure": 5108, + "illustId": "02001_0012_00", + "evolveIllustId": "02001_0012_01" + }, + { + "id": 20020001, + "masterCharacterId": 2002, + "name": "みんなの力に", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2980, + "cool": 3063, + "pure": 3957, + "illustId": "02002_0001_00", + "evolveIllustId": "02002_0001_01" + }, + { + "id": 20020002, + "masterCharacterId": 2002, + "name": "都会から来た転入生", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3834, + "cool": 3255, + "pure": 2911, + "illustId": "02002_0002_00", + "evolveIllustId": "02002_0002_01" + }, + { + "id": 20020003, + "masterCharacterId": 2002, + "name": "一緒に楽しもう♪", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3170, + "cool": 3677, + "pure": 3153, + "illustId": "02002_0003_00", + "evolveIllustId": "02002_0003_01" + }, + { + "id": 20020004, + "masterCharacterId": 2002, + "name": "いい汗かいたね", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3065, + "cool": 2971, + "pure": 3964, + "illustId": "02002_0004_00", + "evolveIllustId": "02002_0004_01" + }, + { + "id": 20020005, + "masterCharacterId": 2002, + "name": "色んな場所に", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4009, + "cool": 2816, + "pure": 3175, + "illustId": "02002_0005_00", + "evolveIllustId": "02002_0005_01" + }, + { + "id": 20020006, + "masterCharacterId": 2002, + "name": "たくさん遊ぼう", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2946, + "cool": 3747, + "pure": 3307, + "illustId": "02002_0006_00", + "evolveIllustId": "02002_0006_01" + }, + { + "id": 20020007, + "masterCharacterId": 2002, + "name": "好きになった内浦", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3146, + "cool": 4089, + "pure": 2765, + "illustId": "02002_0007_00", + "evolveIllustId": "02002_0007_01" + }, + { + "id": 20020008, + "masterCharacterId": 2002, + "name": "新しい自分へ", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4430, + "cool": 3717, + "pure": 3353, + "illustId": "02002_0008_00", + "evolveIllustId": "02002_0008_01" + }, + { + "id": 20020009, + "masterCharacterId": 2002, + "name": "お注射の時間", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3474, + "cool": 3604, + "pure": 4422, + "illustId": "02002_0009_00", + "evolveIllustId": "02002_0009_01" + }, + { + "id": 20020010, + "masterCharacterId": 2002, + "name": "ショーの相棒", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3427, + "cool": 4602, + "pure": 3471, + "illustId": "02002_0010_00", + "evolveIllustId": "02002_0010_01" + }, + { + "id": 20020011, + "masterCharacterId": 2002, + "name": "トリオの旋律", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4060, + "cool": 5028, + "pure": 3912, + "illustId": "02002_0011_00", + "evolveIllustId": "02002_0011_01" + }, + { + "id": 20020012, + "masterCharacterId": 2002, + "name": "りんごの誘惑", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4930, + "cool": 4155, + "pure": 3915, + "illustId": "02002_0012_00", + "evolveIllustId": "02002_0012_01" + }, + { + "id": 20030001, + "masterCharacterId": 2003, + "name": "大人な性格", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3108, + "cool": 3202, + "pure": 3690, + "illustId": "02003_0001_00", + "evolveIllustId": "02003_0001_01" + }, + { + "id": 20030002, + "masterCharacterId": 2003, + "name": "ショップの手伝い", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3996, + "cool": 2901, + "pure": 3103, + "illustId": "02003_0002_00", + "evolveIllustId": "02003_0002_01" + }, + { + "id": 20030003, + "masterCharacterId": 2003, + "name": "出かけようか", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2827, + "cool": 3954, + "pure": 3219, + "illustId": "02003_0003_00", + "evolveIllustId": "02003_0003_01" + }, + { + "id": 20030004, + "masterCharacterId": 2003, + "name": "髪を結んで", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3090, + "cool": 3040, + "pure": 3870, + "illustId": "02003_0004_00", + "evolveIllustId": "02003_0004_01" + }, + { + "id": 20030005, + "masterCharacterId": 2003, + "name": "遠路はるばる", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3642, + "cool": 3137, + "pure": 3221, + "illustId": "02003_0005_00", + "evolveIllustId": "02003_0005_01" + }, + { + "id": 20030006, + "masterCharacterId": 2003, + "name": "機能性抜群", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3124, + "cool": 3856, + "pure": 3020, + "illustId": "02003_0006_00", + "evolveIllustId": "02003_0006_01" + }, + { + "id": 20030007, + "masterCharacterId": 2003, + "name": "サーフィンもお手の物", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3624, + "cool": 3057, + "pure": 3319, + "illustId": "02003_0007_00", + "evolveIllustId": "02003_0007_01" + }, + { + "id": 20030008, + "masterCharacterId": 2003, + "name": "衣装合わせ", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4646, + "cool": 3317, + "pure": 3537, + "illustId": "02003_0008_00", + "evolveIllustId": "02003_0008_01" + }, + { + "id": 20030009, + "masterCharacterId": 2003, + "name": "何度でも頑張ろう♪", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3333, + "cool": 3679, + "pure": 4488, + "illustId": "02003_0009_00", + "evolveIllustId": "02003_0009_01" + }, + { + "id": 20030010, + "masterCharacterId": 2003, + "name": "自然に惹かれて", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3750, + "cool": 4318, + "pure": 3432, + "illustId": "02003_0010_00", + "evolveIllustId": "02003_0010_01" + }, + { + "id": 20030011, + "masterCharacterId": 2003, + "name": "頬を撫でる潮風", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4081, + "cool": 3838, + "pure": 5081, + "illustId": "02003_0011_00", + "evolveIllustId": "02003_0011_01" + }, + { + "id": 20030012, + "masterCharacterId": 2003, + "name": "ring finger", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4229, + "cool": 4809, + "pure": 3962, + "illustId": "02003_0012_00", + "evolveIllustId": "02003_0012_01" + }, + { + "id": 20040001, + "masterCharacterId": 2004, + "name": "名家の子女", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3230, + "cool": 3139, + "pure": 3631, + "illustId": "02004_0001_00", + "evolveIllustId": "02004_0001_01" + }, + { + "id": 20040002, + "masterCharacterId": 2004, + "name": "完璧主義者", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3775, + "cool": 3236, + "pure": 2989, + "illustId": "02004_0002_00", + "evolveIllustId": "02004_0002_01" + }, + { + "id": 20040003, + "masterCharacterId": 2004, + "name": "曲がったことは許さない", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3212, + "cool": 3931, + "pure": 2857, + "illustId": "02004_0003_00", + "evolveIllustId": "02004_0003_01" + }, + { + "id": 20040004, + "masterCharacterId": 2004, + "name": "優勝目指して", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3070, + "cool": 3207, + "pure": 3723, + "illustId": "02004_0004_00", + "evolveIllustId": "02004_0004_01" + }, + { + "id": 20040005, + "masterCharacterId": 2004, + "name": "どこまで遠出を?", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4089, + "cool": 2919, + "pure": 2992, + "illustId": "02004_0005_00", + "evolveIllustId": "02004_0005_01" + }, + { + "id": 20040006, + "masterCharacterId": 2004, + "name": "水門で待ち合わせ", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3177, + "cool": 3994, + "pure": 2829, + "illustId": "02004_0006_00", + "evolveIllustId": "02004_0006_01" + }, + { + "id": 20040007, + "masterCharacterId": 2004, + "name": "内浦に射す光", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3708, + "cool": 3316, + "pure": 2976, + "illustId": "02004_0007_00", + "evolveIllustId": "02004_0007_01" + }, + { + "id": 20040008, + "masterCharacterId": 2004, + "name": "断固2cm!", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4692, + "cool": 3555, + "pure": 3253, + "illustId": "02004_0008_00", + "evolveIllustId": "02004_0008_01" + }, + { + "id": 20040009, + "masterCharacterId": 2004, + "name": "Aqoursと申しますわ!", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3476, + "cool": 3754, + "pure": 4270, + "illustId": "02004_0009_00", + "evolveIllustId": "02004_0009_01" + }, + { + "id": 20040010, + "masterCharacterId": 2004, + "name": "歴史のねじれ", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3758, + "cool": 4281, + "pure": 3461, + "illustId": "02004_0010_00", + "evolveIllustId": "02004_0010_01" + }, + { + "id": 20040011, + "masterCharacterId": 2004, + "name": "姉の日課", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5180, + "cool": 4072, + "pure": 3748, + "illustId": "02004_0011_00", + "evolveIllustId": "02004_0011_01" + }, + { + "id": 20040012, + "masterCharacterId": 2004, + "name": "狼にご用心", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3749, + "cool": 3943, + "pure": 5308, + "illustId": "02004_0012_00", + "evolveIllustId": "02004_0012_01" + }, + { + "id": 20050001, + "masterCharacterId": 2005, + "name": "ヨーソロー!", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3201, + "cool": 2911, + "pure": 3888, + "illustId": "02005_0001_00", + "evolveIllustId": "02005_0001_01" + }, + { + "id": 20050002, + "masterCharacterId": 2005, + "name": "船長志望", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4099, + "cool": 3086, + "pure": 2815, + "illustId": "02005_0002_00", + "evolveIllustId": "02005_0002_01" + }, + { + "id": 20050003, + "masterCharacterId": 2005, + "name": "千歌ちゃんのみかん", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3076, + "cool": 3659, + "pure": 3265, + "illustId": "02005_0003_00", + "evolveIllustId": "02005_0003_01" + }, + { + "id": 20050004, + "masterCharacterId": 2005, + "name": "船出の時間", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2948, + "cool": 3101, + "pure": 3951, + "illustId": "02005_0004_00", + "evolveIllustId": "02005_0004_01" + }, + { + "id": 20050005, + "masterCharacterId": 2005, + "name": "電車で出発!", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4095, + "cool": 2776, + "pure": 3129, + "illustId": "02005_0005_00", + "evolveIllustId": "02005_0005_01" + }, + { + "id": 20050006, + "masterCharacterId": 2005, + "name": "お邪魔しまっす♪", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2952, + "cool": 3700, + "pure": 3348, + "illustId": "02005_0006_00", + "evolveIllustId": "02005_0006_01" + }, + { + "id": 20050007, + "masterCharacterId": 2005, + "name": "海水浴場へ", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3147, + "cool": 3027, + "pure": 3826, + "illustId": "02005_0007_00", + "evolveIllustId": "02005_0007_01" + }, + { + "id": 20050008, + "masterCharacterId": 2005, + "name": "衣装作り", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4166, + "cool": 3829, + "pure": 3505, + "illustId": "02005_0008_00", + "evolveIllustId": "02005_0008_01" + }, + { + "id": 20050009, + "masterCharacterId": 2005, + "name": "近くで寄り添って", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3723, + "cool": 3484, + "pure": 4293, + "illustId": "02005_0009_00", + "evolveIllustId": "02005_0009_01" + }, + { + "id": 20050010, + "masterCharacterId": 2005, + "name": "犯人は、お前だ!", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3522, + "cool": 4718, + "pure": 3260, + "illustId": "02005_0010_00", + "evolveIllustId": "02005_0010_01" + }, + { + "id": 20050011, + "masterCharacterId": 2005, + "name": "耀う水面", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3886, + "cool": 4888, + "pure": 4226, + "illustId": "02005_0011_00", + "evolveIllustId": "02005_0011_01" + }, + { + "id": 20050012, + "masterCharacterId": 2005, + "name": "花嫁カウントダウン", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4705, + "cool": 3974, + "pure": 4321, + "illustId": "02005_0012_00", + "evolveIllustId": "02005_0012_01" + }, + { + "id": 20060001, + "masterCharacterId": 2006, + "name": "ヨハネ見参!", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3166, + "cool": 3207, + "pure": 3627, + "illustId": "02006_0001_00", + "evolveIllustId": "02006_0001_01" + }, + { + "id": 20060002, + "masterCharacterId": 2006, + "name": "堕天使ヨハネ", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3704, + "cool": 3297, + "pure": 2999, + "illustId": "02006_0002_00", + "evolveIllustId": "02006_0002_01" + }, + { + "id": 20060003, + "masterCharacterId": 2006, + "name": "罪深いアクマなの", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2875, + "cool": 4079, + "pure": 3046, + "illustId": "02006_0003_00", + "evolveIllustId": "02006_0003_01" + }, + { + "id": 20060004, + "masterCharacterId": 2006, + "name": "堕☆天", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3174, + "cool": 3187, + "pure": 3639, + "illustId": "02006_0004_00", + "evolveIllustId": "02006_0004_01" + }, + { + "id": 20060005, + "masterCharacterId": 2006, + "name": "仮の姿よ!", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3959, + "cool": 3059, + "pure": 2982, + "illustId": "02006_0005_00", + "evolveIllustId": "02006_0005_01" + }, + { + "id": 20060006, + "masterCharacterId": 2006, + "name": "堕天してみない?", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3192, + "cool": 3712, + "pure": 3096, + "illustId": "02006_0006_00", + "evolveIllustId": "02006_0006_01" + }, + { + "id": 20060007, + "masterCharacterId": 2006, + "name": "浜辺の堕天使", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3257, + "cool": 3670, + "pure": 3073, + "illustId": "02006_0007_00", + "evolveIllustId": "02006_0007_01" + }, + { + "id": 20060008, + "masterCharacterId": 2006, + "name": "罪深き闇のドレス", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4421, + "cool": 3573, + "pure": 3506, + "illustId": "02006_0008_00", + "evolveIllustId": "02006_0008_01" + }, + { + "id": 20060009, + "masterCharacterId": 2006, + "name": "極上堕天使の応援", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3502, + "cool": 3626, + "pure": 4372, + "illustId": "02006_0009_00", + "evolveIllustId": "02006_0009_01" + }, + { + "id": 20060010, + "masterCharacterId": 2006, + "name": "暗黒魔術", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3478, + "cool": 4639, + "pure": 3383, + "illustId": "02006_0010_00", + "evolveIllustId": "02006_0010_01" + }, + { + "id": 20060011, + "masterCharacterId": 2006, + "name": "堕天使じゃんけん", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4071, + "cool": 3931, + "pure": 4998, + "illustId": "02006_0011_00", + "evolveIllustId": "02006_0011_01" + }, + { + "id": 20060012, + "masterCharacterId": 2006, + "name": "煉獄の紅焔への降臨", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3994, + "cool": 5223, + "pure": 3783, + "illustId": "02006_0012_00", + "evolveIllustId": "02006_0012_01" + }, + { + "id": 20070001, + "masterCharacterId": 2007, + "name": "お寺の娘", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3141, + "cool": 3189, + "pure": 3670, + "illustId": "02007_0001_00", + "evolveIllustId": "02007_0001_01" + }, + { + "id": 20070002, + "masterCharacterId": 2007, + "name": "読書大好き", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3836, + "cool": 3051, + "pure": 3113, + "illustId": "02007_0002_00", + "evolveIllustId": "02007_0002_01" + }, + { + "id": 20070003, + "masterCharacterId": 2007, + "name": "休日は図書館へ", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3147, + "cool": 3842, + "pure": 3011, + "illustId": "02007_0003_00", + "evolveIllustId": "02007_0003_01" + }, + { + "id": 20070004, + "masterCharacterId": 2007, + "name": "オラも頑張る", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2863, + "cool": 3100, + "pure": 4037, + "illustId": "02007_0004_00", + "evolveIllustId": "02007_0004_01" + }, + { + "id": 20070005, + "masterCharacterId": 2007, + "name": "文学少女のお出掛け", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3896, + "cool": 3078, + "pure": 3026, + "illustId": "02007_0005_00", + "evolveIllustId": "02007_0005_01" + }, + { + "id": 20070006, + "masterCharacterId": 2007, + "name": "聖歌隊の練習後に", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2949, + "cool": 3925, + "pure": 3126, + "illustId": "02007_0006_00", + "evolveIllustId": "02007_0006_01" + }, + { + "id": 20070007, + "masterCharacterId": 2007, + "name": "内浦の浅瀬で", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3850, + "cool": 2990, + "pure": 3160, + "illustId": "02007_0007_00", + "evolveIllustId": "02007_0007_01" + }, + { + "id": 20070008, + "masterCharacterId": 2007, + "name": "本は財産", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4206, + "cool": 3734, + "pure": 3560, + "illustId": "02007_0008_00", + "evolveIllustId": "02007_0008_01" + }, + { + "id": 20070009, + "masterCharacterId": 2007, + "name": "毎日が大冒険♪", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3598, + "cool": 3749, + "pure": 4153, + "illustId": "02007_0009_00", + "evolveIllustId": "02007_0009_01" + }, + { + "id": 20070010, + "masterCharacterId": 2007, + "name": "ボールを四角く", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3725, + "cool": 4218, + "pure": 3557, + "illustId": "02007_0010_00", + "evolveIllustId": "02007_0010_01" + }, + { + "id": 20070011, + "masterCharacterId": 2007, + "name": "アフターランチ", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4877, + "cool": 4127, + "pure": 3996, + "illustId": "02007_0011_00", + "evolveIllustId": "02007_0011_01" + }, + { + "id": 20070012, + "masterCharacterId": 2007, + "name": "色褪せぬ美しさ", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4009, + "cool": 4181, + "pure": 4810, + "illustId": "02007_0012_00", + "evolveIllustId": "02007_0012_01" + }, + { + "id": 20080001, + "masterCharacterId": 2008, + "name": "チャオ♪", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2891, + "cool": 3097, + "pure": 4012, + "illustId": "02008_0001_00", + "evolveIllustId": "02008_0001_01" + }, + { + "id": 20080002, + "masterCharacterId": 2008, + "name": "理事長", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3665, + "cool": 3137, + "pure": 3198, + "illustId": "02008_0002_00", + "evolveIllustId": "02008_0002_01" + }, + { + "id": 20080003, + "masterCharacterId": 2008, + "name": "シャイニー☆", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3092, + "cool": 3715, + "pure": 3193, + "illustId": "02008_0003_00", + "evolveIllustId": "02008_0003_01" + }, + { + "id": 20080004, + "masterCharacterId": 2008, + "name": "恐れ知らずの挑戦者", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3346, + "cool": 2976, + "pure": 3678, + "illustId": "02008_0004_00", + "evolveIllustId": "02008_0004_01" + }, + { + "id": 20080005, + "masterCharacterId": 2008, + "name": "乗馬のレッスン", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3859, + "cool": 3020, + "pure": 3121, + "illustId": "02008_0005_00", + "evolveIllustId": "02008_0005_01" + }, + { + "id": 20080006, + "masterCharacterId": 2008, + "name": "マリーとおでかけ", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3159, + "cool": 4078, + "pure": 2763, + "illustId": "02008_0006_00", + "evolveIllustId": "02008_0006_01" + }, + { + "id": 20080007, + "masterCharacterId": 2008, + "name": "内浦が一番♪", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3151, + "cool": 3807, + "pure": 3042, + "illustId": "02008_0007_00", + "evolveIllustId": "02008_0007_01" + }, + { + "id": 20080008, + "masterCharacterId": 2008, + "name": "リゾートコーデ", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4547, + "cool": 3338, + "pure": 3615, + "illustId": "02008_0008_00", + "evolveIllustId": "02008_0008_01" + }, + { + "id": 20080009, + "masterCharacterId": 2008, + "name": "愛の調剤", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3244, + "cool": 3643, + "pure": 4613, + "illustId": "02008_0009_00", + "evolveIllustId": "02008_0009_01" + }, + { + "id": 20080010, + "masterCharacterId": 2008, + "name": "熱いパッション", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3362, + "cool": 4594, + "pure": 3544, + "illustId": "02008_0010_00", + "evolveIllustId": "02008_0010_01" + }, + { + "id": 20080011, + "masterCharacterId": 2008, + "name": "風光明媚", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4086, + "cool": 4760, + "pure": 4154, + "illustId": "02008_0011_00", + "evolveIllustId": "02008_0011_01" + }, + { + "id": 20080012, + "masterCharacterId": 2008, + "name": "フルーツカーニバル♪", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4797, + "cool": 3980, + "pure": 4223, + "illustId": "02008_0012_00", + "evolveIllustId": "02008_0012_01" + }, + { + "id": 20090001, + "masterCharacterId": 2009, + "name": "泣き虫さん", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3103, + "cool": 2805, + "pure": 4092, + "illustId": "02009_0001_00", + "evolveIllustId": "02009_0001_01" + }, + { + "id": 20090002, + "masterCharacterId": 2009, + "name": "臆病だって", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3660, + "cool": 3059, + "pure": 3281, + "illustId": "02009_0002_00", + "evolveIllustId": "02009_0002_01" + }, + { + "id": 20090003, + "masterCharacterId": 2009, + "name": "得意の裁縫", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3108, + "cool": 3951, + "pure": 2941, + "illustId": "02009_0003_00", + "evolveIllustId": "02009_0003_01" + }, + { + "id": 20090004, + "masterCharacterId": 2009, + "name": "アイドル目指して", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3156, + "cool": 2832, + "pure": 4012, + "illustId": "02009_0004_00", + "evolveIllustId": "02009_0004_01" + }, + { + "id": 20090005, + "masterCharacterId": 2009, + "name": "行こうよ遠くまで", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3719, + "cool": 3228, + "pure": 3053, + "illustId": "02009_0005_00", + "evolveIllustId": "02009_0005_01" + }, + { + "id": 20090006, + "masterCharacterId": 2009, + "name": "お姉ちゃん待ち", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2860, + "cool": 3892, + "pure": 3248, + "illustId": "02009_0006_00", + "evolveIllustId": "02009_0006_01" + }, + { + "id": 20090007, + "masterCharacterId": 2009, + "name": "砂浜の温度", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2884, + "cool": 3263, + "pure": 3853, + "illustId": "02009_0007_00", + "evolveIllustId": "02009_0007_01" + }, + { + "id": 20090008, + "masterCharacterId": 2009, + "name": "出来るもんっ", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4516, + "cool": 3604, + "pure": 3380, + "illustId": "02009_0008_00", + "evolveIllustId": "02009_0008_01" + }, + { + "id": 20090009, + "masterCharacterId": 2009, + "name": "目指せチアガールさん", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3542, + "cool": 3760, + "pure": 4198, + "illustId": "02009_0009_00", + "evolveIllustId": "02009_0009_01" + }, + { + "id": 20090010, + "masterCharacterId": 2009, + "name": "ルビィの勇気", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3556, + "cool": 4382, + "pure": 3562, + "illustId": "02009_0010_00", + "evolveIllustId": "02009_0010_01" + }, + { + "id": 20090011, + "masterCharacterId": 2009, + "name": "おねぼうさん", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4249, + "cool": 4054, + "pure": 4697, + "illustId": "02009_0011_00", + "evolveIllustId": "02009_0011_01" + }, + { + "id": 20090012, + "masterCharacterId": 2009, + "name": "お花がポイント", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3982, + "cool": 4735, + "pure": 4283, + "illustId": "02009_0012_00", + "evolveIllustId": "02009_0012_01" + }, + { + "id": 30010001, + "masterCharacterId": 3001, + "name": "しとやかに", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3671, + "cool": 3226, + "pure": 3103, + "illustId": "03001_0001_00", + "evolveIllustId": "03001_0001_01" + }, + { + "id": 30010002, + "masterCharacterId": 3001, + "name": "一歩ずつ", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3228, + "cool": 2983, + "pure": 3789, + "illustId": "03001_0002_00", + "evolveIllustId": "03001_0002_01" + }, + { + "id": 30010003, + "masterCharacterId": 3001, + "name": "努力家", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2907, + "cool": 4025, + "pure": 3068, + "illustId": "03001_0003_00", + "evolveIllustId": "03001_0003_01" + }, + { + "id": 30010004, + "masterCharacterId": 3001, + "name": "夜空に咲く花", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4267, + "cool": 3708, + "pure": 3525, + "illustId": "03001_0004_00", + "evolveIllustId": "03001_0004_01" + }, + { + "id": 30010005, + "masterCharacterId": 3001, + "name": "涼やかに咲く花", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3600, + "cool": 3402, + "pure": 4498, + "illustId": "03001_0005_00", + "evolveIllustId": "03001_0005_01" + }, + { + "id": 30010006, + "masterCharacterId": 3001, + "name": "イースターの兎さん♡", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3576, + "cool": 4202, + "pure": 3722, + "illustId": "03001_0006_00", + "evolveIllustId": "03001_0006_01" + }, + { + "id": 30010007, + "masterCharacterId": 3001, + "name": "隣にいるよ", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4136, + "cool": 4805, + "pure": 4059, + "illustId": "03001_0007_00", + "evolveIllustId": "03001_0007_01" + }, + { + "id": 30020001, + "masterCharacterId": 3002, + "name": "小悪魔", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4101, + "cool": 3024, + "pure": 2875, + "illustId": "03002_0001_00", + "evolveIllustId": "03002_0001_01" + }, + { + "id": 30020002, + "masterCharacterId": 3002, + "name": "かすみん♡", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2986, + "cool": 3318, + "pure": 3696, + "illustId": "03002_0002_00", + "evolveIllustId": "03002_0002_01" + }, + { + "id": 30020003, + "masterCharacterId": 3002, + "name": "可愛さ研究", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2831, + "cool": 3970, + "pure": 3199, + "illustId": "03002_0003_00", + "evolveIllustId": "03002_0003_01" + }, + { + "id": 30020004, + "masterCharacterId": 3002, + "name": "金糸雀かすみん", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4216, + "cool": 3688, + "pure": 3596, + "illustId": "03002_0004_00", + "evolveIllustId": "03002_0004_01" + }, + { + "id": 30020005, + "masterCharacterId": 3002, + "name": "ヘルシーキュート", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3436, + "cool": 3359, + "pure": 4705, + "illustId": "03002_0005_00", + "evolveIllustId": "03002_0005_01" + }, + { + "id": 30020006, + "masterCharacterId": 3002, + "name": "かすみんと探そっ♪", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3367, + "cool": 4431, + "pure": 3702, + "illustId": "03002_0006_00", + "evolveIllustId": "03002_0006_01" + }, + { + "id": 30020007, + "masterCharacterId": 3002, + "name": "レインボーコッペパン", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4799, + "cool": 4265, + "pure": 3936, + "illustId": "03002_0007_00", + "evolveIllustId": "03002_0007_01" + }, + { + "id": 30030001, + "masterCharacterId": 3003, + "name": "赤いリボン", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3629, + "cool": 3230, + "pure": 3141, + "illustId": "03003_0001_00", + "evolveIllustId": "03003_0001_01" + }, + { + "id": 30030002, + "masterCharacterId": 3003, + "name": "しっかり者", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3095, + "cool": 3015, + "pure": 3890, + "illustId": "03003_0002_00", + "evolveIllustId": "03003_0002_01" + }, + { + "id": 30030003, + "masterCharacterId": 3003, + "name": "演劇部兼部", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3060, + "cool": 3626, + "pure": 3314, + "illustId": "03003_0003_00", + "evolveIllustId": "03003_0003_01" + }, + { + "id": 30030004, + "masterCharacterId": 3003, + "name": "紺碧のヒロイン", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4302, + "cool": 3421, + "pure": 3777, + "illustId": "03003_0004_00", + "evolveIllustId": "03003_0004_01" + }, + { + "id": 30030005, + "masterCharacterId": 3003, + "name": "涼を求めて", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3547, + "cool": 3508, + "pure": 4445, + "illustId": "03003_0005_00", + "evolveIllustId": "03003_0005_01" + }, + { + "id": 30030006, + "masterCharacterId": 3003, + "name": "お茶会でひとやすみ", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3663, + "cool": 4248, + "pure": 3589, + "illustId": "03003_0006_00", + "evolveIllustId": "03003_0006_01" + }, + { + "id": 30030007, + "masterCharacterId": 3003, + "name": "素の自分で", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3906, + "cool": 4293, + "pure": 4801, + "illustId": "03003_0007_00", + "evolveIllustId": "03003_0007_01" + }, + { + "id": 30040001, + "masterCharacterId": 3004, + "name": "読者モデル", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4070, + "cool": 3030, + "pure": 2900, + "illustId": "03004_0001_00", + "evolveIllustId": "03004_0001_01" + }, + { + "id": 30040002, + "masterCharacterId": 3004, + "name": "頼りになる存在", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3048, + "cool": 3202, + "pure": 3750, + "illustId": "03004_0002_00", + "evolveIllustId": "03004_0002_01" + }, + { + "id": 30040003, + "masterCharacterId": 3004, + "name": "ストイックに", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3066, + "cool": 3788, + "pure": 3146, + "illustId": "03004_0003_00", + "evolveIllustId": "03004_0003_01" + }, + { + "id": 30040004, + "masterCharacterId": 3004, + "name": "薫る夏扇子", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4455, + "cool": 3543, + "pure": 3502, + "illustId": "03004_0004_00", + "evolveIllustId": "03004_0004_01" + }, + { + "id": 30040005, + "masterCharacterId": 3004, + "name": "情熱は胸の奥に", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3355, + "cool": 3693, + "pure": 4452, + "illustId": "03004_0005_00", + "evolveIllustId": "03004_0005_01" + }, + { + "id": 30040006, + "masterCharacterId": 3004, + "name": "たまにはキュートに", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3414, + "cool": 4547, + "pure": 3539, + "illustId": "03004_0006_00", + "evolveIllustId": "03004_0006_01" + }, + { + "id": 30040007, + "masterCharacterId": 3004, + "name": "クオリティの追求", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3960, + "cool": 5024, + "pure": 4016, + "illustId": "03004_0007_00", + "evolveIllustId": "03004_0007_01" + }, + { + "id": 30050001, + "masterCharacterId": 3005, + "name": "みんなの太陽", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3931, + "cool": 3168, + "pure": 2901, + "illustId": "03005_0001_00", + "evolveIllustId": "03005_0001_01" + }, + { + "id": 30050002, + "masterCharacterId": 3005, + "name": "助っ人", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3030, + "cool": 3034, + "pure": 3936, + "illustId": "03005_0002_00", + "evolveIllustId": "03005_0002_01" + }, + { + "id": 30050003, + "masterCharacterId": 3005, + "name": "向上心", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2841, + "cool": 3971, + "pure": 3188, + "illustId": "03005_0003_00", + "evolveIllustId": "03005_0003_01" + }, + { + "id": 30050004, + "masterCharacterId": 3005, + "name": "真夏の太陽", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4263, + "cool": 3594, + "pure": 3643, + "illustId": "03005_0004_00", + "evolveIllustId": "03005_0004_01" + }, + { + "id": 30050005, + "masterCharacterId": 3005, + "name": "はじける笑顔と水風船", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3622, + "cool": 3280, + "pure": 4598, + "illustId": "03005_0005_00", + "evolveIllustId": "03005_0005_01" + }, + { + "id": 30050006, + "masterCharacterId": 3005, + "name": "ハッピーイースター", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3265, + "cool": 4693, + "pure": 3542, + "illustId": "03005_0006_00", + "evolveIllustId": "03005_0006_01" + }, + { + "id": 30050007, + "masterCharacterId": 3005, + "name": "チェンジオブペース", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4871, + "cool": 3888, + "pure": 4241, + "illustId": "03005_0007_00", + "evolveIllustId": "03005_0007_01" + }, + { + "id": 30060001, + "masterCharacterId": 3006, + "name": "マイペース", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3940, + "cool": 3070, + "pure": 2990, + "illustId": "03006_0001_00", + "evolveIllustId": "03006_0001_01" + }, + { + "id": 30060002, + "masterCharacterId": 3006, + "name": "すやぴー……", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3067, + "cool": 3078, + "pure": 3855, + "illustId": "03006_0002_00", + "evolveIllustId": "03006_0002_01" + }, + { + "id": 30060003, + "masterCharacterId": 3006, + "name": "姉として", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2927, + "cool": 3878, + "pure": 3195, + "illustId": "03006_0003_00", + "evolveIllustId": "03006_0003_01" + }, + { + "id": 30060004, + "masterCharacterId": 3006, + "name": "夏だって夢の国へ", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4511, + "cool": 3642, + "pure": 3347, + "illustId": "03006_0004_00", + "evolveIllustId": "03006_0004_01" + }, + { + "id": 30060005, + "masterCharacterId": 3006, + "name": "朝凪のおでかけ", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3796, + "cool": 3417, + "pure": 4287, + "illustId": "03006_0005_00", + "evolveIllustId": "03006_0005_01" + }, + { + "id": 30060006, + "masterCharacterId": 3006, + "name": "うさぎさんがご案内", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3473, + "cool": 4671, + "pure": 3356, + "illustId": "03006_0006_00", + "evolveIllustId": "03006_0006_01" + }, + { + "id": 30060007, + "masterCharacterId": 3006, + "name": "姉妹の食卓", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3848, + "cool": 3959, + "pure": 5193, + "illustId": "03006_0007_00", + "evolveIllustId": "03006_0007_01" + }, + { + "id": 30070001, + "masterCharacterId": 3007, + "name": "熱血真面目", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3865, + "cool": 3007, + "pure": 3128, + "illustId": "03007_0001_00", + "evolveIllustId": "03007_0001_01" + }, + { + "id": 30070002, + "masterCharacterId": 3007, + "name": "変身ヒーロー", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3289, + "cool": 2894, + "pure": 3817, + "illustId": "03007_0002_00", + "evolveIllustId": "03007_0002_01" + }, + { + "id": 30070003, + "masterCharacterId": 3007, + "name": "アツいココロ", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3294, + "cool": 3643, + "pure": 3063, + "illustId": "03007_0003_00", + "evolveIllustId": "03007_0003_01" + }, + { + "id": 30070004, + "masterCharacterId": 3007, + "name": "太陽の下で輝いて", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4700, + "cool": 3536, + "pure": 3264, + "illustId": "03007_0004_00", + "evolveIllustId": "03007_0004_01" + }, + { + "id": 30070005, + "masterCharacterId": 3007, + "name": "紅緋のかざぐるま", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3799, + "cool": 3533, + "pure": 4168, + "illustId": "03007_0005_00", + "evolveIllustId": "03007_0005_01" + }, + { + "id": 30070006, + "masterCharacterId": 3007, + "name": "エッグ発見♪", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3436, + "cool": 4564, + "pure": 3500, + "illustId": "03007_0006_00", + "evolveIllustId": "03007_0006_01" + }, + { + "id": 30070007, + "masterCharacterId": 3007, + "name": "大好きを伝えたい!", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3802, + "cool": 5139, + "pure": 4059, + "illustId": "03007_0007_00", + "evolveIllustId": "03007_0007_01" + }, + { + "id": 30080001, + "masterCharacterId": 3008, + "name": "おっとりマイペース", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4018, + "cool": 3014, + "pure": 2968, + "illustId": "03008_0001_00", + "evolveIllustId": "03008_0001_01" + }, + { + "id": 30080002, + "masterCharacterId": 3008, + "name": "スイスの空気", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3205, + "cool": 3109, + "pure": 3686, + "illustId": "03008_0002_00", + "evolveIllustId": "03008_0002_01" + }, + { + "id": 30080003, + "masterCharacterId": 3008, + "name": "みんなの支え", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2963, + "cool": 3994, + "pure": 3043, + "illustId": "03008_0003_00", + "evolveIllustId": "03008_0003_01" + }, + { + "id": 30080004, + "masterCharacterId": 3008, + "name": "夏の木漏れ日の下", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4539, + "cool": 3480, + "pure": 3481, + "illustId": "03008_0004_00", + "evolveIllustId": "03008_0004_01" + }, + { + "id": 30080005, + "masterCharacterId": 3008, + "name": "かき氷の清涼感", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3534, + "cool": 3713, + "pure": 4253, + "illustId": "03008_0005_00", + "evolveIllustId": "03008_0005_01" + }, + { + "id": 30080006, + "masterCharacterId": 3008, + "name": "可愛い卵見つけたよ", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3518, + "cool": 4401, + "pure": 3581, + "illustId": "03008_0006_00", + "evolveIllustId": "03008_0006_01" + }, + { + "id": 30080007, + "masterCharacterId": 3008, + "name": "爽やかな木漏れ日", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5327, + "cool": 3807, + "pure": 3866, + "illustId": "03008_0007_00", + "evolveIllustId": "03008_0007_01" + }, + { + "id": 30090001, + "masterCharacterId": 3009, + "name": "やりたいこと", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3594, + "cool": 3070, + "pure": 3336, + "illustId": "03009_0001_00", + "evolveIllustId": "03009_0001_01" + }, + { + "id": 30090002, + "masterCharacterId": 3009, + "name": "気持ちを繋げる", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2982, + "cool": 3078, + "pure": 3940, + "illustId": "03009_0002_00", + "evolveIllustId": "03009_0002_01" + }, + { + "id": 30090003, + "masterCharacterId": 3009, + "name": "璃奈ちゃんボード", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2987, + "cool": 3833, + "pure": 3180, + "illustId": "03009_0003_00", + "evolveIllustId": "03009_0003_01" + }, + { + "id": 30090004, + "masterCharacterId": 3009, + "name": "璃奈ちゃんうちわ", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4323, + "cool": 3728, + "pure": 3449, + "illustId": "03009_0004_00", + "evolveIllustId": "03009_0004_01" + }, + { + "id": 30090005, + "masterCharacterId": 3009, + "name": "避暑地で涼もう", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3670, + "cool": 3660, + "pure": 4170, + "illustId": "03009_0005_00", + "evolveIllustId": "03009_0005_01" + }, + { + "id": 30090006, + "masterCharacterId": 3009, + "name": "イースターバルーン", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3558, + "cool": 4442, + "pure": 3500, + "illustId": "03009_0006_00", + "evolveIllustId": "03009_0006_01" + }, + { + "id": 30090007, + "masterCharacterId": 3009, + "name": "お散歩役員のお世話", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3810, + "cool": 3916, + "pure": 5274, + "illustId": "03009_0007_00", + "evolveIllustId": "03009_0007_01" + }, + { + "id": 30100001, + "masterCharacterId": 3010, + "name": "夢の始まり", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3757, + "cool": 2955, + "pure": 3288, + "illustId": "03010_0001_00", + "evolveIllustId": "03010_0001_01" + }, + { + "id": 30100002, + "masterCharacterId": 3010, + "name": "みんなのために", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3093, + "cool": 3098, + "pure": 3809, + "illustId": "03010_0002_00", + "evolveIllustId": "03010_0002_01" + }, + { + "id": 30100003, + "masterCharacterId": 3010, + "name": "努力を重ねて", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2790, + "cool": 4032, + "pure": 3178, + "illustId": "03010_0003_00", + "evolveIllustId": "03010_0003_01" + }, + { + "id": 30100004, + "masterCharacterId": 3010, + "name": "そよぐ花萌葱", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4378, + "cool": 3496, + "pure": 3626, + "illustId": "03010_0004_00", + "evolveIllustId": "03010_0004_01" + }, + { + "id": 30100005, + "masterCharacterId": 3010, + "name": "半日陰で咲く", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3587, + "cool": 3490, + "pure": 4423, + "illustId": "03010_0005_00", + "evolveIllustId": "03010_0005_01" + }, + { + "id": 30100006, + "masterCharacterId": 3010, + "name": "復活の象徴", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3369, + "cool": 4423, + "pure": 3708, + "illustId": "03010_0006_00", + "evolveIllustId": "03010_0006_01" + }, + { + "id": 30100007, + "masterCharacterId": 3010, + "name": "精進あるのみ", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4111, + "cool": 4704, + "pure": 4185, + "illustId": "03010_0007_00", + "evolveIllustId": "03010_0007_01" + }, + { + "id": 30110001, + "masterCharacterId": 3011, + "name": "飛び級転入生", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3840, + "cool": 2942, + "pure": 3218, + "illustId": "03011_0001_00", + "evolveIllustId": "03011_0001_01" + }, + { + "id": 30110002, + "masterCharacterId": 3011, + "name": "NewYorker", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3307, + "cool": 2987, + "pure": 3706, + "illustId": "03011_0002_00", + "evolveIllustId": "03011_0002_01" + }, + { + "id": 30110003, + "masterCharacterId": 3011, + "name": "ボクの曲", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2908, + "cool": 3870, + "pure": 3222, + "illustId": "03011_0003_00", + "evolveIllustId": "03011_0003_01" + }, + { + "id": 30110004, + "masterCharacterId": 3011, + "name": "浴衣に挑戦", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4610, + "cool": 3345, + "pure": 3545, + "illustId": "03011_0004_00", + "evolveIllustId": "03011_0004_01" + }, + { + "id": 30110005, + "masterCharacterId": 3011, + "name": "しゅわっとラムネ", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3820, + "cool": 3511, + "pure": 4169, + "illustId": "03011_0005_00", + "evolveIllustId": "03011_0005_01" + }, + { + "id": 30110006, + "masterCharacterId": 3011, + "name": "エッグはどこに?", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3703, + "cool": 4384, + "pure": 3413, + "illustId": "03011_0006_00", + "evolveIllustId": "03011_0006_01" + }, + { + "id": 30110007, + "masterCharacterId": 3011, + "name": "渾身の作曲", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4815, + "cool": 4179, + "pure": 4006, + "illustId": "03011_0007_00", + "evolveIllustId": "03011_0007_01" + }, + { + "id": 30120001, + "masterCharacterId": 3012, + "name": "無問題ラ!", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4048, + "cool": 2794, + "pure": 3158, + "illustId": "03012_0001_00", + "evolveIllustId": "03012_0001_01" + }, + { + "id": 30120002, + "masterCharacterId": 3012, + "name": "香港出身", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3014, + "cool": 2909, + "pure": 4077, + "illustId": "03012_0002_00", + "evolveIllustId": "03012_0002_01" + }, + { + "id": 30120003, + "masterCharacterId": 3012, + "name": "何でもできる", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3167, + "cool": 3945, + "pure": 2888, + "illustId": "03012_0003_00", + "evolveIllustId": "03012_0003_01" + }, + { + "id": 30120004, + "masterCharacterId": 3012, + "name": "軽やかな足取り", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4661, + "cool": 3368, + "pure": 3471, + "illustId": "03012_0004_00", + "evolveIllustId": "03012_0004_01" + }, + { + "id": 30120005, + "masterCharacterId": 3012, + "name": "パリパリりんご飴", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3380, + "cool": 3717, + "pure": 4403, + "illustId": "03012_0005_00", + "evolveIllustId": "03012_0005_01" + }, + { + "id": 30120006, + "masterCharacterId": 3012, + "name": "フルーツサンド", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3676, + "cool": 4155, + "pure": 3669, + "illustId": "03012_0006_00", + "evolveIllustId": "03012_0006_01" + }, + { + "id": 30120007, + "masterCharacterId": 3012, + "name": "ライバルで仲間", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4124, + "cool": 3946, + "pure": 4930, + "illustId": "03012_0007_00", + "evolveIllustId": "03012_0007_01" + }, + { + "id": 40010001, + "masterCharacterId": 4001, + "name": "諦めないキモチ", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3861, + "cool": 2923, + "pure": 3216, + "illustId": "04001_0001_00", + "evolveIllustId": "04001_0001_01" + }, + { + "id": 40010002, + "masterCharacterId": 4001, + "name": "歌うのが好き", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3092, + "cool": 2832, + "pure": 4076, + "illustId": "04001_0002_00", + "evolveIllustId": "04001_0002_01" + }, + { + "id": 40010003, + "masterCharacterId": 4001, + "name": "おうちで唄おう", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3089, + "cool": 3807, + "pure": 3104, + "illustId": "04001_0003_00", + "evolveIllustId": "04001_0003_01" + }, + { + "id": 40010004, + "masterCharacterId": 4001, + "name": "みんなを元気に", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4457, + "cool": 3676, + "pure": 3367, + "illustId": "04001_0004_00", + "evolveIllustId": "04001_0004_01" + }, + { + "id": 40010005, + "masterCharacterId": 4001, + "name": "ちょっぴりシャイでも", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3428, + "cool": 3720, + "pure": 4352, + "illustId": "04001_0005_00", + "evolveIllustId": "04001_0005_01" + }, + { + "id": 40010006, + "masterCharacterId": 4001, + "name": "原宿に繰り出そう", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3501, + "cool": 4166, + "pure": 3833, + "illustId": "04001_0006_00", + "evolveIllustId": "04001_0006_01" + }, + { + "id": 40010007, + "masterCharacterId": 4001, + "name": "想いを胸に", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5292, + "cool": 3855, + "pure": 3853, + "illustId": "04001_0007_00", + "evolveIllustId": "04001_0007_01" + }, + { + "id": 40020001, + "masterCharacterId": 4002, + "name": "一直線!", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3617, + "cool": 3318, + "pure": 3065, + "illustId": "04002_0001_00", + "evolveIllustId": "04002_0001_01" + }, + { + "id": 40020002, + "masterCharacterId": 4002, + "name": "上海出身", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3084, + "cool": 3089, + "pure": 3827, + "illustId": "04002_0002_00", + "evolveIllustId": "04002_0002_01" + }, + { + "id": 40020003, + "masterCharacterId": 4002, + "name": "おうちでおめかし", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3163, + "cool": 3910, + "pure": 2927, + "illustId": "04002_0003_00", + "evolveIllustId": "04002_0003_01" + }, + { + "id": 40020004, + "masterCharacterId": 4002, + "name": "精一杯頑張るのデス!", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4379, + "cool": 3458, + "pure": 3663, + "illustId": "04002_0004_00", + "evolveIllustId": "04002_0004_01" + }, + { + "id": 40020005, + "masterCharacterId": 4002, + "name": "パワフルな情熱家", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3518, + "cool": 3736, + "pure": 4246, + "illustId": "04002_0005_00", + "evolveIllustId": "04002_0005_01" + }, + { + "id": 40020006, + "masterCharacterId": 4002, + "name": "ラフにキメて☆", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3541, + "cool": 4499, + "pure": 3460, + "illustId": "04002_0006_00", + "evolveIllustId": "04002_0006_01" + }, + { + "id": 40020007, + "masterCharacterId": 4002, + "name": "衣装スタイリスト", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3825, + "cool": 4983, + "pure": 4192, + "illustId": "04002_0007_00", + "evolveIllustId": "04002_0007_01" + }, + { + "id": 40030001, + "masterCharacterId": 4003, + "name": "ダンス担当", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 4048, + "cool": 2917, + "pure": 3035, + "illustId": "04003_0001_00", + "evolveIllustId": "04003_0001_01" + }, + { + "id": 40030002, + "masterCharacterId": 4003, + "name": "丸いものラブ", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3293, + "cool": 3093, + "pure": 3614, + "illustId": "04003_0002_00", + "evolveIllustId": "04003_0002_01" + }, + { + "id": 40030003, + "masterCharacterId": 4003, + "name": "おうちでサプライズ", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3063, + "cool": 3804, + "pure": 3133, + "illustId": "04003_0003_00", + "evolveIllustId": "04003_0003_01" + }, + { + "id": 40030004, + "masterCharacterId": 4003, + "name": "一緒に踊ろう", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4463, + "cool": 3354, + "pure": 3683, + "illustId": "04003_0004_00", + "evolveIllustId": "04003_0004_01" + }, + { + "id": 40030005, + "masterCharacterId": 4003, + "name": "たこ焼き食べる?", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3643, + "cool": 3326, + "pure": 4531, + "illustId": "04003_0005_00", + "evolveIllustId": "04003_0005_01" + }, + { + "id": 40030006, + "masterCharacterId": 4003, + "name": "軽快な挨拶♪", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3418, + "cool": 4471, + "pure": 3611, + "illustId": "04003_0006_00", + "evolveIllustId": "04003_0006_01" + }, + { + "id": 40030007, + "masterCharacterId": 4003, + "name": "先輩のステップ", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3777, + "cool": 4028, + "pure": 5195, + "illustId": "04003_0007_00", + "evolveIllustId": "04003_0007_01" + }, + { + "id": 40040001, + "masterCharacterId": 4004, + "name": "ショウビズ精神", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3936, + "cool": 2971, + "pure": 3093, + "illustId": "04004_0001_00", + "evolveIllustId": "04004_0001_01" + }, + { + "id": 40040002, + "masterCharacterId": 4004, + "name": "ジョーカー的存在", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3114, + "cool": 3134, + "pure": 3752, + "illustId": "04004_0002_00", + "evolveIllustId": "04004_0002_01" + }, + { + "id": 40040003, + "masterCharacterId": 4004, + "name": "おうちでカンパイ☆", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2985, + "cool": 3636, + "pure": 3379, + "illustId": "04004_0003_00", + "evolveIllustId": "04004_0003_01" + }, + { + "id": 40040004, + "masterCharacterId": 4004, + "name": "ギャラクシー!", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4628, + "cool": 3340, + "pure": 3532, + "illustId": "04004_0004_00", + "evolveIllustId": "04004_0004_01" + }, + { + "id": 40040005, + "masterCharacterId": 4004, + "name": "舞い戻った表舞台", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3544, + "cool": 3800, + "pure": 4156, + "illustId": "04004_0005_00", + "evolveIllustId": "04004_0005_01" + }, + { + "id": 40040006, + "masterCharacterId": 4004, + "name": "厚底で往く!", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3597, + "cool": 4267, + "pure": 3636, + "illustId": "04004_0006_00", + "evolveIllustId": "04004_0006_01" + }, + { + "id": 40040007, + "masterCharacterId": 4004, + "name": "両腕いっぱい", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5052, + "cool": 3842, + "pure": 4106, + "illustId": "04004_0007_00", + "evolveIllustId": "04004_0007_01" + }, + { + "id": 40050001, + "masterCharacterId": 4005, + "name": "優等生", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3664, + "cool": 3305, + "pure": 3031, + "illustId": "04005_0001_00", + "evolveIllustId": "04005_0001_01" + }, + { + "id": 40050002, + "masterCharacterId": 4005, + "name": "お嬢様", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3249, + "cool": 2907, + "pure": 3844, + "illustId": "04005_0002_00", + "evolveIllustId": "04005_0002_01" + }, + { + "id": 40050003, + "masterCharacterId": 4005, + "name": "おうちを飾り付け", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3146, + "cool": 4034, + "pure": 2820, + "illustId": "04005_0003_00", + "evolveIllustId": "04005_0003_01" + }, + { + "id": 40050004, + "masterCharacterId": 4005, + "name": "たゆまぬ努力", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4248, + "cool": 3512, + "pure": 3740, + "illustId": "04005_0004_00", + "evolveIllustId": "04005_0004_01" + }, + { + "id": 40050005, + "masterCharacterId": 4005, + "name": "みなさんの模範に", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3644, + "cool": 3547, + "pure": 4309, + "illustId": "04005_0005_00", + "evolveIllustId": "04005_0005_01" + }, + { + "id": 40050006, + "masterCharacterId": 4005, + "name": "ゆるリラコーデ", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3454, + "cool": 4206, + "pure": 3840, + "illustId": "04005_0006_00", + "evolveIllustId": "04005_0006_01" + }, + { + "id": 40050007, + "masterCharacterId": 4005, + "name": "母の残した結ヶ丘", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3878, + "cool": 4947, + "pure": 4175, + "illustId": "04005_0007_00", + "evolveIllustId": "04005_0007_01" + }, + { + "id": 40060001, + "masterCharacterId": 4006, + "name": "北の大地から", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3817, + "cool": 2979, + "pure": 3204, + "illustId": "04006_0001_00", + "evolveIllustId": "04006_0001_01" + }, + { + "id": 40060002, + "masterCharacterId": 4006, + "name": "明るく大らか", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3150, + "cool": 3244, + "pure": 3606, + "illustId": "04006_0002_00", + "evolveIllustId": "04006_0002_01" + }, + { + "id": 40060003, + "masterCharacterId": 4006, + "name": "おうちで休憩", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3032, + "cool": 3913, + "pure": 3055, + "illustId": "04006_0003_00", + "evolveIllustId": "04006_0003_01" + }, + { + "id": 40060004, + "masterCharacterId": 4006, + "name": "キラキラを目指して", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4429, + "cool": 3552, + "pure": 3519, + "illustId": "04006_0004_00", + "evolveIllustId": "04006_0004_01" + }, + { + "id": 40060005, + "masterCharacterId": 4006, + "name": "頑張るっす!", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3441, + "cool": 3772, + "pure": 4287, + "illustId": "04006_0005_00", + "evolveIllustId": "04006_0005_01" + }, + { + "id": 40060006, + "masterCharacterId": 4006, + "name": "ガーリーと合わせて", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3857, + "cool": 4152, + "pure": 3491, + "illustId": "04006_0006_00", + "evolveIllustId": "04006_0006_01" + }, + { + "id": 40060007, + "masterCharacterId": 4006, + "name": "地上230メートル", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4042, + "cool": 4197, + "pure": 4761, + "illustId": "04006_0007_00", + "evolveIllustId": "04006_0007_01" + }, + { + "id": 40070001, + "masterCharacterId": 4007, + "name": "やってみたい", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3683, + "cool": 3061, + "pure": 3256, + "illustId": "04007_0001_00", + "evolveIllustId": "04007_0001_01" + }, + { + "id": 40070002, + "masterCharacterId": 4007, + "name": "四季と共に", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2910, + "cool": 3289, + "pure": 3801, + "illustId": "04007_0002_00", + "evolveIllustId": "04007_0002_01" + }, + { + "id": 40070003, + "masterCharacterId": 4007, + "name": "おうちでパーティ", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3268, + "cool": 3856, + "pure": 2876, + "illustId": "04007_0003_00", + "evolveIllustId": "04007_0003_01" + }, + { + "id": 40070004, + "masterCharacterId": 4007, + "name": "……応援よろしく", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4391, + "cool": 3371, + "pure": 3738, + "illustId": "04007_0004_00", + "evolveIllustId": "04007_0004_01" + }, + { + "id": 40070005, + "masterCharacterId": 4007, + "name": "私も夢に向かって", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3604, + "cool": 3240, + "pure": 4656, + "illustId": "04007_0005_00", + "evolveIllustId": "04007_0005_01" + }, + { + "id": 40070006, + "masterCharacterId": 4007, + "name": "クールにおめかし", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3351, + "cool": 4408, + "pure": 3741, + "illustId": "04007_0006_00", + "evolveIllustId": "04007_0006_01" + }, + { + "id": 40070007, + "masterCharacterId": 4007, + "name": "コンプリート目前", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4976, + "cool": 3847, + "pure": 4177, + "illustId": "04007_0007_00", + "evolveIllustId": "04007_0007_01" + }, + { + "id": 40080001, + "masterCharacterId": 4008, + "name": "科学部兼務", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3649, + "cool": 3262, + "pure": 3089, + "illustId": "04008_0001_00", + "evolveIllustId": "04008_0001_01" + }, + { + "id": 40080002, + "masterCharacterId": 4008, + "name": "メイと共に", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 3055, + "cool": 3289, + "pure": 3656, + "illustId": "04008_0002_00", + "evolveIllustId": "04008_0002_01" + }, + { + "id": 40080003, + "masterCharacterId": 4008, + "name": "おうちでまったり", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 3043, + "cool": 3887, + "pure": 3070, + "illustId": "04008_0003_00", + "evolveIllustId": "04008_0003_01" + }, + { + "id": 40080004, + "masterCharacterId": 4008, + "name": "冷静沈着ミステリアス", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4476, + "cool": 3384, + "pure": 3640, + "illustId": "04008_0004_00", + "evolveIllustId": "04008_0004_01" + }, + { + "id": 40080005, + "masterCharacterId": 4008, + "name": "賑やかも悪くない", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3557, + "cool": 3490, + "pure": 4453, + "illustId": "04008_0005_00", + "evolveIllustId": "04008_0005_01" + }, + { + "id": 40080006, + "masterCharacterId": 4008, + "name": "一枚でもサマに", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3249, + "cool": 4671, + "pure": 3580, + "illustId": "04008_0006_00", + "evolveIllustId": "04008_0006_01" + }, + { + "id": 40080007, + "masterCharacterId": 4008, + "name": "放課後の科学室", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4095, + "cool": 4736, + "pure": 4169, + "illustId": "04008_0007_00", + "evolveIllustId": "04008_0007_01" + }, + { + "id": 40090001, + "masterCharacterId": 4009, + "name": "オニサプリ", + "type": 1, + "rarity": 1, + "hp": 2, + "smile": 3728, + "cool": 3040, + "pure": 3232, + "illustId": "04009_0001_00", + "evolveIllustId": "04009_0001_01" + }, + { + "id": 40090002, + "masterCharacterId": 4009, + "name": "マニーの匂い", + "type": 2, + "rarity": 1, + "hp": 2, + "smile": 2935, + "cool": 3132, + "pure": 3933, + "illustId": "04009_0002_00", + "evolveIllustId": "04009_0002_01" + }, + { + "id": 40090003, + "masterCharacterId": 4009, + "name": "心弾むおうち", + "type": 3, + "rarity": 1, + "hp": 2, + "smile": 2953, + "cool": 4064, + "pure": 2983, + "illustId": "04009_0003_00", + "evolveIllustId": "04009_0003_01" + }, + { + "id": 40090004, + "masterCharacterId": 4009, + "name": "盛り上げますの!", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4321, + "cool": 3495, + "pure": 3684, + "illustId": "04009_0004_00", + "evolveIllustId": "04009_0004_01" + }, + { + "id": 40090005, + "masterCharacterId": 4009, + "name": "見つけた新たな夢", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3571, + "cool": 3252, + "pure": 4677, + "illustId": "04009_0005_00", + "evolveIllustId": "04009_0005_01" + }, + { + "id": 40090006, + "masterCharacterId": 4009, + "name": "甘♡辛ピース", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3433, + "cool": 4638, + "pure": 3429, + "illustId": "04009_0006_00", + "evolveIllustId": "04009_0006_01" + }, + { + "id": 40090007, + "masterCharacterId": 4009, + "name": "オニナッツ生配信中!", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4062, + "cool": 4208, + "pure": 4730, + "illustId": "04009_0007_00", + "evolveIllustId": "04009_0007_01" + }, + { + "id": 40010008, + "masterCharacterId": 4001, + "name": "雲の上はいつも晴れ", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4111, + "cool": 5089, + "pure": 3956, + "illustId": "04001_0008_00", + "evolveIllustId": "04001_0008_01" + }, + { + "id": 40020008, + "masterCharacterId": 4002, + "name": "思い立ったが吉日", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4257, + "cool": 3869, + "pure": 5030, + "illustId": "04002_0008_00", + "evolveIllustId": "04002_0008_01" + }, + { + "id": 40030008, + "masterCharacterId": 4003, + "name": "笑う門には福来たる", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5066, + "cool": 3865, + "pure": 4225, + "illustId": "04003_0008_00", + "evolveIllustId": "04003_0008_01" + }, + { + "id": 40040008, + "masterCharacterId": 4004, + "name": "一念天に通ず", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4045, + "cool": 4057, + "pure": 5054, + "illustId": "04004_0008_00", + "evolveIllustId": "04004_0008_01" + }, + { + "id": 40050008, + "masterCharacterId": 4005, + "name": "初心忘るべからず", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5072, + "cool": 3977, + "pure": 4107, + "illustId": "04005_0008_00", + "evolveIllustId": "04005_0008_01" + }, + { + "id": 40060008, + "masterCharacterId": 4006, + "name": "七転び八起き", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3943, + "cool": 5028, + "pure": 4185, + "illustId": "04006_0008_00", + "evolveIllustId": "04006_0008_01" + }, + { + "id": 40070008, + "masterCharacterId": 4007, + "name": "一生懸命", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3943, + "cool": 4169, + "pure": 5044, + "illustId": "04007_0008_00", + "evolveIllustId": "04007_0008_01" + }, + { + "id": 40080008, + "masterCharacterId": 4008, + "name": "沈黙は金", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5046, + "cool": 3930, + "pure": 4180, + "illustId": "04008_0008_00", + "evolveIllustId": "04008_0008_01" + }, + { + "id": 40090008, + "masterCharacterId": 4009, + "name": "嘘も方便", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4194, + "cool": 4951, + "pure": 4011, + "illustId": "04009_0008_00", + "evolveIllustId": "04009_0008_01" + }, + { + "id": 10010015, + "masterCharacterId": 1001, + "name": "ミラクルライブ!", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3804, + "cool": 3883, + "pure": 4663, + "illustId": "01001_0015_00", + "evolveIllustId": "01001_0015_01" + }, + { + "id": 20010013, + "masterCharacterId": 2001, + "name": "ミラクルライブ☆", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3725, + "cool": 4594, + "pure": 4031, + "illustId": "02001_0013_00", + "evolveIllustId": "02001_0013_01" + }, + { + "id": 30010009, + "masterCharacterId": 3001, + "name": "ミラクルライブ♡", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4907, + "cool": 3824, + "pure": 3619, + "illustId": "03001_0009_00", + "evolveIllustId": "03001_0009_01" + }, + { + "id": 40010009, + "masterCharacterId": 4001, + "name": "ミラクルライブ♪", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3771, + "cool": 3851, + "pure": 4728, + "illustId": "04001_0009_00", + "evolveIllustId": "04001_0009_01" + }, + { + "id": 40090009, + "masterCharacterId": 4009, + "name": "レクチャーしますの", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5012, + "cool": 4062, + "pure": 3952, + "illustId": "04009_0009_00", + "evolveIllustId": "04009_0009_01" + }, + { + "id": 40020009, + "masterCharacterId": 4002, + "name": "くるくるアイス", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4727, + "cool": 4157, + "pure": 4142, + "illustId": "04002_0009_00", + "evolveIllustId": "04002_0009_01" + }, + { + "id": 40030009, + "masterCharacterId": 4003, + "name": "元気出して♪", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5135, + "cool": 3771, + "pure": 4120, + "illustId": "04003_0009_00", + "evolveIllustId": "04003_0009_01" + }, + { + "id": 10010016, + "masterCharacterId": 1001, + "name": "スポーツドリンク", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4315, + "cool": 4740, + "pure": 3971, + "illustId": "01001_0016_00", + "evolveIllustId": "01001_0016_01" + }, + { + "id": 10020015, + "masterCharacterId": 1002, + "name": "新作!動物モナカ", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4000, + "cool": 4929, + "pure": 4097, + "illustId": "01002_0015_00", + "evolveIllustId": "01002_0015_01" + }, + { + "id": 10090015, + "masterCharacterId": 1009, + "name": "µ'sと私", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4011, + "cool": 4792, + "pure": 4223, + "illustId": "01009_0015_00", + "evolveIllustId": "01009_0015_01" + }, + { + "id": 20010014, + "masterCharacterId": 2001, + "name": "メガネ試着中", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4071, + "cool": 3879, + "pure": 5076, + "illustId": "02001_0014_00", + "evolveIllustId": "02001_0014_01" + }, + { + "id": 20020013, + "masterCharacterId": 2002, + "name": "ひとくちどうぞ", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3827, + "cool": 4045, + "pure": 5154, + "illustId": "02002_0013_00", + "evolveIllustId": "02002_0013_01" + }, + { + "id": 20070013, + "masterCharacterId": 2007, + "name": "商店街グルメ食べ歩き", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4095, + "cool": 3842, + "pure": 5089, + "illustId": "02007_0013_00", + "evolveIllustId": "02007_0013_01" + }, + { + "id": 40010010, + "masterCharacterId": 4001, + "name": "幸せのアップルパイ", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4150, + "cool": 4716, + "pure": 4160, + "illustId": "04001_0010_00", + "evolveIllustId": "04001_0010_01" + }, + { + "id": 30050009, + "masterCharacterId": 3005, + "name": "サプライズBBQ", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3980, + "cool": 4047, + "pure": 4999, + "illustId": "03005_0009_00", + "evolveIllustId": "03005_0009_01" + }, + { + "id": 30060009, + "masterCharacterId": 3006, + "name": "下見後のすやぴ", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3789, + "cool": 5356, + "pure": 3907, + "illustId": "03006_0009_00", + "evolveIllustId": "03006_0009_01" + }, + { + "id": 30080009, + "masterCharacterId": 3008, + "name": "空に響く癒しの声", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3802, + "cool": 5307, + "pure": 3943, + "illustId": "03008_0009_00", + "evolveIllustId": "03008_0009_01" + }, + { + "id": 30090009, + "masterCharacterId": 3009, + "name": "難易度高めのライブ", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3878, + "cool": 4963, + "pure": 4211, + "illustId": "03009_0009_00", + "evolveIllustId": "03009_0009_01" + }, + { + "id": 20030013, + "masterCharacterId": 2003, + "name": "この海が大好き", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5216, + "cool": 4045, + "pure": 3791, + "illustId": "02003_0013_00", + "evolveIllustId": "02003_0013_01" + }, + { + "id": 20040013, + "masterCharacterId": 2004, + "name": "シェルフロート", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5226, + "cool": 3853, + "pure": 3973, + "illustId": "02004_0013_00", + "evolveIllustId": "02004_0013_01" + }, + { + "id": 20090013, + "masterCharacterId": 2009, + "name": "割れないスイカ", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4937, + "cool": 4042, + "pure": 4073, + "illustId": "02009_0013_00", + "evolveIllustId": "02009_0013_01" + }, + { + "id": 10070015, + "masterCharacterId": 1007, + "name": "レイニーバースデイ", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4021, + "cool": 5262, + "pure": 3769, + "illustId": "01007_0015_00", + "evolveIllustId": "01007_0015_01" + }, + { + "id": 20080013, + "masterCharacterId": 2008, + "name": "雫滴る紫陽花", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5251, + "cool": 3817, + "pure": 3984, + "illustId": "02008_0013_00", + "evolveIllustId": "02008_0013_01" + }, + { + "id": 40080009, + "masterCharacterId": 4008, + "name": "クワガタケーキ", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5266, + "cool": 4048, + "pure": 3738, + "illustId": "04008_0009_00", + "evolveIllustId": "04008_0009_01" + }, + { + "id": 30040009, + "masterCharacterId": 3004, + "name": "朝からサプライズ!", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3993, + "cool": 3748, + "pure": 5311, + "illustId": "03004_0009_00", + "evolveIllustId": "03004_0009_01" + }, + { + "id": 10070016, + "masterCharacterId": 1007, + "name": "梅田の街で", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4492, + "cool": 3993, + "pure": 3865, + "illustId": "01007_0016_00", + "evolveIllustId": "01007_0016_01" + }, + { + "id": 40040009, + "masterCharacterId": 4004, + "name": "まるでハリウッドスター", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3839, + "cool": 3880, + "pure": 5359, + "illustId": "04004_0009_00", + "evolveIllustId": "04004_0009_01" + }, + { + "id": 40050009, + "masterCharacterId": 4005, + "name": "夏空ビーチバレー", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4044, + "cool": 3734, + "pure": 5300, + "illustId": "04005_0009_00", + "evolveIllustId": "04005_0009_01" + }, + { + "id": 40060010, + "masterCharacterId": 4006, + "name": "高波に驚いて", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4185, + "cool": 3987, + "pure": 4906, + "illustId": "04006_0010_00", + "evolveIllustId": "04006_0010_01" + }, + { + "id": 30010010, + "masterCharacterId": 3001, + "name": "休憩はプールサイドで", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3805, + "cool": 3990, + "pure": 5283, + "illustId": "03001_0010_00", + "evolveIllustId": "03001_0010_01" + }, + { + "id": 30100009, + "masterCharacterId": 3010, + "name": "スライダープール", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3994, + "cool": 3831, + "pure": 5253, + "illustId": "03010_0009_00", + "evolveIllustId": "03010_0009_01" + }, + { + "id": 30020009, + "masterCharacterId": 3002, + "name": "海の中で虎視眈々", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4015, + "cool": 4346, + "pure": 4717, + "illustId": "03002_0009_00", + "evolveIllustId": "03002_0009_01" + }, + { + "id": 20060014, + "masterCharacterId": 2006, + "name": "感謝を込めて", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5318, + "cool": 3847, + "pure": 3913, + "illustId": "02006_0014_00", + "evolveIllustId": "02006_0014_01" + }, + { + "id": 40020010, + "masterCharacterId": 4002, + "name": "サニパサプライズ", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4014, + "cool": 5273, + "pure": 3791, + "illustId": "04002_0010_00", + "evolveIllustId": "04002_0010_01" + }, + { + "id": 10090016, + "masterCharacterId": 1009, + "name": "駅前に響く連弾", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5352, + "cool": 3713, + "pure": 4013, + "illustId": "01009_0016_00", + "evolveIllustId": "01009_0016_01" + }, + { + "id": 10030016, + "masterCharacterId": 1003, + "name": "夏の終わりに近づいて", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5223, + "cool": 3949, + "pure": 3932, + "illustId": "01003_0016_00", + "evolveIllustId": "01003_0016_01" + }, + { + "id": 10050015, + "masterCharacterId": 1005, + "name": "ノリノリサーフィン", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5335, + "cool": 3940, + "pure": 3829, + "illustId": "01005_0015_00", + "evolveIllustId": "01005_0015_01" + }, + { + "id": 10040016, + "masterCharacterId": 1004, + "name": "ビーチフラッグ", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4796, + "cool": 4297, + "pure": 4011, + "illustId": "01004_0016_00", + "evolveIllustId": "01004_0016_01" + }, + { + "id": 40070010, + "masterCharacterId": 4007, + "name": "金魚すくい", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3944, + "cool": 5291, + "pure": 3869, + "illustId": "04007_0010_00", + "evolveIllustId": "04007_0010_01" + }, + { + "id": 40080010, + "masterCharacterId": 4008, + "name": "メイのための百発百中", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3817, + "cool": 5353, + "pure": 3934, + "illustId": "04008_0010_00", + "evolveIllustId": "04008_0010_01" + }, + { + "id": 40010011, + "masterCharacterId": 4001, + "name": "夜空に大輪の花", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4257, + "cool": 4819, + "pure": 4028, + "illustId": "04001_0011_00", + "evolveIllustId": "04001_0011_01" + }, + { + "id": 20010015, + "masterCharacterId": 2001, + "name": "バスに揺られて", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3852, + "cool": 5180, + "pure": 4072, + "illustId": "02001_0015_00", + "evolveIllustId": "02001_0015_01" + }, + { + "id": 10010017, + "masterCharacterId": 1001, + "name": "幼馴染からの手紙", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3908, + "cool": 3962, + "pure": 5234, + "illustId": "01001_0017_00", + "evolveIllustId": "01001_0017_01" + }, + { + "id": 40090010, + "masterCharacterId": 4009, + "name": "長いお鼻に掴まって", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4020, + "cool": 5372, + "pure": 3712, + "illustId": "04009_0010_00", + "evolveIllustId": "04009_0010_01" + }, + { + "id": 30070009, + "masterCharacterId": 3007, + "name": "アニカラパーティー", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3708, + "cool": 4024, + "pure": 5372, + "illustId": "03007_0009_00", + "evolveIllustId": "03007_0009_01" + }, + { + "id": 20060015, + "masterCharacterId": 2006, + "name": "闇の力が集う場所", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3752, + "cool": 5304, + "pure": 4074, + "illustId": "02006_0015_00", + "evolveIllustId": "02006_0015_01" + }, + { + "id": 20080014, + "masterCharacterId": 2008, + "name": "遠い月を覗いて", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3801, + "cool": 5367, + "pure": 3962, + "illustId": "02008_0014_00", + "evolveIllustId": "02008_0014_01" + }, + { + "id": 20050014, + "masterCharacterId": 2005, + "name": "ススキのさざなみ", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4219, + "cool": 5004, + "pure": 3907, + "illustId": "02005_0014_00", + "evolveIllustId": "02005_0014_01" + }, + { + "id": 10060015, + "masterCharacterId": 1006, + "name": "納涼の夕べ", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4023, + "cool": 3728, + "pure": 5379, + "illustId": "01006_0015_00", + "evolveIllustId": "01006_0015_01" + }, + { + "id": 10070017, + "masterCharacterId": 1007, + "name": "神田を往く納涼船", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3895, + "cool": 3871, + "pure": 5364, + "illustId": "01007_0017_00", + "evolveIllustId": "01007_0017_01" + }, + { + "id": 10080016, + "masterCharacterId": 1008, + "name": "何皿食べちゃう?", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4136, + "cool": 4115, + "pure": 4879, + "illustId": "01008_0016_00", + "evolveIllustId": "01008_0016_01" + }, + { + "id": 10030017, + "masterCharacterId": 1003, + "name": "二人でコスプリ♡", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5361, + "cool": 4059, + "pure": 3710, + "illustId": "01003_0017_00", + "evolveIllustId": "01003_0017_01" + }, + { + "id": 20020014, + "masterCharacterId": 2002, + "name": "飛び交うカモメ", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5379, + "cool": 3745, + "pure": 4006, + "illustId": "02002_0014_00", + "evolveIllustId": "02002_0014_01" + }, + { + "id": 20090014, + "masterCharacterId": 2009, + "name": "秋の新作スイーツ", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3835, + "cool": 5221, + "pure": 4074, + "illustId": "02009_0014_00", + "evolveIllustId": "02009_0014_01" + }, + { + "id": 40040010, + "masterCharacterId": 4004, + "name": "メロンにめろめろ♡", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3873, + "cool": 5252, + "pure": 4005, + "illustId": "04004_0010_00", + "evolveIllustId": "04004_0010_01" + }, + { + "id": 30120010, + "masterCharacterId": 3012, + "name": "ハロウィンアフタヌーン", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5384, + "cool": 3849, + "pure": 3923, + "illustId": "03012_0010_00", + "evolveIllustId": "03012_0010_01" + }, + { + "id": 30110010, + "masterCharacterId": 3011, + "name": "サプライズハロウィン", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5390, + "cool": 3738, + "pure": 4028, + "illustId": "03011_0010_00", + "evolveIllustId": "03011_0010_01" + }, + { + "id": 30030010, + "masterCharacterId": 3003, + "name": "ヒミツの計画", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5006, + "cool": 3975, + "pure": 4175, + "illustId": "03003_0010_00", + "evolveIllustId": "03003_0010_01" + }, + { + "id": 20070015, + "masterCharacterId": 2007, + "name": "フラワーパーク", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3960, + "cool": 5500, + "pure": 3696, + "illustId": "02007_0015_00", + "evolveIllustId": "02007_0015_01" + }, + { + "id": 20040015, + "masterCharacterId": 2004, + "name": "サカサマ世界", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3690, + "cool": 5500, + "pure": 3966, + "illustId": "02004_0015_00", + "evolveIllustId": "02004_0015_01" + }, + { + "id": 20030015, + "masterCharacterId": 2003, + "name": "お化け屋敷", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3970, + "cool": 5050, + "pure": 4136, + "illustId": "02003_0015_00", + "evolveIllustId": "02003_0015_01" + }, + { + "id": 30100010, + "masterCharacterId": 3010, + "name": "姉との時間", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5344, + "cool": 3751, + "pure": 4061, + "illustId": "03010_0010_00", + "evolveIllustId": "03010_0010_01" + }, + { + "id": 10020017, + "masterCharacterId": 1002, + "name": "ヘアアレンジ", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3771, + "cool": 4009, + "pure": 5376, + "illustId": "01002_0017_00", + "evolveIllustId": "01002_0017_01" + }, + { + "id": 40070011, + "masterCharacterId": 4007, + "name": "猫カフェ日和", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3887, + "cool": 3885, + "pure": 5384, + "illustId": "04007_0011_00", + "evolveIllustId": "04007_0011_01" + }, + { + "id": 10040017, + "masterCharacterId": 1004, + "name": "あなたとどこまでも", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3300, + "cool": 4744, + "pure": 3594, + "illustId": "01004_0017_00", + "evolveIllustId": "01004_0017_01" + }, + { + "id": 20050015, + "masterCharacterId": 2005, + "name": "大冒険へヨーソロー!", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4732, + "cool": 3255, + "pure": 3651, + "illustId": "02005_0015_00", + "evolveIllustId": "02005_0015_01" + }, + { + "id": 30070011, + "masterCharacterId": 3007, + "name": "大冒険の幕開け", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3409, + "cool": 4693, + "pure": 3536, + "illustId": "03007_0011_00", + "evolveIllustId": "03007_0011_01" + }, + { + "id": 40030011, + "masterCharacterId": 4003, + "name": "見たことのない景色へ", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3632, + "cool": 3236, + "pure": 4770, + "illustId": "04003_0011_00", + "evolveIllustId": "04003_0011_01" + }, + { + "id": 30010011, + "masterCharacterId": 3001, + "name": "共に歩んだ先に", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3919, + "cool": 3986, + "pure": 5251, + "illustId": "03001_0011_00", + "evolveIllustId": "03001_0011_01" + }, + { + "id": 30020010, + "masterCharacterId": 3002, + "name": "超絶可憐にかわいい子", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4300, + "cool": 4925, + "pure": 3931, + "illustId": "03002_0010_00", + "evolveIllustId": "03002_0010_01" + }, + { + "id": 30030011, + "masterCharacterId": 3003, + "name": "青春という舞台", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4774, + "cool": 4211, + "pure": 4171, + "illustId": "03003_0011_00", + "evolveIllustId": "03003_0011_01" + }, + { + "id": 30040010, + "masterCharacterId": 3004, + "name": "クールビューティ", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4248, + "cool": 4027, + "pure": 4881, + "illustId": "03004_0010_00", + "evolveIllustId": "03004_0010_01" + }, + { + "id": 30050011, + "masterCharacterId": 3005, + "name": "愛してるよ愛だけに", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4111, + "cool": 5111, + "pure": 3934, + "illustId": "03005_0011_00", + "evolveIllustId": "03005_0011_01" + }, + { + "id": 30060010, + "masterCharacterId": 3006, + "name": "お昼寝ライブ", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5040, + "cool": 4256, + "pure": 3860, + "illustId": "03006_0010_00", + "evolveIllustId": "03006_0010_01" + }, + { + "id": 30070012, + "masterCharacterId": 3007, + "name": "『大好き』を伝えたい!", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4119, + "cool": 4236, + "pure": 4801, + "illustId": "03007_0012_00", + "evolveIllustId": "03007_0012_01" + }, + { + "id": 30080010, + "masterCharacterId": 3008, + "name": "癒しの歌を唄おう", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3852, + "cool": 5220, + "pure": 4084, + "illustId": "03008_0010_00", + "evolveIllustId": "03008_0010_01" + }, + { + "id": 30090011, + "masterCharacterId": 3009, + "name": "ファンとのコネクト", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4833, + "cool": 4091, + "pure": 4232, + "illustId": "03009_0011_00", + "evolveIllustId": "03009_0011_01" + }, + { + "id": 30100011, + "masterCharacterId": 3010, + "name": "適性が備わっています", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3888, + "cool": 4113, + "pure": 5155, + "illustId": "03010_0011_00", + "evolveIllustId": "03010_0011_01" + }, + { + "id": 30110011, + "masterCharacterId": 3011, + "name": "夢に手を伸ばして", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4074, + "cool": 4823, + "pure": 4259, + "illustId": "03011_0011_00", + "evolveIllustId": "03011_0011_01" + }, + { + "id": 30120011, + "masterCharacterId": 3012, + "name": "同好会の一員として", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5224, + "cool": 4149, + "pure": 3783, + "illustId": "03012_0011_00", + "evolveIllustId": "03012_0011_01" + }, + { + "id": 30010012, + "masterCharacterId": 3001, + "name": "あなたを見つめる", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3810, + "cool": 5201, + "pure": 4145, + "illustId": "03001_0012_00", + "evolveIllustId": "03001_0012_01" + }, + { + "id": 30020011, + "masterCharacterId": 3002, + "name": "大人デート♡", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4005, + "cool": 5220, + "pure": 3931, + "illustId": "03002_0011_00", + "evolveIllustId": "03002_0011_01" + }, + { + "id": 30030012, + "masterCharacterId": 3003, + "name": "あざとくキメちゃう", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3918, + "cool": 3966, + "pure": 5272, + "illustId": "03003_0012_00", + "evolveIllustId": "03003_0012_01" + }, + { + "id": 30040011, + "masterCharacterId": 3004, + "name": "特別な恋を探して", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3804, + "cool": 5222, + "pure": 4130, + "illustId": "03004_0011_00", + "evolveIllustId": "03004_0011_01" + }, + { + "id": 30050012, + "masterCharacterId": 3005, + "name": "ふたりで楽しく", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3991, + "cool": 3965, + "pure": 5200, + "illustId": "03005_0012_00", + "evolveIllustId": "03005_0012_01" + }, + { + "id": 40030012, + "masterCharacterId": 4003, + "name": "おつかれさま会", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5433, + "cool": 4023, + "pure": 3778, + "illustId": "04003_0012_00", + "evolveIllustId": "04003_0012_01" + }, + { + "id": 40060011, + "masterCharacterId": 4006, + "name": "緊張の舞台袖", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5428, + "cool": 3792, + "pure": 4014, + "illustId": "04006_0011_00", + "evolveIllustId": "04006_0011_01" + }, + { + "id": 40090011, + "masterCharacterId": 4009, + "name": "持ち前の情報収集能力", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 4999, + "cool": 4108, + "pure": 4127, + "illustId": "04009_0011_00", + "evolveIllustId": "04009_0011_01" + }, + { + "id": 30070013, + "masterCharacterId": 3007, + "name": "有志でバンド", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3929, + "cool": 5441, + "pure": 3864, + "illustId": "03007_0013_00", + "evolveIllustId": "03007_0013_01" + }, + { + "id": 30050013, + "masterCharacterId": 3005, + "name": "模擬店ハシゴ中", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3850, + "cool": 5435, + "pure": 3949, + "illustId": "03005_0013_00", + "evolveIllustId": "03005_0013_01" + }, + { + "id": 30040012, + "masterCharacterId": 3004, + "name": "執事喫茶のエース", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3972, + "cool": 4949, + "pure": 4313, + "illustId": "03004_0012_00", + "evolveIllustId": "03004_0012_01" + }, + { + "id": 10050016, + "masterCharacterId": 1005, + "name": "可愛い贈り物たち", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3853, + "cool": 3939, + "pure": 5442, + "illustId": "01005_0016_00", + "evolveIllustId": "01005_0016_01" + }, + { + "id": 30090012, + "masterCharacterId": 3009, + "name": "FULL COMBO!!", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5439, + "cool": 3905, + "pure": 3890, + "illustId": "03009_0012_00", + "evolveIllustId": "03009_0012_01" + }, + { + "id": 40050011, + "masterCharacterId": 4005, + "name": "苺スイーツビュッフェ", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5438, + "cool": 3751, + "pure": 4045, + "illustId": "04005_0011_00", + "evolveIllustId": "04005_0011_01" + }, + { + "id": 30060011, + "masterCharacterId": 3006, + "name": "ずっとあなたのことを", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4048, + "cool": 3903, + "pure": 5205, + "illustId": "03006_0011_00", + "evolveIllustId": "03006_0011_01" + }, + { + "id": 30070014, + "masterCharacterId": 3007, + "name": "みんなに伝えるラブ", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5201, + "cool": 3892, + "pure": 4063, + "illustId": "03007_0014_00", + "evolveIllustId": "03007_0014_01" + }, + { + "id": 30080011, + "masterCharacterId": 3008, + "name": "記憶のなかのあなた", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5242, + "cool": 3847, + "pure": 4067, + "illustId": "03008_0011_00", + "evolveIllustId": "03008_0011_01" + }, + { + "id": 30090013, + "masterCharacterId": 3009, + "name": "大切なあなたへ", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4000, + "cool": 3949, + "pure": 5207, + "illustId": "03009_0013_00", + "evolveIllustId": "03009_0013_01" + }, + { + "id": 10040018, + "masterCharacterId": 1004, + "name": "愛をあなたに", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4684, + "cool": 3595, + "pure": 3359, + "illustId": "01004_0018_00", + "evolveIllustId": "01004_0018_01" + }, + { + "id": 20050016, + "masterCharacterId": 2005, + "name": "楽しむであります!", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3671, + "cool": 3289, + "pure": 4678, + "illustId": "02005_0016_00", + "evolveIllustId": "02005_0016_01" + }, + { + "id": 30070015, + "masterCharacterId": 3007, + "name": "行きますよー!", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3517, + "cool": 3375, + "pure": 4746, + "illustId": "03007_0015_00", + "evolveIllustId": "03007_0015_01" + }, + { + "id": 40030013, + "masterCharacterId": 4003, + "name": "準備はマルッ♪", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3531, + "cool": 4678, + "pure": 3429, + "illustId": "04003_0013_00", + "evolveIllustId": "04003_0013_01" + }, + { + "id": 10010019, + "masterCharacterId": 1001, + "name": "春らんまんっ!", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4781, + "cool": 3540, + "pure": 3340, + "illustId": "01001_0019_00", + "evolveIllustId": "01001_0019_01" + }, + { + "id": 20010017, + "masterCharacterId": 2001, + "name": "灼熱の夏浜", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3516, + "cool": 3420, + "pure": 4725, + "illustId": "02001_0017_00", + "evolveIllustId": "02001_0017_01" + }, + { + "id": 30010013, + "masterCharacterId": 3001, + "name": "秋の夜長に", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3661, + "cool": 4732, + "pure": 3268, + "illustId": "03001_0013_00", + "evolveIllustId": "03001_0013_01" + }, + { + "id": 40010013, + "masterCharacterId": 4001, + "name": "煌めく冬天", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4667, + "cool": 3454, + "pure": 3540, + "illustId": "04001_0013_00", + "evolveIllustId": "04001_0013_01" + }, + { + "id": 30010014, + "masterCharacterId": 3001, + "name": "準備はできたよ", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4781, + "cool": 3504, + "pure": 3376, + "illustId": "03001_0014_00", + "evolveIllustId": "03001_0014_01" + }, + { + "id": 30020013, + "masterCharacterId": 3002, + "name": "フォーマルかすみん", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3285, + "cool": 3628, + "pure": 4748, + "illustId": "03002_0013_00", + "evolveIllustId": "03002_0013_01" + }, + { + "id": 30030013, + "masterCharacterId": 3003, + "name": "社会人になりきります", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3368, + "cool": 4775, + "pure": 3518, + "illustId": "03003_0013_00", + "evolveIllustId": "03003_0013_01" + }, + { + "id": 30040013, + "masterCharacterId": 3004, + "name": "格好よく行きましょう", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4787, + "cool": 3458, + "pure": 3416, + "illustId": "03004_0013_00", + "evolveIllustId": "03004_0013_01" + }, + { + "id": 30050014, + "masterCharacterId": 3005, + "name": "部下を選『ぶか』!", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4797, + "cool": 3422, + "pure": 3442, + "illustId": "03005_0014_00", + "evolveIllustId": "03005_0014_01" + }, + { + "id": 30060012, + "masterCharacterId": 3006, + "name": "すやぴの前の一仕事", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3405, + "cool": 4746, + "pure": 3510, + "illustId": "03006_0012_00", + "evolveIllustId": "03006_0012_01" + }, + { + "id": 30070016, + "masterCharacterId": 3007, + "name": "ビシッと行きましょう", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3556, + "cool": 4792, + "pure": 3313, + "illustId": "03007_0016_00", + "evolveIllustId": "03007_0016_01" + }, + { + "id": 30080012, + "masterCharacterId": 3008, + "name": "キマってるかな?", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3563, + "cool": 3352, + "pure": 4746, + "illustId": "03008_0012_00", + "evolveIllustId": "03008_0012_01" + }, + { + "id": 30090014, + "masterCharacterId": 3009, + "name": "いつもと違う感覚", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3414, + "cool": 4742, + "pure": 3505, + "illustId": "03009_0014_00", + "evolveIllustId": "03009_0014_01" + }, + { + "id": 30100012, + "masterCharacterId": 3010, + "name": "さあ、お仕事です♪", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3465, + "cool": 4781, + "pure": 3415, + "illustId": "03010_0012_00", + "evolveIllustId": "03010_0012_01" + }, + { + "id": 30110012, + "masterCharacterId": 3011, + "name": "行くよベイビーちゃん", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3549, + "cool": 3317, + "pure": 4795, + "illustId": "03011_0012_00", + "evolveIllustId": "03011_0012_01" + }, + { + "id": 30120012, + "masterCharacterId": 3012, + "name": "ランジュが上司よ!", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3562, + "cool": 3308, + "pure": 4791, + "illustId": "03012_0012_00", + "evolveIllustId": "03012_0012_01" + }, + { + "id": 40100001, + "masterCharacterId": 4010, + "name": "圧倒的音楽センス", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4732, + "cool": 3467, + "pure": 3485, + "illustId": "04010_0001_00", + "evolveIllustId": "04010_0001_01" + }, + { + "id": 40110001, + "masterCharacterId": 4011, + "name": "シビアに分析", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4687, + "cool": 3307, + "pure": 3690, + "illustId": "04011_0001_00", + "evolveIllustId": "04011_0001_01" + }, + { + "id": 10040019, + "masterCharacterId": 1004, + "name": "µ'sのクリスマス", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4109, + "cool": 3725, + "pure": 5478, + "illustId": "01004_0019_00", + "evolveIllustId": "01004_0019_01" + }, + { + "id": 10090018, + "masterCharacterId": 1009, + "name": "ごちそう準備中", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3756, + "cool": 4082, + "pure": 5474, + "illustId": "01009_0018_00", + "evolveIllustId": "01009_0018_01" + }, + { + "id": 10010020, + "masterCharacterId": 1001, + "name": "冬の星は木の上に", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4220, + "cool": 4016, + "pure": 5076, + "illustId": "01001_0020_00", + "evolveIllustId": "01001_0020_01" + }, + { + "id": 40010014, + "masterCharacterId": 4001, + "name": "ふたりでポーズ", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4018, + "cool": 3812, + "pure": 5482, + "illustId": "04001_0014_00", + "evolveIllustId": "04001_0014_01" + }, + { + "id": 40020012, + "masterCharacterId": 4002, + "name": "雪と氷のツリー", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3871, + "cool": 3958, + "pure": 5483, + "illustId": "04002_0012_00", + "evolveIllustId": "04002_0012_01" + }, + { + "id": 40080011, + "masterCharacterId": 4008, + "name": "太古の世界から", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4051, + "cool": 4223, + "pure": 5038, + "illustId": "04008_0011_00", + "evolveIllustId": "04008_0011_01" + }, + { + "id": 30110013, + "masterCharacterId": 3011, + "name": "憧れの選手が日本に!", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4033, + "cool": 5484, + "pure": 3795, + "illustId": "03011_0013_00", + "evolveIllustId": "03011_0013_01" + }, + { + "id": 30060013, + "masterCharacterId": 3006, + "name": "抗えないこたつの魅力", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5486, + "cool": 3992, + "pure": 3834, + "illustId": "03006_0013_00", + "evolveIllustId": "03006_0013_01" + }, + { + "id": 40110002, + "masterCharacterId": 4011, + "name": "Jellyfish", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3953, + "cool": 5489, + "pure": 3870, + "illustId": "04011_0002_00", + "evolveIllustId": "04011_0002_01" + }, + { + "id": 30100013, + "masterCharacterId": 3010, + "name": "私の印", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3840, + "cool": 4110, + "pure": 5206, + "illustId": "03010_0013_00", + "evolveIllustId": "03010_0013_01" + }, + { + "id": 30110014, + "masterCharacterId": 3011, + "name": "高鳴る気持ち", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5227, + "cool": 4162, + "pure": 3767, + "illustId": "03011_0014_00", + "evolveIllustId": "03011_0014_01" + }, + { + "id": 30120013, + "masterCharacterId": 3012, + "name": "最高の恋しましょ!", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3957, + "cool": 5205, + "pure": 3994, + "illustId": "03012_0013_00", + "evolveIllustId": "03012_0013_01" + }, + { + "id": 60010001, + "masterCharacterId": 6001, + "name": "占い屋の少女", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3545, + "cool": 3296, + "pure": 4843, + "illustId": "06001_0001_00", + "evolveIllustId": "06001_0001_01" + }, + { + "id": 60020001, + "masterCharacterId": 6002, + "name": "屋台の売り子", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4992, + "cool": 3395, + "pure": 3297, + "illustId": "06002_0001_00", + "evolveIllustId": "06002_0001_01" + }, + { + "id": 60030001, + "masterCharacterId": 6003, + "name": "執務長官", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3463, + "cool": 4974, + "pure": 3247, + "illustId": "06003_0001_00", + "evolveIllustId": "06003_0001_01" + }, + { + "id": 60040001, + "masterCharacterId": 6004, + "name": "妖精族の末裔", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3335, + "cool": 3714, + "pure": 4635, + "illustId": "06004_0001_00", + "evolveIllustId": "06004_0001_01" + }, + { + "id": 60050001, + "masterCharacterId": 6005, + "name": "老舗旅館の看板娘", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4631, + "cool": 3453, + "pure": 3600, + "illustId": "06005_0001_00", + "evolveIllustId": "06005_0001_01" + }, + { + "id": 60060001, + "masterCharacterId": 6006, + "name": "メッセンジャー", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3527, + "cool": 4762, + "pure": 3395, + "illustId": "06006_0001_00", + "evolveIllustId": "06006_0001_01" + }, + { + "id": 60070001, + "masterCharacterId": 6007, + "name": "メカニック", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3466, + "cool": 3455, + "pure": 4763, + "illustId": "06007_0001_00", + "evolveIllustId": "06007_0001_01" + }, + { + "id": 60080001, + "masterCharacterId": 6008, + "name": "動物学者", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4824, + "cool": 3466, + "pure": 3394, + "illustId": "06008_0001_00", + "evolveIllustId": "06008_0001_01" + }, + { + "id": 60090001, + "masterCharacterId": 6009, + "name": "魔王の末裔", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3710, + "cool": 4628, + "pure": 3346, + "illustId": "06009_0001_00", + "evolveIllustId": "06009_0001_01" + }, + { + "id": 20010018, + "masterCharacterId": 2001, + "name": "にぎやかな街!", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4602, + "cool": 3530, + "pure": 3552, + "illustId": "02001_0018_00", + "evolveIllustId": "02001_0018_01" + }, + { + "id": 30010015, + "masterCharacterId": 3001, + "name": "新たなステージへ", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3574, + "cool": 3432, + "pure": 4678, + "illustId": "03001_0015_00", + "evolveIllustId": "03001_0015_01" + }, + { + "id": 40010015, + "masterCharacterId": 4001, + "name": "出会いの予感", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3436, + "cool": 4683, + "pure": 3565, + "illustId": "04001_0015_00", + "evolveIllustId": "04001_0015_01" + }, + { + "id": 20050017, + "masterCharacterId": 2005, + "name": "おせちと特製シャイ煮", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5527, + "cool": 4126, + "pure": 3737, + "illustId": "02005_0017_00", + "evolveIllustId": "02005_0017_01" + }, + { + "id": 20090016, + "masterCharacterId": 2009, + "name": "ペンギンさんたちと♡", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5529, + "cool": 3779, + "pure": 4082, + "illustId": "02009_0016_00", + "evolveIllustId": "02009_0016_01" + }, + { + "id": 20010019, + "masterCharacterId": 2001, + "name": "海で眺める初日の出", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5061, + "cool": 4288, + "pure": 4041, + "illustId": "02001_0019_00", + "evolveIllustId": "02001_0019_01" + }, + { + "id": 10030018, + "masterCharacterId": 1003, + "name": "あ~ん、こけちゃった", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4001, + "cool": 5543, + "pure": 3846, + "illustId": "01003_0018_00", + "evolveIllustId": "01003_0018_01" + }, + { + "id": 10060017, + "masterCharacterId": 1006, + "name": "雪舞うリンクで", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3940, + "cool": 5506, + "pure": 3944, + "illustId": "01006_0017_00", + "evolveIllustId": "01006_0017_01" + }, + { + "id": 10050018, + "masterCharacterId": 1005, + "name": "手助けは任せるにゃ!", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4319, + "cool": 5049, + "pure": 4022, + "illustId": "01005_0018_00", + "evolveIllustId": "01005_0018_01" + }, + { + "id": 20040016, + "masterCharacterId": 2004, + "name": "絵馬に記す願いは", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4134, + "cool": 3756, + "pure": 5500, + "illustId": "02004_0016_00", + "evolveIllustId": "02004_0016_01" + }, + { + "id": 10080017, + "masterCharacterId": 1008, + "name": "高まる理由はひとつ", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5527, + "cool": 4042, + "pure": 3821, + "illustId": "01008_0017_00", + "evolveIllustId": "01008_0017_01" + }, + { + "id": 40100002, + "masterCharacterId": 4010, + "name": "デュエット", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3878, + "cool": 3965, + "pure": 5547, + "illustId": "04010_0002_00", + "evolveIllustId": "04010_0002_01" + }, + { + "id": 30020014, + "masterCharacterId": 3002, + "name": "メイクアップかすみん", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3955, + "cool": 5536, + "pure": 3899, + "illustId": "03002_0014_00", + "evolveIllustId": "03002_0014_01" + }, + { + "id": 30030014, + "masterCharacterId": 3003, + "name": "オフィーリアと協力♪", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3838, + "cool": 4052, + "pure": 5578, + "illustId": "03003_0014_00", + "evolveIllustId": "03003_0014_01" + }, + { + "id": 30040014, + "masterCharacterId": 3004, + "name": "チョコレート試作中", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3995, + "cool": 3912, + "pure": 5561, + "illustId": "03004_0014_00", + "evolveIllustId": "03004_0014_01" + }, + { + "id": 30010017, + "masterCharacterId": 3001, + "name": "あ~んして♡", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4347, + "cool": 4019, + "pure": 5102, + "illustId": "03001_0017_00", + "evolveIllustId": "03001_0017_01" + }, + { + "id": 20020016, + "masterCharacterId": 2002, + "name": "鬼のお面を手作りして", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3920, + "cool": 3976, + "pure": 5572, + "illustId": "02002_0016_00", + "evolveIllustId": "02002_0016_01" + }, + { + "id": 20060016, + "masterCharacterId": 2006, + "name": "強力すぎる鬼は外", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3916, + "cool": 3965, + "pure": 5587, + "illustId": "02006_0016_00", + "evolveIllustId": "02006_0016_01" + }, + { + "id": 20080016, + "masterCharacterId": 2008, + "name": "超豪華恵方巻", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4343, + "cool": 4006, + "pure": 5119, + "illustId": "02008_0016_00", + "evolveIllustId": "02008_0016_01" + }, + { + "id": 30080014, + "masterCharacterId": 3008, + "name": "パンならいくらでも♡", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 3770, + "cool": 4122, + "pure": 5576, + "illustId": "03008_0014_00", + "evolveIllustId": "03008_0014_01" + }, + { + "id": 20030016, + "masterCharacterId": 2003, + "name": "特別なティータイム", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3988, + "cool": 5577, + "pure": 3903, + "illustId": "02003_0016_00", + "evolveIllustId": "02003_0016_01" + }, + { + "id": 30120014, + "masterCharacterId": 3012, + "name": "空中ブランコに乗って", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4116, + "cool": 3787, + "pure": 5565, + "illustId": "03012_0014_00", + "evolveIllustId": "03012_0014_01" + }, + { + "id": 40030014, + "masterCharacterId": 4003, + "name": "マルをめぐった一日", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4020, + "cool": 5587, + "pure": 3861, + "illustId": "04003_0014_00", + "evolveIllustId": "04003_0014_01" + }, + { + "id": 40010016, + "masterCharacterId": 4001, + "name": "お待ちどおさま♪", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 5022, + "cool": 3351, + "pure": 3357, + "illustId": "04001_0016_00", + "evolveIllustId": "04001_0016_01" + }, + { + "id": 40020014, + "masterCharacterId": 4002, + "name": "クッキングデス!", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3446, + "cool": 4969, + "pure": 3315, + "illustId": "04002_0014_00", + "evolveIllustId": "04002_0014_01" + }, + { + "id": 40030015, + "masterCharacterId": 4003, + "name": "ひとくち食べちゃえ", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3448, + "cool": 3279, + "pure": 5003, + "illustId": "04003_0015_00", + "evolveIllustId": "04003_0015_01" + }, + { + "id": 40040012, + "masterCharacterId": 4004, + "name": "あ~んがお望み?", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 5019, + "cool": 3354, + "pure": 3357, + "illustId": "04004_0012_00", + "evolveIllustId": "04004_0012_01" + }, + { + "id": 40050012, + "masterCharacterId": 4005, + "name": "はい、どうぞ♪", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3239, + "cool": 3489, + "pure": 5002, + "illustId": "04005_0012_00", + "evolveIllustId": "04005_0012_01" + }, + { + "id": 40060012, + "masterCharacterId": 4006, + "name": "ほっぺた落ちそうっす", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4959, + "cool": 3402, + "pure": 3369, + "illustId": "04006_0012_00", + "evolveIllustId": "04006_0012_01" + }, + { + "id": 40070012, + "masterCharacterId": 4007, + "name": "美味しくできたぞ", + "type": 1, + "rarity": 2, + "hp": 3, + "smile": 4995, + "cool": 3298, + "pure": 3437, + "illustId": "04007_0012_00", + "evolveIllustId": "04007_0012_01" + }, + { + "id": 40080013, + "masterCharacterId": 4008, + "name": "試食挑戦者募集中", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3376, + "cool": 4980, + "pure": 3374, + "illustId": "04008_0013_00", + "evolveIllustId": "04008_0013_01" + }, + { + "id": 40090013, + "masterCharacterId": 4009, + "name": "特製スムージーですの", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3419, + "cool": 3333, + "pure": 4978, + "illustId": "04009_0013_00", + "evolveIllustId": "04009_0013_01" + }, + { + "id": 40100003, + "masterCharacterId": 4010, + "name": "気持ちを込めるわ", + "type": 3, + "rarity": 2, + "hp": 3, + "smile": 3357, + "cool": 5016, + "pure": 3357, + "illustId": "04010_0003_00", + "evolveIllustId": "04010_0003_01" + }, + { + "id": 40110003, + "masterCharacterId": 4011, + "name": "効率的に調理完了", + "type": 2, + "rarity": 2, + "hp": 3, + "smile": 3442, + "cool": 3270, + "pure": 5018, + "illustId": "04011_0003_00", + "evolveIllustId": "04011_0003_01" + }, + { + "id": 40050013, + "masterCharacterId": 4005, + "name": "ありがとうの気持ちを", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3954, + "cool": 5607, + "pure": 3985, + "illustId": "04005_0013_00", + "evolveIllustId": "04005_0013_01" + }, + { + "id": 40070013, + "masterCharacterId": 4007, + "name": "先輩達への差し入れ", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3780, + "cool": 5610, + "pure": 4156, + "illustId": "04007_0013_00", + "evolveIllustId": "04007_0013_01" + }, + { + "id": 40040013, + "masterCharacterId": 4004, + "name": "素直になれなくて", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4018, + "cool": 5149, + "pure": 4379, + "illustId": "04004_0013_00", + "evolveIllustId": "04004_0013_01" + }, + { + "id": 30010018, + "masterCharacterId": 3001, + "name": "生け花に挑戦!", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5610, + "cool": 4010, + "pure": 3926, + "illustId": "03001_0018_00", + "evolveIllustId": "03001_0018_01" + }, + { + "id": 20070016, + "masterCharacterId": 2007, + "name": "感動!VR体験", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4100, + "cool": 3852, + "pure": 5594, + "illustId": "02007_0016_00", + "evolveIllustId": "02007_0016_01" + }, + { + "id": 10040020, + "masterCharacterId": 1004, + "name": "縁側にこぼれる微笑", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 3967, + "cool": 5594, + "pure": 3985, + "illustId": "01004_0020_00", + "evolveIllustId": "01004_0020_01" + }, + { + "id": 30030015, + "masterCharacterId": 3003, + "name": "ふたりはヒーロー☆", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4075, + "cool": 5591, + "pure": 3880, + "illustId": "03003_0015_00", + "evolveIllustId": "03003_0015_01" + }, + { + "id": 40060013, + "masterCharacterId": 4006, + "name": "東京フライドポテト", + "type": 3, + "rarity": 3, + "hp": 4, + "smile": 4036, + "cool": 5602, + "pure": 3908, + "illustId": "04006_0013_00", + "evolveIllustId": "04006_0013_01" + }, + { + "id": 20050019, + "masterCharacterId": 2005, + "name": "思い出の場所で再撮影", + "type": 2, + "rarity": 3, + "hp": 4, + "smile": 4045, + "cool": 3882, + "pure": 5619, + "illustId": "02005_0019_00", + "evolveIllustId": "02005_0019_01" + }, + { + "id": 10060018, + "masterCharacterId": 1006, + "name": "春の天体観測", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5599, + "cool": 3940, + "pure": 4007, + "illustId": "01006_0018_00", + "evolveIllustId": "01006_0018_01" + }, + { + "id": 10020018, + "masterCharacterId": 1002, + "name": "エガオ、エイエン", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5150, + "cool": 4243, + "pure": 4075, + "illustId": "01002_0018_00", + "evolveIllustId": "01002_0018_01" + }, + { + "id": 20060017, + "masterCharacterId": 2006, + "name": "どうしよう!?", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5118, + "cool": 4096, + "pure": 4254, + "illustId": "02006_0017_00", + "evolveIllustId": "02006_0017_01" + }, + { + "id": 30010019, + "masterCharacterId": 3001, + "name": "近くにいてくれない?", + "type": 1, + "rarity": 3, + "hp": 4, + "smile": 5114, + "cool": 4065, + "pure": 4289, + "illustId": "03001_0019_00", + "evolveIllustId": "03001_0019_01" + } +] \ No newline at end of file diff --git a/src/main/resources/gamerch.json b/src/main/resources/gamerch.json new file mode 100644 index 0000000..54c0e87 --- /dev/null +++ b/src/main/resources/gamerch.json @@ -0,0 +1,2887 @@ +[ + { + "url": "https://gamerch.com/lovelivesif2/767609", + "name": "[Aquoursと申しますわ!]黒澤ダイヤ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/808800", + "name": "[FULL COMBO!!]天王寺璃奈", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/817657", + "name": "[Jellyfish]鬼塚冬毬", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767394", + "name": "[NewYorker]ミア・テイラー", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/765430", + "name": "[ring finger]松浦果南", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766315", + "name": "[μ'sの元気印]星空凛", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/758859", + "name": "[μ’sと私]矢澤にこ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/811888", + "name": "[μ’sのクリスマス]園田海未", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748012", + "name": "[μ’sへの想い]小泉花陽", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767969", + "name": "[……応援よろしく]米女メイ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/762994", + "name": "[♡のサイン]南ことり", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/802433", + "name": "[『大好き』を伝えたい!]優木せつ菜", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/802828", + "name": "[あざとくキメちゃう]桜坂しずく", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/800699", + "name": "[あなたとどこまでも]園田海未", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/800427", + "name": "[あなたを見つめる]上原歩夢", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748013", + "name": "[ありがた~い講義]矢澤にこ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/831311", + "name": "[ありがとうの気持ちを]葉月恋", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/820400", + "name": "[あ~ん、こけちゃった]南ことり", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/823796", + "name": "[あ~んがお望み?]平安名すみれ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/823556", + "name": "[あ~んして♡]上原歩夢", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767431", + "name": "[いい汗かいたね]桜内梨子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/762995", + "name": "[いっくよー!]南ことり", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766310", + "name": "[いつでも明るく]星空凛", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/819780", + "name": "[いつもと違う感覚]天王寺璃奈", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748007", + "name": "[いらっしゃませ♪]南ことり", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767361", + "name": "[うさぎさんがご案内]近江彼方", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767818", + "name": "[おうちでおめかし]唐可可", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766237", + "name": "[おうちでまったり]若菜四季", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767847", + "name": "[おうちでカンパイ☆]平安名すみれ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767831", + "name": "[おうちでサプライズ]嵐千砂都", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767970", + "name": "[おうちでパーティ]米女メイ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767883", + "name": "[おうちで休憩]桜小路きな子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767810", + "name": "[おうちで唄おう]澁谷かのん", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767859", + "name": "[おうちを飾り付け]葉月恋", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/818424", + "name": "[おせちと特製シャイ煮]渡辺曜", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767367", + "name": "[おっとりマイペース]エマ・ヴェルデ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766194", + "name": "[おっとり柔らか]南ことり", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/805705", + "name": "[おつかれさま会]嵐千砂都", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766017", + "name": "[おでかけおめかし]南ことり", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766279", + "name": "[おでかけするわ!]絢瀬絵里", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766488", + "name": "[おでかけわくわく]小泉花陽", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766455", + "name": "[おでかけ日和]東條希", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766262", + "name": "[おでかけ笑顔]高坂穂乃果", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/748022", + "name": "[おねぼうさん]黒澤ルビィ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766022", + "name": "[おねむな時間]南ことり", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766299", + "name": "[おやすみの挨拶]園田海未", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766386", + "name": "[おやすみ準備]星空凛", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766264", + "name": "[おやすみ笑顔]高坂穂乃果", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/802312", + "name": "[お化け屋敷]松浦果南", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767801", + "name": "[お姉ちゃん待ち]黒澤ルビィ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766420", + "name": "[お嬢様のおでかけ]西木野真姫", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767869", + "name": "[お嬢様]葉月恋", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767745", + "name": "[お寺の娘]国木田花丸", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766513", + "name": "[お待たせ♪]矢澤にこ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/823793", + "name": "[お待ちどおさま♪]澁谷かのん", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748039", + "name": "[お散歩役員のお世話]天王寺璃奈", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/802432", + "name": "[お昼寝ライブ]近江彼方", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767440", + "name": "[お注射の時間]桜内梨子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/765446", + "name": "[お花がポイント]黒澤ルビィ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767217", + "name": "[お茶会でひとやすみ]桜坂しずく", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766228", + "name": "[お邪魔しまっす♪]渡辺曜", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767370", + "name": "[かき氷の清涼感]エマ・ヴェルデ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767209", + "name": "[かすみん♡]中須かすみ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767211", + "name": "[かすみんと探そっ♪]中須かすみ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766638", + "name": "[かわいい仕草]矢澤にこ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767196", + "name": "[がんばるにこ!]矢澤にこ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766313", + "name": "[きまぐれにゃんこ]星空凛", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748009", + "name": "[きらめく屋上]星空凛", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766713", + "name": "[ぎゅっと抱きしめて]矢澤にこ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/750188", + "name": "[くるくるアイス]唐可可", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766188", + "name": "[ことりと遊ぼう♪]南ことり", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/774093", + "name": "[この海が大好き]松浦果南", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/811890", + "name": "[ごちそう準備中]矢澤にこ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766491", + "name": "[ご注文のお品物です♪]小泉花陽", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/819782", + "name": "[さあ、お仕事です♪]三船栞子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767214", + "name": "[しっかり者]桜坂しずく", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767200", + "name": "[しとやかに]上原歩夢", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767400", + "name": "[しゅわっとラムネ]ミア・テイラー", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/819777", + "name": "[すやぴの前の一仕事]近江彼方", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767365", + "name": "[すやぴー……]近江彼方", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/807251", + "name": "[ずっとあなたのことを]近江彼方", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767383", + "name": "[そよぐ花萌葱]三船栞子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767463", + "name": "[たくさん遊ぼう]桜内梨子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767825", + "name": "[たこ焼き食べる?]嵐千砂都", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766450", + "name": "[たぬき寝入り♪]東條希", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766251", + "name": "[たべちゃうぞ?]高坂穂乃果", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767231", + "name": "[たまにはキュートに]朝香果林", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767856", + "name": "[たゆまぬ努力]葉月恋", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767807", + "name": "[ちょっぴりシャイでも]澁谷かのん", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/826091", + "name": "[どうしよう!?]津島善子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767613", + "name": "[どこまで遠出を?]黒澤ダイヤ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766649", + "name": "[にこは人気者]矢澤にこ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766711", + "name": "[にっこにっこにー]矢澤にこ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766441", + "name": "[のほほんとして]東條希", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/823799", + "name": "[はい、どうぞ♪]葉月恋", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767356", + "name": "[はじける笑顔と水風船]宮下愛", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/762991", + "name": "[ひつじのきもち]南ことり", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/764591", + "name": "[ひとくちどうぞ]桜内梨子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/823795", + "name": "[ひとくち食べちゃえ]嵐千砂都", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766495", + "name": "[ひとりじゃ寂しい]小泉花陽", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/815193", + "name": "[ふたりでポーズ]澁谷かのん", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/805691", + "name": "[ふたりで楽しく]宮下愛", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/836583", + "name": "[ふたりはヒーロー☆]桜坂しずく", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/823800", + "name": "[ほっぺた落ちそうっす]桜小路きな子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766438", + "name": "[まぶしい光]東條希", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766484", + "name": "[まるごとみかん]小泉花陽", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/777220", + "name": "[まるでハリウッドスター]平安名すみれ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767416", + "name": "[みかんパワー!]高海千歌", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767865", + "name": "[みなさんの模範に]葉月恋", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/809062", + "name": "[みんなに伝えるラブ]優木せつ菜", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767391", + "name": "[みんなのために]三船栞子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766510", + "name": "[みんなのニコニー]矢澤にこ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766291", + "name": "[みんなの人気者]絢瀬絵里", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767583", + "name": "[みんなの力に]桜内梨子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767236", + "name": "[みんなの太陽]宮下愛", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767373", + "name": "[みんなの支え]エマ・ヴェルデ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767812", + "name": "[みんなを元気に]澁谷かのん", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767972", + "name": "[やってみたい]米女メイ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767424", + "name": "[やってみなくちゃ]高海千歌", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767376", + "name": "[やりたいこと]天王寺璃奈", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767862", + "name": "[ゆるリラコーデ]葉月恋", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766387", + "name": "[よろしくにゃ♪]星空凛", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/765429", + "name": "[りんごの誘惑]桜内梨子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766482", + "name": "[アイドルへの憧れ]小泉花陽", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766644", + "name": "[アイドルオタク]矢澤にこ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767803", + "name": "[アイドル目指して]黒澤ルビィ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766440", + "name": "[アタックしちゃうぞ]東條希", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766208", + "name": "[アツいココロ]優木せつ菜", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/788044", + "name": "[アニカラパーティー]優木せつ菜", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748020", + "name": "[アフターランチ]国木田花丸", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767201", + "name": "[イースターの兎さん♡]上原歩夢", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767379", + "name": "[イースターバルーン]天王寺璃奈", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/826090", + "name": "[エガオ、エイエン]絢瀬絵里", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767396", + "name": "[エッグはどこに?]ミア・テイラー", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766203", + "name": "[エッグ発見♪]優木せつ菜", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766284", + "name": "[エリーの懺悔室]絢瀬絵里", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748056", + "name": "[オニナッツ生配信中!]鬼塚夏美", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/823426", + "name": "[オフィーリアと協力♪]桜坂しずく", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767740", + "name": "[オラも頑張る]国木田花丸", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/765426", + "name": "[オレンジマーメイド]高海千歌", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767879", + "name": "[ガーリーと合わせて]桜小路きな子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/819779", + "name": "[キマってるかな?]エマ・ヴェルデ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767881", + "name": "[キラキラを目指して]桜小路きな子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/765422", + "name": "[キラキラリップ]小泉花陽", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767846", + "name": "[ギャラクシー!]平安名すみれ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766280", + "name": "[クォーター]絢瀬絵里", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/748034", + "name": "[クオリティの追求]朝香果林", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/823794", + "name": "[クッキングデス!]唐可可", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/773584", + "name": "[クワガタケーキ]若菜四季", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767966", + "name": "[クールにおめかし]米女メイ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/802430", + "name": "[クールビューティ]朝香果林", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767414", + "name": "[コアラの眠り]高海千歌", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748054", + "name": "[コンプリート目前]米女メイ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766021", + "name": "[コートを駆け抜けて]南ことり", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/802298", + "name": "[サカサマ世界]黒澤ダイヤ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/781556", + "name": "[サニパサプライズ]唐可可", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767340", + "name": "[サプライズBBQ]宮下愛", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/799972", + "name": "[サプライズハロウィン]ミア・テイラー", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/765420", + "name": "[サプライズ希望☆]東條希", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767602", + "name": "[サーフィンもお手の物]松浦果南", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/774095", + "name": "[シェルフロート]黒澤ダイヤ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/815200", + "name": "[シビアに分析]鬼塚冬毬", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767784", + "name": "[シャイニー☆]小原鞠莉", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767850", + "name": "[ショウビズ精神]平安名すみれ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767604", + "name": "[ショップの手伝い]松浦果南", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767438", + "name": "[ショーの相棒]桜内梨子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767849", + "name": "[ジョーカー的存在]平安名すみれ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/765423", + "name": "[スイカケーキ?]矢澤にこ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767366", + "name": "[スイスの空気]エマ・ヴェルデ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/794697", + "name": "[ススキのさざなみ]渡辺曜", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767233", + "name": "[ストイックに]朝香果林", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766395", + "name": "[ストレッチから]西木野真姫", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766411", + "name": "[スパイラルを決めて]西木野真姫", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766454", + "name": "[スピリチュアルパワー]東條希", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/758849", + "name": "[スポーツドリンク]高坂穂乃果", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766260", + "name": "[スマッシュするよ]高坂穂乃果", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/748010", + "name": "[スマホ越しのはにかみ]西木野真姫", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/781204", + "name": "[スライダープール]三船栞子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766378", + "name": "[タイムを競う]星空凛", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767839", + "name": "[ダンス担当]嵐千砂都", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/748035", + "name": "[チェンジオブペース]宮下愛", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767789", + "name": "[チャオ♪]小原鞠莉", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/823428", + "name": "[チョコレート試作中]朝香果林", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/821258", + "name": "[デュエット]ウィーン・マルガレーテ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748015", + "name": "[トリオの旋律]桜内梨子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/786473", + "name": "[ノリノリサーフィン]星空凛", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766298", + "name": "[ハイカーのやまびこ]園田海未", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767354", + "name": "[ハッピーイースター]宮下愛", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766286", + "name": "[ハラショー♪]絢瀬絵里", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/799973", + "name": "[ハロウィンアフタヌーン]鐘嵐珠", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/786642", + "name": "[バスに揺られて]高海千歌", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767407", + "name": "[パリパリりんご飴]鐘嵐珠", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767815", + "name": "[パワフルな情熱家]唐可可", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/825319", + "name": "[パンならいくらでも♡]エマ・ヴェルデ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/799974", + "name": "[ヒミツの計画]桜坂しずく", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/819778", + "name": "[ビシッと行きましょう]優木せつ菜", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/786523", + "name": "[ビーチフラッグ]園田海未", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/802435", + "name": "[ファンとのコネクト]天王寺璃奈", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/819741", + "name": "[フォーマルかすみん]中須かすみ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/802300", + "name": "[フラワーパーク]国木田花丸", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/765445", + "name": "[フルーツカーニバル♪]小原鞠莉", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767405", + "name": "[フルーツサンド]鐘嵐珠", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/765419", + "name": "[フルーツティー]西木野真姫", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767415", + "name": "[ブラッシングタイム!]高海千歌", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/803657", + "name": "[ヘアアレンジ]絢瀬絵里", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767212", + "name": "[ヘルシーキュート]中須かすみ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/818425", + "name": "[ペンギンさんたちと♡]黒澤ルビィ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767402", + "name": "[ボクの曲]ミア・テイラー", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767629", + "name": "[ボールを四角く]国木田花丸", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766276", + "name": "[ポジティブ]高坂穂乃果", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767360", + "name": "[マイペース]近江彼方", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/768160", + "name": "[マニーの匂い]鬼塚夏美", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767778", + "name": "[マリーとおでかけ]小原鞠莉", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/828676", + "name": "[マルをめぐった一日]嵐千砂都", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748072", + "name": "[ミラクルライブ☆]高海千歌", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/750515", + "name": "[ミラクルライブ♡]上原歩夢", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/759355", + "name": "[ミラクルライブ♪]澁谷かのん", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748073", + "name": "[ミラクルライブ!]高坂穂乃果", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766234", + "name": "[メイと共に]若菜四季", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/792101", + "name": "[メイのための百発百中]若菜四季", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/822123", + "name": "[メイクアップかすみん]中須かすみ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/814870", + "name": "[メカニック]カナン", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/764589", + "name": "[メガネ試着中]高海千歌", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/814869", + "name": "[メッセンジャー]ヨウ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/799361", + "name": "[メロンにめろめろ♡]平安名すみれ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767627", + "name": "[ヨハネ見参!]津島善子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766232", + "name": "[ヨーソロー!]渡辺曜", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/759120", + "name": "[ライスフルーツ!?]高坂穂乃果", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748043", + "name": "[ライバルで仲間]鐘嵐珠", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767814", + "name": "[ラフにキメて☆]唐可可", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766296", + "name": "[ラブバインド]園田海未", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/819784", + "name": "[ランジュが上司よ!]鐘嵐珠", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767753", + "name": "[リゾートコーデ]小原鞠莉", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767797", + "name": "[ルビィの勇気]黒澤ルビィ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/770400", + "name": "[レイニーバースデイ]東條希", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748025", + "name": "[レインボーコッペパン]中須かすみ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/750187", + "name": "[レクチャーしますの]鬼塚夏美", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766307", + "name": "[レッツハイキング]星空凛", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/815223", + "name": "[一念天に通ず]平安名すみれ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766243", + "name": "[一枚でもサマに]若菜四季", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767205", + "name": "[一歩ずつ]上原歩夢", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/815229", + "name": "[一生懸命]米女メイ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767820", + "name": "[一直線!]唐可可", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767582", + "name": "[一緒に楽しもう♪]桜内梨子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766266", + "name": "[一緒に歌おう]高坂穂乃果", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767827", + "name": "[一緒に踊ろう]嵐千砂都", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/815228", + "name": "[七転び八起き]桜小路きな子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767816", + "name": "[上海出身]唐可可", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766503", + "name": "[上達したい]小泉花陽", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767765", + "name": "[下見後のすやぴ]近江彼方", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766483", + "name": "[不思議なシンパシー]小泉花陽", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748051", + "name": "[両腕いっぱい]平安名すみれ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767838", + "name": "[丸いものラブ]嵐千砂都", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767780", + "name": "[乗馬のレッスン]小原鞠莉", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/796373", + "name": "[二人でコスプリ♡]南ことり", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/759318", + "name": "[亜里沙のイタズラ?]絢瀬絵里", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766501", + "name": "[人見知り]小泉花陽", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766444", + "name": "[今から練習♪]東條希", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767624", + "name": "[仮の姿よ!]津島善子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/781203", + "name": "[休憩はプールサイドで]上原歩夢", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767742", + "name": "[休日は図書館へ]国木田花丸", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766391", + "name": "[体育会系]星空凛", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767409", + "name": "[何でもできる]鐘嵐珠", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767598", + "name": "[何度でも頑張ろう♪]松浦果南", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/797215", + "name": "[何皿食べちゃう?]小泉花陽", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767614", + "name": "[優勝目指して]黒澤ダイヤ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767872", + "name": "[優等生]葉月恋", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766275", + "name": "[元気が取り柄]高坂穂乃果", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766309", + "name": "[元気にジャンプ☆]星空凛", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/750235", + "name": "[元気出して♪]嵐千砂都", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748049", + "name": "[先輩のステップ]嵐千砂都", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/831313", + "name": "[先輩達への差し入れ]米女メイ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/802416", + "name": "[共に歩んだ先に]上原歩夢", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767750", + "name": "[内浦が一番♪]小原鞠莉", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767611", + "name": "[内浦に射す光]黒澤ダイヤ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767633", + "name": "[内浦の浅瀬で]国木田花丸", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/811891", + "name": "[冬の星は木の上に]高坂穂乃果", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766248", + "name": "[冷静沈着ミステリアス]若菜四季", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766305", + "name": "[凛として]園田海未", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766314", + "name": "[凛をご覧下さいにゃ♪]星空凛", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767585", + "name": "[出かけようか]松浦果南", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/813862", + "name": "[出会いの予感]澁谷かのん", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767798", + "name": "[出来るもんっ]黒澤ルビィ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/759321", + "name": "[初めての手作りチョコ]星空凛", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/815226", + "name": "[初心忘るべからず]葉月恋", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/774104", + "name": "[割れないスイカ]黒澤ルビィ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767358", + "name": "[助っ人]宮下愛", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766714", + "name": "[努力なら任せなさい]矢澤にこ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767384", + "name": "[努力を重ねて]三船栞子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767204", + "name": "[努力家]上原歩夢", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/823806", + "name": "[効率的に調理完了]鬼塚冬毬", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/814871", + "name": "[動物学者]リコ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767874", + "name": "[北の大地から]桜小路きな子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766216", + "name": "[千歌ちゃんのみかん]渡辺曜", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767389", + "name": "[半日陰で咲く]三船栞子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766468", + "name": "[占いの力]東條希", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/814856", + "name": "[占い屋の少女]ヨハネ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767842", + "name": "[厚底で往く!]平安名すみれ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767811", + "name": "[原宿に繰り出そう]澁谷かのん", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766304", + "name": "[厳しい練習]園田海未", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767369", + "name": "[可愛い卵見つけたよ]エマ・ヴェルデ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/805838", + "name": "[可愛い贈り物たち]星空凛", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767206", + "name": "[可愛さ研究]中須かすみ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/802440", + "name": "[同好会の一員として]鐘嵐珠", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767606", + "name": "[名家の子女]黒澤ダイヤ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767357", + "name": "[向上心]宮下愛", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/764593", + "name": "[商店街グルメ食べ歩き]国木田花丸", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/815232", + "name": "[噓も方便]鬼塚夏美", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767944", + "name": "[四季と共に]米女メイ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/815197", + "name": "[圧倒的音楽センス]ウィーン・マルガレーテ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748053", + "name": "[地上230メートル]桜小路きな子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/809335", + "name": "[執事喫茶のエース]朝香果林", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/814863", + "name": "[執務長官]ダイヤ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767617", + "name": "[堕☆天]津島善子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767622", + "name": "[堕天してみない?]津島善子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/748019", + "name": "[堕天使じゃんけん]津島善子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767626", + "name": "[堕天使ヨハネ]津島善子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766210", + "name": "[変身ヒーロー]優木せつ菜", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767363", + "name": "[夏だって夢の国へ]近江彼方", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767372", + "name": "[夏の木漏れ日の下]エマ・ヴェルデ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/786471", + "name": "[夏の終わりに近づいて]南ことり", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/777219", + "name": "[夏空ビーチバレー]葉月恋", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748006", + "name": "[夕暮れの生徒会室]絢瀬絵里", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767203", + "name": "[夜空に咲く花]上原歩夢", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/792112", + "name": "[夜空に大輪の花]澁谷かのん", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/802439", + "name": "[夢に手を伸ばして]ミア・テイラー", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767386", + "name": "[夢の始まり]三船栞子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767412", + "name": "[夢は叶うよ!]高海千歌", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767599", + "name": "[大人な性格]松浦果南", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/801669", + "name": "[大人デート♡]中須かすみ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/802407", + "name": "[大冒険の幕開け]優木せつ菜", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/802406", + "name": "[大冒険へヨーソロー!]渡辺曜", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/811388", + "name": "[大切なあなたへ]天王寺璃奈", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766306", + "name": "[大和撫子]園田海未", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/748037", + "name": "[大好きを伝えたい!]優木せつ菜", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766437", + "name": "[大病院のお嬢様]西木野真姫", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/815210", + "name": "[太古の世界から]若菜四季", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766207", + "name": "[太陽の下で輝いて]優木せつ菜", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767462", + "name": "[好きなった内浦]桜内梨子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/814865", + "name": "[妖精族の末裔]ルビィ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767364", + "name": "[姉として]近江彼方", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/800700", + "name": "[姉との時間]三船栞子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748017", + "name": "[姉の日課]黒澤ダイヤ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748036", + "name": "[姉妹の食卓]近江彼方", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767607", + "name": "[完璧主義者]黒澤ダイヤ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766193", + "name": "[実はメイドさん]南ことり", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767210", + "name": "[小悪魔]中須かすみ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766311", + "name": "[屋上練習]星空凛", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/814859", + "name": "[屋台の売り子]ハナマル", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766472", + "name": "[巻き込んじゃうぞ]東條希", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/759022", + "name": "[幸せのアップルパイ]澁谷かのん", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766293", + "name": "[幸運の白うさぎ]園田海未", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/787182", + "name": "[幼馴染からの手紙]高坂穂乃果", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/826306", + "name": "[強力すぎる鬼は外]津島善子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766433", + "name": "[強気で練習]西木野真姫", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767804", + "name": "[得意の裁縫]黒澤ルビィ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767387", + "name": "[復活の象徴]三船栞子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/768016", + "name": "[心弾むおうち]鬼塚夏美", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766712", + "name": "[心身の鍛錬をして]矢澤にこ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766278", + "name": "[応援しましょ♪]絢瀬絵里", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767420", + "name": "[思いを馳せて]高海千歌", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/836582", + "name": "[思い出の場所で再撮影]渡辺曜", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/815218", + "name": "[思い立ったが吉日]唐可可", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767782", + "name": "[恐れ知らずの挑戦者]小原鞠莉", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767228", + "name": "[情熱は胸の奥に]朝香果林", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748044", + "name": "[想いを胸に]澁谷かのん", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766479", + "name": "[意外と策士]東條希", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/802431", + "name": "[愛してるよ愛だけに]宮下愛", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767761", + "name": "[愛の調剤]小原鞠莉", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/805531", + "name": "[愛をあなたに]園田海未", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/832145", + "name": "[感動!VR体験]国木田花丸", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/780667", + "name": "[感謝を込めて]津島善子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767425", + "name": "[憧れのスクールアイドル]高海千歌", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/813108", + "name": "[憧れの選手が日本に!]ミア・テイラー", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/820432", + "name": "[手助けは任せるにゃ!]星空凛", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/815321", + "name": "[抗えないこたつの魅力]近江彼方", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/805720", + "name": "[持ち前の情報収集能力]鬼塚夏美", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766302", + "name": "[撫子の微笑]園田海未", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766413", + "name": "[放課後の歌姫]西木野真姫", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748055", + "name": "[放課後の科学室]若菜四季", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766646", + "name": "[教えてあげる♪]矢澤にこ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767737", + "name": "[文学少女のお出掛け]国木田花丸", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767610", + "name": "[断固2cm!]黒澤ダイヤ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767442", + "name": "[新しい自分へ]桜内梨子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/813685", + "name": "[新たなステージへ]上原歩夢", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/758853", + "name": "[新作!動物モナカ]絢瀬絵里", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766642", + "name": "[日夜励んで]矢澤にこ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766295", + "name": "[日舞の家元]園田海未", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767906", + "name": "[明るく大らか]桜小路きな子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766422", + "name": "[明日の予定は]西木野真姫", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766448", + "name": "[明日もよろしく]東條希", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/836581", + "name": "[春の天体観測]西木野真姫", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/805842", + "name": "[春らんまんっ!]高坂穂乃果", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767619", + "name": "[暗黒魔術]津島善子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767615", + "name": "[曲がったことは許さない]黒澤ダイヤ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/815895", + "name": "[最高の恋しましょ!]鐘嵐珠", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/809314", + "name": "[有志でバンド]優木せつ菜", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/776923", + "name": "[朝からサプライズ!]朝香果林", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767359", + "name": "[朝凪のおでかけ]近江彼方", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767631", + "name": "[本は財産]国木田花丸", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/836584", + "name": "[東京フライドポテト]桜小路きな子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766432", + "name": "[果敢に意見]西木野真姫", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/819774", + "name": "[格好よく行きましょう]朝香果林", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/774676", + "name": "[梅田の街で]東條希", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767620", + "name": "[極上堕天使の応援]津島善子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/805533", + "name": "[楽しむであります!]渡辺曜", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/809313", + "name": "[模擬店ハシゴ中]宮下愛", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767588", + "name": "[機能性抜群]松浦果南", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766418", + "name": "[次の獲物はアナタ]西木野真姫", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767809", + "name": "[歌うのが好き]澁谷かのん", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767608", + "name": "[歴史のねじれ]黒澤ダイヤ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748052", + "name": "[母の残した結ヶ丘]葉月恋", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767630", + "name": "[毎日が大冒険♪]国木田花丸", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/759320", + "name": "[気持ちは一つ]園田海未", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767382", + "name": "[気持ちを繋げる]天王寺璃奈", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/823805", + "name": "[気持ちを込めるわ]ウィーン・マルガレーテ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767417", + "name": "[水泳日和]高海千歌", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767612", + "name": "[水門で待ち合わせ]黒澤ダイヤ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/815231", + "name": "[沈黙は金]若菜四季", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767793", + "name": "[泣き虫さん]黒澤ルビィ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767621", + "name": "[浜辺の堕天使]津島善子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767401", + "name": "[浴衣に挑戦]ミア・テイラー", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/781224", + "name": "[海の中で虎視眈々]中須かすみ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/818426", + "name": "[海を眺める初日の出]高海千歌", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766212", + "name": "[海水浴場へ]渡辺曜", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767197", + "name": "[涼やかに咲く花]上原歩夢", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767218", + "name": "[涼を求めて]桜坂しずく", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748042", + "name": "[渾身の作曲]ミア・テイラー", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748005", + "name": "[満開の桜]高坂穂乃果", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/804538", + "name": "[準備はできたよ]上原歩夢", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766182", + "name": "[準備はできてる!]南ことり", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/805535", + "name": "[準備はマルッ♪]嵐千砂都", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766389", + "name": "[準備万端]星空凛", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767221", + "name": "[演劇部兼部]桜坂しずく", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/805843", + "name": "[灼熱の夏浜]高海千歌", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766492", + "name": "[炊き立てご飯です♪]小泉花陽", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766254", + "name": "[炎の心]高坂穂乃果", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767404", + "name": "[無問題ラ!]鐘嵐珠", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/748008", + "name": "[無心へと]園田海未", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/765441", + "name": "[煉獄の紅焔への降臨]津島善子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/805845", + "name": "[煌めく冬天]澁谷かのん", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767747", + "name": "[熱いパッション]小原鞠莉", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766196", + "name": "[熱血真面目]優木せつ菜", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/748038", + "name": "[爽やかな木漏れ日]エマ・ヴェルデ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/826087", + "name": "[特別なティータイム]松浦果南", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/804298", + "name": "[特別な恋を探して]朝香果林", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/823804", + "name": "[特製スムージーですの]鬼塚夏美", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766223", + "name": "[犯人は、お前だ!]渡辺曜", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766283", + "name": "[狐の嫁入り]絢瀬絵里", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/765432", + "name": "[狼にご用心]黒澤ダイヤ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/750518", + "name": "[猪突猛進!]高坂穂乃果", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/805308", + "name": "[猫カフェ日和]米女メイ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767786", + "name": "[理事長]小原鞠莉", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767381", + "name": "[璃奈ちゃんうちわ]天王寺璃奈", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767375", + "name": "[璃奈ちゃんボード]天王寺璃奈", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/768056", + "name": "[甘♡辛ピース]鬼塚夏美", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/831308", + "name": "[生け花に挑戦!]上原歩夢", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766281", + "name": "[生徒会長]絢瀬絵里", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/750516", + "name": "[癒しの女神]南ことり", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/802434", + "name": "[癒しの歌を唄おう]エマ・ヴェルデ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766277", + "name": "[発起人]高坂穂乃果", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766506", + "name": "[白米大好き]小泉花陽", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766294", + "name": "[白衣でキリッと]園田海未", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/768062", + "name": "[盛り上げますの!]鬼塚夏美", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767794", + "name": "[目指せチアガールさん]黒澤ルビィ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767235", + "name": "[真夏の太陽]宮下愛", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766287", + "name": "[眠りにつく前]絢瀬絵里", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767799", + "name": "[砂浜の温度]黒澤ルビィ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/819755", + "name": "[社会人になりきります]桜坂しずく", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/797163", + "name": "[神田を往く納涼船]東條希", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/812905", + "name": "[私の印]三船栞子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767967", + "name": "[私も夢に向かって]米女メイ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/805844", + "name": "[秋の夜長に]上原歩夢", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/798060", + "name": "[秋の新作スイーツ]黒澤ルビィ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766240", + "name": "[科学部兼務]若菜四季", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766419", + "name": "[秘密の診察室]西木野真姫", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767767", + "name": "[空に響く癒しの声]エマ・ヴェルデ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/826430", + "name": "[空中ブランコに乗って]鐘嵐珠", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/815221", + "name": "[笑う門には福来る]嵐千砂都", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766258", + "name": "[笑顔全開!]高坂穂乃果", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767817", + "name": "[精一杯頑張るのデス!]唐可可", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766297", + "name": "[精神統一]園田海未", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748041", + "name": "[精進あるのみ]三船栞子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766205", + "name": "[紅絣のかざぐるま]優木せつ菜", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/797154", + "name": "[納涼の夕べ]西木野真姫", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748029", + "name": "[素の自分で]桜坂しずく", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766020", + "name": "[素敵なお菓子]南ことり", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/831315", + "name": "[素直になれなくて]平安名すみれ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767220", + "name": "[紺碧のヒロイン]桜坂しずく", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/818427", + "name": "[絵馬に記す願いは]黒澤ダイヤ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/805707", + "name": "[緊張の舞台袖]桜小路きな子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748014", + "name": "[練習帰りの談笑]高海千歌", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766250", + "name": "[練習準備!]高坂穂乃果", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/836322", + "name": "[縁側にこぼれる微笑]園田海未", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767625", + "name": "[罪深いアクマなの]津島善子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767618", + "name": "[罪深き闇のドレス]津島善子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/823801", + "name": "[美味しくできたぞ]米女メイ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748018", + "name": "[耀う水面]渡辺曜", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/814867", + "name": "[老舗旅館の看板娘]チカ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767635", + "name": "[聖歌隊の練習後に]国木田花丸", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767805", + "name": "[臆病だって]黒澤ルビィ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766487", + "name": "[自信はないけど]小泉花陽", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767600", + "name": "[自然に惹かれて]松浦果南", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767844", + "name": "[舞い戻った表舞台]平安名すみれ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766220", + "name": "[船出の時間]渡辺曜", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766230", + "name": "[船長志望]渡辺曜", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767432", + "name": "[色んな場所に]桜内梨子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/765443", + "name": "[色褪せぬ美しさ]国木田花丸", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/765436", + "name": "[花嫁カウントダウン]渡辺曜", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/810654", + "name": "[苺スイーツビュッフェ]葉月恋", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767232", + "name": "[薫る夏扇子]朝香果林", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/805534", + "name": "[行きますよー!]優木せつ菜", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/819783", + "name": "[行くよベイビーちゃん]ミア・テイラー", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767790", + "name": "[行こうよ遠くまで]黒澤ルビィ", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/748048", + "name": "[衣装スタイリスト]唐可可", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766227", + "name": "[衣装作り]渡辺曜", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767592", + "name": "[衣装合わせ]松浦果南", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/802409", + "name": "[見たことのない景色へ]嵐千砂都", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/768126", + "name": "[見つけた新たな夢]鬼塚夏美", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/810306", + "name": "[記憶のなかのあなた]エマ・ヴェルデ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/823803", + "name": "[試食挑戦者募集]若菜四季", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766416", + "name": "[誇りを持って]西木野真姫", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767744", + "name": "[読書大好き]国木田花丸", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767230", + "name": "[読者モデル]朝香果林", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767813", + "name": "[諦めないキモチ]澁谷かのん", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767423", + "name": "[負けず嫌い]高海千歌", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766289", + "name": "[責任感]絢瀬絵里", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/813588", + "name": "[賑やかな街!]高海千歌", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766246", + "name": "[賑やかも悪くない]若菜四季", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767216", + "name": "[赤いリボン]桜坂しずく", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/802427", + "name": "[超絶可憐にかわいい子]中須かすみ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/826307", + "name": "[超豪華恵方巻]小原鞠莉", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766303", + "name": "[身体をほぐす]園田海未", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767408", + "name": "[軽やかな足取り]鐘嵐珠", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767821", + "name": "[軽快な挨拶♪]嵐千砂都", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/766224", + "name": "[近くで寄り添って]渡辺曜", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/826092", + "name": "[近くにいてくれない?]上原歩夢", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766290", + "name": "[運動神経抜群]絢瀬絵里", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/766452", + "name": "[運命のカード]東條希", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/794695", + "name": "[遠い月を覗いて]小原鞠莉", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767421", + "name": "[遠出の準備]高海千歌", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767603", + "name": "[遠路はるばる]松浦果南", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/802437", + "name": "[適性が備わっています]三船栞子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767380", + "name": "[避暑地で涼もう]天王寺璃奈", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/819776", + "name": "[部下を選『ぶか』!]宮下愛", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/767430", + "name": "[都会から来た転入生]桜内梨子", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767213", + "name": "[金糸雀かすみん]中須かすみ", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/792099", + "name": "[金魚すくい]米女メイ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/787869", + "name": "[長いお鼻に掴まって]鬼塚夏美", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/759114", + "name": "[間違えないで~!]南ことり", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/794692", + "name": "[闇の力が集う場所]津島善子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748011", + "name": "[降り注ぐ光]東條希", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/748023", + "name": "[隣にいるよ]上原歩夢", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767836", + "name": "[難易度高めのライブ]天王寺璃奈", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/815195", + "name": "[雪と氷のツリー]唐可可", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/820402", + "name": "[雪舞うリンクで]西木野真姫", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/772347", + "name": "[雫滴る紫陽花]小原鞠莉", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/815214", + "name": "[雲の上はいつも晴れ]澁谷かのん", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766229", + "name": "[電車で出発!]渡辺曜", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/802429", + "name": "[青春という舞台]桜坂しずく", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766489", + "name": "[頑張ります!]小泉花陽", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767880", + "name": "[頑張るっす!]桜小路きな子", + "rarity": 2 + }, + { + "url": "https://gamerch.com/lovelivesif2/748016", + "name": "[頬を撫でる潮風]松浦果南", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766292", + "name": "[頭脳明晰]絢瀬絵里", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767224", + "name": "[頼りになる存在]朝香果林", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/748021", + "name": "[風光明媚]小原鞠莉", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/797745", + "name": "[飛び交うカモメ]桜内梨子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767398", + "name": "[飛び級転入生]ミア・テイラー", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/767411", + "name": "[香港出身]鐘嵐珠", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/782768", + "name": "[駅前に響く連弾]矢澤にこ", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/820877", + "name": "[高まる理由はひとつ]小泉花陽", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/777235", + "name": "[高波に驚いて]桜小路きな子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/766434", + "name": "[高飛車]西木野真姫", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/814325", + "name": "[高鳴る気持ち]ミア・テイラー", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/767595", + "name": "[髪を結んで]松浦果南", + "rarity": 3 + }, + { + "url": "https://gamerch.com/lovelivesif2/826305", + "name": "[鬼のお面を手作りして]桜内梨子", + "rarity": 1 + }, + { + "url": "https://gamerch.com/lovelivesif2/814872", + "name": "[魔王の末裔]マリ", + "rarity": 2 + } +] \ No newline at end of file