A Neptunia Character Sorter
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update to include Neptunia Virtual Stars and various fixes.

Authored by: heavycube4u (https://github.com/heavycube4u)
Authored by: RoguePlasma (https://github.com/RoguePlasma)
Signed-Off by: james7132 (contact@jamessliu.com)

authored by

RoguePlasma and committed by
GitHub
7345d82e 79021ad9

+1709 -4
img/Arfoire_Human.png

This is a binary file and will not be displayed.

img/Dia.png

This is a binary file and will not be displayed.

img/Faira.png

This is a binary file and will not be displayed.

img/HERO.png

This is a binary file and will not be displayed.

img/Kado.png

This is a binary file and will not be displayed.

img/Kili.png

This is a binary file and will not be displayed.

img/Kurome_Ankokuboshi.png

This is a binary file and will not be displayed.

img/Lastation_Guard.png

This is a binary file and will not be displayed.

img/Licht.png

This is a binary file and will not be displayed.

img/Mauli.png

This is a binary file and will not be displayed.

img/Me.png

This is a binary file and will not be displayed.

img/Nol.png

This is a binary file and will not be displayed.

img/Ran-Ran.png

This is a binary file and will not be displayed.

img/Sukokin.png

This is a binary file and will not be displayed.

img/Vice.png

This is a binary file and will not be displayed.

img/You.png

This is a binary file and will not be displayed.

+5 -3
index.html
··· 14 14 15 15 <script src="src/js/data.js"></script> 16 16 <script src="src/js/data/2018-02-22.js"></script> 17 + <script src="src/js/data/2021-04-15.js"></script> 17 18 18 19 <script src="src/js/html2canvas.min.js"></script> 19 20 <script src="src/js/lz-string.min.js"></script> ··· 65 66 <p>Sorter for Neptunia characters. Pick your sources, and hit the Start button.</p> 66 67 <p><strong>Certain options have details that you can hover to read.</strong></p> 67 68 <p>Click on the character you like better from the two, or tie them if you like them equally or don't know them.</p> 68 - <p>Depending on how many sources you pick, you'll get up to 700+ picks, so set aside a good few cups of tea for this.</p> 69 + <p>Depending on how many sources you pick, you'll get up to 400+ picks, so set aside a good few cups of tea for this.</p> 69 70 70 71 <br><br> 71 72 ··· 78 79 <p>Inspired by <a href="http://mainyan.sakura.ne.jp/thsort.html">this site</a>.</p> 79 80 80 81 <br><br> 81 - 82 - <p>February 22st, 2018 - Forked for Neptunia Characters</p> 82 + 83 + <p>April 15th, 2021 - Various fixes, additions, removals, etc.</p> 84 + <p>February 22nd, 2018 - Forked for Neptunia Characters</p> 83 85 <p>February 21st, 2018 - Refactored site. Autosave, shareable URLs, keyboard controls. Unfortunately, this update breaks support for older mobile Safari users. Get a better device or use a desktop.</p> 84 86 <p>January 7th, 2018 - Added Antinomy of Common Flowers characters.</p> 85 87 <p>August 11th, 2017 - Added Hidden Star in Four Seasons full version characters.</p>
+2
src/css/styles.css
··· 130 130 text-align: center; 131 131 font-size: 0.8em; 132 132 line-height: 1.5em; 133 + word-wrap: break-word; 134 + word-break: break-all; 133 135 } 134 136 135 137 .sorter > .left {
+1 -1
src/js/data.js
··· 20 20 /** 21 21 * Image root, will be appended to the start of every image URL. 22 22 */ 23 - const imageRoot = 'https://nep.jamessliu.com/img/'; 23 + const imageRoot = 'img/'
+1701
src/js/data/2021-04-15.js
··· 1 + dataSetVersion = "2021-04-14"; // Change this when creating a new data set version. YYYY-MM-DD format. 2 + dataSet[dataSetVersion] = {}; 3 + 4 + dataSet[dataSetVersion].options = [ 5 + { 6 + name: "Filter by Series Entry", 7 + key: "series", 8 + tooltip: "Check this to restrict to certain series.", 9 + checked: false, 10 + sub: [ 11 + { name: "Hyperdimension Neptunia", key: "hdn" }, 12 + { name: "Hyperdimension Neptunia mk2", key: "mk2" }, 13 + { name: "Hyperdimension Neptunia Victory", key: "v" }, 14 + { name: "Megadimension Neptunia VII", key: "vii" }, 15 + { name: "Hyperdevotion Noire: Goddess Black Heart", key: "gbh" }, 16 + { name: "Hyperdimension Neptunia U: Action Unleashed", key: "au" }, 17 + { name: "MegaTagmension Blanc + Neptune VS Zombies", key: "zomb" }, 18 + { name: "Superdimension Neptune vs Sega Hard Girls", key: "sega" }, 19 + { name: "Cyberdimension Neptunia: 4 Goddesses Online", key: "fgo" }, 20 + { name: "Hyperdimension Neptunia Re;Birth 1", key: "rb1" }, 21 + { name: "Hyperdimension Neptunia Re;Birth 2 Sisters Generation", key: "rb2" }, 22 + { name: "Hyperdimension Neptunia Re;Birth 3 V Generation", key: "rb3" }, 23 + { name: "Neptunia Virtual Stars", key: "nvs" }, 24 + ] 25 + }, 26 + { 27 + name: "Filter by Character Type", 28 + key: "type", 29 + tooltip: "Check this to restrict to characters that appear in certain stages as enemies.", 30 + checked: false, 31 + sub: [ 32 + { name: "CPU", key: "cpu" }, 33 + { name: "Maker", key: "mkr" }, 34 + { name: "Monster", key: "msr" }, 35 + { name: "Oracle", key: "orc" }, 36 + { name: "Antagonist", key: "ant" }, 37 + { name: "Other", key: "oth" }, 38 + { name: "Gold Third", key: "gt" }, 39 + { name: "Generals", key: "gen" }, 40 + { name: "Sega Hard Girls", key: "shg" }, 41 + ] 42 + }, 43 + { 44 + name: "Remove alternate forms", 45 + key: "form", 46 + tooltip: "Check this to include alternate form counterparts to characters." 47 + }, 48 + { 49 + name: "Remove different dimension duplicates", 50 + key: "dim", 51 + tooltip: "Check this to include alternate dimension counterparts to characters." 52 + }, 53 + { 54 + name: "Remove Non-Girls", 55 + key: "notgirl", 56 + tooltip: "Check this to include all non-female characters." 57 + } 58 + ]; 59 + 60 + dataSet[dataSetVersion].characterData = [ 61 + { 62 + name: "5pb. (Lyrica)", 63 + img: "5pb._Lyrica.png", 64 + opts: { 65 + series: ['hdn', 'mk2', 'rb2', 'rb3'], 66 + type: ['mkr'], 67 + form: false, 68 + dim: false, 69 + notgirl: false, 70 + }, 71 + }, 72 + { 73 + name: "Abaddon", 74 + img: "Abaddon.png", 75 + opts: { 76 + series: ['vii'], 77 + type: ['msr'], 78 + form: false, 79 + dim: false, 80 + notgirl: true, 81 + }, 82 + }, 83 + { 84 + name: "Abnes", 85 + img: "Abnes.png", 86 + opts: { 87 + series: ['v', 'rb3'], 88 + type: ['ant'], 89 + form: false, 90 + dim: false, 91 + notgirl: false, 92 + }, 93 + }, 94 + { 95 + name: "Affimojas", 96 + img: "Affimojas.png", 97 + opts: { 98 + series: ['vii'], 99 + type: ['ant'], 100 + form: false, 101 + dim: false, 102 + notgirl: true, 103 + }, 104 + }, 105 + { 106 + name: "Anonydeath", 107 + img: "Anonydeath.png", 108 + opts: { 109 + series: ['v', 'rb3'], 110 + type: ['ant'], 111 + form: false, 112 + dim: false, 113 + notgirl: true, 114 + }, 115 + }, 116 + { 117 + name: "Arfoire (Human)", 118 + img: "Arfoire_Human.png", 119 + opts: { 120 + series: ['rb1'], 121 + type: ['oth'], 122 + form: false, 123 + dim: false, 124 + notgirl: false, 125 + }, 126 + }, 127 + { 128 + name: "Arfoire", 129 + img: "Arfoire.png", 130 + opts: { 131 + series: ['hdn', 'mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'gbh', 'fgo'], 132 + type: ['cpu', 'ant'], 133 + form: false, 134 + dim: false, 135 + notgirl: false, 136 + }, 137 + }, 138 + { 139 + name: "Azna=Leb", 140 + img: "Azna=Leb.png", 141 + opts: { 142 + series: ['vii'], 143 + type: ['oth'], 144 + form: false, 145 + dim: false, 146 + notgirl: true, 147 + }, 148 + }, 149 + { 150 + name: "Bamo", 151 + img: "Bamo.png", 152 + opts: { 153 + series: ['rb3'], 154 + type: ['msr'], 155 + form: false, 156 + dim: false, 157 + notgirl: false, 158 + }, 159 + }, 160 + { 161 + name: "Blanc", 162 + img: "Blanc.png", 163 + opts: { 164 + series: ['hdn', 'mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'fgo', 'au', 'zomb', 'nvs'], 165 + type: ['cpu'], 166 + form: false, 167 + dim: false, 168 + notgirl: false, 169 + }, 170 + }, 171 + { 172 + name: "Broccoli", 173 + img: "Broccoli.png", 174 + opts: { 175 + series: ['v', 'rb1', 'rb2', 'rb3'], 176 + type: ['mkr'], 177 + form: false, 178 + dim: false, 179 + notgirl: false, 180 + }, 181 + }, 182 + { 183 + name: "Cave", 184 + img: "Cave.png", 185 + opts: { 186 + series: ['mk2', 'rb2', 'rb3'], 187 + type: ['mkr'], 188 + form: false, 189 + dim: false, 190 + notgirl: false, 191 + }, 192 + }, 193 + { 194 + name: "CFW Brave", 195 + img: "CFW_Brave.png", 196 + opts: { 197 + series: ['mk2', 'rb2'], 198 + type: ['msr', 'ant'], 199 + form: false, 200 + dim: false, 201 + notgirl: true, 202 + }, 203 + }, 204 + { 205 + name: "CFW Judge", 206 + img: "CFW_Judge.png", 207 + opts: { 208 + series: ['mk2', 'rb2'], 209 + type: ['msr', 'ant'], 210 + form: false, 211 + dim: false, 212 + notgirl: true, 213 + }, 214 + }, 215 + { 216 + name: "CFW Magic", 217 + img: "CFW_Magic.png", 218 + opts: { 219 + series: ['mk2', 'rb2'], 220 + type: ['msr', 'ant'], 221 + form: false, 222 + dim: false, 223 + notgirl: false, 224 + }, 225 + }, 226 + { 227 + name: "CFW Trick", 228 + img: "CFW_Trick.png", 229 + opts: { 230 + series: ['mk2', 'rb2'], 231 + type: ['msr', 'ant'], 232 + form: false, 233 + dim: false, 234 + notgirl: true, 235 + }, 236 + }, 237 + { 238 + name: "Cheekama", 239 + img: "Cheekama.png", 240 + opts: { 241 + series: ['vii'], 242 + type: ['oth'], 243 + form: false, 244 + dim: false, 245 + notgirl: false, 246 + }, 247 + }, 248 + { 249 + name: "Chika Hakozaki", 250 + img: "Chika_Hakozaki.png", 251 + opts: { 252 + series: ['mk2', 'rb2', 'rb3', 'vii'], 253 + type: ['orc'], 254 + form: false, 255 + dim: false, 256 + notgirl: false, 257 + }, 258 + }, 259 + { 260 + name: "Chuuko", 261 + img: "Chuuko.png", 262 + opts: { 263 + series: ['vii'], 264 + type: ['oth'], 265 + form: false, 266 + dim: false, 267 + notgirl: false, 268 + }, 269 + }, 270 + { 271 + name: "Compa", 272 + img: "Compa.png", 273 + opts: { 274 + series: ['hdn', 'mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'gbh', 'zomb', 'fgo'], 275 + type: ['mkr'], 276 + form: false, 277 + dim: false, 278 + notgirl: false, 279 + }, 280 + }, 281 + { 282 + name: "Compile", 283 + img: "Compile.png", 284 + opts: { 285 + series: ['mk2', 'v'], 286 + type: ['mkr'], 287 + form: false, 288 + dim: false, 289 + notgirl: false, 290 + }, 291 + }, 292 + { 293 + name: "Copypaste", 294 + img: "Copypaste.png", 295 + opts: { 296 + series: ['v', 'rb3'], 297 + type: ['msr', 'oth', 'ant'], 298 + form: false, 299 + dim: false, 300 + notgirl: true, 301 + }, 302 + }, 303 + { 304 + name: "Croire", 305 + img: "Croire.png", 306 + opts: { 307 + series: ['v', 'rb3', 'vii'], 308 + type: ['orc', 'ant'], 309 + form: false, 310 + dim: false, 311 + notgirl: false, 312 + }, 313 + }, 314 + { 315 + name: "CyberConnect2", 316 + img: "CyberConnect2.png", 317 + opts: { 318 + series: ['v', 'rb1', 'rb2', 'rb3'], 319 + type: ['mkr'], 320 + form: false, 321 + dim: false, 322 + notgirl: false, 323 + }, 324 + }, 325 + { 326 + name: "Deco", 327 + img: "Deco.png", 328 + opts: { 329 + series: ['mk2', 'v', 'rb2', 'rb3'], 330 + type: ['mkr'], 331 + form: false, 332 + dim: false, 333 + notgirl: false, 334 + }, 335 + }, 336 + { 337 + name: "Dengekiko", 338 + img: "Dengekiko.png", 339 + opts: { 340 + series: ['mk2', 'v', 'rb2', 'rb3', 'au', 'gbh', 'zomb'], 341 + type: ['oth'], 342 + form: false, 343 + dim: false, 344 + notgirl: false, 345 + }, 346 + }, 347 + { 348 + name: "Dogoo Lady", 349 + img: "Dogoo_Lady.png", 350 + opts: { 351 + series: ['vii'], 352 + type: ['msr'], 353 + form: false, 354 + dim: false, 355 + notgirl: false, 356 + }, 357 + }, 358 + { 359 + name: "Dogoo Man", 360 + img: "Dogoo_Man.png", 361 + opts: { 362 + series: ['vii'], 363 + type: ['msr'], 364 + form: false, 365 + dim: false, 366 + notgirl: true, 367 + }, 368 + }, 369 + { 370 + name: "Falcom", 371 + img: "Falcom.png", 372 + opts: { 373 + series: ['mk2', 'v', 'rb2', 'rb3'], 374 + type: ['mkr'], 375 + form: false, 376 + dim: false, 377 + notgirl: false, 378 + }, 379 + }, 380 + { 381 + name: "Falcom (Young)", 382 + img: "Falcom_Young.png", 383 + opts: { 384 + series: ['v', 'rb1', 'rb3'], 385 + type: ['mkr'], 386 + form: false, 387 + dim: true, 388 + notgirl: false, 389 + }, 390 + }, 391 + { 392 + name: "Famitsu", 393 + img: "Famitsu.png", 394 + opts: { 395 + series: ['v', 'rb3', 'au', 'zomb', 'gbh'], 396 + type: ['oth'], 397 + form: false, 398 + dim: false, 399 + notgirl: false, 400 + }, 401 + }, 402 + { 403 + name: "Financier", 404 + img: "Financier.png", 405 + opts: { 406 + series: ['hdn', 'v', 'rb1', 'rb3', 'vii', 'gbh'], 407 + type: ['oth'], 408 + form: false, 409 + dim: false, 410 + notgirl: false, 411 + }, 412 + }, 413 + { 414 + name: "Furapura", 415 + img: "Furapura.png", 416 + opts: { 417 + series: ['mk2', 'v', 'rb2', 'rb3'], 418 + type: ['mkr'], 419 + form: false, 420 + dim: false, 421 + notgirl: false, 422 + }, 423 + }, 424 + { 425 + name: "God Eater", 426 + img: "God_Eater.png", 427 + opts: { 428 + series: ['vii'], 429 + type: ['mkr'], 430 + form: false, 431 + dim: false, 432 + notgirl: false, 433 + }, 434 + }, 435 + { 436 + name: "Guild Woman", 437 + img: "Guild_Woman.png", 438 + opts: { 439 + series: ['vii'], 440 + type: ['oth'], 441 + form: false, 442 + dim: false, 443 + notgirl: false, 444 + }, 445 + }, 446 + { 447 + name: "Gust", 448 + img: "Gust.png", 449 + opts: { 450 + series: ['hdn', 'mk2'], 451 + type: ['mkr'], 452 + form: false, 453 + dim: false, 454 + notgirl: false, 455 + }, 456 + }, 457 + { 458 + name: "C-Sha", 459 + img: "C-Sha.png", 460 + opts: { 461 + series: ['vii'], 462 + type: ['gt'], 463 + form: false, 464 + dim: false, 465 + notgirl: false, 466 + }, 467 + }, 468 + { 469 + name: "B-Sha", 470 + img: "B-Sha.png", 471 + opts: { 472 + series: ['vii'], 473 + type: ['gt'], 474 + form: false, 475 + dim: false, 476 + notgirl: false, 477 + }, 478 + }, 479 + { 480 + name: "S-Sha", 481 + img: "S-Sha.png", 482 + opts: { 483 + series: ['vii'], 484 + type: ['gt'], 485 + form: false, 486 + dim: false, 487 + notgirl: false, 488 + }, 489 + }, 490 + { 491 + name: "K-Sha", 492 + img: "K-Sha.png", 493 + opts: { 494 + series: ['vii'], 495 + type: ['gt'], 496 + form: false, 497 + dim: false, 498 + notgirl: false, 499 + }, 500 + }, 501 + { 502 + name: "Histoire", 503 + img: "Histoire.png", 504 + opts: { 505 + series: ['hdn', 'mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'sega'], 506 + type: ['orc'], 507 + form: false, 508 + dim: false, 509 + notgirl: false, 510 + }, 511 + }, 512 + { 513 + name: "Histoire (Ultra Dimension)", 514 + img: "Histoire_UltraDimension.png", 515 + opts: { 516 + series: ['v', 'rb3', 'vii', 'gbh'], 517 + type: ['orc'], 518 + form: false, 519 + dim: true, 520 + notgirl: false, 521 + }, 522 + }, 523 + { 524 + name: "Horyuchu", 525 + img: "Horyuchu.png", 526 + opts: { 527 + series: ['vii'], 528 + type: ['msr'], 529 + form: false, 530 + dim: false, 531 + notgirl: true, 532 + }, 533 + }, 534 + { 535 + name: "IF", 536 + img: "IF.png", 537 + opts: { 538 + series: ['hdn', 'mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'gbh', 'zomb', 'sega'], 539 + type: ['mkr'], 540 + form: false, 541 + dim: false, 542 + notgirl: false, 543 + }, 544 + }, 545 + { 546 + name: "Kei Jinguji", 547 + img: "Kei_Jinguji.png", 548 + opts: { 549 + series: ['mk2', 'rb2', 'rb3', 'vii'], 550 + type: ['orc'], 551 + form: false, 552 + dim: false, 553 + notgirl: false, 554 + }, 555 + }, 556 + { 557 + name: "Lastation Guard", 558 + img: "Lastation_Guard.png", 559 + opts: { 560 + series: ['v', 'rb3'], // Victory appearance is assumed 561 + type: ['oth'], 562 + form: false, 563 + dim: false, 564 + notgirl: true, 565 + }, 566 + }, 567 + { 568 + name: "Linda (Underling)", 569 + img: "Linda_Underling.png", 570 + opts: { 571 + series: ['mk2', 'rb2'], 572 + type: ['ant'], 573 + form: false, 574 + dim: false, 575 + notgirl: false, 576 + }, 577 + }, 578 + { 579 + name: "MAGES.", 580 + img: "MAGES.png", 581 + opts: { 582 + series: ['v', 'rb1', 'rb3'], 583 + type: ['mkr'], 584 + form: false, 585 + dim: false, 586 + notgirl: false, 587 + }, 588 + }, 589 + { 590 + name: "MarvelousAQL", 591 + img: "MarvelousAQL.png", 592 + opts: { 593 + series: ['v', 'rb1', 'rb2', 'rb3'], 594 + type: ['mkr'], 595 + form: false, 596 + dim: false, 597 + notgirl: false, 598 + }, 599 + }, 600 + { 601 + name: "Million Arthur", 602 + img: "Million_Arthur.png", 603 + opts: { 604 + series: ['vii'], 605 + type: ['mkr'], 606 + form: false, 607 + dim: false, 608 + notgirl: false, 609 + }, 610 + }, 611 + { 612 + name: "Mina Nishizawa", 613 + img: "Mina_Nishizawa.png", 614 + opts: { 615 + series: ['mk2', 'rb2', 'rb3', 'vii'], 616 + type: ['orc'], 617 + form: false, 618 + dim: false, 619 + notgirl: false, 620 + }, 621 + }, 622 + { 623 + name: "Mr. Badd", 624 + img: "Mr._Badd.png", 625 + opts: { 626 + series: ['v', 'rb3'], 627 + type: ['ant', 'oth'], 628 + form: false, 629 + dim: false, 630 + notgirl: true, 631 + }, 632 + }, 633 + { 634 + name: "Nepgear", 635 + img: "Nepgear.png", 636 + opts: { 637 + series: ['mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'sega', 'au', 'fgo', 'zomb'], 638 + type: ['cpu'], 639 + form: false, 640 + dim: false, 641 + notgirl: false, 642 + }, 643 + }, 644 + { 645 + name: "Nepgya", 646 + img: "Nepgya.png", 647 + opts: { 648 + series: ['vii', 'zomb'], 649 + type: ['oth'], 650 + form: false, 651 + dim: false, 652 + notgirl: false, 653 + }, 654 + }, 655 + { 656 + name: "Neptune", 657 + img: "Neptune.png", 658 + opts: { 659 + series: ['hdn', 'mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'gbh', 'zomb', 'au', 'sega', 'fgo', 'nvs'], 660 + type: ['cpu'], 661 + form: false, 662 + dim: false, 663 + notgirl: false, 664 + }, 665 + }, 666 + { 667 + name: "Neptune (Ultra Dimension)", 668 + img: "Neptune_UltraDimension.png", 669 + opts: { 670 + series: ['v', 'rb3', 'vii'], 671 + type: ['oth'], 672 + form: false, 673 + dim: true, 674 + notgirl: false, 675 + }, 676 + }, 677 + { 678 + name: "NISA", 679 + img: "NISA.png", 680 + opts: { 681 + series: ['hdn', 'mk2'], 682 + type: ['mkr'], 683 + form: false, 684 + dim: false, 685 + notgirl: false, 686 + }, 687 + }, 688 + { 689 + name: "Nitroplus", 690 + img: "Nitroplus.png", 691 + opts: { 692 + series: ['vii'], 693 + type: ['mkr'], 694 + form: false, 695 + dim: false, 696 + notgirl: false, 697 + }, 698 + }, 699 + { 700 + name: "Noire", 701 + img: "Noire.png", 702 + opts: { 703 + series: ['hdn', 'mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'zomb', 'au', 'fgo', 'nvs'], 704 + type: ['cpu'], 705 + form: false, 706 + dim: false, 707 + notgirl: false, 708 + }, 709 + }, 710 + { 711 + name: "Order Woman", 712 + img: "Order_Woman.png", 713 + opts: { 714 + series: ['vii'], 715 + type: ['oth'], 716 + form: false, 717 + dim: true, 718 + notgirl: false, 719 + }, 720 + }, 721 + { 722 + name: "Peashy", 723 + img: "Peashy.png", 724 + opts: { 725 + series: ['v', 'rb1', 'rb3', 'vii', 'fgo', 'zomb'], 726 + type: ['cpu'], 727 + form: false, 728 + dim: false, 729 + notgirl: false, 730 + }, 731 + }, 732 + { 733 + name: "Plutia", 734 + img: "Plutia.png", 735 + opts: { 736 + series: ['v', 'rb1', 'rb3', 'vii', 'zomb', 'sega', 'fgo'], 737 + type: ['cpu'], 738 + form: false, 739 + dim: false, 740 + notgirl: false, 741 + }, 742 + }, 743 + { 744 + name: "Ram", 745 + img: "Ram.png", 746 + opts: { 747 + series: ['mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'fgo', 'au', 'zomb'], 748 + type: ['cpu'], 749 + form: false, 750 + dim: false, 751 + notgirl: false, 752 + }, 753 + }, 754 + { 755 + name: "Ran-Ran", 756 + img: "Ran-Ran.png", 757 + opts: { 758 + series: ['rb1'], 759 + type: ['oth'], 760 + form: false, 761 + dim: false, 762 + notgirl: false, 763 + }, 764 + }, 765 + { 766 + name: "Raw Meat", 767 + img: "Raw_Meat.png", 768 + opts: { 769 + series: ['vii'], 770 + type: ['oth'], 771 + form: false, 772 + dim: true, 773 + notgirl: true, 774 + }, 775 + }, 776 + { 777 + name: "RED", 778 + img: "RED.png", 779 + opts: { 780 + series: ['hdn', 'rb2', 'rb3'], 781 + type: ['mkr'], 782 + form: false, 783 + dim: false, 784 + notgirl: false, 785 + }, 786 + }, 787 + { 788 + name: "Regu", 789 + img: "Regu.png", 790 + opts: { 791 + series: ['rb3'], 792 + type: ['msr'], 793 + form: false, 794 + dim: false, 795 + notgirl: false, 796 + }, 797 + }, 798 + { 799 + name: "Rei Ryghts", 800 + img: "Rei_Ryghts.png", 801 + opts: { 802 + series: ['v', 'rb3'], 803 + type: ['cpu'], 804 + form: false, 805 + dim: false, 806 + notgirl: false, 807 + }, 808 + }, 809 + { 810 + name: "Rom", 811 + img: "Rom.png", 812 + opts: { 813 + series: ['mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'fgo', 'au', 'zomb'], 814 + type: ['cpu'], 815 + form: false, 816 + dim: false, 817 + notgirl: false, 818 + }, 819 + }, 820 + { 821 + name: "Steamax", 822 + img: "Steamax.png", 823 + opts: { 824 + series: ['vii'], 825 + type: ['ant', 'oth'], 826 + form: false, 827 + dim: false, 828 + notgirl: true, 829 + }, 830 + }, 831 + { 832 + name: "Stella", 833 + img: "Stella.png", 834 + opts: { 835 + series: ['rb2', 'rb3'], 836 + type: ['mkr'], 837 + form: false, 838 + dim: false, 839 + notgirl: false, 840 + }, 841 + }, 842 + { 843 + name: "Tekken", 844 + img: "Tekken.png", 845 + opts: { 846 + series: ['v', 'rb1', 'rb2', 'rb3'], 847 + type: ['mkr'], 848 + form: false, 849 + dim: false, 850 + notgirl: false, 851 + }, 852 + }, 853 + { 854 + name: "Umio", 855 + img: "Umio.png", 856 + opts: { 857 + series: ['vii'], 858 + type: ['oth'], 859 + form: false, 860 + dim: false, 861 + notgirl: true, 862 + }, 863 + }, 864 + { 865 + name: "Uni", 866 + img: "Uni.png", 867 + opts: { 868 + series: ['mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'au', 'fgo', 'zomb'], 869 + type: ['cpu'], 870 + form: false, 871 + dim: false, 872 + notgirl: false, 873 + }, 874 + }, 875 + { 876 + name: "Uzume Tennouboshi", 877 + img: "Uzume_Tennouboshi.png", 878 + opts: { 879 + series: ['vii', 'sega', 'zomb', 'fgo', 'rb3'], 880 + type: ['cpu'], 881 + form: false, 882 + dim: false, 883 + notgirl: false, 884 + }, 885 + }, 886 + { 887 + name: "Kurome Ankokuboshi", 888 + img: "Kurome_Ankokuboshi.png", 889 + opts: { 890 + series: ['vii'], 891 + type: ['cpu', 'ant'], 892 + form: false, 893 + dim: false, 894 + notgirl: false, 895 + }, 896 + }, 897 + { 898 + name: "Vert", 899 + img: "Vert.png", 900 + opts: { 901 + series: ['hdn', 'mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'zomb', 'au', 'fgo', 'nvs'], 902 + type: ['cpu'], 903 + form: false, 904 + dim: false, 905 + notgirl: false, 906 + }, 907 + }, 908 + { 909 + name: "Warechu", 910 + img: "Warechu.png", 911 + opts: { 912 + series: ['mk2', 'v', 'rb2', 'rb3', 'vii', 'fgo'], 913 + type: ['msr', 'ant'], 914 + form: false, 915 + dim: false, 916 + notgirl: true, 917 + }, 918 + }, 919 + { 920 + name: "Zolgelicoff Tetsu", 921 + img: "Zolgelicoff_Tetsu.png", 922 + opts: { 923 + series: ['vii'], 924 + type: ['oth'], 925 + form: false, 926 + dim: false, 927 + notgirl: true, 928 + }, 929 + }, 930 + { 931 + name: "Next Black", 932 + img: "Black_Heart_(Next).png", 933 + opts: { 934 + series: ['vii'], 935 + type: ['cpu'], 936 + form: true, 937 + dim: false, 938 + notgirl: false, 939 + }, 940 + }, 941 + { 942 + name: "Black Heart", 943 + img: "Black_Heart.png", 944 + opts: { 945 + series: ['hdn', 'mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'zomb', 'au'], 946 + type: ['cpu'], 947 + form: true, 948 + dim: false, 949 + notgirl: false, 950 + }, 951 + }, 952 + { 953 + name: "Black Heart (Ultra Dimension)", 954 + img: "Black_Heart_(Ultra_Dimension).png", 955 + opts: { 956 + series: ['v', 'rb3', 'gbh'], 957 + type: ['cpu'], 958 + form: true, 959 + dim: true, 960 + notgirl: false, 961 + }, 962 + }, 963 + { 964 + name: "Black Sister", 965 + img: "Black_Sister.png", 966 + opts: { 967 + series: ['mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'au', 'fgo', 'zomb'], 968 + type: ['cpu'], 969 + form: true, 970 + dim: false, 971 + notgirl: false, 972 + }, 973 + }, 974 + { 975 + name: "Blanc (Ultra Dimension)", 976 + img: "Blanc_(Ultra_Dimension).png", 977 + opts: { 978 + series: ['v', 'rb3', 'gbh'], 979 + type: ['cpu'], 980 + form: false, 981 + dim: true, 982 + notgirl: false, 983 + }, 984 + }, 985 + { 986 + name: "CPU of Chaos (Rei Ryghts)", 987 + img: "CPU_of_Chaos_(Rei_Ryghts).png", 988 + opts: { 989 + series: ['v', 'rb3'], 990 + type: ['cpu'], 991 + form: true, 992 + dim: false, 993 + notgirl: false, 994 + }, 995 + }, 996 + { 997 + name: "Next Green", 998 + img: "Green_Heart_(Next).png", 999 + opts: { 1000 + series: ['vii'], 1001 + type: ['cpu'], 1002 + form: true, 1003 + dim: false, 1004 + notgirl: false, 1005 + }, 1006 + }, 1007 + { 1008 + name: "Green Heart", 1009 + img: "Green_Heart.png", 1010 + opts: { 1011 + series: ['hdn', 'mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'zomb', 'au'], 1012 + type: ['cpu'], 1013 + form: true, 1014 + dim: false, 1015 + notgirl: false, 1016 + }, 1017 + }, 1018 + { 1019 + name: "Green Heart (Ultra Dimension)", 1020 + img: "Green_Heart_(Ultra_Dimension).png", 1021 + opts: { 1022 + series: ['v', 'rb3', 'gbh'], 1023 + type: ['cpu'], 1024 + form: true, 1025 + dim: true, 1026 + notgirl: false, 1027 + }, 1028 + }, 1029 + { 1030 + name: "Iris Heart", 1031 + img: "Iris_Heart.png", 1032 + opts: { 1033 + series: ['v', 'rb1', 'rb3', 'vii', 'sega', 'zomb'], 1034 + type: ['cpu'], 1035 + form: true, 1036 + dim: false, 1037 + notgirl: false, 1038 + }, 1039 + }, 1040 + { 1041 + name: "Noire (Ultra Dimension)", 1042 + img: "Noire_(Ultra_Dimension).png", 1043 + opts: { 1044 + series: ['v', 'rb3', 'gbh'], 1045 + type: ['cpu'], 1046 + form: false, 1047 + dim: true, 1048 + notgirl: false, 1049 + }, 1050 + }, 1051 + { 1052 + name: "Orange Heart", 1053 + img: "Orange_Heart.png", 1054 + opts: { 1055 + series: ['vii', 'sega', 'zomb', 'fgo', 'rb3'], 1056 + type: ['cpu'], 1057 + form: true, 1058 + dim: false, 1059 + notgirl: false, 1060 + }, 1061 + }, 1062 + { 1063 + name: "Next Purple", 1064 + img: "Purple_Heart_(Next).png", 1065 + opts: { 1066 + series: ['vii'], 1067 + type: ['cpu'], 1068 + form: true, 1069 + dim: false, 1070 + notgirl: false, 1071 + }, 1072 + }, 1073 + { 1074 + name: "Purple Heart", 1075 + img: "Purple_Heart.png", 1076 + opts: { 1077 + series: ['hdn', 'mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'zomb', 'au', 'sega'], 1078 + type: ['cpu'], 1079 + form: true, 1080 + dim: false, 1081 + notgirl: false, 1082 + }, 1083 + }, 1084 + { 1085 + name: "Purple Sister", 1086 + img: "Purple_Sister.png", 1087 + opts: { 1088 + series: ['mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'sega', 'au', 'fgo', 'zomb'], 1089 + type: ['cpu'], 1090 + form: true, 1091 + dim: false, 1092 + notgirl: false, 1093 + }, 1094 + }, 1095 + { 1096 + name: "Vert (Ultra Dimension)", 1097 + img: "Vert_(Ultra_Dimension).png", 1098 + opts: { 1099 + series: ['v', 'rb3', 'gbh'], 1100 + type: ['cpu'], 1101 + form: false, 1102 + dim: true, 1103 + notgirl: false, 1104 + }, 1105 + }, 1106 + { 1107 + name: "Next White", 1108 + img: "White_Heart_(Next).png", 1109 + opts: { 1110 + series: ['vii'], 1111 + type: ['cpu'], 1112 + form: true, 1113 + dim: true, 1114 + notgirl: false, 1115 + }, 1116 + }, 1117 + { 1118 + name: "White Heart", 1119 + img: "White_Heart.png", 1120 + opts: { 1121 + series: ['hdn', 'mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'zomb', 'au'], 1122 + type: ['cpu'], 1123 + form: true, 1124 + dim: false, 1125 + notgirl: false, 1126 + }, 1127 + }, 1128 + { 1129 + name: "White Heart (Ultra Dimension)", 1130 + img: "White_Heart_(Ultra_Dimension).png", 1131 + opts: { 1132 + series: ['v', 'rb3', 'gbh'], 1133 + type: ['cpu'], 1134 + form: true, 1135 + dim: true, 1136 + notgirl: false, 1137 + }, 1138 + }, 1139 + { 1140 + name: "White Sister (Ram)", 1141 + img: "White_Sister_(Ram).png", 1142 + opts: { 1143 + series: ['mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'au', 'fgo', 'zomb'], 1144 + type: ['cpu'], 1145 + form: true, 1146 + dim: false, 1147 + notgirl: false, 1148 + }, 1149 + }, 1150 + { 1151 + name: "White Sister (Rom)", 1152 + img: "White_Sister_(Rom).png", 1153 + opts: { 1154 + series: ['mk2', 'v', 'rb1', 'rb2', 'rb3', 'vii', 'au', 'fgo', 'zomb'], 1155 + type: ['cpu'], 1156 + form: true, 1157 + dim: false, 1158 + notgirl: false, 1159 + }, 1160 + }, 1161 + { 1162 + name: "Yellow Heart", 1163 + img: "Yellow_Heart.png", 1164 + opts: { 1165 + series: ['v', 'rb1', 'rb3', 'vii', 'zomb'], 1166 + type: ['cpu'], 1167 + form: true, 1168 + dim: false, 1169 + notgirl: false, 1170 + }, 1171 + }, 1172 + { 1173 + name: "Ai Masujima", 1174 + img: "Ai_Masujima.png", 1175 + opts: { 1176 + series: ['gbh'], 1177 + type: ['gen'], 1178 + form: false, 1179 + dim: false, 1180 + notgirl: false, 1181 + }, 1182 + }, 1183 + { 1184 + name: "Blossom Aisen", 1185 + img: "Blossom_Aisen.png", 1186 + opts: { 1187 + series: ['gbh'], 1188 + type: ['gen'], 1189 + form: false, 1190 + dim: false, 1191 + notgirl: false, 1192 + }, 1193 + }, 1194 + { 1195 + name: "Ein Al", 1196 + img: "Ein_Al.png", 1197 + opts: { 1198 + series: ['gbh'], 1199 + type: ['gen'], 1200 + form: false, 1201 + dim: false, 1202 + notgirl: false, 1203 + }, 1204 + }, 1205 + { 1206 + name: "Estelle", 1207 + img: "Estelle.png", 1208 + opts: { 1209 + series: ['gbh'], 1210 + type: ['gen'], 1211 + form: false, 1212 + dim: false, 1213 + notgirl: false, 1214 + }, 1215 + }, 1216 + { 1217 + name: "Generia G", 1218 + img: "General_G.png", 1219 + opts: { 1220 + series: ['gbh'], 1221 + type: ['gen'], 1222 + form: false, 1223 + dim: false, 1224 + notgirl: false, 1225 + }, 1226 + }, 1227 + { 1228 + name: "Lady Wac", 1229 + img: "Lady Wac.png", 1230 + opts: { 1231 + series: ['gbh'], 1232 + type: ['gen'], 1233 + form: false, 1234 + dim: false, 1235 + notgirl: false, 1236 + }, 1237 + }, 1238 + { 1239 + name: "Lee-Fi", 1240 + img: "Lee-Fi.png", 1241 + opts: { 1242 + series: ['gbh'], 1243 + type: ['gen'], 1244 + form: false, 1245 + dim: false, 1246 + notgirl: false, 1247 + }, 1248 + }, 1249 + { 1250 + name: "Lid", 1251 + img: "Lid.png", 1252 + opts: { 1253 + series: ['gbh'], 1254 + type: ['gen'], 1255 + form: false, 1256 + dim: false, 1257 + notgirl: false, 1258 + }, 1259 + }, 1260 + { 1261 + name: "Little Rain", 1262 + img: "Little_Rain.png", 1263 + opts: { 1264 + series: ['gbh'], 1265 + type: ['gen'], 1266 + form: false, 1267 + dim: false, 1268 + notgirl: false, 1269 + }, 1270 + }, 1271 + { 1272 + name: "Moru", 1273 + img: "Moru.png", 1274 + opts: { 1275 + series: ['gbh'], 1276 + type: ['gen'], 1277 + form: false, 1278 + dim: false, 1279 + notgirl: false, 1280 + }, 1281 + }, 1282 + { 1283 + //God incarnate 1284 + name: "Poona", 1285 + img: "Poona.png", 1286 + opts: { 1287 + series: ['gbh'], 1288 + type: ['gen'], 1289 + form: false, 1290 + dim: false, 1291 + notgirl: false, 1292 + }, 1293 + }, 1294 + { 1295 + name: "Resta", 1296 + img: "Resta.png", 1297 + opts: { 1298 + series: ['gbh'], 1299 + type: ['gen'], 1300 + form: false, 1301 + dim: false, 1302 + notgirl: false, 1303 + }, 1304 + }, 1305 + { 1306 + name: "Ryuka", 1307 + img: "Ryuka.png", 1308 + opts: { 1309 + series: ['gbh'], 1310 + type: ['gen'], 1311 + form: false, 1312 + dim: false, 1313 + notgirl: false, 1314 + }, 1315 + }, 1316 + { 1317 + name: "Sango", 1318 + img: "Sango.png", 1319 + opts: { 1320 + series: ['gbh'], 1321 + type: ['gen'], 1322 + form: false, 1323 + dim: false, 1324 + notgirl: false, 1325 + }, 1326 + }, 1327 + { 1328 + name: "Saori", 1329 + img: "Saori.png", 1330 + opts: { 1331 + series: ['gbh'], 1332 + type: ['gen'], 1333 + form: false, 1334 + dim: false, 1335 + notgirl: false, 1336 + }, 1337 + }, 1338 + { 1339 + name: "Sting", 1340 + img: "Sting.png", 1341 + opts: { 1342 + series: ['gbh'], 1343 + type: ['gen'], 1344 + form: false, 1345 + dim: false, 1346 + notgirl: false, 1347 + }, 1348 + }, 1349 + { 1350 + name: "Tamsoft", 1351 + img: "Tamsoft.png", 1352 + opts: { 1353 + series: ['zomb', 'fgo'], 1354 + type: ['mkr'], 1355 + form: false, 1356 + dim: false, 1357 + notgirl: false, 1358 + }, 1359 + }, 1360 + { 1361 + name: "Tiara (Fairy Fencer F)", 1362 + img: "Tiara_(Fairy_Fencer_F).png", 1363 + opts: { 1364 + series: ['gbh'], 1365 + type: ['oth'], 1366 + form: false, 1367 + dim: false, 1368 + notgirl: false, 1369 + }, 1370 + }, 1371 + { 1372 + name: "Tsunemi", 1373 + img: "Tsunemi.png", 1374 + opts: { 1375 + series: ['gbh'], 1376 + type: ['gen'], 1377 + form: false, 1378 + dim: false, 1379 + notgirl: false, 1380 + }, 1381 + }, 1382 + { 1383 + name: "Vio", 1384 + img: "Vio.png", 1385 + opts: { 1386 + series: ['gbh'], 1387 + type: ['gen'], 1388 + form: false, 1389 + dim: false, 1390 + notgirl: false, 1391 + }, 1392 + }, 1393 + { 1394 + name: "Wyn", 1395 + img: "Wyn.png", 1396 + opts: { 1397 + series: ['gbh'], 1398 + type: ['gen'], 1399 + form: false, 1400 + dim: false, 1401 + notgirl: false, 1402 + }, 1403 + }, 1404 + { 1405 + name: "†Black_Cat_Princess†", 1406 + img: "Black_Cat_Princess.png", 1407 + opts: { 1408 + series: ['fgo'], 1409 + type: ['oth'], 1410 + form: false, 1411 + dim: false, 1412 + notgirl: false, 1413 + }, 1414 + }, 1415 + { 1416 + name: "Bouquet", 1417 + img: "Bouquet.png", 1418 + opts: { 1419 + series: ['fgo'], 1420 + type: ['oth'], 1421 + form: false, 1422 + dim: false, 1423 + notgirl: false, 1424 + }, 1425 + }, 1426 + { 1427 + name: "Cheetah", 1428 + img: "Cheetah.png", 1429 + opts: { 1430 + series: ['fgo'], 1431 + type: ['msr'], 1432 + form: true, 1433 + dim: false, 1434 + notgirl: true, 1435 + }, 1436 + }, 1437 + { 1438 + name: "Dark Knight", 1439 + img: "Dark_Knight.png", 1440 + opts: { 1441 + series: ['fgo'], 1442 + type: ['msr'], 1443 + form: false, 1444 + dim: false, 1445 + notgirl: true, 1446 + }, 1447 + }, 1448 + { 1449 + name: "Demon King Jester", 1450 + img: "Demon_King_Jester.png", 1451 + opts: { 1452 + series: ['fgo'], 1453 + type: ['msr'], 1454 + form: false, 1455 + dim: false, 1456 + notgirl: true, 1457 + }, 1458 + }, 1459 + { 1460 + name: "Dreamcast", 1461 + img: "Dreamcast.png", 1462 + opts: { 1463 + series: ['sega'], 1464 + type: ['shg'], 1465 + form: false, 1466 + dim: false, 1467 + notgirl: false, 1468 + }, 1469 + }, 1470 + { 1471 + name: "Game Gear", 1472 + img: "Game_Gear.png", 1473 + opts: { 1474 + series: ['sega'], 1475 + type: ['shg'], 1476 + form: false, 1477 + dim: false, 1478 + notgirl: false, 1479 + }, 1480 + }, 1481 + { 1482 + name: "GM", 1483 + img: "GM.png", 1484 + opts: { 1485 + series: ['fgo'], 1486 + type: ['oth'], 1487 + form: false, 1488 + dim: false, 1489 + notgirl: false, 1490 + }, 1491 + }, 1492 + { 1493 + name: "Grim Reaper", 1494 + img: "Grim_Reaper.png", 1495 + opts: { 1496 + series: ['fgo'], 1497 + type: ['msr'], 1498 + form: false, 1499 + dim: false, 1500 + notgirl: true, 1501 + }, 1502 + }, 1503 + { 1504 + name: "Hatsumi Sega", 1505 + img: "Hatsumi_Sega.png", 1506 + opts: { 1507 + series: ['sega'], 1508 + type: ['mkr', 'shg'], 1509 + form: false, 1510 + dim: false, 1511 + notgirl: false, 1512 + }, 1513 + }, 1514 + { 1515 + name: "Kiria", 1516 + img: "Kiria.png", 1517 + opts: { 1518 + series: ['fgo'], 1519 + type: ['oth'], 1520 + form: false, 1521 + dim: false, 1522 + notgirl: false, 1523 + }, 1524 + }, 1525 + { 1526 + name: "Luke", 1527 + img: "Luke.png", 1528 + opts: { 1529 + series: ['fgo'], 1530 + type: ['oth'], 1531 + form: false, 1532 + dim: false, 1533 + notgirl: true, 1534 + }, 1535 + }, 1536 + { 1537 + name: "Mega Drive", 1538 + img: "Mega_Drive.png", 1539 + opts: { 1540 + series: ['sega'], 1541 + type: ['shg'], 1542 + form: false, 1543 + dim: false, 1544 + notgirl: false, 1545 + }, 1546 + }, 1547 + { 1548 + name: "Minotauros", 1549 + img: "Minotauros.png", 1550 + opts: { 1551 + series: ['fgo'], 1552 + type: ['msr'], 1553 + form: false, 1554 + dim: false, 1555 + notgirl: true, 1556 + }, 1557 + }, 1558 + { 1559 + name: "Sega Saturn", 1560 + img: "Sega_Saturn.png", 1561 + opts: { 1562 + series: ['sega'], 1563 + type: ['shg'], 1564 + form: false, 1565 + dim: false, 1566 + notgirl: false, 1567 + }, 1568 + }, 1569 + { 1570 + name: "Me", 1571 + img: "Me.png", 1572 + opts: { 1573 + series: ['nvs'], 1574 + type: ['oth'], 1575 + form: false, 1576 + dim: false, 1577 + notgirl: false, 1578 + }, 1579 + }, 1580 + { 1581 + name: "You", 1582 + img: "You.png", 1583 + opts: { 1584 + series: ['nvs'], 1585 + type: ['oth'], 1586 + form: false, 1587 + dim: false, 1588 + notgirl: false, 1589 + }, 1590 + }, 1591 + { 1592 + name: "Vice", 1593 + img: "Vice.png", 1594 + opts: { 1595 + series: ['nvs'], 1596 + type: ['oth'], 1597 + form: false, 1598 + dim: false, 1599 + notgirl: false, 1600 + }, 1601 + }, 1602 + { 1603 + name: "Licht", 1604 + img: "Licht.png", 1605 + opts: { 1606 + series: ['nvs'], 1607 + type: ['oth'], 1608 + form: false, 1609 + dim: false, 1610 + notgirl: false, 1611 + }, 1612 + }, 1613 + { 1614 + name: "Mauli", 1615 + img: "Mauli.png", 1616 + opts: { 1617 + series: ['nvs'], 1618 + type: ['oth'], 1619 + form: false, 1620 + dim: false, 1621 + notgirl: false, 1622 + }, 1623 + }, 1624 + { 1625 + name: "Kili", 1626 + img: "Kili.png", 1627 + opts: { 1628 + series: ['nvs'], 1629 + type: ['oth'], 1630 + form: false, 1631 + dim: false, 1632 + notgirl: false, 1633 + }, 1634 + }, 1635 + { 1636 + name: "Faira", 1637 + img: "Faira.png", 1638 + opts: { 1639 + series: ['nvs'], 1640 + type: ['oth'], 1641 + form: false, 1642 + dim: false, 1643 + notgirl: false, 1644 + }, 1645 + }, 1646 + { 1647 + name: "Nol", 1648 + img: "Nol.png", 1649 + opts: { 1650 + series: ['nvs'], 1651 + type: ['oth'], 1652 + form: false, 1653 + dim: false, 1654 + notgirl: true, 1655 + }, 1656 + }, 1657 + { 1658 + name: "Dia", 1659 + img: "Dia.png", 1660 + opts: { 1661 + series: ['nvs'], 1662 + type: ['oth'], 1663 + form: false, 1664 + dim: false, 1665 + notgirl: false, 1666 + }, 1667 + }, 1668 + { 1669 + name: "Sukokin", 1670 + img: "Sukokin.png", 1671 + opts: { 1672 + series: ['nvs'], 1673 + type: ['oth'], 1674 + form: false, 1675 + dim: false, 1676 + notgirl: true, 1677 + }, 1678 + }, 1679 + { 1680 + name: "Kado", 1681 + img: "Kado.png", 1682 + opts: { 1683 + series: ['nvs'], 1684 + type: ['oth'], 1685 + form: false, 1686 + dim: false, 1687 + notgirl: false, 1688 + }, 1689 + }, 1690 + { 1691 + name: "HERO", 1692 + img: "HERO.png", 1693 + opts: { 1694 + series: ['nvs'], 1695 + type: ['oth'], 1696 + form: false, 1697 + dim: false, 1698 + notgirl: true, 1699 + }, 1700 + }, 1701 + ];