less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

23426 строки
562 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "mammal"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. }
  484. function getSpeciesInfo(speciesList) {
  485. let result = new Set();
  486. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  487. result.add(entry)
  488. });
  489. return Array.from(result);
  490. };
  491. function getSpeciesInfoHelper(species) {
  492. if (!speciesData[species]) {
  493. console.warn(species + " doesn't exist");
  494. return [];
  495. }
  496. if (speciesData[species].parents) {
  497. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  498. } else {
  499. return [species];
  500. }
  501. }
  502. characterMakers.push(() => makeCharacter(
  503. {
  504. name: "Fen",
  505. species: ["crux"],
  506. description: {
  507. title: "Bio",
  508. text: "Very furry. Sheds on everything."
  509. },
  510. tags: [
  511. "anthro"
  512. ]
  513. },
  514. {
  515. back: {
  516. height: math.unit(2.2428, "meter"),
  517. weight: math.unit(124.738, "kg"),
  518. name: "Back",
  519. image: {
  520. source: "./media/characters/fen/back.svg",
  521. extra: 1025 / 935,
  522. bottom: 0.01
  523. },
  524. info: {
  525. description: {
  526. mode: "append",
  527. text: "\n\nHe is not currently looking at you."
  528. }
  529. }
  530. },
  531. full: {
  532. height: math.unit(1.34, "meter"),
  533. weight: math.unit(225, "kg"),
  534. name: "Full",
  535. image: {
  536. source: "./media/characters/fen/full.svg"
  537. },
  538. info: {
  539. description: {
  540. mode: "append",
  541. text: "\n\nMunch."
  542. }
  543. }
  544. },
  545. kneeling: {
  546. height: math.unit(5.4, "feet"),
  547. weight: math.unit(124.738, "kg"),
  548. name: "Kneeling",
  549. image: {
  550. source: "./media/characters/fen/kneeling.svg",
  551. extra: 563 / 507
  552. }
  553. },
  554. goo: {
  555. height: math.unit(2.8, "feet"),
  556. weight: math.unit(125, "kg"),
  557. capacity: math.unit(1, "people"),
  558. name: "Goo",
  559. image: {
  560. source: "./media/characters/fen/goo.svg",
  561. bottom: 116/613
  562. }
  563. },
  564. lounging: {
  565. height: math.unit(6.5, "feet"),
  566. weight: math.unit(125, "kg"),
  567. name: "Lounging",
  568. image: {
  569. source: "./media/characters/fen/lounging.svg"
  570. }
  571. },
  572. },
  573. [
  574. {
  575. name: "Normal",
  576. height: math.unit(2.2428, "meter")
  577. },
  578. {
  579. name: "Big",
  580. height: math.unit(12, "feet")
  581. },
  582. {
  583. name: "Minimacro",
  584. height: math.unit(40, "feet"),
  585. default: true,
  586. info: {
  587. description: {
  588. mode: "append",
  589. text: "\n\nTOO DAMN BIG"
  590. }
  591. }
  592. },
  593. {
  594. name: "Macro",
  595. height: math.unit(100, "feet"),
  596. info: {
  597. description: {
  598. mode: "append",
  599. text: "\n\nTOO DAMN BIG"
  600. }
  601. }
  602. },
  603. {
  604. name: "Macro+",
  605. height: math.unit(300, "feet")
  606. },
  607. {
  608. name: "Megamacro",
  609. height: math.unit(2, "miles")
  610. }
  611. ]
  612. ))
  613. characterMakers.push(() => makeCharacter(
  614. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  615. {
  616. front: {
  617. height: math.unit(183, "cm"),
  618. weight: math.unit(80, "kg"),
  619. name: "Front",
  620. image: {
  621. source: "./media/characters/sofia-fluttertail/front.svg",
  622. bottom: 0.01,
  623. extra: 2154 / 2081
  624. }
  625. },
  626. frontAlt: {
  627. height: math.unit(183, "cm"),
  628. weight: math.unit(80, "kg"),
  629. name: "Front (alt)",
  630. image: {
  631. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  632. }
  633. },
  634. back: {
  635. height: math.unit(183, "cm"),
  636. weight: math.unit(80, "kg"),
  637. name: "Back",
  638. image: {
  639. source: "./media/characters/sofia-fluttertail/back.svg"
  640. }
  641. },
  642. kneeling: {
  643. height: math.unit(125, "cm"),
  644. weight: math.unit(80, "kg"),
  645. name: "Kneeling",
  646. image: {
  647. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  648. extra: 1033/977,
  649. bottom: 23.7/1057
  650. }
  651. },
  652. maw: {
  653. height: math.unit(183 / 5, "cm"),
  654. name: "Maw",
  655. image: {
  656. source: "./media/characters/sofia-fluttertail/maw.svg"
  657. }
  658. },
  659. mawcloseup: {
  660. height: math.unit(183 / 5 * 0.41, "cm"),
  661. name: "Maw (Closeup)",
  662. image: {
  663. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  664. }
  665. },
  666. },
  667. [
  668. {
  669. name: "Normal",
  670. height: math.unit(1.83, "meter")
  671. },
  672. {
  673. name: "Size Thief",
  674. height: math.unit(18, "feet")
  675. },
  676. {
  677. name: "50 Foot Collie",
  678. height: math.unit(50, "feet")
  679. },
  680. {
  681. name: "Macro",
  682. height: math.unit(96, "feet"),
  683. default: true
  684. },
  685. {
  686. name: "Megamerger",
  687. height: math.unit(650, "feet")
  688. },
  689. ]
  690. ))
  691. characterMakers.push(() => makeCharacter(
  692. { name: "March", species: ["dragon"], tags: ["anthro"] },
  693. {
  694. front: {
  695. height: math.unit(7, "feet"),
  696. weight: math.unit(100, "kg"),
  697. name: "Front",
  698. image: {
  699. source: "./media/characters/march/front.svg",
  700. extra: 1,
  701. bottom: 0.015
  702. }
  703. },
  704. foot: {
  705. height: math.unit(0.9, "feet"),
  706. name: "Foot",
  707. image: {
  708. source: "./media/characters/march/foot.svg"
  709. }
  710. },
  711. },
  712. [
  713. {
  714. name: "Normal",
  715. height: math.unit(7.9, "feet")
  716. },
  717. {
  718. name: "Macro",
  719. height: math.unit(220, "meters")
  720. },
  721. {
  722. name: "Megamacro",
  723. height: math.unit(2.98, "km"),
  724. default: true
  725. },
  726. {
  727. name: "Gigamacro",
  728. height: math.unit(15963, "km")
  729. },
  730. {
  731. name: "Teramacro",
  732. height: math.unit(2980000000, "km")
  733. },
  734. {
  735. name: "Examacro",
  736. height: math.unit(250, "parsecs")
  737. },
  738. ]
  739. ))
  740. characterMakers.push(() => makeCharacter(
  741. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  742. {
  743. front: {
  744. height: math.unit(6, "feet"),
  745. weight: math.unit(60, "kg"),
  746. name: "Front",
  747. image: {
  748. source: "./media/characters/noir/front.svg",
  749. extra: 1,
  750. bottom: 0.032
  751. }
  752. },
  753. },
  754. [
  755. {
  756. name: "Normal",
  757. height: math.unit(6.6, "feet")
  758. },
  759. {
  760. name: "Macro",
  761. height: math.unit(500, "feet")
  762. },
  763. {
  764. name: "Megamacro",
  765. height: math.unit(2.5, "km"),
  766. default: true
  767. },
  768. {
  769. name: "Gigamacro",
  770. height: math.unit(22500, "km")
  771. },
  772. {
  773. name: "Teramacro",
  774. height: math.unit(2500000000, "km")
  775. },
  776. {
  777. name: "Examacro",
  778. height: math.unit(200, "parsecs")
  779. },
  780. ]
  781. ))
  782. characterMakers.push(() => makeCharacter(
  783. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  784. {
  785. front: {
  786. height: math.unit(7, "feet"),
  787. weight: math.unit(100, "kg"),
  788. name: "Front",
  789. image: {
  790. source: "./media/characters/okuri/front.svg",
  791. extra: 1,
  792. bottom: 0.037
  793. }
  794. },
  795. back: {
  796. height: math.unit(7, "feet"),
  797. weight: math.unit(100, "kg"),
  798. name: "Back",
  799. image: {
  800. source: "./media/characters/okuri/back.svg",
  801. extra: 1,
  802. bottom: 0.007
  803. }
  804. },
  805. },
  806. [
  807. {
  808. name: "Megamacro",
  809. height: math.unit(100, "miles"),
  810. default: true
  811. },
  812. ]
  813. ))
  814. characterMakers.push(() => makeCharacter(
  815. { name: "Manny", species: ["pokemon"], tags: ["anthro"] },
  816. {
  817. front: {
  818. height: math.unit(7, "feet"),
  819. weight: math.unit(100, "kg"),
  820. name: "Front",
  821. image: {
  822. source: "./media/characters/manny/front.svg",
  823. extra: 1,
  824. bottom: 0.06
  825. }
  826. },
  827. back: {
  828. height: math.unit(7, "feet"),
  829. weight: math.unit(100, "kg"),
  830. name: "Back",
  831. image: {
  832. source: "./media/characters/manny/back.svg",
  833. extra: 1,
  834. bottom: 0.014
  835. }
  836. },
  837. },
  838. [
  839. {
  840. name: "Normal",
  841. height: math.unit(7, "feet"),
  842. },
  843. {
  844. name: "Macro",
  845. height: math.unit(78, "feet"),
  846. default: true
  847. },
  848. {
  849. name: "Macro+",
  850. height: math.unit(300, "meters")
  851. },
  852. {
  853. name: "Macro++",
  854. height: math.unit(2400, "meters")
  855. },
  856. {
  857. name: "Megamacro",
  858. height: math.unit(5167, "meters")
  859. },
  860. {
  861. name: "Gigamacro",
  862. height: math.unit(41769, "miles")
  863. },
  864. ]
  865. ))
  866. characterMakers.push(() => makeCharacter(
  867. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  868. {
  869. front: {
  870. height: math.unit(7, "feet"),
  871. weight: math.unit(100, "kg"),
  872. name: "Front",
  873. image: {
  874. source: "./media/characters/adake/front-1.svg"
  875. }
  876. },
  877. frontAlt: {
  878. height: math.unit(7, "feet"),
  879. weight: math.unit(100, "kg"),
  880. name: "Front (Alt)",
  881. image: {
  882. source: "./media/characters/adake/front-2.svg",
  883. extra: 1,
  884. bottom: 0.01
  885. }
  886. },
  887. back: {
  888. height: math.unit(7, "feet"),
  889. weight: math.unit(100, "kg"),
  890. name: "Back",
  891. image: {
  892. source: "./media/characters/adake/back.svg",
  893. }
  894. },
  895. kneel: {
  896. height: math.unit(5.385, "feet"),
  897. weight: math.unit(100, "kg"),
  898. name: "Kneeling",
  899. image: {
  900. source: "./media/characters/adake/kneel.svg",
  901. bottom: 0.052
  902. }
  903. },
  904. },
  905. [
  906. {
  907. name: "Normal",
  908. height: math.unit(7, "feet"),
  909. },
  910. {
  911. name: "Macro",
  912. height: math.unit(78, "feet"),
  913. default: true
  914. },
  915. {
  916. name: "Macro+",
  917. height: math.unit(300, "meters")
  918. },
  919. {
  920. name: "Macro++",
  921. height: math.unit(2400, "meters")
  922. },
  923. {
  924. name: "Megamacro",
  925. height: math.unit(5167, "meters")
  926. },
  927. {
  928. name: "Gigamacro",
  929. height: math.unit(41769, "miles")
  930. },
  931. ]
  932. ))
  933. characterMakers.push(() => makeCharacter(
  934. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  935. {
  936. front: {
  937. height: math.unit(1.65, "meters"),
  938. weight: math.unit(50, "kg"),
  939. name: "Front",
  940. image: {
  941. source: "./media/characters/elijah/front.svg",
  942. extra: 858/830,
  943. bottom: 95.5/953.8559
  944. }
  945. },
  946. back: {
  947. height: math.unit(1.65, "meters"),
  948. weight: math.unit(50, "kg"),
  949. name: "Back",
  950. image: {
  951. source: "./media/characters/elijah/back.svg",
  952. extra: 895/850,
  953. bottom: 5.3/897.956
  954. }
  955. },
  956. frontNsfw: {
  957. height: math.unit(1.65, "meters"),
  958. weight: math.unit(50, "kg"),
  959. name: "Front (NSFW)",
  960. image: {
  961. source: "./media/characters/elijah/front-nsfw.svg",
  962. extra: 858/830,
  963. bottom: 95.5/953.8559
  964. }
  965. },
  966. backNsfw: {
  967. height: math.unit(1.65, "meters"),
  968. weight: math.unit(50, "kg"),
  969. name: "Back (NSFW)",
  970. image: {
  971. source: "./media/characters/elijah/back-nsfw.svg",
  972. extra: 895/850,
  973. bottom: 5.3/897.956
  974. }
  975. },
  976. dick: {
  977. height: math.unit(1, "feet"),
  978. name: "Dick",
  979. image: {
  980. source: "./media/characters/elijah/dick.svg"
  981. }
  982. },
  983. beakOpen: {
  984. height: math.unit(1.25, "feet"),
  985. name: "Beak (Open)",
  986. image: {
  987. source: "./media/characters/elijah/beak-open.svg"
  988. }
  989. },
  990. beakShut: {
  991. height: math.unit(1.25, "feet"),
  992. name: "Beak (Shut)",
  993. image: {
  994. source: "./media/characters/elijah/beak-shut.svg"
  995. }
  996. },
  997. footFlexing: {
  998. height: math.unit(1.61, "feet"),
  999. name: "Foot (Flexing)",
  1000. image: {
  1001. source: "./media/characters/elijah/foot-flexing.svg"
  1002. }
  1003. },
  1004. footStepping: {
  1005. height: math.unit(1.44, "feet"),
  1006. name: "Foot (Stepping)",
  1007. image: {
  1008. source: "./media/characters/elijah/foot-stepping.svg"
  1009. }
  1010. },
  1011. plantigradeLeg: {
  1012. height: math.unit(2.34, "feet"),
  1013. name: "Plantigrade Leg",
  1014. image: {
  1015. source: "./media/characters/elijah/plantigrade-leg.svg"
  1016. }
  1017. },
  1018. plantigradeFootLeft: {
  1019. height: math.unit(0.9, "feet"),
  1020. name: "Plantigrade Foot (Left)",
  1021. image: {
  1022. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1023. }
  1024. },
  1025. plantigradeFootRight: {
  1026. height: math.unit(0.9, "feet"),
  1027. name: "Plantigrade Foot (Right)",
  1028. image: {
  1029. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1030. }
  1031. },
  1032. },
  1033. [
  1034. {
  1035. name: "Normal",
  1036. height: math.unit(1.65, "meters")
  1037. },
  1038. {
  1039. name: "Macro",
  1040. height: math.unit(55, "meters"),
  1041. default: true
  1042. },
  1043. {
  1044. name: "Macro+",
  1045. height: math.unit(105, "meters")
  1046. },
  1047. ]
  1048. ))
  1049. characterMakers.push(() => makeCharacter(
  1050. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1051. {
  1052. front: {
  1053. height: math.unit(11, "feet"),
  1054. weight: math.unit(80, "kg"),
  1055. name: "Front",
  1056. image: {
  1057. source: "./media/characters/rai/front.svg",
  1058. extra: 1,
  1059. bottom: 0.03
  1060. }
  1061. },
  1062. side: {
  1063. height: math.unit(11, "feet"),
  1064. weight: math.unit(80, "kg"),
  1065. name: "Side",
  1066. image: {
  1067. source: "./media/characters/rai/side.svg"
  1068. }
  1069. },
  1070. back: {
  1071. height: math.unit(11, "feet"),
  1072. weight: math.unit(80, "lb"),
  1073. name: "Back",
  1074. image: {
  1075. source: "./media/characters/rai/back.svg",
  1076. extra: 1,
  1077. bottom: 0.01
  1078. }
  1079. },
  1080. feral: {
  1081. height: math.unit(11, "feet"),
  1082. weight: math.unit(800, "lb"),
  1083. name: "Feral",
  1084. image: {
  1085. source: "./media/characters/rai/feral.svg",
  1086. extra: 1050 / 659,
  1087. bottom: 0.07
  1088. }
  1089. },
  1090. dragon: {
  1091. height: math.unit(23, "feet"),
  1092. weight: math.unit(50000, "lb"),
  1093. name: "Dragon",
  1094. image: {
  1095. source: "./media/characters/rai/dragon.svg",
  1096. extra: 2498/2030,
  1097. bottom: 85.2/2584
  1098. }
  1099. },
  1100. maw: {
  1101. height: math.unit(6 / 3.81416, "feet"),
  1102. name: "Maw",
  1103. image: {
  1104. source: "./media/characters/rai/maw.svg"
  1105. }
  1106. },
  1107. },
  1108. [
  1109. {
  1110. name: "Normal",
  1111. height: math.unit(11, "feet")
  1112. },
  1113. {
  1114. name: "Macro",
  1115. height: math.unit(302, "feet"),
  1116. default: true
  1117. },
  1118. ]
  1119. ))
  1120. characterMakers.push(() => makeCharacter(
  1121. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1122. {
  1123. front: {
  1124. height: math.unit(7, "feet"),
  1125. weight: math.unit(80, "kg"),
  1126. name: "Front",
  1127. image: {
  1128. source: "./media/characters/jazzy/front.svg",
  1129. extra: 1,
  1130. bottom: 0.01
  1131. }
  1132. },
  1133. back: {
  1134. height: math.unit(7, "feet"),
  1135. weight: math.unit(80, "kg"),
  1136. name: "Back",
  1137. image: {
  1138. source: "./media/characters/jazzy/back.svg",
  1139. extra: 1,
  1140. bottom: 0.01
  1141. }
  1142. },
  1143. },
  1144. [
  1145. {
  1146. name: "Macro",
  1147. height: math.unit(216, "feet"),
  1148. default: true
  1149. },
  1150. ]
  1151. ))
  1152. characterMakers.push(() => makeCharacter(
  1153. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1154. {
  1155. front: {
  1156. height: math.unit(7, "feet"),
  1157. weight: math.unit(80, "kg"),
  1158. name: "Front",
  1159. image: {
  1160. source: "./media/characters/flamm/front.svg",
  1161. extra: 1794 / 1677,
  1162. bottom: 31.7 / 1828.5
  1163. }
  1164. },
  1165. },
  1166. [
  1167. {
  1168. name: "Normal",
  1169. height: math.unit(9.5, "feet")
  1170. },
  1171. {
  1172. name: "Macro",
  1173. height: math.unit(200, "feet"),
  1174. default: true
  1175. },
  1176. ]
  1177. ))
  1178. characterMakers.push(() => makeCharacter(
  1179. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1180. {
  1181. front: {
  1182. height: math.unit(7, "feet"),
  1183. weight: math.unit(80, "kg"),
  1184. name: "Front",
  1185. image: {
  1186. source: "./media/characters/zephiro/front.svg",
  1187. extra: 2309 / 2162,
  1188. bottom: 0.069
  1189. }
  1190. },
  1191. side: {
  1192. height: math.unit(7, "feet"),
  1193. weight: math.unit(80, "kg"),
  1194. name: "Side",
  1195. image: {
  1196. source: "./media/characters/zephiro/side.svg",
  1197. extra: 2403 / 2279,
  1198. bottom: 0.015
  1199. }
  1200. },
  1201. back: {
  1202. height: math.unit(7, "feet"),
  1203. weight: math.unit(80, "kg"),
  1204. name: "Back",
  1205. image: {
  1206. source: "./media/characters/zephiro/back.svg",
  1207. extra: 2373 / 2244,
  1208. bottom: 0.013
  1209. }
  1210. },
  1211. },
  1212. [
  1213. {
  1214. name: "Micro",
  1215. height: math.unit(3, "inches")
  1216. },
  1217. {
  1218. name: "Normal",
  1219. height: math.unit(5 + 3 / 12, "feet"),
  1220. default: true
  1221. },
  1222. {
  1223. name: "Macro",
  1224. height: math.unit(118, "feet")
  1225. },
  1226. ]
  1227. ))
  1228. characterMakers.push(() => makeCharacter(
  1229. { name: "Fory", species: ["weasel"], tags: ["anthro"] },
  1230. {
  1231. front: {
  1232. height: math.unit(5, "feet"),
  1233. weight: math.unit(90, "kg"),
  1234. name: "Front",
  1235. image: {
  1236. source: "./media/characters/fory/front.svg",
  1237. extra: 2862 / 2674,
  1238. bottom: 180 / 3043.8
  1239. }
  1240. },
  1241. back: {
  1242. height: math.unit(5, "feet"),
  1243. weight: math.unit(90, "kg"),
  1244. name: "Back",
  1245. image: {
  1246. source: "./media/characters/fory/back.svg",
  1247. extra: 2962 / 2791,
  1248. bottom: 106 / 3071.8
  1249. }
  1250. },
  1251. foot: {
  1252. height: math.unit(2.14, "feet"),
  1253. name: "Foot",
  1254. image: {
  1255. source: "./media/characters/fory/foot.svg"
  1256. }
  1257. },
  1258. },
  1259. [
  1260. {
  1261. name: "Normal",
  1262. height: math.unit(5, "feet")
  1263. },
  1264. {
  1265. name: "Macro",
  1266. height: math.unit(50, "feet"),
  1267. default: true
  1268. },
  1269. {
  1270. name: "Megamacro",
  1271. height: math.unit(10, "miles")
  1272. },
  1273. {
  1274. name: "Gigamacro",
  1275. height: math.unit(5, "earths")
  1276. },
  1277. ]
  1278. ))
  1279. characterMakers.push(() => makeCharacter(
  1280. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  1281. {
  1282. front: {
  1283. height: math.unit(7, "feet"),
  1284. weight: math.unit(90, "kg"),
  1285. name: "Front",
  1286. image: {
  1287. source: "./media/characters/kurrikage/front.svg",
  1288. extra: 1,
  1289. bottom: 0.035
  1290. }
  1291. },
  1292. back: {
  1293. height: math.unit(7, "feet"),
  1294. weight: math.unit(90, "lb"),
  1295. name: "Back",
  1296. image: {
  1297. source: "./media/characters/kurrikage/back.svg"
  1298. }
  1299. },
  1300. paw: {
  1301. height: math.unit(1.5, "feet"),
  1302. name: "Paw",
  1303. image: {
  1304. source: "./media/characters/kurrikage/paw.svg"
  1305. }
  1306. },
  1307. staff: {
  1308. height: math.unit(6.7, "feet"),
  1309. name: "Staff",
  1310. image: {
  1311. source: "./media/characters/kurrikage/staff.svg"
  1312. }
  1313. },
  1314. peek: {
  1315. height: math.unit(1.05, "feet"),
  1316. name: "Peeking",
  1317. image: {
  1318. source: "./media/characters/kurrikage/peek.svg",
  1319. bottom: 0.08
  1320. }
  1321. },
  1322. },
  1323. [
  1324. {
  1325. name: "Normal",
  1326. height: math.unit(12, "feet"),
  1327. default: true
  1328. },
  1329. {
  1330. name: "Big",
  1331. height: math.unit(20, "feet")
  1332. },
  1333. {
  1334. name: "Macro",
  1335. height: math.unit(500, "feet")
  1336. },
  1337. {
  1338. name: "Megamacro",
  1339. height: math.unit(20, "miles")
  1340. },
  1341. ]
  1342. ))
  1343. characterMakers.push(() => makeCharacter(
  1344. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  1345. {
  1346. front: {
  1347. height: math.unit(6, "feet"),
  1348. weight: math.unit(75, "kg"),
  1349. name: "Front",
  1350. image: {
  1351. source: "./media/characters/shingo/front.svg",
  1352. extra: 3511 / 3338,
  1353. bottom: 0.005
  1354. }
  1355. },
  1356. },
  1357. [
  1358. {
  1359. name: "Micro",
  1360. height: math.unit(4, "inches")
  1361. },
  1362. {
  1363. name: "Normal",
  1364. height: math.unit(6, "feet"),
  1365. default: true
  1366. },
  1367. {
  1368. name: "Macro",
  1369. height: math.unit(108, "feet")
  1370. }
  1371. ]
  1372. ))
  1373. characterMakers.push(() => makeCharacter(
  1374. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  1375. {
  1376. side: {
  1377. height: math.unit(6, "feet"),
  1378. weight: math.unit(75, "kg"),
  1379. name: "Side",
  1380. image: {
  1381. source: "./media/characters/aigey/side.svg"
  1382. }
  1383. },
  1384. },
  1385. [
  1386. {
  1387. name: "Macro",
  1388. height: math.unit(200, "feet"),
  1389. default: true
  1390. },
  1391. {
  1392. name: "Megamacro",
  1393. height: math.unit(100, "miles")
  1394. },
  1395. ]
  1396. )
  1397. )
  1398. characterMakers.push(() => makeCharacter(
  1399. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  1400. {
  1401. front: {
  1402. height: math.unit(5 + 5 / 12, "feet"),
  1403. weight: math.unit(75, "kg"),
  1404. name: "Front",
  1405. image: {
  1406. source: "./media/characters/natasha/front.svg",
  1407. extra: 859/824,
  1408. bottom: 23/879.6
  1409. }
  1410. },
  1411. frontNsfw: {
  1412. height: math.unit(5 + 5 / 12, "feet"),
  1413. weight: math.unit(75, "kg"),
  1414. name: "Front (NSFW)",
  1415. image: {
  1416. source: "./media/characters/natasha/front-nsfw.svg",
  1417. extra: 859/824,
  1418. bottom: 23/879.6
  1419. }
  1420. },
  1421. frontErect: {
  1422. height: math.unit(5 + 5 / 12, "feet"),
  1423. weight: math.unit(75, "kg"),
  1424. name: "Front (Erect)",
  1425. image: {
  1426. source: "./media/characters/natasha/front-erect.svg",
  1427. extra: 859/824,
  1428. bottom: 23/879.6
  1429. }
  1430. },
  1431. back: {
  1432. height: math.unit(5 + 5 / 12, "feet"),
  1433. weight: math.unit(75, "kg"),
  1434. name: "Back",
  1435. image: {
  1436. source: "./media/characters/natasha/back.svg",
  1437. extra: 887.9/852.6,
  1438. bottom: 9.7/896.4
  1439. }
  1440. },
  1441. backAlt: {
  1442. height: math.unit(5 + 5 / 12, "feet"),
  1443. weight: math.unit(75, "kg"),
  1444. name: "Back (Alt)",
  1445. image: {
  1446. source: "./media/characters/natasha/back-alt.svg",
  1447. extra: 1236.7/1192,
  1448. bottom: 22.3/1258.2
  1449. }
  1450. },
  1451. dick: {
  1452. height: math.unit(1.772, "feet"),
  1453. name: "Dick",
  1454. image: {
  1455. source: "./media/characters/natasha/dick.svg"
  1456. }
  1457. },
  1458. },
  1459. [
  1460. {
  1461. name: "Normal",
  1462. height: math.unit(5 + 5 / 12, "feet")
  1463. },
  1464. {
  1465. name: "Large",
  1466. height: math.unit(12, "feet")
  1467. },
  1468. {
  1469. name: "Macro",
  1470. height: math.unit(100, "feet"),
  1471. default: true
  1472. },
  1473. {
  1474. name: "Macro+",
  1475. height: math.unit(260, "feet")
  1476. },
  1477. {
  1478. name: "Macro++",
  1479. height: math.unit(1, "mile")
  1480. },
  1481. ]
  1482. ))
  1483. characterMakers.push(() => makeCharacter(
  1484. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  1485. {
  1486. front: {
  1487. height: math.unit(6, "feet"),
  1488. weight: math.unit(75, "kg"),
  1489. name: "Front",
  1490. image: {
  1491. source: "./media/characters/malik/front.svg"
  1492. }
  1493. },
  1494. side: {
  1495. height: math.unit(6, "feet"),
  1496. weight: math.unit(75, "kg"),
  1497. name: "Side",
  1498. image: {
  1499. source: "./media/characters/malik/side.svg",
  1500. extra: 1.1539
  1501. }
  1502. },
  1503. back: {
  1504. height: math.unit(6, "feet"),
  1505. weight: math.unit(75, "kg"),
  1506. name: "Back",
  1507. image: {
  1508. source: "./media/characters/malik/back.svg"
  1509. }
  1510. },
  1511. },
  1512. [
  1513. {
  1514. name: "Macro",
  1515. height: math.unit(156, "feet"),
  1516. default: true
  1517. },
  1518. {
  1519. name: "Macro+",
  1520. height: math.unit(1188, "feet")
  1521. },
  1522. ]
  1523. ))
  1524. characterMakers.push(() => makeCharacter(
  1525. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  1526. {
  1527. front: {
  1528. height: math.unit(6, "feet"),
  1529. weight: math.unit(75, "kg"),
  1530. name: "Front",
  1531. image: {
  1532. source: "./media/characters/sefer/front.svg"
  1533. }
  1534. },
  1535. back: {
  1536. height: math.unit(6, "feet"),
  1537. weight: math.unit(75, "kg"),
  1538. name: "Back",
  1539. image: {
  1540. source: "./media/characters/sefer/back.svg"
  1541. }
  1542. },
  1543. },
  1544. [
  1545. {
  1546. name: "Normal",
  1547. height: math.unit(6, "feet"),
  1548. default: true
  1549. },
  1550. ]
  1551. ))
  1552. characterMakers.push(() => makeCharacter(
  1553. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  1554. {
  1555. body: {
  1556. height: math.unit(2.2428, "meter"),
  1557. weight: math.unit(124.738, "kg"),
  1558. name: "Body",
  1559. image: {
  1560. extra: 1225 / 1050,
  1561. source: "./media/characters/north/front.svg"
  1562. }
  1563. }
  1564. },
  1565. [
  1566. {
  1567. name: "Micro",
  1568. height: math.unit(4, "inches")
  1569. },
  1570. {
  1571. name: "Macro",
  1572. height: math.unit(63, "meters")
  1573. },
  1574. {
  1575. name: "Megamacro",
  1576. height: math.unit(101, "miles"),
  1577. default: true
  1578. }
  1579. ]
  1580. ))
  1581. characterMakers.push(() => makeCharacter(
  1582. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  1583. {
  1584. angled: {
  1585. height: math.unit(4, "meter"),
  1586. weight: math.unit(150, "kg"),
  1587. name: "Angled",
  1588. image: {
  1589. source: "./media/characters/talan/angled-sfw.svg",
  1590. bottom: 29 / 3734
  1591. }
  1592. },
  1593. angledNsfw: {
  1594. height: math.unit(4, "meter"),
  1595. weight: math.unit(150, "kg"),
  1596. name: "Angled (NSFW)",
  1597. image: {
  1598. source: "./media/characters/talan/angled-nsfw.svg",
  1599. bottom: 29 / 3734
  1600. }
  1601. },
  1602. frontNsfw: {
  1603. height: math.unit(4, "meter"),
  1604. weight: math.unit(150, "kg"),
  1605. name: "Front (NSFW)",
  1606. image: {
  1607. source: "./media/characters/talan/front-nsfw.svg",
  1608. bottom: 29 / 3734
  1609. }
  1610. },
  1611. sideNsfw: {
  1612. height: math.unit(4, "meter"),
  1613. weight: math.unit(150, "kg"),
  1614. name: "Side (NSFW)",
  1615. image: {
  1616. source: "./media/characters/talan/side-nsfw.svg",
  1617. bottom: 29 / 3734
  1618. }
  1619. },
  1620. back: {
  1621. height: math.unit(4, "meter"),
  1622. weight: math.unit(150, "kg"),
  1623. name: "Back",
  1624. image: {
  1625. source: "./media/characters/talan/back.svg"
  1626. }
  1627. },
  1628. dickBottom: {
  1629. height: math.unit(0.621, "meter"),
  1630. name: "Dick (Bottom)",
  1631. image: {
  1632. source: "./media/characters/talan/dick-bottom.svg"
  1633. }
  1634. },
  1635. dickTop: {
  1636. height: math.unit(0.621, "meter"),
  1637. name: "Dick (Top)",
  1638. image: {
  1639. source: "./media/characters/talan/dick-top.svg"
  1640. }
  1641. },
  1642. dickSide: {
  1643. height: math.unit(0.305, "meter"),
  1644. name: "Dick (Side)",
  1645. image: {
  1646. source: "./media/characters/talan/dick-side.svg"
  1647. }
  1648. },
  1649. dickFront: {
  1650. height: math.unit(0.305, "meter"),
  1651. name: "Dick (Front)",
  1652. image: {
  1653. source: "./media/characters/talan/dick-front.svg"
  1654. }
  1655. },
  1656. },
  1657. [
  1658. {
  1659. name: "Normal",
  1660. height: math.unit(4, "meters")
  1661. },
  1662. {
  1663. name: "Macro",
  1664. height: math.unit(100, "meters")
  1665. },
  1666. {
  1667. name: "Megamacro",
  1668. height: math.unit(2, "miles"),
  1669. default: true
  1670. },
  1671. {
  1672. name: "Gigamacro",
  1673. height: math.unit(5000, "miles")
  1674. },
  1675. {
  1676. name: "Teramacro",
  1677. height: math.unit(100, "parsecs")
  1678. }
  1679. ]
  1680. ))
  1681. characterMakers.push(() => makeCharacter(
  1682. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  1683. {
  1684. front: {
  1685. height: math.unit(2, "meter"),
  1686. weight: math.unit(90, "kg"),
  1687. name: "Front",
  1688. image: {
  1689. source: "./media/characters/gael'rathus/front.svg"
  1690. }
  1691. },
  1692. frontAlt: {
  1693. height: math.unit(2, "meter"),
  1694. weight: math.unit(90, "kg"),
  1695. name: "Front (alt)",
  1696. image: {
  1697. source: "./media/characters/gael'rathus/front-alt.svg"
  1698. }
  1699. },
  1700. frontAlt2: {
  1701. height: math.unit(2, "meter"),
  1702. weight: math.unit(90, "kg"),
  1703. name: "Front (alt 2)",
  1704. image: {
  1705. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1706. }
  1707. }
  1708. },
  1709. [
  1710. {
  1711. name: "Normal",
  1712. height: math.unit(9, "feet"),
  1713. default: true
  1714. },
  1715. {
  1716. name: "Large",
  1717. height: math.unit(25, "feet")
  1718. },
  1719. {
  1720. name: "Macro",
  1721. height: math.unit(0.25, "miles")
  1722. },
  1723. {
  1724. name: "Megamacro",
  1725. height: math.unit(10, "miles")
  1726. }
  1727. ]
  1728. ))
  1729. characterMakers.push(() => makeCharacter(
  1730. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  1731. {
  1732. side: {
  1733. height: math.unit(2, "meter"),
  1734. weight: math.unit(140, "kg"),
  1735. name: "Side",
  1736. image: {
  1737. source: "./media/characters/sosha/side.svg",
  1738. bottom: 0.042
  1739. }
  1740. },
  1741. },
  1742. [
  1743. {
  1744. name: "Normal",
  1745. height: math.unit(12, "feet"),
  1746. default: true
  1747. }
  1748. ]
  1749. ))
  1750. characterMakers.push(() => makeCharacter(
  1751. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  1752. {
  1753. side: {
  1754. height: math.unit(5 + 5 / 12, "feet"),
  1755. weight: math.unit(170, "kg"),
  1756. name: "Side",
  1757. image: {
  1758. source: "./media/characters/runnola/side.svg",
  1759. extra: 741 / 448,
  1760. bottom: 0.05
  1761. }
  1762. },
  1763. },
  1764. [
  1765. {
  1766. name: "Small",
  1767. height: math.unit(3, "feet")
  1768. },
  1769. {
  1770. name: "Normal",
  1771. height: math.unit(5 + 5 / 12, "feet"),
  1772. default: true
  1773. },
  1774. {
  1775. name: "Big",
  1776. height: math.unit(10, "feet")
  1777. },
  1778. ]
  1779. ))
  1780. characterMakers.push(() => makeCharacter(
  1781. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  1782. {
  1783. front: {
  1784. height: math.unit(2, "meter"),
  1785. weight: math.unit(50, "kg"),
  1786. name: "Front",
  1787. image: {
  1788. source: "./media/characters/kurribird/front.svg",
  1789. bottom: 0.015
  1790. }
  1791. },
  1792. frontAlt: {
  1793. height: math.unit(1.5, "meter"),
  1794. weight: math.unit(50, "kg"),
  1795. name: "Front (Alt)",
  1796. image: {
  1797. source: "./media/characters/kurribird/front-alt.svg",
  1798. extra: 1.45
  1799. }
  1800. },
  1801. },
  1802. [
  1803. {
  1804. name: "Normal",
  1805. height: math.unit(7, "feet")
  1806. },
  1807. {
  1808. name: "Big",
  1809. height: math.unit(12, "feet"),
  1810. default: true
  1811. },
  1812. {
  1813. name: "Macro",
  1814. height: math.unit(1500, "feet")
  1815. },
  1816. {
  1817. name: "Megamacro",
  1818. height: math.unit(2, "miles")
  1819. }
  1820. ]
  1821. ))
  1822. characterMakers.push(() => makeCharacter(
  1823. { name: "Elbial", species: ["goat", "lion", "demon"], tags: ["anthro"] },
  1824. {
  1825. front: {
  1826. height: math.unit(2, "meter"),
  1827. weight: math.unit(80, "kg"),
  1828. name: "Front",
  1829. image: {
  1830. source: "./media/characters/elbial/front.svg",
  1831. extra: 1643 / 1556,
  1832. bottom: 60.2 / 1696
  1833. }
  1834. },
  1835. side: {
  1836. height: math.unit(2, "meter"),
  1837. weight: math.unit(80, "kg"),
  1838. name: "Side",
  1839. image: {
  1840. source: "./media/characters/elbial/side.svg",
  1841. extra: 1630 / 1565,
  1842. bottom: 71.5 / 1697
  1843. }
  1844. },
  1845. back: {
  1846. height: math.unit(2, "meter"),
  1847. weight: math.unit(80, "kg"),
  1848. name: "Back",
  1849. image: {
  1850. source: "./media/characters/elbial/back.svg",
  1851. extra: 1668 / 1595,
  1852. bottom: 5.6 / 1672
  1853. }
  1854. },
  1855. frontDressed: {
  1856. height: math.unit(2, "meter"),
  1857. weight: math.unit(80, "kg"),
  1858. name: "Front (Dressed)",
  1859. image: {
  1860. source: "./media/characters/elbial/front-dressed.svg",
  1861. extra: 1653 / 1584,
  1862. bottom: 57 / 1708
  1863. }
  1864. },
  1865. genitals: {
  1866. height: math.unit(2 / 3.367, "meter"),
  1867. name: "Genitals",
  1868. image: {
  1869. source: "./media/characters/elbial/genitals.svg"
  1870. }
  1871. },
  1872. },
  1873. [
  1874. {
  1875. name: "Large",
  1876. height: math.unit(100, "feet")
  1877. },
  1878. {
  1879. name: "Macro",
  1880. height: math.unit(500, "feet"),
  1881. default: true
  1882. },
  1883. {
  1884. name: "Megamacro",
  1885. height: math.unit(10, "miles")
  1886. },
  1887. {
  1888. name: "Gigamacro",
  1889. height: math.unit(25000, "miles")
  1890. },
  1891. {
  1892. name: "Full-Size",
  1893. height: math.unit(8000000, "gigaparsecs")
  1894. }
  1895. ]
  1896. ))
  1897. characterMakers.push(() => makeCharacter(
  1898. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  1899. {
  1900. front: {
  1901. height: math.unit(2, "meter"),
  1902. weight: math.unit(60, "kg"),
  1903. name: "Front",
  1904. image: {
  1905. source: "./media/characters/noah/front.svg"
  1906. }
  1907. },
  1908. talons: {
  1909. height: math.unit(0.315, "meter"),
  1910. name: "Talons",
  1911. image: {
  1912. source: "./media/characters/noah/talons.svg"
  1913. }
  1914. }
  1915. },
  1916. [
  1917. {
  1918. name: "Large",
  1919. height: math.unit(50, "feet")
  1920. },
  1921. {
  1922. name: "Macro",
  1923. height: math.unit(750, "feet"),
  1924. default: true
  1925. },
  1926. {
  1927. name: "Megamacro",
  1928. height: math.unit(50, "miles")
  1929. },
  1930. {
  1931. name: "Gigamacro",
  1932. height: math.unit(100000, "miles")
  1933. },
  1934. {
  1935. name: "Full-Size",
  1936. height: math.unit(3000000000, "miles")
  1937. }
  1938. ]
  1939. ))
  1940. characterMakers.push(() => makeCharacter(
  1941. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  1942. {
  1943. front: {
  1944. height: math.unit(2, "meter"),
  1945. weight: math.unit(80, "kg"),
  1946. name: "Front",
  1947. image: {
  1948. source: "./media/characters/natalya/front.svg"
  1949. }
  1950. },
  1951. back: {
  1952. height: math.unit(2, "meter"),
  1953. weight: math.unit(80, "kg"),
  1954. name: "Back",
  1955. image: {
  1956. source: "./media/characters/natalya/back.svg"
  1957. }
  1958. }
  1959. },
  1960. [
  1961. {
  1962. name: "Normal",
  1963. height: math.unit(150, "feet"),
  1964. default: true
  1965. },
  1966. {
  1967. name: "Megamacro",
  1968. height: math.unit(5, "miles")
  1969. },
  1970. {
  1971. name: "Full-Size",
  1972. height: math.unit(600, "kiloparsecs")
  1973. }
  1974. ]
  1975. ))
  1976. characterMakers.push(() => makeCharacter(
  1977. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  1978. {
  1979. front: {
  1980. height: math.unit(2, "meter"),
  1981. weight: math.unit(50, "kg"),
  1982. name: "Front",
  1983. image: {
  1984. source: "./media/characters/erestrebah/front.svg",
  1985. extra: 208 / 193,
  1986. bottom: 0.055
  1987. }
  1988. },
  1989. back: {
  1990. height: math.unit(2, "meter"),
  1991. weight: math.unit(50, "kg"),
  1992. name: "Back",
  1993. image: {
  1994. source: "./media/characters/erestrebah/back.svg",
  1995. extra: 1.3
  1996. }
  1997. }
  1998. },
  1999. [
  2000. {
  2001. name: "Normal",
  2002. height: math.unit(10, "feet")
  2003. },
  2004. {
  2005. name: "Large",
  2006. height: math.unit(50, "feet"),
  2007. default: true
  2008. },
  2009. {
  2010. name: "Macro",
  2011. height: math.unit(300, "feet")
  2012. },
  2013. {
  2014. name: "Macro+",
  2015. height: math.unit(750, "feet")
  2016. },
  2017. {
  2018. name: "Megamacro",
  2019. height: math.unit(3, "miles")
  2020. }
  2021. ]
  2022. ))
  2023. characterMakers.push(() => makeCharacter(
  2024. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2025. {
  2026. front: {
  2027. height: math.unit(2, "meter"),
  2028. weight: math.unit(80, "kg"),
  2029. name: "Front",
  2030. image: {
  2031. source: "./media/characters/jennifer/front.svg",
  2032. bottom: 0.11,
  2033. extra: 1.16
  2034. }
  2035. },
  2036. frontAlt: {
  2037. height: math.unit(2, "meter"),
  2038. weight: math.unit(80, "kg"),
  2039. name: "Front (Alt)",
  2040. image: {
  2041. source: "./media/characters/jennifer/front-alt.svg"
  2042. }
  2043. }
  2044. },
  2045. [
  2046. {
  2047. name: "Canon Height",
  2048. height: math.unit(120, "feet"),
  2049. default: true
  2050. },
  2051. {
  2052. name: "Macro+",
  2053. height: math.unit(300, "feet")
  2054. },
  2055. {
  2056. name: "Megamacro",
  2057. height: math.unit(20000, "feet")
  2058. }
  2059. ]
  2060. ))
  2061. characterMakers.push(() => makeCharacter(
  2062. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2063. {
  2064. front: {
  2065. height: math.unit(2, "meter"),
  2066. weight: math.unit(50, "kg"),
  2067. name: "Front",
  2068. image: {
  2069. source: "./media/characters/kalista/front.svg",
  2070. extra: 1947 / 1700,
  2071. bottom: 76.6/1412.98
  2072. }
  2073. },
  2074. back: {
  2075. height: math.unit(2, "meter"),
  2076. weight: math.unit(50, "kg"),
  2077. name: "Back",
  2078. image: {
  2079. source: "./media/characters/kalista/back.svg",
  2080. extra: 1366 / 1156,
  2081. bottom: 33.9/1362.78
  2082. }
  2083. }
  2084. },
  2085. [
  2086. {
  2087. name: "Uncomfortably Small",
  2088. height: math.unit(10, "feet")
  2089. },
  2090. {
  2091. name: "Small",
  2092. height: math.unit(30, "feet")
  2093. },
  2094. {
  2095. name: "Macro",
  2096. height: math.unit(100, "feet"),
  2097. default: true
  2098. },
  2099. {
  2100. name: "Macro+",
  2101. height: math.unit(2000, "feet")
  2102. },
  2103. {
  2104. name: "True Form",
  2105. height: math.unit(8924, "miles")
  2106. }
  2107. ]
  2108. ))
  2109. characterMakers.push(() => makeCharacter(
  2110. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2111. {
  2112. front: {
  2113. height: math.unit(2, "meter"),
  2114. weight: math.unit(120, "kg"),
  2115. name: "Front",
  2116. image: {
  2117. source: "./media/characters/ggv/front.svg"
  2118. }
  2119. },
  2120. side: {
  2121. height: math.unit(2, "meter"),
  2122. weight: math.unit(120, "kg"),
  2123. name: "Side",
  2124. image: {
  2125. source: "./media/characters/ggv/side.svg"
  2126. }
  2127. }
  2128. },
  2129. [
  2130. {
  2131. name: "Extremely Puny",
  2132. height: math.unit(9 + 5 / 12, "feet")
  2133. },
  2134. {
  2135. name: "Horribly Small",
  2136. height: math.unit(47.7, "miles"),
  2137. default: true
  2138. },
  2139. {
  2140. name: "Reasonably Sized",
  2141. height: math.unit(25000, "parsecs")
  2142. },
  2143. {
  2144. name: "Slightly Uncompressed",
  2145. height: math.unit(7.77e31, "parsecs")
  2146. },
  2147. {
  2148. name: "Omniversal",
  2149. height: math.unit(1e300, "meters")
  2150. },
  2151. ]
  2152. ))
  2153. characterMakers.push(() => makeCharacter(
  2154. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2155. {
  2156. front: {
  2157. height: math.unit(2, "meter"),
  2158. weight: math.unit(75, "lb"),
  2159. name: "Front",
  2160. image: {
  2161. source: "./media/characters/napalm/front.svg"
  2162. }
  2163. },
  2164. back: {
  2165. height: math.unit(2, "meter"),
  2166. weight: math.unit(75, "lb"),
  2167. name: "Back",
  2168. image: {
  2169. source: "./media/characters/napalm/back.svg"
  2170. }
  2171. }
  2172. },
  2173. [
  2174. {
  2175. name: "Standard",
  2176. height: math.unit(55, "feet"),
  2177. default: true
  2178. }
  2179. ]
  2180. ))
  2181. characterMakers.push(() => makeCharacter(
  2182. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2183. {
  2184. front: {
  2185. height: math.unit(7 + 5 / 6, "feet"),
  2186. weight: math.unit(325, "lb"),
  2187. name: "Front",
  2188. image: {
  2189. source: "./media/characters/asana/front.svg",
  2190. extra: 1128 / 1068
  2191. }
  2192. },
  2193. back: {
  2194. height: math.unit(7 + 5 / 6, "feet"),
  2195. weight: math.unit(325, "lb"),
  2196. name: "Back",
  2197. image: {
  2198. source: "./media/characters/asana/back.svg",
  2199. extra: 1128 / 1068
  2200. }
  2201. },
  2202. },
  2203. [
  2204. {
  2205. name: "Standard",
  2206. height: math.unit(7 + 5 / 6, "feet"),
  2207. default: true
  2208. },
  2209. {
  2210. name: "Large",
  2211. height: math.unit(10, "meters")
  2212. },
  2213. {
  2214. name: "Macro",
  2215. height: math.unit(2500, "meters")
  2216. },
  2217. {
  2218. name: "Megamacro",
  2219. height: math.unit(5e6, "meters")
  2220. },
  2221. {
  2222. name: "Examacro",
  2223. height: math.unit(5e12, "lightyears")
  2224. },
  2225. {
  2226. name: "Max Size",
  2227. height: math.unit(1e31, "lightyears")
  2228. }
  2229. ]
  2230. ))
  2231. characterMakers.push(() => makeCharacter(
  2232. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  2233. {
  2234. front: {
  2235. height: math.unit(2, "meter"),
  2236. weight: math.unit(60, "kg"),
  2237. name: "Front",
  2238. image: {
  2239. source: "./media/characters/ebony/front.svg",
  2240. bottom: 0.03,
  2241. extra: 1045 / 810 + 0.03
  2242. }
  2243. },
  2244. side: {
  2245. height: math.unit(2, "meter"),
  2246. weight: math.unit(60, "kg"),
  2247. name: "Side",
  2248. image: {
  2249. source: "./media/characters/ebony/side.svg",
  2250. bottom: 0.03,
  2251. extra: 1045 / 810 + 0.03
  2252. }
  2253. },
  2254. back: {
  2255. height: math.unit(2, "meter"),
  2256. weight: math.unit(60, "kg"),
  2257. name: "Back",
  2258. image: {
  2259. source: "./media/characters/ebony/back.svg",
  2260. bottom: 0.01,
  2261. extra: 1045 / 810 + 0.01
  2262. }
  2263. },
  2264. },
  2265. [
  2266. // TODO check why I did this lol
  2267. {
  2268. name: "Standard",
  2269. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  2270. default: true
  2271. },
  2272. {
  2273. name: "Macro",
  2274. height: math.unit(200, "feet")
  2275. },
  2276. {
  2277. name: "Gigamacro",
  2278. height: math.unit(13000, "km")
  2279. }
  2280. ]
  2281. ))
  2282. characterMakers.push(() => makeCharacter(
  2283. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  2284. {
  2285. front: {
  2286. height: math.unit(6, "feet"),
  2287. weight: math.unit(175, "lb"),
  2288. name: "Front",
  2289. image: {
  2290. source: "./media/characters/mountain/front.svg"
  2291. }
  2292. },
  2293. back: {
  2294. height: math.unit(6, "feet"),
  2295. weight: math.unit(175, "lb"),
  2296. name: "Back",
  2297. image: {
  2298. source: "./media/characters/mountain/back.svg"
  2299. }
  2300. },
  2301. },
  2302. [
  2303. {
  2304. name: "Large",
  2305. height: math.unit(20, "meters")
  2306. },
  2307. {
  2308. name: "Macro",
  2309. height: math.unit(300, "meters")
  2310. },
  2311. {
  2312. name: "Gigamacro",
  2313. height: math.unit(10000, "km"),
  2314. default: true
  2315. },
  2316. {
  2317. name: "Examacro",
  2318. height: math.unit(10e9, "lightyears")
  2319. }
  2320. ]
  2321. ))
  2322. characterMakers.push(() => makeCharacter(
  2323. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  2324. {
  2325. front: {
  2326. height: math.unit(8, "feet"),
  2327. weight: math.unit(500, "lb"),
  2328. name: "Front",
  2329. image: {
  2330. source: "./media/characters/rick/front.svg"
  2331. }
  2332. }
  2333. },
  2334. [
  2335. {
  2336. name: "Normal",
  2337. height: math.unit(8, "feet"),
  2338. default: true
  2339. },
  2340. {
  2341. name: "Macro",
  2342. height: math.unit(5, "km")
  2343. }
  2344. ]
  2345. ))
  2346. characterMakers.push(() => makeCharacter(
  2347. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  2348. {
  2349. front: {
  2350. height: math.unit(8, "feet"),
  2351. weight: math.unit(120, "lb"),
  2352. name: "Front",
  2353. image: {
  2354. source: "./media/characters/ona/front.svg"
  2355. }
  2356. },
  2357. frontAlt: {
  2358. height: math.unit(8, "feet"),
  2359. weight: math.unit(120, "lb"),
  2360. name: "Front (Alt)",
  2361. image: {
  2362. source: "./media/characters/ona/front-alt.svg"
  2363. }
  2364. },
  2365. back: {
  2366. height: math.unit(8, "feet"),
  2367. weight: math.unit(120, "lb"),
  2368. name: "Back",
  2369. image: {
  2370. source: "./media/characters/ona/back.svg"
  2371. }
  2372. },
  2373. foot: {
  2374. height: math.unit(1.1, "feet"),
  2375. name: "Foot",
  2376. image: {
  2377. source: "./media/characters/ona/foot.svg"
  2378. }
  2379. }
  2380. },
  2381. [
  2382. {
  2383. name: "Megamacro",
  2384. height: math.unit(70, "km"),
  2385. default: true
  2386. },
  2387. {
  2388. name: "Gigamacro",
  2389. height: math.unit(681818, "miles")
  2390. },
  2391. {
  2392. name: "Examacro",
  2393. height: math.unit(3800000, "lightyears")
  2394. },
  2395. ]
  2396. ))
  2397. characterMakers.push(() => makeCharacter(
  2398. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  2399. {
  2400. front: {
  2401. height: math.unit(12, "feet"),
  2402. weight: math.unit(3000, "lb"),
  2403. name: "Front",
  2404. image: {
  2405. source: "./media/characters/mech/front.svg",
  2406. bottom: 0.025,
  2407. }
  2408. },
  2409. back: {
  2410. height: math.unit(12, "feet"),
  2411. weight: math.unit(3000, "lb"),
  2412. name: "Back",
  2413. image: {
  2414. source: "./media/characters/mech/back.svg",
  2415. bottom: 0.03,
  2416. }
  2417. }
  2418. },
  2419. [
  2420. {
  2421. name: "Normal",
  2422. height: math.unit(12, "feet")
  2423. },
  2424. {
  2425. name: "Macro",
  2426. height: math.unit(300, "feet"),
  2427. default: true
  2428. },
  2429. {
  2430. name: "Macro+",
  2431. height: math.unit(1500, "feet")
  2432. },
  2433. ]
  2434. ))
  2435. characterMakers.push(() => makeCharacter(
  2436. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  2437. {
  2438. front: {
  2439. height: math.unit(1.3, "meter"),
  2440. weight: math.unit(30, "kg"),
  2441. name: "Front",
  2442. image: {
  2443. source: "./media/characters/gregory/front.svg",
  2444. }
  2445. }
  2446. },
  2447. [
  2448. {
  2449. name: "Normal",
  2450. height: math.unit(1.3, "meter"),
  2451. default: true
  2452. },
  2453. {
  2454. name: "Macro",
  2455. height: math.unit(20, "meter")
  2456. }
  2457. ]
  2458. ))
  2459. characterMakers.push(() => makeCharacter(
  2460. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  2461. {
  2462. front: {
  2463. height: math.unit(2.8, "meter"),
  2464. weight: math.unit(200, "kg"),
  2465. name: "Front",
  2466. image: {
  2467. source: "./media/characters/elory/front.svg",
  2468. }
  2469. }
  2470. },
  2471. [
  2472. {
  2473. name: "Normal",
  2474. height: math.unit(2.8, "meter"),
  2475. default: true
  2476. },
  2477. {
  2478. name: "Macro",
  2479. height: math.unit(38, "meter")
  2480. }
  2481. ]
  2482. ))
  2483. characterMakers.push(() => makeCharacter(
  2484. { name: "Angelpatamon", species: ["patamon"], tags: ["anthro"] },
  2485. {
  2486. front: {
  2487. height: math.unit(470, "feet"),
  2488. weight: math.unit(924, "tons"),
  2489. name: "Front",
  2490. image: {
  2491. source: "./media/characters/angelpatamon/front.svg",
  2492. }
  2493. }
  2494. },
  2495. [
  2496. {
  2497. name: "Normal",
  2498. height: math.unit(470, "feet"),
  2499. default: true
  2500. },
  2501. {
  2502. name: "Deity Size I",
  2503. height: math.unit(28651.2, "km")
  2504. },
  2505. {
  2506. name: "Deity Size II",
  2507. height: math.unit(171907.2, "km")
  2508. }
  2509. ]
  2510. ))
  2511. characterMakers.push(() => makeCharacter(
  2512. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  2513. {
  2514. side: {
  2515. height: math.unit(7.2, "meter"),
  2516. weight: math.unit(8.2, "tons"),
  2517. name: "Side",
  2518. image: {
  2519. source: "./media/characters/cryae/side.svg",
  2520. extra: 3500 / 1500
  2521. }
  2522. }
  2523. },
  2524. [
  2525. {
  2526. name: "Normal",
  2527. height: math.unit(7.2, "meter"),
  2528. default: true
  2529. }
  2530. ]
  2531. ))
  2532. characterMakers.push(() => makeCharacter(
  2533. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  2534. {
  2535. front: {
  2536. height: math.unit(6, "feet"),
  2537. weight: math.unit(175, "lb"),
  2538. name: "Front",
  2539. image: {
  2540. source: "./media/characters/xera/front.svg",
  2541. extra: 2300 / 2061
  2542. }
  2543. },
  2544. side: {
  2545. height: math.unit(6, "feet"),
  2546. weight: math.unit(175, "lb"),
  2547. name: "Side",
  2548. image: {
  2549. source: "./media/characters/xera/side.svg",
  2550. extra: 2300 / 2061
  2551. }
  2552. },
  2553. back: {
  2554. height: math.unit(6, "feet"),
  2555. weight: math.unit(175, "lb"),
  2556. name: "Back",
  2557. image: {
  2558. source: "./media/characters/xera/back.svg"
  2559. }
  2560. },
  2561. },
  2562. [
  2563. {
  2564. name: "Small",
  2565. height: math.unit(10, "feet")
  2566. },
  2567. {
  2568. name: "Macro",
  2569. height: math.unit(500, "meters"),
  2570. default: true
  2571. },
  2572. {
  2573. name: "Macro+",
  2574. height: math.unit(10, "km")
  2575. },
  2576. {
  2577. name: "Gigamacro",
  2578. height: math.unit(25000, "km")
  2579. },
  2580. {
  2581. name: "Teramacro",
  2582. height: math.unit(3e6, "km")
  2583. }
  2584. ]
  2585. ))
  2586. characterMakers.push(() => makeCharacter(
  2587. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  2588. {
  2589. front: {
  2590. height: math.unit(6, "feet"),
  2591. weight: math.unit(175, "lb"),
  2592. name: "Front",
  2593. image: {
  2594. source: "./media/characters/nebula/front.svg",
  2595. extra: 2600 / 2450
  2596. }
  2597. }
  2598. },
  2599. [
  2600. {
  2601. name: "Small",
  2602. height: math.unit(4.5, "meters")
  2603. },
  2604. {
  2605. name: "Macro",
  2606. height: math.unit(1500, "meters"),
  2607. default: true
  2608. },
  2609. {
  2610. name: "Megamacro",
  2611. height: math.unit(150, "km")
  2612. },
  2613. {
  2614. name: "Gigamacro",
  2615. height: math.unit(27000, "km")
  2616. }
  2617. ]
  2618. ))
  2619. characterMakers.push(() => makeCharacter(
  2620. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  2621. {
  2622. front: {
  2623. height: math.unit(6, "feet"),
  2624. weight: math.unit(225, "lb"),
  2625. name: "Front",
  2626. image: {
  2627. source: "./media/characters/abysgar/front.svg"
  2628. }
  2629. }
  2630. },
  2631. [
  2632. {
  2633. name: "Small",
  2634. height: math.unit(4.5, "meters")
  2635. },
  2636. {
  2637. name: "Macro",
  2638. height: math.unit(1250, "meters"),
  2639. default: true
  2640. },
  2641. {
  2642. name: "Megamacro",
  2643. height: math.unit(125, "km")
  2644. },
  2645. {
  2646. name: "Gigamacro",
  2647. height: math.unit(26000, "km")
  2648. }
  2649. ]
  2650. ))
  2651. characterMakers.push(() => makeCharacter(
  2652. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  2653. {
  2654. front: {
  2655. height: math.unit(6, "feet"),
  2656. weight: math.unit(180, "lb"),
  2657. name: "Front",
  2658. image: {
  2659. source: "./media/characters/yakuz/front.svg"
  2660. }
  2661. }
  2662. },
  2663. [
  2664. {
  2665. name: "Small",
  2666. height: math.unit(5, "meters")
  2667. },
  2668. {
  2669. name: "Macro",
  2670. height: math.unit(1500, "meters"),
  2671. default: true
  2672. },
  2673. {
  2674. name: "Megamacro",
  2675. height: math.unit(200, "km")
  2676. },
  2677. {
  2678. name: "Gigamacro",
  2679. height: math.unit(100000, "km")
  2680. }
  2681. ]
  2682. ))
  2683. characterMakers.push(() => makeCharacter(
  2684. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  2685. {
  2686. front: {
  2687. height: math.unit(6, "feet"),
  2688. weight: math.unit(175, "lb"),
  2689. name: "Front",
  2690. image: {
  2691. source: "./media/characters/mirova/front.svg"
  2692. }
  2693. }
  2694. },
  2695. [
  2696. {
  2697. name: "Small",
  2698. height: math.unit(5, "meters")
  2699. },
  2700. {
  2701. name: "Macro",
  2702. height: math.unit(900, "meters"),
  2703. default: true
  2704. },
  2705. {
  2706. name: "Megamacro",
  2707. height: math.unit(135, "km")
  2708. },
  2709. {
  2710. name: "Gigamacro",
  2711. height: math.unit(20000, "km")
  2712. }
  2713. ]
  2714. ))
  2715. characterMakers.push(() => makeCharacter(
  2716. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  2717. {
  2718. side: {
  2719. height: math.unit(28.35, "feet"),
  2720. weight: math.unit(99.75, "tons"),
  2721. name: "Side",
  2722. image: {
  2723. source: "./media/characters/asana-mech/side.svg"
  2724. }
  2725. }
  2726. },
  2727. [
  2728. {
  2729. name: "Normal",
  2730. height: math.unit(28.35, "feet"),
  2731. default: true
  2732. },
  2733. {
  2734. name: "Macro",
  2735. height: math.unit(2500, "feet")
  2736. },
  2737. {
  2738. name: "Megamacro",
  2739. height: math.unit(25, "miles")
  2740. },
  2741. {
  2742. name: "Examacro",
  2743. height: math.unit(6e8, "lightyears")
  2744. },
  2745. ]
  2746. ))
  2747. characterMakers.push(() => makeCharacter(
  2748. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  2749. {
  2750. front: {
  2751. height: math.unit(2, "meters"),
  2752. weight: math.unit(70, "kg"),
  2753. name: "Front",
  2754. image: {
  2755. source: "./media/characters/ashtrek/front.svg",
  2756. extra: 560 / 524,
  2757. bottom: 0.01
  2758. }
  2759. },
  2760. frontArmor: {
  2761. height: math.unit(2, "meters"),
  2762. weight: math.unit(76, "kg"),
  2763. name: "Front (Armor)",
  2764. image: {
  2765. source: "./media/characters/ashtrek/front-armor.svg",
  2766. extra: 561 / 527,
  2767. bottom: 0.01
  2768. }
  2769. },
  2770. side: {
  2771. height: math.unit(2, "meters"),
  2772. weight: math.unit(70, "kg"),
  2773. name: "Side",
  2774. image: {
  2775. source: "./media/characters/ashtrek/side.svg",
  2776. extra: 1717 / 1609,
  2777. bottom: 0.005
  2778. }
  2779. },
  2780. back: {
  2781. height: math.unit(2, "meters"),
  2782. weight: math.unit(70, "kg"),
  2783. name: "Back",
  2784. image: {
  2785. source: "./media/characters/ashtrek/back.svg",
  2786. extra: 1570 / 1501
  2787. }
  2788. },
  2789. },
  2790. [
  2791. {
  2792. name: "DEFCON 5",
  2793. height: math.unit(5, "meters")
  2794. },
  2795. {
  2796. name: "DEFCON 4",
  2797. height: math.unit(500, "meters"),
  2798. default: true
  2799. },
  2800. {
  2801. name: "DEFCON 3",
  2802. height: math.unit(5, "km")
  2803. },
  2804. {
  2805. name: "DEFCON 2",
  2806. height: math.unit(500, "km")
  2807. },
  2808. {
  2809. name: "DEFCON 1",
  2810. height: math.unit(500000, "km")
  2811. },
  2812. {
  2813. name: "DEFCON 0",
  2814. height: math.unit(3, "gigaparsecs")
  2815. },
  2816. ]
  2817. ))
  2818. characterMakers.push(() => makeCharacter(
  2819. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  2820. {
  2821. front: {
  2822. height: math.unit(2, "meters"),
  2823. weight: math.unit(76, "kg"),
  2824. name: "Front",
  2825. image: {
  2826. source: "./media/characters/gale/front.svg"
  2827. }
  2828. },
  2829. frontAlt1: {
  2830. height: math.unit(2, "meters"),
  2831. weight: math.unit(76, "kg"),
  2832. name: "Front (Alt 1)",
  2833. image: {
  2834. source: "./media/characters/gale/front-alt-1.svg"
  2835. }
  2836. },
  2837. frontAlt2: {
  2838. height: math.unit(2, "meters"),
  2839. weight: math.unit(76, "kg"),
  2840. name: "Front (Alt 2)",
  2841. image: {
  2842. source: "./media/characters/gale/front-alt-2.svg"
  2843. }
  2844. },
  2845. },
  2846. [
  2847. {
  2848. name: "Normal",
  2849. height: math.unit(7, "feet")
  2850. },
  2851. {
  2852. name: "Macro",
  2853. height: math.unit(150, "feet"),
  2854. default: true
  2855. },
  2856. {
  2857. name: "Macro+",
  2858. height: math.unit(300, "feet")
  2859. },
  2860. ]
  2861. ))
  2862. characterMakers.push(() => makeCharacter(
  2863. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  2864. {
  2865. front: {
  2866. height: math.unit(2, "meters"),
  2867. weight: math.unit(76, "kg"),
  2868. name: "Front",
  2869. image: {
  2870. source: "./media/characters/draylen/front.svg"
  2871. }
  2872. }
  2873. },
  2874. [
  2875. {
  2876. name: "Macro",
  2877. height: math.unit(150, "feet"),
  2878. default: true
  2879. }
  2880. ]
  2881. ))
  2882. characterMakers.push(() => makeCharacter(
  2883. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  2884. {
  2885. front: {
  2886. height: math.unit(7 + 9 / 12, "feet"),
  2887. weight: math.unit(379, "lbs"),
  2888. name: "Front",
  2889. image: {
  2890. source: "./media/characters/chez/front.svg"
  2891. }
  2892. },
  2893. side: {
  2894. height: math.unit(7 + 9 / 12, "feet"),
  2895. weight: math.unit(379, "lbs"),
  2896. name: "Side",
  2897. image: {
  2898. source: "./media/characters/chez/side.svg"
  2899. }
  2900. }
  2901. },
  2902. [
  2903. {
  2904. name: "Normal",
  2905. height: math.unit(7 + 9 / 12, "feet"),
  2906. default: true
  2907. },
  2908. {
  2909. name: "God King",
  2910. height: math.unit(9750000, "meters")
  2911. }
  2912. ]
  2913. ))
  2914. characterMakers.push(() => makeCharacter(
  2915. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  2916. {
  2917. front: {
  2918. height: math.unit(6, "feet"),
  2919. weight: math.unit(275, "lbs"),
  2920. name: "Front",
  2921. image: {
  2922. source: "./media/characters/kaylum/front.svg",
  2923. bottom: 0.01,
  2924. extra: 1166 / 1031
  2925. }
  2926. },
  2927. frontWingless: {
  2928. height: math.unit(6, "feet"),
  2929. weight: math.unit(275, "lbs"),
  2930. name: "Front (Wingless)",
  2931. image: {
  2932. source: "./media/characters/kaylum/front-wingless.svg",
  2933. bottom: 0.01,
  2934. extra: 1117 / 1031
  2935. }
  2936. }
  2937. },
  2938. [
  2939. {
  2940. name: "Normal",
  2941. height: math.unit(3.05, "meters")
  2942. },
  2943. {
  2944. name: "Master",
  2945. height: math.unit(5.5, "meters")
  2946. },
  2947. {
  2948. name: "Rampage",
  2949. height: math.unit(19, "meters")
  2950. },
  2951. {
  2952. name: "Macro Lite",
  2953. height: math.unit(37, "meters")
  2954. },
  2955. {
  2956. name: "Hyper Predator",
  2957. height: math.unit(61, "meters")
  2958. },
  2959. {
  2960. name: "Macro",
  2961. height: math.unit(138, "meters"),
  2962. default: true
  2963. }
  2964. ]
  2965. ))
  2966. characterMakers.push(() => makeCharacter(
  2967. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  2968. {
  2969. front: {
  2970. height: math.unit(6, "feet"),
  2971. weight: math.unit(150, "lbs"),
  2972. name: "Front",
  2973. image: {
  2974. source: "./media/characters/geta/front.svg"
  2975. }
  2976. }
  2977. },
  2978. [
  2979. {
  2980. name: "Micro",
  2981. height: math.unit(3, "inches"),
  2982. default: true
  2983. },
  2984. {
  2985. name: "Normal",
  2986. height: math.unit(5 + 5 / 12, "feet")
  2987. }
  2988. ]
  2989. ))
  2990. characterMakers.push(() => makeCharacter(
  2991. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  2992. {
  2993. front: {
  2994. height: math.unit(6, "feet"),
  2995. weight: math.unit(300, "lbs"),
  2996. name: "Front",
  2997. image: {
  2998. source: "./media/characters/tyrnn/front.svg"
  2999. }
  3000. }
  3001. },
  3002. [
  3003. {
  3004. name: "Main Height",
  3005. height: math.unit(355, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Fave. Height",
  3010. height: math.unit(2400, "feet")
  3011. }
  3012. ]
  3013. ))
  3014. characterMakers.push(() => makeCharacter(
  3015. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3016. {
  3017. front: {
  3018. height: math.unit(6, "feet"),
  3019. weight: math.unit(300, "lbs"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/appledectomy/front.svg"
  3023. }
  3024. }
  3025. },
  3026. [
  3027. {
  3028. name: "Macro",
  3029. height: math.unit(2500, "feet")
  3030. },
  3031. {
  3032. name: "Megamacro",
  3033. height: math.unit(50, "miles"),
  3034. default: true
  3035. },
  3036. {
  3037. name: "Gigamacro",
  3038. height: math.unit(5000, "miles")
  3039. },
  3040. {
  3041. name: "Teramacro",
  3042. height: math.unit(250000, "miles")
  3043. },
  3044. ]
  3045. ))
  3046. characterMakers.push(() => makeCharacter(
  3047. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3048. {
  3049. front: {
  3050. height: math.unit(6, "feet"),
  3051. weight: math.unit(200, "lbs"),
  3052. name: "Front",
  3053. image: {
  3054. source: "./media/characters/vulpes/front.svg",
  3055. extra: 573 / 543,
  3056. bottom: 0.033
  3057. }
  3058. },
  3059. side: {
  3060. height: math.unit(6, "feet"),
  3061. weight: math.unit(200, "lbs"),
  3062. name: "Side",
  3063. image: {
  3064. source: "./media/characters/vulpes/side.svg",
  3065. extra: 573 / 543,
  3066. bottom: 0.01
  3067. }
  3068. },
  3069. back: {
  3070. height: math.unit(6, "feet"),
  3071. weight: math.unit(200, "lbs"),
  3072. name: "Back",
  3073. image: {
  3074. source: "./media/characters/vulpes/back.svg",
  3075. extra: 573 / 543,
  3076. }
  3077. },
  3078. feet: {
  3079. height: math.unit(1.276, "feet"),
  3080. name: "Feet",
  3081. image: {
  3082. source: "./media/characters/vulpes/feet.svg"
  3083. }
  3084. },
  3085. maw: {
  3086. height: math.unit(1.18, "feet"),
  3087. name: "Maw",
  3088. image: {
  3089. source: "./media/characters/vulpes/maw.svg"
  3090. }
  3091. },
  3092. },
  3093. [
  3094. {
  3095. name: "Micro",
  3096. height: math.unit(2, "inches")
  3097. },
  3098. {
  3099. name: "Normal",
  3100. height: math.unit(6.3, "feet")
  3101. },
  3102. {
  3103. name: "Macro",
  3104. height: math.unit(850, "feet")
  3105. },
  3106. {
  3107. name: "Megamacro",
  3108. height: math.unit(7500, "feet"),
  3109. default: true
  3110. },
  3111. {
  3112. name: "Gigamacro",
  3113. height: math.unit(570000, "miles")
  3114. }
  3115. ]
  3116. ))
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3119. {
  3120. front: {
  3121. height: math.unit(6, "feet"),
  3122. weight: math.unit(210, "lbs"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/rain-fallen/front.svg"
  3126. }
  3127. },
  3128. side: {
  3129. height: math.unit(6, "feet"),
  3130. weight: math.unit(210, "lbs"),
  3131. name: "Side",
  3132. image: {
  3133. source: "./media/characters/rain-fallen/side.svg"
  3134. }
  3135. },
  3136. back: {
  3137. height: math.unit(6, "feet"),
  3138. weight: math.unit(210, "lbs"),
  3139. name: "Back",
  3140. image: {
  3141. source: "./media/characters/rain-fallen/back.svg"
  3142. }
  3143. },
  3144. feral: {
  3145. height: math.unit(9, "feet"),
  3146. weight: math.unit(700, "lbs"),
  3147. name: "Feral",
  3148. image: {
  3149. source: "./media/characters/rain-fallen/feral.svg"
  3150. }
  3151. },
  3152. },
  3153. [
  3154. {
  3155. name: "Normal",
  3156. height: math.unit(5, "meter")
  3157. },
  3158. {
  3159. name: "Macro",
  3160. height: math.unit(150, "meter"),
  3161. default: true
  3162. },
  3163. {
  3164. name: "Megamacro",
  3165. height: math.unit(278e6, "meter")
  3166. },
  3167. {
  3168. name: "Gigamacro",
  3169. height: math.unit(2e9, "meter")
  3170. },
  3171. {
  3172. name: "Teramacro",
  3173. height: math.unit(8e12, "meter")
  3174. },
  3175. {
  3176. name: "Devourer",
  3177. height: math.unit(14, "zettameters")
  3178. },
  3179. {
  3180. name: "Scarlet King",
  3181. height: math.unit(18, "yottameters")
  3182. },
  3183. {
  3184. name: "Void",
  3185. height: math.unit(6.66e66, "yottameters")
  3186. }
  3187. ]
  3188. ))
  3189. characterMakers.push(() => makeCharacter(
  3190. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  3191. {
  3192. standing: {
  3193. height: math.unit(6, "feet"),
  3194. weight: math.unit(180, "lbs"),
  3195. name: "Standing",
  3196. image: {
  3197. source: "./media/characters/zaakira/standing.svg"
  3198. }
  3199. },
  3200. laying: {
  3201. height: math.unit(3, "feet"),
  3202. weight: math.unit(180, "lbs"),
  3203. name: "Laying",
  3204. image: {
  3205. source: "./media/characters/zaakira/laying.svg"
  3206. }
  3207. },
  3208. },
  3209. [
  3210. {
  3211. name: "Normal",
  3212. height: math.unit(12, "feet")
  3213. },
  3214. {
  3215. name: "Macro",
  3216. height: math.unit(279, "feet"),
  3217. default: true
  3218. }
  3219. ]
  3220. ))
  3221. characterMakers.push(() => makeCharacter(
  3222. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  3223. {
  3224. front: {
  3225. height: math.unit(6, "feet"),
  3226. weight: math.unit(250, "lbs"),
  3227. name: "Front",
  3228. image: {
  3229. source: "./media/characters/sigvald/front.svg",
  3230. extra: 1000 / 850
  3231. }
  3232. },
  3233. back: {
  3234. height: math.unit(6, "feet"),
  3235. weight: math.unit(250, "lbs"),
  3236. name: "Back",
  3237. image: {
  3238. source: "./media/characters/sigvald/back.svg"
  3239. }
  3240. },
  3241. },
  3242. [
  3243. {
  3244. name: "Normal",
  3245. height: math.unit(8, "feet")
  3246. },
  3247. {
  3248. name: "Large",
  3249. height: math.unit(12, "feet")
  3250. },
  3251. {
  3252. name: "Larger",
  3253. height: math.unit(20, "feet")
  3254. },
  3255. {
  3256. name: "Macro",
  3257. height: math.unit(150, "feet")
  3258. },
  3259. {
  3260. name: "Macro+",
  3261. height: math.unit(200, "feet"),
  3262. default: true
  3263. },
  3264. ]
  3265. ))
  3266. characterMakers.push(() => makeCharacter(
  3267. { name: "Scott", species: ["fox"], tags: ["taur"] },
  3268. {
  3269. side: {
  3270. height: math.unit(12, "feet"),
  3271. weight: math.unit(2000, "kg"),
  3272. name: "Side",
  3273. image: {
  3274. source: "./media/characters/scott/side.svg",
  3275. extra: 754/724,
  3276. bottom: 0.069
  3277. }
  3278. },
  3279. upright: {
  3280. height: math.unit(12, "feet"),
  3281. weight: math.unit(2000, "kg"),
  3282. name: "Upright",
  3283. image: {
  3284. source: "./media/characters/scott/upright.svg",
  3285. extra: 3881/3722,
  3286. bottom: 0.05
  3287. }
  3288. },
  3289. },
  3290. [
  3291. {
  3292. name: "Normal",
  3293. height: math.unit(12, "feet"),
  3294. default: true
  3295. },
  3296. ]
  3297. ))
  3298. characterMakers.push(() => makeCharacter(
  3299. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  3300. {
  3301. side: {
  3302. height: math.unit(8, "meters"),
  3303. weight: math.unit(84755, "lbs"),
  3304. name: "Side",
  3305. image: {
  3306. source: "./media/characters/tobias/side.svg",
  3307. extra: 1474 / 1096,
  3308. bottom: 38.9 / 1513.1235
  3309. }
  3310. },
  3311. },
  3312. [
  3313. {
  3314. name: "Normal",
  3315. height: math.unit(8, "meters"),
  3316. default: true
  3317. },
  3318. ]
  3319. ))
  3320. characterMakers.push(() => makeCharacter(
  3321. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  3322. {
  3323. front: {
  3324. height: math.unit(5.5, "feet"),
  3325. weight: math.unit(400, "lbs"),
  3326. name: "Front",
  3327. image: {
  3328. source: "./media/characters/kieran/front.svg",
  3329. extra: 2694/2364,
  3330. bottom: 217/2908
  3331. }
  3332. },
  3333. side: {
  3334. height: math.unit(5.5, "feet"),
  3335. weight: math.unit(400, "lbs"),
  3336. name: "Side",
  3337. image: {
  3338. source: "./media/characters/kieran/side.svg",
  3339. extra: 875/777,
  3340. bottom: 84.6/959
  3341. }
  3342. },
  3343. },
  3344. [
  3345. {
  3346. name: "Normal",
  3347. height: math.unit(5.5, "feet"),
  3348. default: true
  3349. },
  3350. ]
  3351. ))
  3352. characterMakers.push(() => makeCharacter(
  3353. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  3354. {
  3355. side: {
  3356. height: math.unit(2, "meters"),
  3357. weight: math.unit(70, "kg"),
  3358. name: "Side",
  3359. image: {
  3360. source: "./media/characters/sanya/side.svg",
  3361. bottom: 0.02,
  3362. extra: 1.02
  3363. }
  3364. },
  3365. },
  3366. [
  3367. {
  3368. name: "Small",
  3369. height: math.unit(2, "meters")
  3370. },
  3371. {
  3372. name: "Normal",
  3373. height: math.unit(3, "meters")
  3374. },
  3375. {
  3376. name: "Macro",
  3377. height: math.unit(16, "meters"),
  3378. default: true
  3379. },
  3380. ]
  3381. ))
  3382. characterMakers.push(() => makeCharacter(
  3383. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  3384. {
  3385. side: {
  3386. height: math.unit(2, "meters"),
  3387. weight: math.unit(120, "kg"),
  3388. name: "Front",
  3389. image: {
  3390. source: "./media/characters/miranda/front.svg",
  3391. extra: 10.6 / 10
  3392. }
  3393. },
  3394. },
  3395. [
  3396. {
  3397. name: "Normal",
  3398. height: math.unit(10, "feet"),
  3399. default: true
  3400. }
  3401. ]
  3402. ))
  3403. characterMakers.push(() => makeCharacter(
  3404. { name: "James", species: ["deer"], tags: ["anthro"] },
  3405. {
  3406. side: {
  3407. height: math.unit(2, "meters"),
  3408. weight: math.unit(100, "kg"),
  3409. name: "Front",
  3410. image: {
  3411. source: "./media/characters/james/front.svg",
  3412. extra: 10 / 8.5
  3413. }
  3414. },
  3415. },
  3416. [
  3417. {
  3418. name: "Normal",
  3419. height: math.unit(8.5, "feet"),
  3420. default: true
  3421. }
  3422. ]
  3423. ))
  3424. characterMakers.push(() => makeCharacter(
  3425. { name: "Heather", species: ["cow"], tags: ["taur"] },
  3426. {
  3427. side: {
  3428. height: math.unit(9.5, "feet"),
  3429. weight: math.unit(2500, "lbs"),
  3430. name: "Side",
  3431. image: {
  3432. source: "./media/characters/heather/side.svg"
  3433. }
  3434. },
  3435. },
  3436. [
  3437. {
  3438. name: "Normal",
  3439. height: math.unit(9.5, "feet"),
  3440. default: true
  3441. }
  3442. ]
  3443. ))
  3444. characterMakers.push(() => makeCharacter(
  3445. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  3446. {
  3447. side: {
  3448. height: math.unit(6.5, "feet"),
  3449. weight: math.unit(400, "lbs"),
  3450. name: "Side",
  3451. image: {
  3452. source: "./media/characters/lukas/side.svg",
  3453. extra: 7.25 / 6.5
  3454. }
  3455. },
  3456. },
  3457. [
  3458. {
  3459. name: "Normal",
  3460. height: math.unit(6.5, "feet"),
  3461. default: true
  3462. }
  3463. ]
  3464. ))
  3465. characterMakers.push(() => makeCharacter(
  3466. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  3467. {
  3468. side: {
  3469. height: math.unit(5, "feet"),
  3470. weight: math.unit(3000, "lbs"),
  3471. name: "Side",
  3472. image: {
  3473. source: "./media/characters/louise/side.svg"
  3474. }
  3475. },
  3476. },
  3477. [
  3478. {
  3479. name: "Normal",
  3480. height: math.unit(5, "feet"),
  3481. default: true
  3482. }
  3483. ]
  3484. ))
  3485. characterMakers.push(() => makeCharacter(
  3486. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  3487. {
  3488. side: {
  3489. height: math.unit(6, "feet"),
  3490. weight: math.unit(150, "lbs"),
  3491. name: "Side",
  3492. image: {
  3493. source: "./media/characters/ramona/side.svg"
  3494. }
  3495. },
  3496. },
  3497. [
  3498. {
  3499. name: "Normal",
  3500. height: math.unit(5.3, "meters"),
  3501. default: true
  3502. },
  3503. {
  3504. name: "Macro",
  3505. height: math.unit(20, "stories")
  3506. },
  3507. {
  3508. name: "Macro+",
  3509. height: math.unit(50, "stories")
  3510. },
  3511. ]
  3512. ))
  3513. characterMakers.push(() => makeCharacter(
  3514. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  3515. {
  3516. standing: {
  3517. height: math.unit(5.75, "feet"),
  3518. weight: math.unit(160, "lbs"),
  3519. name: "Standing",
  3520. image: {
  3521. source: "./media/characters/deerpuff/standing.svg",
  3522. extra: 682 / 624
  3523. }
  3524. },
  3525. sitting: {
  3526. height: math.unit(5.75 / 1.79, "feet"),
  3527. weight: math.unit(160, "lbs"),
  3528. name: "Sitting",
  3529. image: {
  3530. source: "./media/characters/deerpuff/sitting.svg",
  3531. bottom: 44 / 400,
  3532. extra: 1
  3533. }
  3534. },
  3535. taurLaying: {
  3536. height: math.unit(6, "feet"),
  3537. weight: math.unit(400, "lbs"),
  3538. name: "Taur (Laying)",
  3539. image: {
  3540. source: "./media/characters/deerpuff/taur-laying.svg"
  3541. }
  3542. },
  3543. },
  3544. [
  3545. {
  3546. name: "Puffball",
  3547. height: math.unit(6, "inches")
  3548. },
  3549. {
  3550. name: "Normalpuff",
  3551. height: math.unit(5.75, "feet")
  3552. },
  3553. {
  3554. name: "Macropuff",
  3555. height: math.unit(1500, "feet"),
  3556. default: true
  3557. },
  3558. {
  3559. name: "Megapuff",
  3560. height: math.unit(500, "miles")
  3561. },
  3562. {
  3563. name: "Gigapuff",
  3564. height: math.unit(250000, "miles")
  3565. },
  3566. {
  3567. name: "Omegapuff",
  3568. height: math.unit(1000, "lightyears")
  3569. },
  3570. ]
  3571. ))
  3572. characterMakers.push(() => makeCharacter(
  3573. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  3574. {
  3575. stomping: {
  3576. height: math.unit(6, "feet"),
  3577. weight: math.unit(170, "lbs"),
  3578. name: "Stomping",
  3579. image: {
  3580. source: "./media/characters/vivian/stomping.svg"
  3581. }
  3582. },
  3583. sitting: {
  3584. height: math.unit(6 / 1.75, "feet"),
  3585. weight: math.unit(170, "lbs"),
  3586. name: "Sitting",
  3587. image: {
  3588. source: "./media/characters/vivian/sitting.svg",
  3589. bottom: 1 / 6.4,
  3590. extra: 1,
  3591. }
  3592. },
  3593. },
  3594. [
  3595. {
  3596. name: "Normal",
  3597. height: math.unit(7, "feet"),
  3598. default: true
  3599. },
  3600. {
  3601. name: "Macro",
  3602. height: math.unit(10, "stories")
  3603. },
  3604. {
  3605. name: "Macro+",
  3606. height: math.unit(30, "stories")
  3607. },
  3608. {
  3609. name: "Megamacro",
  3610. height: math.unit(10, "miles")
  3611. },
  3612. {
  3613. name: "Megamacro+",
  3614. height: math.unit(2750000, "meters")
  3615. },
  3616. ]
  3617. ))
  3618. characterMakers.push(() => makeCharacter(
  3619. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  3620. {
  3621. front: {
  3622. height: math.unit(6, "feet"),
  3623. weight: math.unit(160, "lbs"),
  3624. name: "Front",
  3625. image: {
  3626. source: "./media/characters/prince/front.svg",
  3627. extra: 3400 / 3000
  3628. }
  3629. },
  3630. jumping: {
  3631. height: math.unit(6, "feet"),
  3632. weight: math.unit(160, "lbs"),
  3633. name: "Jumping",
  3634. image: {
  3635. source: "./media/characters/prince/jump.svg",
  3636. extra: 2555 / 2134
  3637. }
  3638. },
  3639. },
  3640. [
  3641. {
  3642. name: "Normal",
  3643. height: math.unit(7.75, "feet"),
  3644. default: true
  3645. },
  3646. {
  3647. name: "Not cute",
  3648. height: math.unit(17, "feet")
  3649. },
  3650. {
  3651. name: "I said NOT",
  3652. height: math.unit(91, "feet")
  3653. },
  3654. {
  3655. name: "Please stop",
  3656. height: math.unit(560, "feet")
  3657. },
  3658. {
  3659. name: "What have you done",
  3660. height: math.unit(2200, "feet")
  3661. },
  3662. {
  3663. name: "Deer God",
  3664. height: math.unit(3.6, "miles")
  3665. },
  3666. ]
  3667. ))
  3668. characterMakers.push(() => makeCharacter(
  3669. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  3670. {
  3671. standing: {
  3672. height: math.unit(6, "feet"),
  3673. weight: math.unit(300, "lbs"),
  3674. name: "Standing",
  3675. image: {
  3676. source: "./media/characters/psymon/standing.svg",
  3677. extra: 1888 / 1810,
  3678. bottom: 0.05
  3679. }
  3680. },
  3681. slithering: {
  3682. height: math.unit(6, "feet"),
  3683. weight: math.unit(300, "lbs"),
  3684. name: "Slithering",
  3685. image: {
  3686. source: "./media/characters/psymon/slithering.svg",
  3687. extra: 1330 / 1224
  3688. }
  3689. },
  3690. slitheringAlt: {
  3691. height: math.unit(6, "feet"),
  3692. weight: math.unit(300, "lbs"),
  3693. name: "Slithering (Alt)",
  3694. image: {
  3695. source: "./media/characters/psymon/slithering-alt.svg",
  3696. extra: 1330 / 1224
  3697. }
  3698. },
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(11.25, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Large",
  3708. height: math.unit(27, "feet")
  3709. },
  3710. {
  3711. name: "Giant",
  3712. height: math.unit(87, "feet")
  3713. },
  3714. {
  3715. name: "Macro",
  3716. height: math.unit(365, "feet")
  3717. },
  3718. {
  3719. name: "Megamacro",
  3720. height: math.unit(3, "miles")
  3721. },
  3722. {
  3723. name: "World Serpent",
  3724. height: math.unit(8000, "miles")
  3725. },
  3726. ]
  3727. ))
  3728. characterMakers.push(() => makeCharacter(
  3729. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  3730. {
  3731. front: {
  3732. height: math.unit(6, "feet"),
  3733. weight: math.unit(180, "lbs"),
  3734. name: "Front",
  3735. image: {
  3736. source: "./media/characters/daimos/front.svg",
  3737. extra: 4160 / 3897,
  3738. bottom: 0.021
  3739. }
  3740. }
  3741. },
  3742. [
  3743. {
  3744. name: "Normal",
  3745. height: math.unit(8, "feet"),
  3746. default: true
  3747. },
  3748. {
  3749. name: "Big Dog",
  3750. height: math.unit(22, "feet")
  3751. },
  3752. {
  3753. name: "Macro",
  3754. height: math.unit(127, "feet")
  3755. },
  3756. {
  3757. name: "Megamacro",
  3758. height: math.unit(3600, "feet")
  3759. },
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  3764. {
  3765. side: {
  3766. height: math.unit(6, "feet"),
  3767. weight: math.unit(180, "lbs"),
  3768. name: "Side",
  3769. image: {
  3770. source: "./media/characters/blake/side.svg",
  3771. extra: 1212 / 1120,
  3772. bottom: 0.05
  3773. }
  3774. },
  3775. crouched: {
  3776. height: math.unit(6 * 0.57, "feet"),
  3777. weight: math.unit(180, "lbs"),
  3778. name: "Crouched",
  3779. image: {
  3780. source: "./media/characters/blake/crouched.svg",
  3781. extra: 840 / 587,
  3782. bottom: 0.04
  3783. }
  3784. },
  3785. bent: {
  3786. height: math.unit(6 * 0.75, "feet"),
  3787. weight: math.unit(180, "lbs"),
  3788. name: "Bent",
  3789. image: {
  3790. source: "./media/characters/blake/bent.svg",
  3791. extra: 592 / 544,
  3792. bottom: 0.035
  3793. }
  3794. },
  3795. },
  3796. [
  3797. {
  3798. name: "Normal",
  3799. height: math.unit(8 + 1 / 6, "feet"),
  3800. default: true
  3801. },
  3802. {
  3803. name: "Big Backside",
  3804. height: math.unit(37, "feet")
  3805. },
  3806. {
  3807. name: "Subway Shredder",
  3808. height: math.unit(72, "feet")
  3809. },
  3810. {
  3811. name: "City Carver",
  3812. height: math.unit(1675, "feet")
  3813. },
  3814. {
  3815. name: "Tectonic Tweaker",
  3816. height: math.unit(2300, "miles")
  3817. },
  3818. ]
  3819. ))
  3820. characterMakers.push(() => makeCharacter(
  3821. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  3822. {
  3823. front: {
  3824. height: math.unit(6, "feet"),
  3825. weight: math.unit(180, "lbs"),
  3826. name: "Front",
  3827. image: {
  3828. source: "./media/characters/guisetto/front.svg",
  3829. extra: 856 / 817,
  3830. bottom: 0.06
  3831. }
  3832. },
  3833. airborne: {
  3834. height: math.unit(6, "feet"),
  3835. weight: math.unit(180, "lbs"),
  3836. name: "Airborne",
  3837. image: {
  3838. source: "./media/characters/guisetto/airborne.svg",
  3839. extra: 584 / 525
  3840. }
  3841. },
  3842. },
  3843. [
  3844. {
  3845. name: "Normal",
  3846. height: math.unit(10 + 11 / 12, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Large",
  3851. height: math.unit(35, "feet")
  3852. },
  3853. {
  3854. name: "Macro",
  3855. height: math.unit(475, "feet")
  3856. },
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  3861. {
  3862. front: {
  3863. height: math.unit(6, "feet"),
  3864. weight: math.unit(180, "lbs"),
  3865. name: "Front",
  3866. image: {
  3867. source: "./media/characters/luxor/front.svg",
  3868. extra: 2940 / 2152
  3869. }
  3870. },
  3871. back: {
  3872. height: math.unit(6, "feet"),
  3873. weight: math.unit(180, "lbs"),
  3874. name: "Back",
  3875. image: {
  3876. source: "./media/characters/luxor/back.svg",
  3877. extra: 1083 / 960
  3878. }
  3879. },
  3880. },
  3881. [
  3882. {
  3883. name: "Normal",
  3884. height: math.unit(5 + 5 / 6, "feet"),
  3885. default: true
  3886. },
  3887. {
  3888. name: "Lamp",
  3889. height: math.unit(50, "feet")
  3890. },
  3891. {
  3892. name: "Lämp",
  3893. height: math.unit(300, "feet")
  3894. },
  3895. {
  3896. name: "The sun is a lamp",
  3897. height: math.unit(250000, "miles")
  3898. },
  3899. ]
  3900. ))
  3901. characterMakers.push(() => makeCharacter(
  3902. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  3903. {
  3904. front: {
  3905. height: math.unit(6, "feet"),
  3906. weight: math.unit(50, "lbs"),
  3907. name: "Front",
  3908. image: {
  3909. source: "./media/characters/huoyan/front.svg"
  3910. }
  3911. },
  3912. side: {
  3913. height: math.unit(6, "feet"),
  3914. weight: math.unit(180, "lbs"),
  3915. name: "Side",
  3916. image: {
  3917. source: "./media/characters/huoyan/side.svg"
  3918. }
  3919. },
  3920. },
  3921. [
  3922. {
  3923. name: "Chef",
  3924. height: math.unit(9, "feet")
  3925. },
  3926. {
  3927. name: "Normal",
  3928. height: math.unit(65, "feet"),
  3929. default: true
  3930. },
  3931. {
  3932. name: "Macro",
  3933. height: math.unit(780, "feet")
  3934. },
  3935. {
  3936. name: "Flaming Mountain",
  3937. height: math.unit(4.8, "miles")
  3938. },
  3939. {
  3940. name: "Celestial",
  3941. height: math.unit(765000, "miles")
  3942. },
  3943. ]
  3944. ))
  3945. characterMakers.push(() => makeCharacter(
  3946. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  3947. {
  3948. front: {
  3949. height: math.unit(5 + 3 / 4, "feet"),
  3950. weight: math.unit(120, "lbs"),
  3951. name: "Front",
  3952. image: {
  3953. source: "./media/characters/tails/front.svg"
  3954. }
  3955. }
  3956. },
  3957. [
  3958. {
  3959. name: "Normal",
  3960. height: math.unit(5 + 3 / 4, "feet"),
  3961. default: true
  3962. }
  3963. ]
  3964. ))
  3965. characterMakers.push(() => makeCharacter(
  3966. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  3967. {
  3968. front: {
  3969. height: math.unit(4, "feet"),
  3970. weight: math.unit(50, "lbs"),
  3971. name: "Front",
  3972. image: {
  3973. source: "./media/characters/rainy/front.svg"
  3974. }
  3975. }
  3976. },
  3977. [
  3978. {
  3979. name: "Macro",
  3980. height: math.unit(800, "feet"),
  3981. default: true
  3982. }
  3983. ]
  3984. ))
  3985. characterMakers.push(() => makeCharacter(
  3986. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  3987. {
  3988. front: {
  3989. height: math.unit(6, "feet"),
  3990. weight: math.unit(150, "lbs"),
  3991. name: "Front",
  3992. image: {
  3993. source: "./media/characters/rainier/front.svg"
  3994. }
  3995. }
  3996. },
  3997. [
  3998. {
  3999. name: "Micro",
  4000. height: math.unit(2, "mm"),
  4001. default: true
  4002. }
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4007. {
  4008. front: {
  4009. height: math.unit(6, "feet"),
  4010. weight: math.unit(180, "lbs"),
  4011. name: "Front",
  4012. image: {
  4013. source: "./media/characters/andy/front.svg"
  4014. }
  4015. }
  4016. },
  4017. [
  4018. {
  4019. name: "Normal",
  4020. height: math.unit(8, "feet"),
  4021. default: true
  4022. },
  4023. {
  4024. name: "Macro",
  4025. height: math.unit(1000, "feet")
  4026. },
  4027. {
  4028. name: "Megamacro",
  4029. height: math.unit(5, "miles")
  4030. },
  4031. {
  4032. name: "Gigamacro",
  4033. height: math.unit(5000, "miles")
  4034. },
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4039. {
  4040. front: {
  4041. height: math.unit(6, "feet"),
  4042. weight: math.unit(210, "lbs"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/cimmaron/front-sfw.svg",
  4046. extra: 701 / 676,
  4047. bottom: 0.046
  4048. }
  4049. },
  4050. back: {
  4051. height: math.unit(6, "feet"),
  4052. weight: math.unit(210, "lbs"),
  4053. name: "Back",
  4054. image: {
  4055. source: "./media/characters/cimmaron/back-sfw.svg",
  4056. extra: 701 / 676,
  4057. bottom: 0.046
  4058. }
  4059. },
  4060. frontNsfw: {
  4061. height: math.unit(6, "feet"),
  4062. weight: math.unit(210, "lbs"),
  4063. name: "Front (NSFW)",
  4064. image: {
  4065. source: "./media/characters/cimmaron/front-nsfw.svg",
  4066. extra: 701 / 676,
  4067. bottom: 0.046
  4068. }
  4069. },
  4070. backNsfw: {
  4071. height: math.unit(6, "feet"),
  4072. weight: math.unit(210, "lbs"),
  4073. name: "Back (NSFW)",
  4074. image: {
  4075. source: "./media/characters/cimmaron/back-nsfw.svg",
  4076. extra: 701 / 676,
  4077. bottom: 0.046
  4078. }
  4079. },
  4080. dick: {
  4081. height: math.unit(1.714, "feet"),
  4082. name: "Dick",
  4083. image: {
  4084. source: "./media/characters/cimmaron/dick.svg"
  4085. }
  4086. },
  4087. },
  4088. [
  4089. {
  4090. name: "Normal",
  4091. height: math.unit(6, "feet"),
  4092. default: true
  4093. },
  4094. {
  4095. name: "Macro Mayor",
  4096. height: math.unit(350, "meters")
  4097. },
  4098. ]
  4099. ))
  4100. characterMakers.push(() => makeCharacter(
  4101. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4102. {
  4103. front: {
  4104. height: math.unit(6, "feet"),
  4105. weight: math.unit(200, "lbs"),
  4106. name: "Front",
  4107. image: {
  4108. source: "./media/characters/akari/front.svg",
  4109. extra: 962 / 901,
  4110. bottom: 0.04
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Micro",
  4117. height: math.unit(5, "inches"),
  4118. default: true
  4119. },
  4120. {
  4121. name: "Normal",
  4122. height: math.unit(7, "feet")
  4123. },
  4124. ]
  4125. ))
  4126. characterMakers.push(() => makeCharacter(
  4127. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4128. {
  4129. front: {
  4130. height: math.unit(6, "feet"),
  4131. weight: math.unit(140, "lbs"),
  4132. name: "Front",
  4133. image: {
  4134. source: "./media/characters/cynosura/front.svg",
  4135. extra: 896 / 847
  4136. }
  4137. },
  4138. back: {
  4139. height: math.unit(6, "feet"),
  4140. weight: math.unit(140, "lbs"),
  4141. name: "Back",
  4142. image: {
  4143. source: "./media/characters/cynosura/back.svg",
  4144. extra: 1365 / 1250
  4145. }
  4146. },
  4147. },
  4148. [
  4149. {
  4150. name: "Micro",
  4151. height: math.unit(4, "inches")
  4152. },
  4153. {
  4154. name: "Normal",
  4155. height: math.unit(5.75, "feet"),
  4156. default: true
  4157. },
  4158. {
  4159. name: "Tall",
  4160. height: math.unit(10, "feet")
  4161. },
  4162. {
  4163. name: "Big",
  4164. height: math.unit(20, "feet")
  4165. },
  4166. {
  4167. name: "Macro",
  4168. height: math.unit(50, "feet")
  4169. },
  4170. ]
  4171. ))
  4172. characterMakers.push(() => makeCharacter(
  4173. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4174. {
  4175. front: {
  4176. height: math.unit(6, "feet"),
  4177. weight: math.unit(170, "lbs"),
  4178. name: "Front",
  4179. image: {
  4180. source: "./media/characters/gin/front.svg",
  4181. extra: 1.053,
  4182. bottom: 0.025
  4183. }
  4184. },
  4185. foot: {
  4186. height: math.unit(6 / 4.25, "feet"),
  4187. name: "Foot",
  4188. image: {
  4189. source: "./media/characters/gin/foot.svg"
  4190. }
  4191. },
  4192. sole: {
  4193. height: math.unit(6 / 4.40, "feet"),
  4194. name: "Sole",
  4195. image: {
  4196. source: "./media/characters/gin/sole.svg"
  4197. }
  4198. },
  4199. },
  4200. [
  4201. {
  4202. name: "Normal",
  4203. height: math.unit(13 + 2/12, "feet")
  4204. },
  4205. {
  4206. name: "Macro",
  4207. height: math.unit(1500, "feet")
  4208. },
  4209. {
  4210. name: "Megamacro",
  4211. height: math.unit(200, "miles"),
  4212. default: true
  4213. },
  4214. {
  4215. name: "Gigamacro",
  4216. height: math.unit(500, "megameters")
  4217. },
  4218. {
  4219. name: "Teramacro",
  4220. height: math.unit(15, "lightyears")
  4221. }
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  4226. {
  4227. front: {
  4228. height: math.unit(6 + 1 / 6, "feet"),
  4229. weight: math.unit(178, "lbs"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/guy/front.svg"
  4233. }
  4234. }
  4235. },
  4236. [
  4237. {
  4238. name: "Normal",
  4239. height: math.unit(6 + 1 / 6, "feet"),
  4240. default: true
  4241. },
  4242. {
  4243. name: "Large",
  4244. height: math.unit(25 + 7 / 12, "feet")
  4245. },
  4246. {
  4247. name: "Macro",
  4248. height: math.unit(60 + 9 / 12, "feet")
  4249. },
  4250. {
  4251. name: "Macro+",
  4252. height: math.unit(246, "feet")
  4253. },
  4254. {
  4255. name: "Macro++",
  4256. height: math.unit(878, "feet")
  4257. }
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(9, "feet"),
  4265. weight: math.unit(800, "lbs"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/tiberius/front.svg",
  4269. extra: 2295 / 2071
  4270. }
  4271. },
  4272. back: {
  4273. height: math.unit(9, "feet"),
  4274. weight: math.unit(800, "lbs"),
  4275. name: "Back",
  4276. image: {
  4277. source: "./media/characters/tiberius/back.svg",
  4278. extra: 2373 / 2160
  4279. }
  4280. },
  4281. },
  4282. [
  4283. {
  4284. name: "Normal",
  4285. height: math.unit(9, "feet"),
  4286. default: true
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  4292. {
  4293. front: {
  4294. height: math.unit(6, "feet"),
  4295. weight: math.unit(600, "lbs"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/surgo/front.svg",
  4299. extra: 3591 / 2227
  4300. }
  4301. },
  4302. back: {
  4303. height: math.unit(6, "feet"),
  4304. weight: math.unit(600, "lbs"),
  4305. name: "Back",
  4306. image: {
  4307. source: "./media/characters/surgo/back.svg",
  4308. extra: 3557 / 2228
  4309. }
  4310. },
  4311. laying: {
  4312. height: math.unit(6 * 0.85, "feet"),
  4313. weight: math.unit(600, "lbs"),
  4314. name: "Laying",
  4315. image: {
  4316. source: "./media/characters/surgo/laying.svg"
  4317. }
  4318. },
  4319. },
  4320. [
  4321. {
  4322. name: "Normal",
  4323. height: math.unit(6, "feet"),
  4324. default: true
  4325. }
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  4330. {
  4331. side: {
  4332. height: math.unit(6, "feet"),
  4333. weight: math.unit(150, "lbs"),
  4334. name: "Side",
  4335. image: {
  4336. source: "./media/characters/cibus/side.svg",
  4337. extra: 800 / 400
  4338. }
  4339. },
  4340. },
  4341. [
  4342. {
  4343. name: "Normal",
  4344. height: math.unit(6, "feet"),
  4345. default: true
  4346. }
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  4351. {
  4352. front: {
  4353. height: math.unit(6, "feet"),
  4354. weight: math.unit(240, "lbs"),
  4355. name: "Front",
  4356. image: {
  4357. source: "./media/characters/nibbles/front.svg"
  4358. }
  4359. },
  4360. side: {
  4361. height: math.unit(6, "feet"),
  4362. weight: math.unit(240, "lbs"),
  4363. name: "Side",
  4364. image: {
  4365. source: "./media/characters/nibbles/side.svg"
  4366. }
  4367. },
  4368. },
  4369. [
  4370. {
  4371. name: "Normal",
  4372. height: math.unit(9, "feet"),
  4373. default: true
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  4379. {
  4380. side: {
  4381. height: math.unit(5 + 1 / 6, "feet"),
  4382. weight: math.unit(130, "lbs"),
  4383. name: "Side",
  4384. image: {
  4385. source: "./media/characters/rikky/side.svg"
  4386. }
  4387. },
  4388. },
  4389. [
  4390. {
  4391. name: "Normal",
  4392. height: math.unit(5 + 1 / 6, "feet")
  4393. },
  4394. {
  4395. name: "Macro",
  4396. height: math.unit(152, "feet"),
  4397. default: true
  4398. },
  4399. {
  4400. name: "Megamacro",
  4401. height: math.unit(7, "miles")
  4402. }
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  4407. {
  4408. side: {
  4409. height: math.unit(370, "cm"),
  4410. weight: math.unit(350, "lbs"),
  4411. name: "Side",
  4412. image: {
  4413. source: "./media/characters/malfressa/side.svg"
  4414. }
  4415. },
  4416. walking: {
  4417. height: math.unit(370, "cm"),
  4418. weight: math.unit(350, "lbs"),
  4419. name: "Walking",
  4420. image: {
  4421. source: "./media/characters/malfressa/walking.svg"
  4422. }
  4423. },
  4424. feral: {
  4425. height: math.unit(2500, "cm"),
  4426. weight: math.unit(100000, "lbs"),
  4427. name: "Feral",
  4428. image: {
  4429. source: "./media/characters/malfressa/feral.svg",
  4430. extra: 2108 / 837,
  4431. bottom: 0.02
  4432. }
  4433. },
  4434. },
  4435. [
  4436. {
  4437. name: "Normal",
  4438. height: math.unit(370, "cm")
  4439. },
  4440. {
  4441. name: "Macro",
  4442. height: math.unit(300, "meters"),
  4443. default: true
  4444. }
  4445. ]
  4446. ))
  4447. characterMakers.push(() => makeCharacter(
  4448. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  4449. {
  4450. front: {
  4451. height: math.unit(6, "feet"),
  4452. weight: math.unit(60, "kg"),
  4453. name: "Front",
  4454. image: {
  4455. source: "./media/characters/jaro/front.svg"
  4456. }
  4457. },
  4458. back: {
  4459. height: math.unit(6, "feet"),
  4460. weight: math.unit(60, "kg"),
  4461. name: "Back",
  4462. image: {
  4463. source: "./media/characters/jaro/back.svg"
  4464. }
  4465. },
  4466. },
  4467. [
  4468. {
  4469. name: "Micro",
  4470. height: math.unit(7, "inches")
  4471. },
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(5.5, "feet"),
  4475. default: true
  4476. },
  4477. {
  4478. name: "Minimacro",
  4479. height: math.unit(20, "feet")
  4480. },
  4481. {
  4482. name: "Macro",
  4483. height: math.unit(200, "meters")
  4484. }
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(6, "feet"),
  4492. weight: math.unit(195, "lb"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/rogue/front.svg"
  4496. }
  4497. },
  4498. },
  4499. [
  4500. {
  4501. name: "Macro",
  4502. height: math.unit(90, "feet"),
  4503. default: true
  4504. },
  4505. ]
  4506. ))
  4507. characterMakers.push(() => makeCharacter(
  4508. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  4509. {
  4510. front: {
  4511. height: math.unit(5 + 8 / 12, "feet"),
  4512. weight: math.unit(140, "lb"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/piper/front.svg",
  4516. extra: 3928 / 3681
  4517. }
  4518. },
  4519. },
  4520. [
  4521. {
  4522. name: "Micro",
  4523. height: math.unit(2, "inches")
  4524. },
  4525. {
  4526. name: "Normal",
  4527. height: math.unit(5 + 8 / 12, "feet")
  4528. },
  4529. {
  4530. name: "Macro",
  4531. height: math.unit(250, "feet"),
  4532. default: true
  4533. },
  4534. {
  4535. name: "Megamacro",
  4536. height: math.unit(7, "miles")
  4537. },
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  4542. {
  4543. front: {
  4544. height: math.unit(6, "feet"),
  4545. weight: math.unit(220, "lb"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/gemini/front.svg"
  4549. }
  4550. },
  4551. back: {
  4552. height: math.unit(6, "feet"),
  4553. weight: math.unit(220, "lb"),
  4554. name: "Back",
  4555. image: {
  4556. source: "./media/characters/gemini/back.svg"
  4557. }
  4558. },
  4559. kneeling: {
  4560. height: math.unit(6 / 1.5, "feet"),
  4561. weight: math.unit(220, "lb"),
  4562. name: "Kneeling",
  4563. image: {
  4564. source: "./media/characters/gemini/kneeling.svg",
  4565. bottom: 0.02
  4566. }
  4567. },
  4568. },
  4569. [
  4570. {
  4571. name: "Macro",
  4572. height: math.unit(300, "meters"),
  4573. default: true
  4574. },
  4575. {
  4576. name: "Megamacro",
  4577. height: math.unit(6900, "meters")
  4578. },
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Alicia" },
  4583. {
  4584. anthro: {
  4585. height: math.unit(2.35, "meters"),
  4586. weight: math.unit(73, "kg"),
  4587. name: "Anthro",
  4588. image: {
  4589. source: "./media/characters/alicia/anthro.svg"
  4590. }
  4591. },
  4592. feral: {
  4593. height: math.unit(1.69, "meters"),
  4594. weight: math.unit(73, "kg"),
  4595. name: "Feral",
  4596. image: {
  4597. source: "./media/characters/alicia/feral.svg"
  4598. }
  4599. },
  4600. },
  4601. [
  4602. {
  4603. name: "Normal",
  4604. height: math.unit(2.35, "meters")
  4605. },
  4606. {
  4607. name: "Macro",
  4608. height: math.unit(60, "meters"),
  4609. default: true
  4610. },
  4611. {
  4612. name: "Megamacro",
  4613. height: math.unit(10000, "kilometers")
  4614. },
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Archy" },
  4619. {
  4620. front: {
  4621. height: math.unit(7, "feet"),
  4622. weight: math.unit(250, "lbs"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/archy/front.svg"
  4626. }
  4627. }
  4628. },
  4629. [
  4630. {
  4631. name: "Micro",
  4632. height: math.unit(1, "inch")
  4633. },
  4634. {
  4635. name: "Shorty",
  4636. height: math.unit(5, "feet")
  4637. },
  4638. {
  4639. name: "Normal",
  4640. height: math.unit(7, "feet")
  4641. },
  4642. {
  4643. name: "Macro",
  4644. height: math.unit(600, "meters"),
  4645. default: true
  4646. },
  4647. {
  4648. name: "Megamacro",
  4649. height: math.unit(1, "mile")
  4650. },
  4651. ]
  4652. ))
  4653. characterMakers.push(() => makeCharacter(
  4654. { name: "Berri" },
  4655. {
  4656. front: {
  4657. height: math.unit(1.65, "meters"),
  4658. weight: math.unit(74, "kg"),
  4659. name: "Front",
  4660. image: {
  4661. source: "./media/characters/berri/front.svg"
  4662. }
  4663. }
  4664. },
  4665. [
  4666. {
  4667. name: "Normal",
  4668. height: math.unit(1.65, "meters")
  4669. },
  4670. {
  4671. name: "Macro",
  4672. height: math.unit(60, "m"),
  4673. default: true
  4674. },
  4675. {
  4676. name: "Megamacro",
  4677. height: math.unit(9.213, "km")
  4678. },
  4679. {
  4680. name: "Planet Eater",
  4681. height: math.unit(489, "megameters")
  4682. },
  4683. {
  4684. name: "Teramacro",
  4685. height: math.unit(2471635000000, "meters")
  4686. },
  4687. {
  4688. name: "Examacro",
  4689. height: math.unit(8.0624e+26, "meters")
  4690. }
  4691. ]
  4692. ))
  4693. characterMakers.push(() => makeCharacter(
  4694. { name: "Lexi" },
  4695. {
  4696. front: {
  4697. height: math.unit(1.72, "meters"),
  4698. weight: math.unit(68, "kg"),
  4699. name: "Front",
  4700. image: {
  4701. source: "./media/characters/lexi/front.svg"
  4702. }
  4703. }
  4704. },
  4705. [
  4706. {
  4707. name: "Very Smol",
  4708. height: math.unit(10, "mm")
  4709. },
  4710. {
  4711. name: "Micro",
  4712. height: math.unit(6.8, "cm"),
  4713. default: true
  4714. },
  4715. {
  4716. name: "Normal",
  4717. height: math.unit(1.72, "m")
  4718. }
  4719. ]
  4720. ))
  4721. characterMakers.push(() => makeCharacter(
  4722. { name: "Martin" },
  4723. {
  4724. front: {
  4725. height: math.unit(1.69, "meters"),
  4726. weight: math.unit(68, "kg"),
  4727. name: "Front",
  4728. image: {
  4729. source: "./media/characters/martin/front.svg",
  4730. extra: 596 / 581
  4731. }
  4732. }
  4733. },
  4734. [
  4735. {
  4736. name: "Micro",
  4737. height: math.unit(6.85, "cm"),
  4738. default: true
  4739. },
  4740. {
  4741. name: "Normal",
  4742. height: math.unit(1.69, "m")
  4743. }
  4744. ]
  4745. ))
  4746. characterMakers.push(() => makeCharacter(
  4747. { name: "Juno" },
  4748. {
  4749. front: {
  4750. height: math.unit(1.69, "meters"),
  4751. weight: math.unit(68, "kg"),
  4752. name: "Front",
  4753. image: {
  4754. source: "./media/characters/juno/front.svg"
  4755. }
  4756. }
  4757. },
  4758. [
  4759. {
  4760. name: "Micro",
  4761. height: math.unit(7, "cm")
  4762. },
  4763. {
  4764. name: "Normal",
  4765. height: math.unit(1.89, "m")
  4766. },
  4767. {
  4768. name: "Macro",
  4769. height: math.unit(353, "meters"),
  4770. default: true
  4771. }
  4772. ]
  4773. ))
  4774. characterMakers.push(() => makeCharacter(
  4775. { name: "Samantha" },
  4776. {
  4777. front: {
  4778. height: math.unit(1.93, "meters"),
  4779. weight: math.unit(83, "kg"),
  4780. name: "Front",
  4781. image: {
  4782. source: "./media/characters/samantha/front.svg"
  4783. }
  4784. },
  4785. frontClothed: {
  4786. height: math.unit(1.93, "meters"),
  4787. weight: math.unit(83, "kg"),
  4788. name: "Front (Clothed)",
  4789. image: {
  4790. source: "./media/characters/samantha/front-clothed.svg"
  4791. }
  4792. },
  4793. back: {
  4794. height: math.unit(1.93, "meters"),
  4795. weight: math.unit(83, "kg"),
  4796. name: "Back",
  4797. image: {
  4798. source: "./media/characters/samantha/back.svg"
  4799. }
  4800. },
  4801. },
  4802. [
  4803. {
  4804. name: "Normal",
  4805. height: math.unit(1.93, "m")
  4806. },
  4807. {
  4808. name: "Macro",
  4809. height: math.unit(74, "meters"),
  4810. default: true
  4811. },
  4812. {
  4813. name: "Macro+",
  4814. height: math.unit(223, "meters"),
  4815. },
  4816. {
  4817. name: "Megamacro",
  4818. height: math.unit(8381, "meters"),
  4819. },
  4820. {
  4821. name: "Megamacro+",
  4822. height: math.unit(12000, "kilometers")
  4823. },
  4824. ]
  4825. ))
  4826. characterMakers.push(() => makeCharacter(
  4827. { name: "Dr. Clay" },
  4828. {
  4829. front: {
  4830. height: math.unit(1.92, "meters"),
  4831. weight: math.unit(80, "kg"),
  4832. name: "Front",
  4833. image: {
  4834. source: "./media/characters/dr-clay/front.svg"
  4835. }
  4836. },
  4837. frontClothed: {
  4838. height: math.unit(1.92, "meters"),
  4839. weight: math.unit(80, "kg"),
  4840. name: "Front (Clothed)",
  4841. image: {
  4842. source: "./media/characters/dr-clay/front-clothed.svg"
  4843. }
  4844. }
  4845. },
  4846. [
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(1.92, "m")
  4850. },
  4851. {
  4852. name: "Macro",
  4853. height: math.unit(214, "meters"),
  4854. default: true
  4855. },
  4856. {
  4857. name: "Macro+",
  4858. height: math.unit(12.237, "meters"),
  4859. },
  4860. {
  4861. name: "Megamacro",
  4862. height: math.unit(557, "megameters"),
  4863. },
  4864. {
  4865. name: "Unimaginable",
  4866. height: math.unit(120e9, "lightyears")
  4867. },
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Wyvrn Ripsnarl" },
  4872. {
  4873. front: {
  4874. height: math.unit(2, "meters"),
  4875. weight: math.unit(80, "kg"),
  4876. name: "Front",
  4877. image: {
  4878. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4879. }
  4880. }
  4881. },
  4882. [
  4883. {
  4884. name: "Teramacro",
  4885. height: math.unit(500000, "lightyears"),
  4886. default: true
  4887. },
  4888. ]
  4889. ))
  4890. characterMakers.push(() => makeCharacter(
  4891. { name: "Vemus" },
  4892. {
  4893. front: {
  4894. height: math.unit(2, "meters"),
  4895. weight: math.unit(150, "kg"),
  4896. name: "Front",
  4897. image: {
  4898. source: "./media/characters/vemus/front.svg",
  4899. extra: 2384 / 2084,
  4900. bottom: 0.0123
  4901. }
  4902. }
  4903. },
  4904. [
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(3.75, "meters"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Big",
  4912. height: math.unit(8, "meters")
  4913. },
  4914. {
  4915. name: "Macro",
  4916. height: math.unit(100, "meters")
  4917. },
  4918. {
  4919. name: "Macro+",
  4920. height: math.unit(1500, "meters")
  4921. },
  4922. {
  4923. name: "Stellar",
  4924. height: math.unit(14e8, "meters")
  4925. },
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Beherit" },
  4930. {
  4931. front: {
  4932. height: math.unit(2, "meters"),
  4933. weight: math.unit(70, "kg"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/beherit/front.svg",
  4937. extra: 1408 / 1242
  4938. }
  4939. }
  4940. },
  4941. [
  4942. {
  4943. name: "Normal",
  4944. height: math.unit(6, "feet")
  4945. },
  4946. {
  4947. name: "Lorg",
  4948. height: math.unit(25, "feet"),
  4949. default: true
  4950. },
  4951. {
  4952. name: "Lorger",
  4953. height: math.unit(75, "feet")
  4954. },
  4955. {
  4956. name: "Macro",
  4957. height: math.unit(200, "meters")
  4958. },
  4959. ]
  4960. ))
  4961. characterMakers.push(() => makeCharacter(
  4962. { name: "Everett" },
  4963. {
  4964. front: {
  4965. height: math.unit(2, "meters"),
  4966. weight: math.unit(150, "kg"),
  4967. name: "Front",
  4968. image: {
  4969. source: "./media/characters/everett/front.svg",
  4970. extra: 2038 / 1737,
  4971. bottom: 0.03
  4972. }
  4973. },
  4974. paw: {
  4975. height: math.unit(2 / 3.6, "meters"),
  4976. name: "Paw",
  4977. image: {
  4978. source: "./media/characters/everett/paw.svg"
  4979. }
  4980. },
  4981. },
  4982. [
  4983. {
  4984. name: "Normal",
  4985. height: math.unit(15, "feet"),
  4986. default: true
  4987. },
  4988. {
  4989. name: "Lorg",
  4990. height: math.unit(70, "feet"),
  4991. default: true
  4992. },
  4993. {
  4994. name: "Lorger",
  4995. height: math.unit(250, "feet")
  4996. },
  4997. {
  4998. name: "Macro",
  4999. height: math.unit(500, "meters")
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Rose Lion" },
  5005. {
  5006. front: {
  5007. height: math.unit(2, "meters"),
  5008. weight: math.unit(86, "kg"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/rose-lion/front.svg"
  5012. }
  5013. },
  5014. bent: {
  5015. height: math.unit(2 / 1.4288, "meters"),
  5016. weight: math.unit(86, "kg"),
  5017. name: "Bent",
  5018. image: {
  5019. source: "./media/characters/rose-lion/bent.svg"
  5020. }
  5021. }
  5022. },
  5023. [
  5024. {
  5025. name: "Mini-Micro",
  5026. height: math.unit(1, "cm")
  5027. },
  5028. {
  5029. name: "Micro",
  5030. height: math.unit(3.5, "inches"),
  5031. default: true
  5032. },
  5033. {
  5034. name: "Normal",
  5035. height: math.unit(6 + 1 / 6, "feet")
  5036. },
  5037. {
  5038. name: "Mini-Macro",
  5039. height: math.unit(9 + 10 / 12, "feet")
  5040. },
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Regal" },
  5045. {
  5046. front: {
  5047. height: math.unit(2, "meters"),
  5048. weight: math.unit(350, "lbs"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/regal/front.svg"
  5052. }
  5053. },
  5054. back: {
  5055. height: math.unit(2, "meters"),
  5056. weight: math.unit(350, "lbs"),
  5057. name: "Back",
  5058. image: {
  5059. source: "./media/characters/regal/back.svg"
  5060. }
  5061. },
  5062. },
  5063. [
  5064. {
  5065. name: "Macro",
  5066. height: math.unit(350, "feet"),
  5067. default: true
  5068. }
  5069. ]
  5070. ))
  5071. characterMakers.push(() => makeCharacter(
  5072. { name: "Opal" },
  5073. {
  5074. front: {
  5075. height: math.unit(4 + 11 / 12, "feet"),
  5076. weight: math.unit(100, "lbs"),
  5077. name: "Front",
  5078. image: {
  5079. source: "./media/characters/opal/front.svg"
  5080. }
  5081. },
  5082. frontAlt: {
  5083. height: math.unit(4 + 11 / 12, "feet"),
  5084. weight: math.unit(100, "lbs"),
  5085. name: "Front (Alt)",
  5086. image: {
  5087. source: "./media/characters/opal/front-alt.svg"
  5088. }
  5089. },
  5090. },
  5091. [
  5092. {
  5093. name: "Small",
  5094. height: math.unit(4 + 11 / 12, "feet")
  5095. },
  5096. {
  5097. name: "Normal",
  5098. height: math.unit(20, "feet"),
  5099. default: true
  5100. },
  5101. {
  5102. name: "Macro",
  5103. height: math.unit(120, "feet")
  5104. },
  5105. {
  5106. name: "Megamacro",
  5107. height: math.unit(80, "miles")
  5108. },
  5109. {
  5110. name: "True Size",
  5111. height: math.unit(100000, "lightyears")
  5112. },
  5113. ]
  5114. ))
  5115. characterMakers.push(() => makeCharacter(
  5116. { name: "Vector Wuff" },
  5117. {
  5118. front: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(200, "lbs"),
  5121. name: "Front",
  5122. image: {
  5123. source: "./media/characters/vector-wuff/front.svg"
  5124. }
  5125. }
  5126. },
  5127. [
  5128. {
  5129. name: "Normal",
  5130. height: math.unit(2.8, "meters")
  5131. },
  5132. {
  5133. name: "Macro",
  5134. height: math.unit(450, "meters"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Megamacro",
  5139. height: math.unit(15, "kilometers")
  5140. }
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Dannik" },
  5145. {
  5146. front: {
  5147. height: math.unit(6, "feet"),
  5148. weight: math.unit(256, "lbs"),
  5149. name: "Front",
  5150. image: {
  5151. source: "./media/characters/dannik/front.svg"
  5152. }
  5153. }
  5154. },
  5155. [
  5156. {
  5157. name: "Macro",
  5158. height: math.unit(69.57, "meters"),
  5159. default: true
  5160. },
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Azura Saharah" },
  5165. {
  5166. front: {
  5167. height: math.unit(6, "feet"),
  5168. weight: math.unit(120, "lbs"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/azura-saharah/front.svg"
  5172. }
  5173. },
  5174. back: {
  5175. height: math.unit(6, "feet"),
  5176. weight: math.unit(120, "lbs"),
  5177. name: "Back",
  5178. image: {
  5179. source: "./media/characters/azura-saharah/back.svg"
  5180. }
  5181. },
  5182. },
  5183. [
  5184. {
  5185. name: "Macro",
  5186. height: math.unit(100, "feet"),
  5187. default: true
  5188. },
  5189. ]
  5190. ))
  5191. characterMakers.push(() => makeCharacter(
  5192. { name: "Kennedy" },
  5193. {
  5194. side: {
  5195. height: math.unit(5 + 4 / 12, "feet"),
  5196. weight: math.unit(163, "lbs"),
  5197. name: "Side",
  5198. image: {
  5199. source: "./media/characters/kennedy/side.svg"
  5200. }
  5201. }
  5202. },
  5203. [
  5204. {
  5205. name: "Standard Doggo",
  5206. height: math.unit(5 + 4 / 12, "feet")
  5207. },
  5208. {
  5209. name: "Big Doggo",
  5210. height: math.unit(25 + 3 / 12, "feet"),
  5211. default: true
  5212. },
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Odi Lunar" },
  5217. {
  5218. front: {
  5219. height: math.unit(6, "feet"),
  5220. weight: math.unit(90, "lbs"),
  5221. name: "Front",
  5222. image: {
  5223. source: "./media/characters/odi-lunar/front.svg"
  5224. }
  5225. }
  5226. },
  5227. [
  5228. {
  5229. name: "Micro",
  5230. height: math.unit(3, "inches"),
  5231. default: true
  5232. },
  5233. {
  5234. name: "Normal",
  5235. height: math.unit(5.5, "feet")
  5236. }
  5237. ]
  5238. ))
  5239. characterMakers.push(() => makeCharacter(
  5240. { name: "Mandake" },
  5241. {
  5242. back: {
  5243. height: math.unit(6, "feet"),
  5244. weight: math.unit(220, "lbs"),
  5245. name: "Back",
  5246. image: {
  5247. source: "./media/characters/mandake/back.svg"
  5248. }
  5249. }
  5250. },
  5251. [
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(7, "feet"),
  5255. default: true
  5256. },
  5257. {
  5258. name: "Macro",
  5259. height: math.unit(78, "feet")
  5260. },
  5261. {
  5262. name: "Macro+",
  5263. height: math.unit(300, "meters")
  5264. },
  5265. {
  5266. name: "Macro++",
  5267. height: math.unit(2400, "feet")
  5268. },
  5269. {
  5270. name: "Megamacro",
  5271. height: math.unit(5167, "meters")
  5272. },
  5273. {
  5274. name: "Gigamacro",
  5275. height: math.unit(41769, "miles")
  5276. },
  5277. ]
  5278. ))
  5279. characterMakers.push(() => makeCharacter(
  5280. { name: "Yozey" },
  5281. {
  5282. front: {
  5283. height: math.unit(6, "feet"),
  5284. weight: math.unit(120, "lbs"),
  5285. name: "Front",
  5286. image: {
  5287. source: "./media/characters/yozey/front.svg"
  5288. }
  5289. },
  5290. frontAlt: {
  5291. height: math.unit(6, "feet"),
  5292. weight: math.unit(120, "lbs"),
  5293. name: "Front (Alt)",
  5294. image: {
  5295. source: "./media/characters/yozey/front-alt.svg"
  5296. }
  5297. },
  5298. side: {
  5299. height: math.unit(6, "feet"),
  5300. weight: math.unit(120, "lbs"),
  5301. name: "Side",
  5302. image: {
  5303. source: "./media/characters/yozey/side.svg"
  5304. }
  5305. },
  5306. },
  5307. [
  5308. {
  5309. name: "Micro",
  5310. height: math.unit(3, "inches"),
  5311. default: true
  5312. },
  5313. {
  5314. name: "Normal",
  5315. height: math.unit(6, "feet")
  5316. }
  5317. ]
  5318. ))
  5319. characterMakers.push(() => makeCharacter(
  5320. { name: "Valeska Voss" },
  5321. {
  5322. front: {
  5323. height: math.unit(6, "feet"),
  5324. weight: math.unit(103, "lbs"),
  5325. name: "Front",
  5326. image: {
  5327. source: "./media/characters/valeska-voss/front.svg"
  5328. }
  5329. }
  5330. },
  5331. [
  5332. {
  5333. name: "Mini-Sized Sub",
  5334. height: math.unit(3.1, "inches")
  5335. },
  5336. {
  5337. name: "Mid-Sized Sub",
  5338. height: math.unit(6.2, "inches")
  5339. },
  5340. {
  5341. name: "Full-Sized Sub",
  5342. height: math.unit(9.3, "inches")
  5343. },
  5344. {
  5345. name: "Normal",
  5346. height: math.unit(5 + 2 / 12, "foot"),
  5347. default: true
  5348. },
  5349. ]
  5350. ))
  5351. characterMakers.push(() => makeCharacter(
  5352. { name: "Gene Zeta" },
  5353. {
  5354. front: {
  5355. height: math.unit(6, "feet"),
  5356. weight: math.unit(160, "lbs"),
  5357. name: "Front",
  5358. image: {
  5359. source: "./media/characters/gene-zeta/front.svg",
  5360. bottom: 0.03,
  5361. extra: 1
  5362. }
  5363. }
  5364. },
  5365. [
  5366. {
  5367. name: "Normal",
  5368. height: math.unit(6.25, "foot"),
  5369. default: true
  5370. },
  5371. ]
  5372. ))
  5373. characterMakers.push(() => makeCharacter(
  5374. { name: "Razinox" },
  5375. {
  5376. front: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(350, "lbs"),
  5379. name: "Front",
  5380. image: {
  5381. source: "./media/characters/razinox/front.svg",
  5382. extra: 1686 / 1548,
  5383. bottom: 28.2/1868
  5384. }
  5385. },
  5386. back: {
  5387. height: math.unit(6, "feet"),
  5388. weight: math.unit(350, "lbs"),
  5389. name: "Back",
  5390. image: {
  5391. source: "./media/characters/razinox/back.svg",
  5392. extra: 1660 / 1590,
  5393. bottom: 15/1665
  5394. }
  5395. },
  5396. },
  5397. [
  5398. {
  5399. name: "Normal",
  5400. height: math.unit(10 + 8 / 12, "foot")
  5401. },
  5402. {
  5403. name: "Minimacro",
  5404. height: math.unit(15, "foot")
  5405. },
  5406. {
  5407. name: "Macro",
  5408. height: math.unit(60, "foot"),
  5409. default: true
  5410. },
  5411. {
  5412. name: "Megamacro",
  5413. height: math.unit(5, "miles")
  5414. },
  5415. {
  5416. name: "Gigamacro",
  5417. height: math.unit(6000, "miles")
  5418. },
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Cobalt" },
  5423. {
  5424. front: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(150, "lbs"),
  5427. name: "Front",
  5428. image: {
  5429. source: "./media/characters/cobalt/front.svg"
  5430. }
  5431. }
  5432. },
  5433. [
  5434. {
  5435. name: "Normal",
  5436. height: math.unit(8 + 1 / 12, "foot")
  5437. },
  5438. {
  5439. name: "Macro",
  5440. height: math.unit(111, "foot"),
  5441. default: true
  5442. },
  5443. {
  5444. name: "Supracosmic",
  5445. height: math.unit(1e42, "feet")
  5446. },
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Amanda" },
  5451. {
  5452. front: {
  5453. height: math.unit(6, "feet"),
  5454. weight: math.unit(140, "lbs"),
  5455. name: "Front",
  5456. image: {
  5457. source: "./media/characters/amanda/front.svg"
  5458. }
  5459. }
  5460. },
  5461. [
  5462. {
  5463. name: "Micro",
  5464. height: math.unit(5, "inches"),
  5465. default: true
  5466. },
  5467. ]
  5468. ))
  5469. characterMakers.push(() => makeCharacter(
  5470. { name: "Teal" },
  5471. {
  5472. front: {
  5473. height: math.unit(5.59, "feet"),
  5474. weight: math.unit(250, "lbs"),
  5475. name: "Front",
  5476. image: {
  5477. source: "./media/characters/teal/front.svg"
  5478. }
  5479. },
  5480. frontAlt: {
  5481. height: math.unit(6, "feet"),
  5482. weight: math.unit(250, "lbs"),
  5483. name: "Front (Alt)",
  5484. image: {
  5485. source: "./media/characters/teal/front-alt.svg",
  5486. bottom: 0.04,
  5487. extra: 1
  5488. }
  5489. },
  5490. },
  5491. [
  5492. {
  5493. name: "Normal",
  5494. height: math.unit(12, "feet"),
  5495. default: true
  5496. },
  5497. {
  5498. name: "Macro",
  5499. height: math.unit(300, "feet")
  5500. },
  5501. ]
  5502. ))
  5503. characterMakers.push(() => makeCharacter(
  5504. { name: "Ravin Amulet" },
  5505. {
  5506. frontCat: {
  5507. height: math.unit(6, "feet"),
  5508. weight: math.unit(180, "lbs"),
  5509. name: "Front (Cat)",
  5510. image: {
  5511. source: "./media/characters/ravin-amulet/front-cat.svg"
  5512. }
  5513. },
  5514. frontCatAlt: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(180, "lbs"),
  5517. name: "Front (Alt, Cat)",
  5518. image: {
  5519. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5520. }
  5521. },
  5522. frontWerewolf: {
  5523. height: math.unit(6 * 1.2, "feet"),
  5524. weight: math.unit(225, "lbs"),
  5525. name: "Front (Werewolf)",
  5526. image: {
  5527. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5528. }
  5529. },
  5530. backWerewolf: {
  5531. height: math.unit(6 * 1.2, "feet"),
  5532. weight: math.unit(225, "lbs"),
  5533. name: "Back (Werewolf)",
  5534. image: {
  5535. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5536. }
  5537. },
  5538. },
  5539. [
  5540. {
  5541. name: "Nano",
  5542. height: math.unit(1, "micrometer")
  5543. },
  5544. {
  5545. name: "Micro",
  5546. height: math.unit(1, "inch")
  5547. },
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(6, "feet"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Macro",
  5555. height: math.unit(60, "feet")
  5556. }
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Fluoresce" },
  5561. {
  5562. front: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(165, "lbs"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/fluoresce/front.svg"
  5568. }
  5569. }
  5570. },
  5571. [
  5572. {
  5573. name: "Micro",
  5574. height: math.unit(6, "cm")
  5575. },
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(5 + 7 / 12, "feet"),
  5579. default: true
  5580. },
  5581. {
  5582. name: "Macro",
  5583. height: math.unit(56, "feet")
  5584. },
  5585. {
  5586. name: "Megamacro",
  5587. height: math.unit(1.9, "miles")
  5588. },
  5589. ]
  5590. ))
  5591. characterMakers.push(() => makeCharacter(
  5592. { name: "Aurora" },
  5593. {
  5594. front: {
  5595. height: math.unit(9 + 6 / 12, "feet"),
  5596. weight: math.unit(523, "lbs"),
  5597. name: "Side",
  5598. image: {
  5599. source: "./media/characters/aurora/side.svg"
  5600. }
  5601. }
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(9 + 6 / 12, "feet")
  5607. },
  5608. {
  5609. name: "Macro",
  5610. height: math.unit(96, "feet"),
  5611. default: true
  5612. },
  5613. {
  5614. name: "Macro+",
  5615. height: math.unit(243, "feet")
  5616. },
  5617. ]
  5618. ))
  5619. characterMakers.push(() => makeCharacter(
  5620. { name: "Ranek" },
  5621. {
  5622. front: {
  5623. height: math.unit(194, "cm"),
  5624. weight: math.unit(90, "kg"),
  5625. name: "Front",
  5626. image: {
  5627. source: "./media/characters/ranek/front.svg"
  5628. }
  5629. },
  5630. side: {
  5631. height: math.unit(194, "cm"),
  5632. weight: math.unit(90, "kg"),
  5633. name: "Side",
  5634. image: {
  5635. source: "./media/characters/ranek/side.svg"
  5636. }
  5637. },
  5638. back: {
  5639. height: math.unit(194, "cm"),
  5640. weight: math.unit(90, "kg"),
  5641. name: "Back",
  5642. image: {
  5643. source: "./media/characters/ranek/back.svg"
  5644. }
  5645. },
  5646. feral: {
  5647. height: math.unit(30, "cm"),
  5648. weight: math.unit(1.6, "lbs"),
  5649. name: "Feral",
  5650. image: {
  5651. source: "./media/characters/ranek/feral.svg"
  5652. }
  5653. },
  5654. },
  5655. [
  5656. {
  5657. name: "Normal",
  5658. height: math.unit(194, "cm"),
  5659. default: true
  5660. },
  5661. {
  5662. name: "Macro",
  5663. height: math.unit(100, "meters")
  5664. },
  5665. ]
  5666. ))
  5667. characterMakers.push(() => makeCharacter(
  5668. { name: "Andrew Cooper" },
  5669. {
  5670. front: {
  5671. height: math.unit(5 + 6 / 12, "feet"),
  5672. weight: math.unit(153, "lbs"),
  5673. name: "Front",
  5674. image: {
  5675. source: "./media/characters/andrew-cooper/front.svg"
  5676. }
  5677. },
  5678. },
  5679. [
  5680. {
  5681. name: "Nano",
  5682. height: math.unit(1, "mm")
  5683. },
  5684. {
  5685. name: "Micro",
  5686. height: math.unit(2, "inches")
  5687. },
  5688. {
  5689. name: "Normal",
  5690. height: math.unit(5 + 6 / 12, "feet"),
  5691. default: true
  5692. }
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Akane Sato" },
  5697. {
  5698. front: {
  5699. height: math.unit(6, "feet"),
  5700. weight: math.unit(180, "lbs"),
  5701. name: "Front",
  5702. image: {
  5703. source: "./media/characters/akane-sato/front.svg",
  5704. extra: 1219 / 1140
  5705. }
  5706. },
  5707. back: {
  5708. height: math.unit(6, "feet"),
  5709. weight: math.unit(180, "lbs"),
  5710. name: "Back",
  5711. image: {
  5712. source: "./media/characters/akane-sato/back.svg",
  5713. extra: 1219 / 1170
  5714. }
  5715. },
  5716. },
  5717. [
  5718. {
  5719. name: "Normal",
  5720. height: math.unit(2.5, "meters")
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(250, "meters"),
  5725. default: true
  5726. },
  5727. {
  5728. name: "Megamacro",
  5729. height: math.unit(25, "km")
  5730. },
  5731. ]
  5732. ))
  5733. characterMakers.push(() => makeCharacter(
  5734. { name: "Rook" },
  5735. {
  5736. front: {
  5737. height: math.unit(6, "feet"),
  5738. weight: math.unit(65, "kg"),
  5739. name: "Front",
  5740. image: {
  5741. source: "./media/characters/rook/front.svg",
  5742. extra: 960/950
  5743. }
  5744. }
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(8.8, "feet")
  5750. },
  5751. {
  5752. name: "Macro",
  5753. height: math.unit(88, "feet"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Megamacro",
  5758. height: math.unit(8, "miles")
  5759. },
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Prodigy" },
  5764. {
  5765. front: {
  5766. height: math.unit(12 + 2 / 12, "feet"),
  5767. weight: math.unit(808, "lbs"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/prodigy/front.svg"
  5771. }
  5772. }
  5773. },
  5774. [
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(12 + 2 / 12, "feet"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Macro",
  5782. height: math.unit(143, "feet")
  5783. },
  5784. {
  5785. name: "Macro+",
  5786. height: math.unit(400, "feet")
  5787. },
  5788. ]
  5789. ))
  5790. characterMakers.push(() => makeCharacter(
  5791. { name: "Daniel" },
  5792. {
  5793. front: {
  5794. height: math.unit(6, "feet"),
  5795. weight: math.unit(225, "lbs"),
  5796. name: "Front",
  5797. image: {
  5798. source: "./media/characters/daniel/front.svg"
  5799. }
  5800. },
  5801. leaning: {
  5802. height: math.unit(6, "feet"),
  5803. weight: math.unit(225, "lbs"),
  5804. name: "Leaning",
  5805. image: {
  5806. source: "./media/characters/daniel/leaning.svg"
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Macro",
  5813. height: math.unit(1000, "feet"),
  5814. default: true
  5815. },
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Chiros" },
  5820. {
  5821. front: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(88, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/chiros/front.svg",
  5827. extra: 306 / 226
  5828. }
  5829. },
  5830. side: {
  5831. height: math.unit(6, "feet"),
  5832. weight: math.unit(88, "lbs"),
  5833. name: "Side",
  5834. image: {
  5835. source: "./media/characters/chiros/side.svg",
  5836. extra: 306 / 226
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(6, "cm"),
  5844. default: true
  5845. },
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Selka" },
  5850. {
  5851. front: {
  5852. height: math.unit(6, "feet"),
  5853. weight: math.unit(100, "lbs"),
  5854. name: "Front",
  5855. image: {
  5856. source: "./media/characters/selka/front.svg",
  5857. extra: 947 / 887
  5858. }
  5859. }
  5860. },
  5861. [
  5862. {
  5863. name: "Normal",
  5864. height: math.unit(5, "cm"),
  5865. default: true
  5866. },
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Verin" },
  5871. {
  5872. front: {
  5873. height: math.unit(8 + 3 / 12, "feet"),
  5874. weight: math.unit(424, "lbs"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/verin/front.svg",
  5878. extra: 1845 / 1550
  5879. }
  5880. },
  5881. frontArmored: {
  5882. height: math.unit(8 + 3 / 12, "feet"),
  5883. weight: math.unit(424, "lbs"),
  5884. name: "Front (Armored)",
  5885. image: {
  5886. source: "./media/characters/verin/front-armor.svg",
  5887. extra: 1845 / 1550,
  5888. bottom: 0.01
  5889. }
  5890. },
  5891. back: {
  5892. height: math.unit(8 + 3 / 12, "feet"),
  5893. weight: math.unit(424, "lbs"),
  5894. name: "Back",
  5895. image: {
  5896. source: "./media/characters/verin/back.svg",
  5897. bottom: 0.1,
  5898. extra: 1
  5899. }
  5900. },
  5901. foot: {
  5902. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5903. name: "Foot",
  5904. image: {
  5905. source: "./media/characters/verin/foot.svg"
  5906. }
  5907. },
  5908. },
  5909. [
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(8 + 3 / 12, "feet")
  5913. },
  5914. {
  5915. name: "Minimacro",
  5916. height: math.unit(21, "feet"),
  5917. default: true
  5918. },
  5919. {
  5920. name: "Macro",
  5921. height: math.unit(626, "feet")
  5922. },
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Sovrim Terraquian" },
  5927. {
  5928. front: {
  5929. height: math.unit(2.718, "meters"),
  5930. weight: math.unit(150, "lbs"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/sovrim-terraquian/front.svg"
  5934. }
  5935. },
  5936. back: {
  5937. height: math.unit(2.718, "meters"),
  5938. weight: math.unit(150, "lbs"),
  5939. name: "Back",
  5940. image: {
  5941. source: "./media/characters/sovrim-terraquian/back.svg"
  5942. }
  5943. }
  5944. },
  5945. [
  5946. {
  5947. name: "Micro",
  5948. height: math.unit(2, "inches")
  5949. },
  5950. {
  5951. name: "Small",
  5952. height: math.unit(1, "meter")
  5953. },
  5954. {
  5955. name: "Normal",
  5956. height: math.unit(Math.E, "meters"),
  5957. default: true
  5958. },
  5959. {
  5960. name: "Macro",
  5961. height: math.unit(20, "meters")
  5962. },
  5963. {
  5964. name: "Macro+",
  5965. height: math.unit(400, "meters")
  5966. },
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Reece Silvermane" },
  5971. {
  5972. front: {
  5973. height: math.unit(7, "feet"),
  5974. weight: math.unit(489, "lbs"),
  5975. name: "Front",
  5976. image: {
  5977. source: "./media/characters/reece-silvermane/front.svg",
  5978. bottom: 0.02,
  5979. extra: 1
  5980. }
  5981. },
  5982. },
  5983. [
  5984. {
  5985. name: "Macro",
  5986. height: math.unit(1.5, "miles"),
  5987. default: true
  5988. },
  5989. ]
  5990. ))
  5991. characterMakers.push(() => makeCharacter(
  5992. { name: "Kane" },
  5993. {
  5994. front: {
  5995. height: math.unit(6, "feet"),
  5996. weight: math.unit(78, "kg"),
  5997. name: "Front",
  5998. image: {
  5999. source: "./media/characters/kane/front.svg",
  6000. extra: 978 / 899
  6001. }
  6002. },
  6003. },
  6004. [
  6005. {
  6006. name: "Normal",
  6007. height: math.unit(2.1, "m"),
  6008. },
  6009. {
  6010. name: "Macro",
  6011. height: math.unit(1, "km"),
  6012. default: true
  6013. },
  6014. ]
  6015. ))
  6016. characterMakers.push(() => makeCharacter(
  6017. { name: "Tegon" },
  6018. {
  6019. front: {
  6020. height: math.unit(6, "feet"),
  6021. weight: math.unit(200, "kg"),
  6022. name: "Front",
  6023. image: {
  6024. source: "./media/characters/tegon/front.svg",
  6025. bottom: 0.01,
  6026. extra: 1
  6027. }
  6028. },
  6029. },
  6030. [
  6031. {
  6032. name: "Micro",
  6033. height: math.unit(1, "inch")
  6034. },
  6035. {
  6036. name: "Normal",
  6037. height: math.unit(6 + 3 / 12, "feet"),
  6038. default: true
  6039. },
  6040. {
  6041. name: "Macro",
  6042. height: math.unit(300, "feet")
  6043. },
  6044. {
  6045. name: "Megamacro",
  6046. height: math.unit(69, "miles")
  6047. },
  6048. ]
  6049. ))
  6050. characterMakers.push(() => makeCharacter(
  6051. { name: "Arcturax" },
  6052. {
  6053. side: {
  6054. height: math.unit(6, "feet"),
  6055. weight: math.unit(2304, "lbs"),
  6056. name: "Side",
  6057. image: {
  6058. source: "./media/characters/arcturax/side.svg",
  6059. extra: 790 / 376,
  6060. bottom: 0.01
  6061. }
  6062. },
  6063. },
  6064. [
  6065. {
  6066. name: "Micro",
  6067. height: math.unit(2, "inch")
  6068. },
  6069. {
  6070. name: "Normal",
  6071. height: math.unit(6, "feet")
  6072. },
  6073. {
  6074. name: "Macro",
  6075. height: math.unit(39, "feet"),
  6076. default: true
  6077. },
  6078. {
  6079. name: "Megamacro",
  6080. height: math.unit(7, "miles")
  6081. },
  6082. ]
  6083. ))
  6084. characterMakers.push(() => makeCharacter(
  6085. { name: "Sentri" },
  6086. {
  6087. front: {
  6088. height: math.unit(6, "feet"),
  6089. weight: math.unit(50, "lbs"),
  6090. name: "Front",
  6091. image: {
  6092. source: "./media/characters/sentri/front.svg",
  6093. extra: 1750 / 1570,
  6094. bottom: 0.025
  6095. }
  6096. },
  6097. frontAlt: {
  6098. height: math.unit(6, "feet"),
  6099. weight: math.unit(50, "lbs"),
  6100. name: "Front (Alt)",
  6101. image: {
  6102. source: "./media/characters/sentri/front-alt.svg",
  6103. extra: 1750 / 1570,
  6104. bottom: 0.025
  6105. }
  6106. },
  6107. },
  6108. [
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(15, "feet"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Macro",
  6116. height: math.unit(2500, "feet")
  6117. }
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Corvin" },
  6122. {
  6123. front: {
  6124. height: math.unit(5 + 8 / 12, "feet"),
  6125. weight: math.unit(130, "lbs"),
  6126. name: "Front",
  6127. image: {
  6128. source: "./media/characters/corvin/front.svg",
  6129. extra: 1803 / 1629
  6130. }
  6131. },
  6132. frontShirt: {
  6133. height: math.unit(5 + 8 / 12, "feet"),
  6134. weight: math.unit(130, "lbs"),
  6135. name: "Front (Shirt)",
  6136. image: {
  6137. source: "./media/characters/corvin/front-shirt.svg",
  6138. extra: 1803 / 1629
  6139. }
  6140. },
  6141. frontPoncho: {
  6142. height: math.unit(5 + 8 / 12, "feet"),
  6143. weight: math.unit(130, "lbs"),
  6144. name: "Front (Poncho)",
  6145. image: {
  6146. source: "./media/characters/corvin/front-poncho.svg",
  6147. extra: 1803 / 1629
  6148. }
  6149. },
  6150. side: {
  6151. height: math.unit(5 + 8 / 12, "feet"),
  6152. weight: math.unit(130, "lbs"),
  6153. name: "Side",
  6154. image: {
  6155. source: "./media/characters/corvin/side.svg",
  6156. extra: 1012 / 945
  6157. }
  6158. },
  6159. back: {
  6160. height: math.unit(5 + 8 / 12, "feet"),
  6161. weight: math.unit(130, "lbs"),
  6162. name: "Back",
  6163. image: {
  6164. source: "./media/characters/corvin/back.svg",
  6165. extra: 1803 / 1629
  6166. }
  6167. },
  6168. },
  6169. [
  6170. {
  6171. name: "Micro",
  6172. height: math.unit(3, "inches")
  6173. },
  6174. {
  6175. name: "Normal",
  6176. height: math.unit(5 + 8 / 12, "feet")
  6177. },
  6178. {
  6179. name: "Macro",
  6180. height: math.unit(300, "feet"),
  6181. default: true
  6182. },
  6183. {
  6184. name: "Megamacro",
  6185. height: math.unit(500, "miles")
  6186. }
  6187. ]
  6188. ))
  6189. characterMakers.push(() => makeCharacter(
  6190. { name: "Q" },
  6191. {
  6192. front: {
  6193. height: math.unit(6, "feet"),
  6194. weight: math.unit(135, "lbs"),
  6195. name: "Front",
  6196. image: {
  6197. source: "./media/characters/q/front.svg",
  6198. extra: 854 / 752,
  6199. bottom: 0.005
  6200. }
  6201. },
  6202. back: {
  6203. height: math.unit(6, "feet"),
  6204. weight: math.unit(130, "lbs"),
  6205. name: "Back",
  6206. image: {
  6207. source: "./media/characters/q/back.svg",
  6208. extra: 854 / 752
  6209. }
  6210. },
  6211. },
  6212. [
  6213. {
  6214. name: "Macro",
  6215. height: math.unit(90, "feet"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Extra Macro",
  6220. height: math.unit(300, "feet"),
  6221. },
  6222. {
  6223. name: "BIG WALF",
  6224. height: math.unit(750, "feet"),
  6225. },
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Carley" },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(150, "lbs"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/carley/front.svg",
  6237. extra: 3927 / 3540,
  6238. bottom: 0.03
  6239. }
  6240. }
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(6 + 3 / 12, "feet")
  6246. },
  6247. {
  6248. name: "Macro",
  6249. height: math.unit(185, "feet"),
  6250. default: true
  6251. },
  6252. {
  6253. name: "Megamacro",
  6254. height: math.unit(8, "miles"),
  6255. },
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "Citrine" },
  6260. {
  6261. front: {
  6262. height: math.unit(3, "feet"),
  6263. weight: math.unit(28, "lbs"),
  6264. name: "Front",
  6265. image: {
  6266. source: "./media/characters/citrine/front.svg"
  6267. }
  6268. }
  6269. },
  6270. [
  6271. {
  6272. name: "Normal",
  6273. height: math.unit(3, "feet"),
  6274. default: true
  6275. }
  6276. ]
  6277. ))
  6278. characterMakers.push(() => makeCharacter(
  6279. { name: "Aura Starwind" },
  6280. {
  6281. front: {
  6282. height: math.unit(14, "feet"),
  6283. weight: math.unit(1450, "kg"),
  6284. capacity: math.unit(15, "people"),
  6285. name: "Front",
  6286. image: {
  6287. source: "./media/characters/aura-starwind/front.svg",
  6288. extra: 1455 / 1335
  6289. }
  6290. },
  6291. side: {
  6292. height: math.unit(14, "feet"),
  6293. weight: math.unit(1450, "kg"),
  6294. capacity: math.unit(15, "people"),
  6295. name: "Side",
  6296. image: {
  6297. source: "./media/characters/aura-starwind/side.svg",
  6298. extra: 1654 / 1497
  6299. }
  6300. },
  6301. taur: {
  6302. height: math.unit(18, "feet"),
  6303. weight: math.unit(5500, "kg"),
  6304. capacity: math.unit(50, "people"),
  6305. name: "Taur",
  6306. image: {
  6307. source: "./media/characters/aura-starwind/taur.svg",
  6308. extra: 1760 / 1650
  6309. }
  6310. },
  6311. feral: {
  6312. height: math.unit(46, "feet"),
  6313. weight: math.unit(25000, "kg"),
  6314. capacity: math.unit(120, "people"),
  6315. name: "Feral",
  6316. image: {
  6317. source: "./media/characters/aura-starwind/feral.svg"
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(14, "feet"),
  6325. default: true
  6326. },
  6327. {
  6328. name: "Macro",
  6329. height: math.unit(50, "meters")
  6330. },
  6331. {
  6332. name: "Megamacro",
  6333. height: math.unit(5000, "meters")
  6334. },
  6335. {
  6336. name: "Gigamacro",
  6337. height: math.unit(100000, "kilometers")
  6338. },
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "Rivet" },
  6343. {
  6344. front: {
  6345. height: math.unit(2 + 7 / 12, "feet"),
  6346. weight: math.unit(32, "lbs"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/rivet/front.svg",
  6350. extra: 1716 / 1658,
  6351. bottom: 0.03
  6352. }
  6353. },
  6354. foot: {
  6355. height: math.unit(0.551, "feet"),
  6356. name: "Rivet's Foot",
  6357. image: {
  6358. source: "./media/characters/rivet/foot.svg"
  6359. },
  6360. rename: true
  6361. }
  6362. },
  6363. [
  6364. {
  6365. name: "Micro",
  6366. height: math.unit(1.5, "inches"),
  6367. },
  6368. {
  6369. name: "Normal",
  6370. height: math.unit(2 + 7 / 12, "feet"),
  6371. default: true
  6372. },
  6373. {
  6374. name: "Macro",
  6375. height: math.unit(85, "feet")
  6376. },
  6377. {
  6378. name: "Megamacro",
  6379. height: math.unit(2.2, "km")
  6380. }
  6381. ]
  6382. ))
  6383. characterMakers.push(() => makeCharacter(
  6384. { name: "Coffee" },
  6385. {
  6386. front: {
  6387. height: math.unit(5 + 9 / 12, "feet"),
  6388. weight: math.unit(150, "lbs"),
  6389. name: "Front",
  6390. image: {
  6391. source: "./media/characters/coffee/front.svg",
  6392. extra: 3666 / 3032,
  6393. bottom: 0.04
  6394. }
  6395. },
  6396. foot: {
  6397. height: math.unit(1.29, "feet"),
  6398. name: "Foot",
  6399. image: {
  6400. source: "./media/characters/coffee/foot.svg"
  6401. }
  6402. },
  6403. },
  6404. [
  6405. {
  6406. name: "Micro",
  6407. height: math.unit(2, "inches"),
  6408. },
  6409. {
  6410. name: "Normal",
  6411. height: math.unit(5 + 9 / 12, "feet"),
  6412. default: true
  6413. },
  6414. {
  6415. name: "Macro",
  6416. height: math.unit(800, "feet")
  6417. },
  6418. {
  6419. name: "Megamacro",
  6420. height: math.unit(25, "miles")
  6421. }
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Chari-Gal" },
  6426. {
  6427. front: {
  6428. height: math.unit(6, "feet"),
  6429. weight: math.unit(200, "lbs"),
  6430. name: "Front",
  6431. image: {
  6432. source: "./media/characters/chari-gal/front.svg",
  6433. extra: 1568 / 1385,
  6434. bottom: 0.047
  6435. }
  6436. },
  6437. gigantamax: {
  6438. height: math.unit(6 * 16, "feet"),
  6439. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  6440. name: "Gigantamax",
  6441. image: {
  6442. source: "./media/characters/chari-gal/gigantamax.svg",
  6443. extra: 1124 / 888,
  6444. bottom: 0.03
  6445. }
  6446. },
  6447. },
  6448. [
  6449. {
  6450. name: "Normal",
  6451. height: math.unit(5 + 7 / 12, "feet")
  6452. },
  6453. {
  6454. name: "Macro",
  6455. height: math.unit(200, "feet"),
  6456. default: true
  6457. }
  6458. ]
  6459. ))
  6460. characterMakers.push(() => makeCharacter(
  6461. { name: "Nova" },
  6462. {
  6463. front: {
  6464. height: math.unit(6, "feet"),
  6465. weight: math.unit(150, "lbs"),
  6466. name: "Front",
  6467. image: {
  6468. source: "./media/characters/nova/front.svg",
  6469. extra: 5000 / 4722,
  6470. bottom: 0.02
  6471. }
  6472. }
  6473. },
  6474. [
  6475. {
  6476. name: "Micro-",
  6477. height: math.unit(0.8, "inches")
  6478. },
  6479. {
  6480. name: "Micro",
  6481. height: math.unit(2, "inches"),
  6482. default: true
  6483. },
  6484. ]
  6485. ))
  6486. characterMakers.push(() => makeCharacter(
  6487. { name: "Argent" },
  6488. {
  6489. front: {
  6490. height: math.unit(3 + 1 / 12, "feet"),
  6491. weight: math.unit(21.7, "lbs"),
  6492. name: "Front",
  6493. image: {
  6494. source: "./media/characters/argent/front.svg",
  6495. extra: 1565 / 1416,
  6496. bottom: 0.01
  6497. }
  6498. }
  6499. },
  6500. [
  6501. {
  6502. name: "Micro",
  6503. height: math.unit(2, "inches")
  6504. },
  6505. {
  6506. name: "Normal",
  6507. height: math.unit(3 + 1 / 12, "feet"),
  6508. default: true
  6509. },
  6510. {
  6511. name: "Macro",
  6512. height: math.unit(120, "feet")
  6513. },
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Mira al-Cul" },
  6518. {
  6519. lamp: {
  6520. height: math.unit(7 * 1559 / 989, "feet"),
  6521. name: "Magic Lamp",
  6522. image: {
  6523. source: "./media/characters/mira-al-cul/lamp.svg",
  6524. extra: 1617 / 1559
  6525. }
  6526. },
  6527. front: {
  6528. height: math.unit(7, "feet"),
  6529. name: "Front",
  6530. image: {
  6531. source: "./media/characters/mira-al-cul/front.svg",
  6532. extra: 1044 / 990
  6533. }
  6534. },
  6535. },
  6536. [
  6537. {
  6538. name: "Heavily Restricted",
  6539. height: math.unit(7 * 1559 / 989, "feet")
  6540. },
  6541. {
  6542. name: "Freshly Freed",
  6543. height: math.unit(50 * 1559 / 989, "feet")
  6544. },
  6545. {
  6546. name: "World Encompassing",
  6547. height: math.unit(10000 * 1559 / 989, "miles")
  6548. },
  6549. {
  6550. name: "Galactic",
  6551. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6552. },
  6553. {
  6554. name: "Palmed Universe",
  6555. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6556. default: true
  6557. },
  6558. {
  6559. name: "Multiversal Matriarch",
  6560. height: math.unit(8.87e10, "yottameters")
  6561. },
  6562. {
  6563. name: "Void Mother",
  6564. height: math.unit(3.14e110, "yottaparsecs")
  6565. },
  6566. ]
  6567. ))
  6568. characterMakers.push(() => makeCharacter(
  6569. { name: "Kuro-shi Uchū" },
  6570. {
  6571. front: {
  6572. height: math.unit(17 + 1 / 12, "feet"),
  6573. weight: math.unit(476.2 * 5, "lbs"),
  6574. name: "Front",
  6575. image: {
  6576. source: "./media/characters/kuro-shi-uchū/front.svg",
  6577. extra: 2329 / 1835,
  6578. bottom: 0.02
  6579. }
  6580. },
  6581. },
  6582. [
  6583. {
  6584. name: "Micro",
  6585. height: math.unit(2, "inches")
  6586. },
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(12, "meters")
  6590. },
  6591. {
  6592. name: "Planetary",
  6593. height: math.unit(0.00929, "AU"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Universal",
  6598. height: math.unit(20, "gigaparsecs")
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Katherine" },
  6604. {
  6605. front: {
  6606. height: math.unit(5 + 2 / 12, "feet"),
  6607. weight: math.unit(120, "lbs"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/katherine/front.svg",
  6611. extra: 2075 / 1969
  6612. }
  6613. },
  6614. dress: {
  6615. height: math.unit(5 + 2 / 12, "feet"),
  6616. weight: math.unit(120, "lbs"),
  6617. name: "Dress",
  6618. image: {
  6619. source: "./media/characters/katherine/dress.svg",
  6620. extra: 2258 / 2064
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Micro",
  6627. height: math.unit(1, "inches"),
  6628. default: true
  6629. },
  6630. {
  6631. name: "Normal",
  6632. height: math.unit(5 + 2 / 12, "feet")
  6633. },
  6634. {
  6635. name: "Macro",
  6636. height: math.unit(100, "meters")
  6637. },
  6638. {
  6639. name: "Megamacro",
  6640. height: math.unit(80, "miles")
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Yevis" },
  6646. {
  6647. front: {
  6648. height: math.unit(7 + 8 / 12, "feet"),
  6649. weight: math.unit(250, "lbs"),
  6650. name: "Front",
  6651. image: {
  6652. source: "./media/characters/yevis/front.svg",
  6653. extra: 1938 / 1755
  6654. }
  6655. }
  6656. },
  6657. [
  6658. {
  6659. name: "Mortal",
  6660. height: math.unit(7 + 8 / 12, "feet")
  6661. },
  6662. {
  6663. name: "Battle",
  6664. height: math.unit(25 + 11 / 12, "feet")
  6665. },
  6666. {
  6667. name: "Wrath",
  6668. height: math.unit(1654 + 11 / 12, "feet")
  6669. },
  6670. {
  6671. name: "Planet Destroyer",
  6672. height: math.unit(12000, "miles")
  6673. },
  6674. {
  6675. name: "Galaxy Conqueror",
  6676. height: math.unit(1.45, "zettameters"),
  6677. default: true
  6678. },
  6679. {
  6680. name: "Universal War",
  6681. height: math.unit(184, "gigaparsecs")
  6682. },
  6683. {
  6684. name: "Eternity War",
  6685. height: math.unit(1.98e55, "yottaparsecs")
  6686. },
  6687. ]
  6688. ))
  6689. characterMakers.push(() => makeCharacter(
  6690. { name: "Xavier" },
  6691. {
  6692. front: {
  6693. height: math.unit(5 + 8 / 12, "feet"),
  6694. weight: math.unit(63, "kg"),
  6695. name: "Front",
  6696. image: {
  6697. source: "./media/characters/xavier/front.svg",
  6698. extra: 944 / 883
  6699. }
  6700. },
  6701. frontStretch: {
  6702. height: math.unit(5 + 8 / 12, "feet"),
  6703. weight: math.unit(63, "kg"),
  6704. name: "Stretching",
  6705. image: {
  6706. source: "./media/characters/xavier/front-stretch.svg",
  6707. extra: 962 / 820
  6708. }
  6709. },
  6710. },
  6711. [
  6712. {
  6713. name: "Normal",
  6714. height: math.unit(5 + 8 / 12, "feet")
  6715. },
  6716. {
  6717. name: "Macro",
  6718. height: math.unit(100, "meters"),
  6719. default: true
  6720. },
  6721. {
  6722. name: "McLargeHuge",
  6723. height: math.unit(10, "miles")
  6724. },
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Joshii" },
  6729. {
  6730. front: {
  6731. height: math.unit(5 + 5 / 12, "feet"),
  6732. weight: math.unit(150, "lb"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/joshii/front.svg"
  6736. }
  6737. },
  6738. foot: {
  6739. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6740. name: "Foot",
  6741. image: {
  6742. source: "./media/characters/joshii/foot.svg"
  6743. }
  6744. },
  6745. },
  6746. [
  6747. {
  6748. name: "Micro",
  6749. height: math.unit(2, "inches")
  6750. },
  6751. {
  6752. name: "Normal",
  6753. height: math.unit(5 + 5 / 12, "feet"),
  6754. default: true
  6755. },
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(785, "feet")
  6759. },
  6760. {
  6761. name: "Megamacro",
  6762. height: math.unit(24.5, "miles")
  6763. },
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Goddess Elizabeth" },
  6768. {
  6769. front: {
  6770. height: math.unit(6, "feet"),
  6771. weight: math.unit(150, "lb"),
  6772. name: "Front",
  6773. image: {
  6774. source: "./media/characters/goddess-elizabeth/front.svg",
  6775. extra: 1800 / 1525,
  6776. bottom: 0.005
  6777. }
  6778. },
  6779. foot: {
  6780. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6781. name: "Foot",
  6782. image: {
  6783. source: "./media/characters/goddess-elizabeth/foot.svg"
  6784. }
  6785. },
  6786. mouth: {
  6787. height: math.unit(6, "feet"),
  6788. name: "Mouth",
  6789. image: {
  6790. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6791. }
  6792. },
  6793. },
  6794. [
  6795. {
  6796. name: "Micro",
  6797. height: math.unit(12, "feet")
  6798. },
  6799. {
  6800. name: "Normal",
  6801. height: math.unit(80, "miles"),
  6802. default: true
  6803. },
  6804. {
  6805. name: "Macro",
  6806. height: math.unit(15000, "parsecs")
  6807. },
  6808. ]
  6809. ))
  6810. characterMakers.push(() => makeCharacter(
  6811. { name: "Kara" },
  6812. {
  6813. front: {
  6814. height: math.unit(5 + 9 / 12, "feet"),
  6815. weight: math.unit(144, "lb"),
  6816. name: "Front",
  6817. image: {
  6818. source: "./media/characters/kara/front.svg"
  6819. }
  6820. },
  6821. feet: {
  6822. height: math.unit(6 / 6.765, "feet"),
  6823. name: "Kara's Feet",
  6824. rename: true,
  6825. image: {
  6826. source: "./media/characters/kara/feet.svg"
  6827. }
  6828. },
  6829. },
  6830. [
  6831. {
  6832. name: "Normal",
  6833. height: math.unit(5 + 9 / 12, "feet")
  6834. },
  6835. {
  6836. name: "Macro",
  6837. height: math.unit(174, "feet"),
  6838. default: true
  6839. },
  6840. ]
  6841. ))
  6842. characterMakers.push(() => makeCharacter(
  6843. { name: "Tyrone" },
  6844. {
  6845. front: {
  6846. height: math.unit(18, "feet"),
  6847. weight: math.unit(4050, "lb"),
  6848. name: "Front",
  6849. image: {
  6850. source: "./media/characters/tyrone/front.svg",
  6851. extra: 2520 / 2402,
  6852. bottom: 0.025
  6853. }
  6854. },
  6855. },
  6856. [
  6857. {
  6858. name: "Normal",
  6859. height: math.unit(18, "feet"),
  6860. default: true
  6861. },
  6862. {
  6863. name: "Macro",
  6864. height: math.unit(300, "feet")
  6865. },
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Danny" },
  6870. {
  6871. front: {
  6872. height: math.unit(7 + 8 / 12, "feet"),
  6873. weight: math.unit(120, "lb"),
  6874. name: "Front",
  6875. image: {
  6876. source: "./media/characters/danny/front.svg",
  6877. extra: 1490 / 1350
  6878. }
  6879. },
  6880. back: {
  6881. height: math.unit(7 + 8 / 12, "feet"),
  6882. weight: math.unit(120, "lb"),
  6883. name: "Back",
  6884. image: {
  6885. source: "./media/characters/danny/back.svg",
  6886. extra: 1490 / 1350
  6887. }
  6888. },
  6889. },
  6890. [
  6891. {
  6892. name: "Normal",
  6893. height: math.unit(7 + 8 / 12, "feet"),
  6894. default: true
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Mallow" },
  6900. {
  6901. front: {
  6902. height: math.unit(3.5, "inches"),
  6903. weight: math.unit(19, "grams"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/mallow/front.svg",
  6907. extra: 471 / 431
  6908. }
  6909. },
  6910. back: {
  6911. height: math.unit(3.5, "inches"),
  6912. weight: math.unit(19, "grams"),
  6913. name: "Back",
  6914. image: {
  6915. source: "./media/characters/mallow/back.svg",
  6916. extra: 471 / 431
  6917. }
  6918. },
  6919. },
  6920. [
  6921. {
  6922. name: "Normal",
  6923. height: math.unit(3.5, "inches"),
  6924. default: true
  6925. },
  6926. ]
  6927. ))
  6928. characterMakers.push(() => makeCharacter(
  6929. { name: "Starry Aqua" },
  6930. {
  6931. front: {
  6932. height: math.unit(9, "feet"),
  6933. weight: math.unit(230, "kg"),
  6934. name: "Front",
  6935. image: {
  6936. source: "./media/characters/starry-aqua/front.svg"
  6937. }
  6938. },
  6939. back: {
  6940. height: math.unit(9, "feet"),
  6941. weight: math.unit(230, "kg"),
  6942. name: "Back",
  6943. image: {
  6944. source: "./media/characters/starry-aqua/back.svg"
  6945. }
  6946. },
  6947. hand: {
  6948. height: math.unit(9 * 0.1168, "feet"),
  6949. name: "Hand",
  6950. image: {
  6951. source: "./media/characters/starry-aqua/hand.svg"
  6952. }
  6953. },
  6954. foot: {
  6955. height: math.unit(9 * 0.18, "feet"),
  6956. name: "Foot",
  6957. image: {
  6958. source: "./media/characters/starry-aqua/foot.svg"
  6959. }
  6960. }
  6961. },
  6962. [
  6963. {
  6964. name: "Micro",
  6965. height: math.unit(3, "inches")
  6966. },
  6967. {
  6968. name: "Normal",
  6969. height: math.unit(9, "feet")
  6970. },
  6971. {
  6972. name: "Macro",
  6973. height: math.unit(300, "feet"),
  6974. default: true
  6975. },
  6976. {
  6977. name: "Megamacro",
  6978. height: math.unit(3200, "feet")
  6979. }
  6980. ]
  6981. ))
  6982. characterMakers.push(() => makeCharacter(
  6983. { name: "Luka" },
  6984. {
  6985. front: {
  6986. height: math.unit(6, "feet"),
  6987. weight: math.unit(230, "lb"),
  6988. name: "Front",
  6989. image: {
  6990. source: "./media/characters/luka/front.svg",
  6991. extra: 1,
  6992. bottom: 0.025
  6993. }
  6994. },
  6995. },
  6996. [
  6997. {
  6998. name: "Normal",
  6999. height: math.unit(12 + 8 / 12, "feet"),
  7000. default: true
  7001. },
  7002. {
  7003. name: "Minimacro",
  7004. height: math.unit(20, "feet")
  7005. },
  7006. {
  7007. name: "Macro",
  7008. height: math.unit(250, "feet")
  7009. },
  7010. {
  7011. name: "Megamacro",
  7012. height: math.unit(5, "miles")
  7013. },
  7014. {
  7015. name: "Gigamacro",
  7016. height: math.unit(8000, "miles")
  7017. },
  7018. ]
  7019. ))
  7020. characterMakers.push(() => makeCharacter(
  7021. { name: "Natalie Nightring" },
  7022. {
  7023. front: {
  7024. height: math.unit(6, "feet"),
  7025. weight: math.unit(150, "lb"),
  7026. name: "Front",
  7027. image: {
  7028. source: "./media/characters/natalie-nightring/front.svg",
  7029. extra: 1,
  7030. bottom: 0.06
  7031. }
  7032. },
  7033. },
  7034. [
  7035. {
  7036. name: "Uh Oh",
  7037. height: math.unit(0.1, "mm")
  7038. },
  7039. {
  7040. name: "Small",
  7041. height: math.unit(3, "inches")
  7042. },
  7043. {
  7044. name: "Human Scale",
  7045. height: math.unit(6, "feet")
  7046. },
  7047. {
  7048. name: "Librarian",
  7049. height: math.unit(50, "feet"),
  7050. default: true
  7051. },
  7052. {
  7053. name: "Immense",
  7054. height: math.unit(200, "miles")
  7055. },
  7056. ]
  7057. ))
  7058. characterMakers.push(() => makeCharacter(
  7059. { name: "Danni Rosie" },
  7060. {
  7061. front: {
  7062. height: math.unit(6, "feet"),
  7063. weight: math.unit(180, "lbs"),
  7064. name: "Front",
  7065. image: {
  7066. source: "./media/characters/danni-rosie/front.svg",
  7067. extra: 1260 / 1128,
  7068. bottom: 0.022
  7069. }
  7070. },
  7071. },
  7072. [
  7073. {
  7074. name: "Micro",
  7075. height: math.unit(2, "inches"),
  7076. default: true
  7077. },
  7078. ]
  7079. ))
  7080. characterMakers.push(() => makeCharacter(
  7081. { name: "Samantha Kruse" },
  7082. {
  7083. front: {
  7084. height: math.unit(5 + 9 / 12, "feet"),
  7085. weight: math.unit(220, "lb"),
  7086. name: "Front",
  7087. image: {
  7088. source: "./media/characters/samantha-kruse/front.svg",
  7089. extra: (985 / 935),
  7090. bottom: 0.03
  7091. }
  7092. },
  7093. frontUndressed: {
  7094. height: math.unit(5 + 9 / 12, "feet"),
  7095. weight: math.unit(220, "lb"),
  7096. name: "Front (Undressed)",
  7097. image: {
  7098. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7099. extra: (973 / 923),
  7100. bottom: 0.025
  7101. }
  7102. },
  7103. fat: {
  7104. height: math.unit(5 + 9 / 12, "feet"),
  7105. weight: math.unit(900, "lb"),
  7106. name: "Front (Fat)",
  7107. image: {
  7108. source: "./media/characters/samantha-kruse/fat.svg",
  7109. extra: 2688 / 2561
  7110. }
  7111. },
  7112. },
  7113. [
  7114. {
  7115. name: "Normal",
  7116. height: math.unit(5 + 9 / 12, "feet"),
  7117. default: true
  7118. }
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Amelia Rosie" },
  7123. {
  7124. back: {
  7125. height: math.unit(5 + 4 / 12, "feet"),
  7126. weight: math.unit(4963, "lb"),
  7127. name: "Back",
  7128. image: {
  7129. source: "./media/characters/amelia-rosie/back.svg",
  7130. extra: 1113 / 963,
  7131. bottom: 0.01
  7132. }
  7133. },
  7134. },
  7135. [
  7136. {
  7137. name: "Level 0",
  7138. height: math.unit(5 + 4 / 12, "feet")
  7139. },
  7140. {
  7141. name: "Level 1",
  7142. height: math.unit(164597, "feet"),
  7143. default: true
  7144. },
  7145. {
  7146. name: "Level 2",
  7147. height: math.unit(956243, "miles")
  7148. },
  7149. {
  7150. name: "Level 3",
  7151. height: math.unit(29421709423, "miles")
  7152. },
  7153. {
  7154. name: "Level 4",
  7155. height: math.unit(154, "lightyears")
  7156. },
  7157. {
  7158. name: "Level 5",
  7159. height: math.unit(4738272, "lightyears")
  7160. },
  7161. {
  7162. name: "Level 6",
  7163. height: math.unit(145787152896, "lightyears")
  7164. },
  7165. ]
  7166. ))
  7167. characterMakers.push(() => makeCharacter(
  7168. { name: "Rook Kitara" },
  7169. {
  7170. front: {
  7171. height: math.unit(5 + 11 / 12, "feet"),
  7172. weight: math.unit(65, "kg"),
  7173. name: "Front",
  7174. image: {
  7175. source: "./media/characters/rook-kitara/front.svg",
  7176. extra: 1347 / 1274,
  7177. bottom: 0.005
  7178. }
  7179. },
  7180. },
  7181. [
  7182. {
  7183. name: "Totally Unfair",
  7184. height: math.unit(1.8, "mm")
  7185. },
  7186. {
  7187. name: "Lap Rookie",
  7188. height: math.unit(1.4, "feet")
  7189. },
  7190. {
  7191. name: "Normal",
  7192. height: math.unit(5 + 11 / 12, "feet"),
  7193. default: true
  7194. },
  7195. {
  7196. name: "How Did This Happen",
  7197. height: math.unit(80, "miles")
  7198. }
  7199. ]
  7200. ))
  7201. characterMakers.push(() => makeCharacter(
  7202. { name: "Pisces" },
  7203. {
  7204. front: {
  7205. height: math.unit(7, "feet"),
  7206. weight: math.unit(300, "lb"),
  7207. name: "Front",
  7208. image: {
  7209. source: "./media/characters/pisces/front.svg",
  7210. extra: 2255 / 2115,
  7211. bottom: 0.03
  7212. }
  7213. },
  7214. back: {
  7215. height: math.unit(7, "feet"),
  7216. weight: math.unit(300, "lb"),
  7217. name: "Back",
  7218. image: {
  7219. source: "./media/characters/pisces/back.svg",
  7220. extra: 2146 / 2055,
  7221. bottom: 0.04
  7222. }
  7223. },
  7224. },
  7225. [
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(7, "feet"),
  7229. default: true
  7230. },
  7231. {
  7232. name: "Swimming Pool",
  7233. height: math.unit(12.2, "meters")
  7234. },
  7235. {
  7236. name: "Olympic Swimming Pool",
  7237. height: math.unit(56.3, "meters")
  7238. },
  7239. {
  7240. name: "Lake Superior",
  7241. height: math.unit(93900, "meters")
  7242. },
  7243. {
  7244. name: "Mediterranean Sea",
  7245. height: math.unit(644457, "meters")
  7246. },
  7247. {
  7248. name: "World's Oceans",
  7249. height: math.unit(4567491, "meters")
  7250. },
  7251. ]
  7252. ))
  7253. characterMakers.push(() => makeCharacter(
  7254. { name: "Zelas" },
  7255. {
  7256. front: {
  7257. height: math.unit(2.3, "meters"),
  7258. weight: math.unit(120, "kg"),
  7259. name: "Front",
  7260. image: {
  7261. source: "./media/characters/zelas/front.svg"
  7262. }
  7263. },
  7264. side: {
  7265. height: math.unit(2.3, "meters"),
  7266. weight: math.unit(120, "kg"),
  7267. name: "Side",
  7268. image: {
  7269. source: "./media/characters/zelas/side.svg"
  7270. }
  7271. },
  7272. back: {
  7273. height: math.unit(2.3, "meters"),
  7274. weight: math.unit(120, "kg"),
  7275. name: "Back",
  7276. image: {
  7277. source: "./media/characters/zelas/back.svg"
  7278. }
  7279. },
  7280. foot: {
  7281. height: math.unit(1.116, "feet"),
  7282. name: "Foot",
  7283. image: {
  7284. source: "./media/characters/zelas/foot.svg"
  7285. }
  7286. },
  7287. },
  7288. [
  7289. {
  7290. name: "Normal",
  7291. height: math.unit(2.3, "meters")
  7292. },
  7293. {
  7294. name: "Macro",
  7295. height: math.unit(30, "meters"),
  7296. default: true
  7297. },
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Talbot" },
  7302. {
  7303. front: {
  7304. height: math.unit(1, "inch"),
  7305. weight: math.unit(0.21, "grams"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/talbot/front.svg",
  7309. extra: 594 / 544
  7310. }
  7311. },
  7312. },
  7313. [
  7314. {
  7315. name: "Micro",
  7316. height: math.unit(1, "inch"),
  7317. default: true
  7318. },
  7319. ]
  7320. ))
  7321. characterMakers.push(() => makeCharacter(
  7322. { name: "Fliss" },
  7323. {
  7324. front: {
  7325. height: math.unit(3 + 3 / 12, "feet"),
  7326. weight: math.unit(51.8, "lb"),
  7327. name: "Front",
  7328. image: {
  7329. source: "./media/characters/fliss/front.svg",
  7330. extra: 840 / 640
  7331. }
  7332. },
  7333. },
  7334. [
  7335. {
  7336. name: "Teeny Tiny",
  7337. height: math.unit(1, "mm")
  7338. },
  7339. {
  7340. name: "Small",
  7341. height: math.unit(1, "inch"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Standard Sylveon",
  7346. height: math.unit(3 + 3 / 12, "feet")
  7347. },
  7348. {
  7349. name: "Large Nuisance",
  7350. height: math.unit(33, "feet")
  7351. },
  7352. {
  7353. name: "City Filler",
  7354. height: math.unit(3000, "feet")
  7355. },
  7356. {
  7357. name: "New Horizon",
  7358. height: math.unit(6000, "miles")
  7359. },
  7360. ]
  7361. ))
  7362. characterMakers.push(() => makeCharacter(
  7363. { name: "Fleta" },
  7364. {
  7365. front: {
  7366. height: math.unit(5, "cm"),
  7367. weight: math.unit(1.94, "g"),
  7368. name: "Front",
  7369. image: {
  7370. source: "./media/characters/fleta/front.svg",
  7371. extra: 835 / 803
  7372. }
  7373. },
  7374. back: {
  7375. height: math.unit(5, "cm"),
  7376. weight: math.unit(1.94, "g"),
  7377. name: "Back",
  7378. image: {
  7379. source: "./media/characters/fleta/back.svg",
  7380. extra: 835 / 803
  7381. }
  7382. },
  7383. },
  7384. [
  7385. {
  7386. name: "Micro",
  7387. height: math.unit(5, "cm"),
  7388. default: true
  7389. },
  7390. ]
  7391. ))
  7392. characterMakers.push(() => makeCharacter(
  7393. { name: "Dominic" },
  7394. {
  7395. front: {
  7396. height: math.unit(6, "feet"),
  7397. weight: math.unit(225, "lb"),
  7398. name: "Front",
  7399. image: {
  7400. source: "./media/characters/dominic/front.svg",
  7401. extra: 1770 / 1620,
  7402. bottom: 0.025
  7403. }
  7404. },
  7405. back: {
  7406. height: math.unit(6, "feet"),
  7407. weight: math.unit(225, "lb"),
  7408. name: "Back",
  7409. image: {
  7410. source: "./media/characters/dominic/back.svg",
  7411. extra: 1745 / 1620,
  7412. bottom: 0.065
  7413. }
  7414. },
  7415. },
  7416. [
  7417. {
  7418. name: "Nano",
  7419. height: math.unit(0.1, "mm")
  7420. },
  7421. {
  7422. name: "Micro-",
  7423. height: math.unit(1, "mm")
  7424. },
  7425. {
  7426. name: "Micro",
  7427. height: math.unit(4, "inches")
  7428. },
  7429. {
  7430. name: "Normal",
  7431. height: math.unit(6 + 4 / 12, "feet"),
  7432. default: true
  7433. },
  7434. {
  7435. name: "Macro",
  7436. height: math.unit(115, "feet")
  7437. },
  7438. {
  7439. name: "Macro+",
  7440. height: math.unit(955, "feet")
  7441. },
  7442. {
  7443. name: "Megamacro",
  7444. height: math.unit(8990, "feet")
  7445. },
  7446. {
  7447. name: "Gigmacro",
  7448. height: math.unit(9310, "miles")
  7449. },
  7450. {
  7451. name: "Teramacro",
  7452. height: math.unit(1567005010, "miles")
  7453. },
  7454. {
  7455. name: "Examacro",
  7456. height: math.unit(1425, "parsecs")
  7457. },
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Major Colonel" },
  7462. {
  7463. front: {
  7464. height: math.unit(400, "feet"),
  7465. weight: math.unit(44444444, "lb"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/major-colonel/front.svg"
  7469. }
  7470. },
  7471. back: {
  7472. height: math.unit(400, "feet"),
  7473. weight: math.unit(44444444, "lb"),
  7474. name: "Back",
  7475. image: {
  7476. source: "./media/characters/major-colonel/back.svg"
  7477. }
  7478. },
  7479. },
  7480. [
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(400, "feet"),
  7484. default: true
  7485. },
  7486. ]
  7487. ))
  7488. characterMakers.push(() => makeCharacter(
  7489. { name: "Axel Lycan" },
  7490. {
  7491. front: {
  7492. height: math.unit(6, "feet"),
  7493. weight: math.unit(120, "lb"),
  7494. name: "Front",
  7495. image: {
  7496. source: "./media/characters/axel-lycan/front.svg",
  7497. extra: 1,
  7498. bottom: 0.08
  7499. }
  7500. },
  7501. },
  7502. [
  7503. {
  7504. name: "Macro",
  7505. height: math.unit(1, "km"),
  7506. default: true
  7507. },
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Vanrel (Hyena)" },
  7512. {
  7513. front: {
  7514. height: math.unit(5 + 9 / 12, "feet"),
  7515. weight: math.unit(175, "lb"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/vanrel-hyena/front.svg",
  7519. extra: 1086 / 1010,
  7520. bottom: 0.04
  7521. }
  7522. },
  7523. },
  7524. [
  7525. {
  7526. name: "Normal",
  7527. height: math.unit(5 + 9 / 12, "feet"),
  7528. default: true
  7529. },
  7530. ]
  7531. ))
  7532. characterMakers.push(() => makeCharacter(
  7533. { name: "Abbott Absol" },
  7534. {
  7535. front: {
  7536. height: math.unit(6, "feet"),
  7537. weight: math.unit(103, "lb"),
  7538. name: "Front",
  7539. image: {
  7540. source: "./media/characters/abbott-absol/front.svg",
  7541. extra: 2010 / 1842
  7542. }
  7543. },
  7544. },
  7545. [
  7546. {
  7547. name: "Megamicro",
  7548. height: math.unit(0.1, "mm")
  7549. },
  7550. {
  7551. name: "Micro",
  7552. height: math.unit(1, "inch")
  7553. },
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(6, "feet"),
  7557. default: true
  7558. },
  7559. ]
  7560. ))
  7561. characterMakers.push(() => makeCharacter(
  7562. { name: "Hector" },
  7563. {
  7564. front: {
  7565. height: math.unit(6, "feet"),
  7566. weight: math.unit(264, "lb"),
  7567. name: "Front",
  7568. image: {
  7569. source: "./media/characters/hector/front.svg",
  7570. extra: 2280 / 2130,
  7571. bottom: 0.07
  7572. }
  7573. },
  7574. },
  7575. [
  7576. {
  7577. name: "Normal",
  7578. height: math.unit(12.25, "foot"),
  7579. default: true
  7580. },
  7581. {
  7582. name: "Macro",
  7583. height: math.unit(160, "feet")
  7584. },
  7585. ]
  7586. ))
  7587. characterMakers.push(() => makeCharacter(
  7588. { name: "Sal" },
  7589. {
  7590. front: {
  7591. height: math.unit(6, "feet"),
  7592. weight: math.unit(150, "lb"),
  7593. name: "Front",
  7594. image: {
  7595. source: "./media/characters/sal/front.svg",
  7596. extra: 1846 / 1699,
  7597. bottom: 0.04
  7598. }
  7599. },
  7600. },
  7601. [
  7602. {
  7603. name: "Megamacro",
  7604. height: math.unit(10, "miles"),
  7605. default: true
  7606. },
  7607. ]
  7608. ))
  7609. characterMakers.push(() => makeCharacter(
  7610. { name: "Ranger" },
  7611. {
  7612. front: {
  7613. height: math.unit(3, "meters"),
  7614. weight: math.unit(450, "kg"),
  7615. name: "front",
  7616. image: {
  7617. source: "./media/characters/ranger/front.svg",
  7618. extra: 2401 / 2243,
  7619. bottom: 0.05
  7620. }
  7621. },
  7622. },
  7623. [
  7624. {
  7625. name: "Normal",
  7626. height: math.unit(3, "meters"),
  7627. default: true
  7628. },
  7629. ]
  7630. ))
  7631. characterMakers.push(() => makeCharacter(
  7632. { name: "Theresa" },
  7633. {
  7634. front: {
  7635. height: math.unit(14, "feet"),
  7636. weight: math.unit(800, "kg"),
  7637. name: "Front",
  7638. image: {
  7639. source: "./media/characters/theresa/front.svg",
  7640. extra: 3575 / 3346,
  7641. bottom: 0.03
  7642. }
  7643. },
  7644. },
  7645. [
  7646. {
  7647. name: "Normal",
  7648. height: math.unit(14, "feet"),
  7649. default: true
  7650. },
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Ine" },
  7655. {
  7656. front: {
  7657. height: math.unit(6, "feet"),
  7658. weight: math.unit(3, "kg"),
  7659. name: "Front",
  7660. image: {
  7661. source: "./media/characters/ine/front.svg",
  7662. extra: 678 / 539,
  7663. bottom: 0.023
  7664. }
  7665. },
  7666. },
  7667. [
  7668. {
  7669. name: "Normal",
  7670. height: math.unit(2.265, "feet"),
  7671. default: true
  7672. },
  7673. ]
  7674. ))
  7675. characterMakers.push(() => makeCharacter(
  7676. { name: "Vial" },
  7677. {
  7678. front: {
  7679. height: math.unit(5, "feet"),
  7680. weight: math.unit(30, "kg"),
  7681. name: "Front",
  7682. image: {
  7683. source: "./media/characters/vial/front.svg",
  7684. extra: 1365 / 1277,
  7685. bottom: 0.04
  7686. }
  7687. },
  7688. },
  7689. [
  7690. {
  7691. name: "Normal",
  7692. height: math.unit(5, "feet"),
  7693. default: true
  7694. },
  7695. ]
  7696. ))
  7697. characterMakers.push(() => makeCharacter(
  7698. { name: "Rovoska" },
  7699. {
  7700. side: {
  7701. height: math.unit(3.4, "meters"),
  7702. weight: math.unit(1000, "lb"),
  7703. name: "Side",
  7704. image: {
  7705. source: "./media/characters/rovoska/side.svg",
  7706. extra: 4403 / 1515
  7707. }
  7708. },
  7709. },
  7710. [
  7711. {
  7712. name: "Normal",
  7713. height: math.unit(3.4, "meters"),
  7714. default: true
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Gunner Rotthbauer" },
  7720. {
  7721. front: {
  7722. height: math.unit(8, "feet"),
  7723. weight: math.unit(315, "lb"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/gunner-rotthbauer/front.svg"
  7727. }
  7728. },
  7729. back: {
  7730. height: math.unit(8, "feet"),
  7731. weight: math.unit(315, "lb"),
  7732. name: "Back",
  7733. image: {
  7734. source: "./media/characters/gunner-rotthbauer/back.svg"
  7735. }
  7736. },
  7737. },
  7738. [
  7739. {
  7740. name: "Micro",
  7741. height: math.unit(3.5, "inches")
  7742. },
  7743. {
  7744. name: "Normal",
  7745. height: math.unit(8, "feet"),
  7746. default: true
  7747. },
  7748. {
  7749. name: "Macro",
  7750. height: math.unit(250, "feet")
  7751. },
  7752. {
  7753. name: "Megamacro",
  7754. height: math.unit(1, "AU")
  7755. },
  7756. ]
  7757. ))
  7758. characterMakers.push(() => makeCharacter(
  7759. { name: "Allatia" },
  7760. {
  7761. front: {
  7762. height: math.unit(5 + 5 / 12, "feet"),
  7763. weight: math.unit(140, "lb"),
  7764. name: "Front",
  7765. image: {
  7766. source: "./media/characters/allatia/front.svg",
  7767. extra: 1227 / 1180,
  7768. bottom: 0.027
  7769. }
  7770. },
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(5 + 5 / 12, "feet")
  7776. },
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(250, "feet"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Megamacro",
  7784. height: math.unit(8, "miles")
  7785. }
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Tene" },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(120, "lb"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/tene/front.svg",
  7797. extra: 1728 / 1578,
  7798. bottom: 0.022
  7799. }
  7800. },
  7801. stomping: {
  7802. height: math.unit(2.025, "meters"),
  7803. weight: math.unit(120, "lb"),
  7804. name: "Stomping",
  7805. image: {
  7806. source: "./media/characters/tene/stomping.svg",
  7807. extra: 938 / 873,
  7808. bottom: 0.01
  7809. }
  7810. },
  7811. sitting: {
  7812. height: math.unit(1, "meter"),
  7813. weight: math.unit(120, "lb"),
  7814. name: "Sitting",
  7815. image: {
  7816. source: "./media/characters/tene/sitting.svg",
  7817. extra: 437 / 415,
  7818. bottom: 0.1
  7819. }
  7820. },
  7821. feral: {
  7822. height: math.unit(3.9, "feet"),
  7823. weight: math.unit(250, "lb"),
  7824. name: "Feral",
  7825. image: {
  7826. source: "./media/characters/tene/feral.svg",
  7827. extra: 717 / 458,
  7828. bottom: 0.179
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Normal",
  7835. height: math.unit(6, "feet")
  7836. },
  7837. {
  7838. name: "Macro",
  7839. height: math.unit(300, "feet"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Megamacro",
  7844. height: math.unit(5, "miles")
  7845. },
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Evander" },
  7850. {
  7851. side: {
  7852. height: math.unit(6, "feet"),
  7853. name: "Side",
  7854. image: {
  7855. source: "./media/characters/evander/side.svg",
  7856. extra: 877 / 477
  7857. }
  7858. },
  7859. },
  7860. [
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(0.83, "meters"),
  7864. default: true
  7865. },
  7866. ]
  7867. ))
  7868. characterMakers.push(() => makeCharacter(
  7869. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7870. {
  7871. front: {
  7872. height: math.unit(12, "feet"),
  7873. weight: math.unit(1000, "lb"),
  7874. name: "Front",
  7875. image: {
  7876. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7877. extra: 1762 / 1611
  7878. }
  7879. },
  7880. back: {
  7881. height: math.unit(12, "feet"),
  7882. weight: math.unit(1000, "lb"),
  7883. name: "Back",
  7884. image: {
  7885. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7886. extra: 1762 / 1611
  7887. }
  7888. },
  7889. },
  7890. [
  7891. {
  7892. name: "Normal",
  7893. height: math.unit(12, "feet"),
  7894. default: true
  7895. },
  7896. {
  7897. name: "Kaiju",
  7898. height: math.unit(150, "feet")
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Zero Alurus" },
  7904. {
  7905. front: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(150, "lb"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/zero-alurus/front.svg"
  7911. }
  7912. },
  7913. back: {
  7914. height: math.unit(6, "feet"),
  7915. weight: math.unit(150, "lb"),
  7916. name: "Back",
  7917. image: {
  7918. source: "./media/characters/zero-alurus/back.svg"
  7919. }
  7920. },
  7921. },
  7922. [
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(5 + 10 / 12, "feet")
  7926. },
  7927. {
  7928. name: "Macro",
  7929. height: math.unit(60, "feet"),
  7930. default: true
  7931. },
  7932. {
  7933. name: "Macro+",
  7934. height: math.unit(450, "feet")
  7935. },
  7936. ]
  7937. ))
  7938. characterMakers.push(() => makeCharacter(
  7939. { name: "Mega Shi" },
  7940. {
  7941. front: {
  7942. height: math.unit(6, "feet"),
  7943. weight: math.unit(200, "lb"),
  7944. name: "Front",
  7945. image: {
  7946. source: "./media/characters/mega-shi/front.svg",
  7947. extra: 1279 / 1250,
  7948. bottom: 0.02
  7949. }
  7950. },
  7951. back: {
  7952. height: math.unit(6, "feet"),
  7953. weight: math.unit(200, "lb"),
  7954. name: "Back",
  7955. image: {
  7956. source: "./media/characters/mega-shi/back.svg",
  7957. extra: 1279 / 1250,
  7958. bottom: 0.02
  7959. }
  7960. },
  7961. },
  7962. [
  7963. {
  7964. name: "Micro",
  7965. height: math.unit(16 + 6 / 12, "feet")
  7966. },
  7967. {
  7968. name: "Third Dimension",
  7969. height: math.unit(40, "meters")
  7970. },
  7971. {
  7972. name: "Normal",
  7973. height: math.unit(660, "feet"),
  7974. default: true
  7975. },
  7976. {
  7977. name: "Megamacro",
  7978. height: math.unit(10, "miles")
  7979. },
  7980. {
  7981. name: "Planetary Launch",
  7982. height: math.unit(500, "miles")
  7983. },
  7984. {
  7985. name: "Interstellar",
  7986. height: math.unit(1e9, "miles")
  7987. },
  7988. {
  7989. name: "Leaving the Universe",
  7990. height: math.unit(1, "gigaparsec")
  7991. },
  7992. {
  7993. name: "Travelling Universes",
  7994. height: math.unit(30e15, "parsecs")
  7995. },
  7996. ]
  7997. ))
  7998. characterMakers.push(() => makeCharacter(
  7999. { name: "Odyssey" },
  8000. {
  8001. front: {
  8002. height: math.unit(6, "feet"),
  8003. weight: math.unit(150, "lb"),
  8004. name: "Front",
  8005. image: {
  8006. source: "./media/characters/odyssey/front.svg",
  8007. extra: 1782 / 1582,
  8008. bottom: 0.01
  8009. }
  8010. },
  8011. side: {
  8012. height: math.unit(5.7, "feet"),
  8013. weight: math.unit(140, "lb"),
  8014. name: "Side",
  8015. image: {
  8016. source: "./media/characters/odyssey/side.svg",
  8017. extra: 6462 / 5700
  8018. }
  8019. },
  8020. },
  8021. [
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(5 + 4 / 12, "feet")
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(1, "km")
  8029. },
  8030. {
  8031. name: "Megamacro",
  8032. height: math.unit(3000, "km")
  8033. },
  8034. {
  8035. name: "Gigamacro",
  8036. height: math.unit(1, "AU"),
  8037. default: true
  8038. },
  8039. {
  8040. name: "Omniversal",
  8041. height: math.unit(100e14, "lightyears")
  8042. },
  8043. ]
  8044. ))
  8045. characterMakers.push(() => makeCharacter(
  8046. { name: "Mekuto" },
  8047. {
  8048. front: {
  8049. height: math.unit(6, "feet"),
  8050. weight: math.unit(300, "lb"),
  8051. name: "Front",
  8052. image: {
  8053. source: "./media/characters/mekuto/front.svg",
  8054. extra: 921 / 832,
  8055. bottom: 0.03
  8056. }
  8057. },
  8058. hand: {
  8059. height: math.unit(6 / 10.24, "feet"),
  8060. name: "Hand",
  8061. image: {
  8062. source: "./media/characters/mekuto/hand.svg"
  8063. }
  8064. },
  8065. foot: {
  8066. height: math.unit(6 / 5.05, "feet"),
  8067. name: "Foot",
  8068. image: {
  8069. source: "./media/characters/mekuto/foot.svg"
  8070. }
  8071. },
  8072. },
  8073. [
  8074. {
  8075. name: "Minimicro",
  8076. height: math.unit(0.2, "inches")
  8077. },
  8078. {
  8079. name: "Micro",
  8080. height: math.unit(1.5, "inches")
  8081. },
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(5 + 11 / 12, "feet"),
  8085. default: true
  8086. },
  8087. {
  8088. name: "Minimacro",
  8089. height: math.unit(17 + 9 / 12, "feet")
  8090. },
  8091. {
  8092. name: "Macro",
  8093. height: math.unit(177.5, "feet")
  8094. },
  8095. {
  8096. name: "Megamacro",
  8097. height: math.unit(152, "miles")
  8098. },
  8099. ]
  8100. ))
  8101. characterMakers.push(() => makeCharacter(
  8102. { name: "Dafydd Tomos" },
  8103. {
  8104. front: {
  8105. height: math.unit(6.5, "inches"),
  8106. weight: math.unit(13, "oz"),
  8107. name: "Front",
  8108. image: {
  8109. source: "./media/characters/dafydd-tomos/front.svg",
  8110. extra: 2990 / 2603,
  8111. bottom: 0.03
  8112. }
  8113. },
  8114. },
  8115. [
  8116. {
  8117. name: "Micro",
  8118. height: math.unit(6.5, "inches"),
  8119. default: true
  8120. },
  8121. ]
  8122. ))
  8123. characterMakers.push(() => makeCharacter(
  8124. { name: "Splinter" },
  8125. {
  8126. front: {
  8127. height: math.unit(6, "feet"),
  8128. weight: math.unit(150, "lb"),
  8129. name: "Front",
  8130. image: {
  8131. source: "./media/characters/splinter/front.svg",
  8132. extra: 2990 / 2882,
  8133. bottom: 0.04
  8134. }
  8135. },
  8136. back: {
  8137. height: math.unit(6, "feet"),
  8138. weight: math.unit(150, "lb"),
  8139. name: "Back",
  8140. image: {
  8141. source: "./media/characters/splinter/back.svg",
  8142. extra: 2990 / 2882,
  8143. bottom: 0.04
  8144. }
  8145. },
  8146. },
  8147. [
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(6, "feet")
  8151. },
  8152. {
  8153. name: "Macro",
  8154. height: math.unit(230, "meters"),
  8155. default: true
  8156. },
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "SnowGabumon" },
  8161. {
  8162. front: {
  8163. height: math.unit(4 + 10 / 12, "feet"),
  8164. weight: math.unit(480, "lb"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/snow-gabumon/front.svg",
  8168. extra: 1140 / 963,
  8169. bottom: 0.058
  8170. }
  8171. },
  8172. back: {
  8173. height: math.unit(4 + 10 / 12, "feet"),
  8174. weight: math.unit(480, "lb"),
  8175. name: "Back",
  8176. image: {
  8177. source: "./media/characters/snow-gabumon/back.svg",
  8178. extra: 1115 / 962,
  8179. bottom: 0.041
  8180. }
  8181. },
  8182. frontUndresed: {
  8183. height: math.unit(4 + 10 / 12, "feet"),
  8184. weight: math.unit(480, "lb"),
  8185. name: "Front (Undressed)",
  8186. image: {
  8187. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8188. extra: 1061 / 960,
  8189. bottom: 0.045
  8190. }
  8191. },
  8192. },
  8193. [
  8194. {
  8195. name: "Micro",
  8196. height: math.unit(1, "inch")
  8197. },
  8198. {
  8199. name: "Normal",
  8200. height: math.unit(4 + 10 / 12, "feet"),
  8201. default: true
  8202. },
  8203. {
  8204. name: "Macro",
  8205. height: math.unit(200, "feet")
  8206. },
  8207. {
  8208. name: "Megamacro",
  8209. height: math.unit(120, "miles")
  8210. },
  8211. {
  8212. name: "Gigamacro",
  8213. height: math.unit(9800, "miles")
  8214. },
  8215. ]
  8216. ))
  8217. characterMakers.push(() => makeCharacter(
  8218. { name: "Moody" },
  8219. {
  8220. front: {
  8221. height: math.unit(1.7, "meters"),
  8222. weight: math.unit(140, "lb"),
  8223. name: "Front",
  8224. image: {
  8225. source: "./media/characters/moody/front.svg",
  8226. extra: 3226 / 3007,
  8227. bottom: 0.087
  8228. }
  8229. },
  8230. },
  8231. [
  8232. {
  8233. name: "Micro",
  8234. height: math.unit(1, "mm")
  8235. },
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(1.7, "meters"),
  8239. default: true
  8240. },
  8241. {
  8242. name: "Macro",
  8243. height: math.unit(80, "meters")
  8244. },
  8245. {
  8246. name: "Macro+",
  8247. height: math.unit(500, "meters")
  8248. },
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Zyas" },
  8253. {
  8254. front: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(150, "lb"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/zyas/front.svg",
  8260. extra: 1180 / 1120,
  8261. bottom: 0.045
  8262. }
  8263. },
  8264. },
  8265. [
  8266. {
  8267. name: "Normal",
  8268. height: math.unit(10, "feet"),
  8269. default: true
  8270. },
  8271. {
  8272. name: "Macro",
  8273. height: math.unit(500, "feet")
  8274. },
  8275. {
  8276. name: "Megamacro",
  8277. height: math.unit(5, "miles")
  8278. },
  8279. {
  8280. name: "Teramacro",
  8281. height: math.unit(150000, "miles")
  8282. },
  8283. ]
  8284. ))
  8285. characterMakers.push(() => makeCharacter(
  8286. { name: "Cuon" },
  8287. {
  8288. front: {
  8289. height: math.unit(6, "feet"),
  8290. weight: math.unit(150, "lb"),
  8291. name: "Front",
  8292. image: {
  8293. source: "./media/characters/cuon/front.svg",
  8294. extra: 1390 / 1320,
  8295. bottom: 0.008
  8296. }
  8297. },
  8298. },
  8299. [
  8300. {
  8301. name: "Micro",
  8302. height: math.unit(3, "inches")
  8303. },
  8304. {
  8305. name: "Normal",
  8306. height: math.unit(18 + 9 / 12, "feet"),
  8307. default: true
  8308. },
  8309. {
  8310. name: "Macro",
  8311. height: math.unit(360, "feet")
  8312. },
  8313. {
  8314. name: "Megamacro",
  8315. height: math.unit(360, "miles")
  8316. },
  8317. ]
  8318. ))
  8319. characterMakers.push(() => makeCharacter(
  8320. { name: "Nyanuxk" },
  8321. {
  8322. front: {
  8323. height: math.unit(2.4, "meters"),
  8324. weight: math.unit(70, "kg"),
  8325. name: "Front",
  8326. image: {
  8327. source: "./media/characters/nyanuxk/front.svg",
  8328. extra: 1172 / 1084,
  8329. bottom: 0.065
  8330. }
  8331. },
  8332. side: {
  8333. height: math.unit(2.4, "meters"),
  8334. weight: math.unit(70, "kg"),
  8335. name: "Side",
  8336. image: {
  8337. source: "./media/characters/nyanuxk/side.svg",
  8338. extra: 1190 / 1132,
  8339. bottom: 0.007
  8340. }
  8341. },
  8342. back: {
  8343. height: math.unit(2.4, "meters"),
  8344. weight: math.unit(70, "kg"),
  8345. name: "Back",
  8346. image: {
  8347. source: "./media/characters/nyanuxk/back.svg",
  8348. extra: 1200 / 1141,
  8349. bottom: 0.015
  8350. }
  8351. },
  8352. foot: {
  8353. height: math.unit(0.52, "meters"),
  8354. name: "Foot",
  8355. image: {
  8356. source: "./media/characters/nyanuxk/foot.svg"
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Micro",
  8363. height: math.unit(2, "cm")
  8364. },
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(2.4, "meters"),
  8368. default: true
  8369. },
  8370. {
  8371. name: "Smaller Macro",
  8372. height: math.unit(120, "meters")
  8373. },
  8374. {
  8375. name: "Bigger Macro",
  8376. height: math.unit(1.2, "km")
  8377. },
  8378. {
  8379. name: "Megamacro",
  8380. height: math.unit(15, "kilometers")
  8381. },
  8382. {
  8383. name: "Gigamacro",
  8384. height: math.unit(2000, "km")
  8385. },
  8386. {
  8387. name: "Teramacro",
  8388. height: math.unit(500000, "km")
  8389. },
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Ailbhe" },
  8394. {
  8395. side: {
  8396. height: math.unit(6, "feet"),
  8397. name: "Side",
  8398. image: {
  8399. source: "./media/characters/ailbhe/side.svg",
  8400. extra: 757 / 464,
  8401. bottom: 0.041
  8402. }
  8403. },
  8404. },
  8405. [
  8406. {
  8407. name: "Normal",
  8408. height: math.unit(1.07, "meters"),
  8409. default: true
  8410. },
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Zevulfius" },
  8415. {
  8416. front: {
  8417. height: math.unit(6, "feet"),
  8418. weight: math.unit(120, "kg"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/zevulfius/front.svg",
  8422. extra: 965 / 903
  8423. }
  8424. },
  8425. side: {
  8426. height: math.unit(6, "feet"),
  8427. weight: math.unit(120, "kg"),
  8428. name: "Side",
  8429. image: {
  8430. source: "./media/characters/zevulfius/side.svg",
  8431. extra: 939 / 900
  8432. }
  8433. },
  8434. back: {
  8435. height: math.unit(6, "feet"),
  8436. weight: math.unit(120, "kg"),
  8437. name: "Back",
  8438. image: {
  8439. source: "./media/characters/zevulfius/back.svg",
  8440. extra: 918 / 854,
  8441. bottom: 0.005
  8442. }
  8443. },
  8444. foot: {
  8445. height: math.unit(6 / 3.72, "feet"),
  8446. name: "Foot",
  8447. image: {
  8448. source: "./media/characters/zevulfius/foot.svg"
  8449. }
  8450. },
  8451. },
  8452. [
  8453. {
  8454. name: "Macro",
  8455. height: math.unit(750, "meters")
  8456. },
  8457. {
  8458. name: "Megamacro",
  8459. height: math.unit(20, "km"),
  8460. default: true
  8461. },
  8462. {
  8463. name: "Gigamacro",
  8464. height: math.unit(2000, "km")
  8465. },
  8466. {
  8467. name: "Teramacro",
  8468. height: math.unit(250000, "km")
  8469. },
  8470. ]
  8471. ))
  8472. characterMakers.push(() => makeCharacter(
  8473. { name: "Rikes" },
  8474. {
  8475. front: {
  8476. height: math.unit(100, "feet"),
  8477. weight: math.unit(350, "kg"),
  8478. name: "Front",
  8479. image: {
  8480. source: "./media/characters/rikes/front.svg",
  8481. extra: 1565 / 1483,
  8482. bottom: 0.017
  8483. }
  8484. },
  8485. },
  8486. [
  8487. {
  8488. name: "Macro",
  8489. height: math.unit(100, "feet"),
  8490. default: true
  8491. },
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Adam Silver-Mane" },
  8496. {
  8497. anthro: {
  8498. height: math.unit(8, "feet"),
  8499. weight: math.unit(120, "kg"),
  8500. name: "Anthro",
  8501. image: {
  8502. source: "./media/characters/adam-silver-mane/anthro.svg",
  8503. extra: 5743 / 5339,
  8504. bottom: 0.07
  8505. }
  8506. },
  8507. taur: {
  8508. height: math.unit(16, "feet"),
  8509. weight: math.unit(1500, "kg"),
  8510. name: "Taur",
  8511. image: {
  8512. source: "./media/characters/adam-silver-mane/taur.svg",
  8513. extra: 1713 / 1571,
  8514. bottom: 0.01
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(8, "feet")
  8522. },
  8523. {
  8524. name: "Minimacro",
  8525. height: math.unit(80, "feet")
  8526. },
  8527. {
  8528. name: "Macro",
  8529. height: math.unit(800, "feet"),
  8530. default: true
  8531. },
  8532. {
  8533. name: "Megamacro",
  8534. height: math.unit(8000, "feet")
  8535. },
  8536. {
  8537. name: "Gigamacro",
  8538. height: math.unit(800, "miles")
  8539. },
  8540. {
  8541. name: "Teramacro",
  8542. height: math.unit(80000, "miles")
  8543. },
  8544. {
  8545. name: "Celestial",
  8546. height: math.unit(8e6, "miles")
  8547. },
  8548. {
  8549. name: "Star Dragon",
  8550. height: math.unit(800000, "parsecs")
  8551. },
  8552. {
  8553. name: "Godly",
  8554. height: math.unit(800, "teraparsecs")
  8555. },
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Ky'owin" },
  8560. {
  8561. front: {
  8562. height: math.unit(6, "feet"),
  8563. weight: math.unit(150, "lb"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/ky'owin/front.svg",
  8567. extra: 3888 / 3068,
  8568. bottom: 0.015
  8569. }
  8570. },
  8571. },
  8572. [
  8573. {
  8574. name: "Normal",
  8575. height: math.unit(6 + 8 / 12, "feet")
  8576. },
  8577. {
  8578. name: "Large",
  8579. height: math.unit(68, "feet")
  8580. },
  8581. {
  8582. name: "Macro",
  8583. height: math.unit(132, "feet")
  8584. },
  8585. {
  8586. name: "Macro+",
  8587. height: math.unit(340, "feet")
  8588. },
  8589. {
  8590. name: "Macro++",
  8591. height: math.unit(680, "feet"),
  8592. default: true
  8593. },
  8594. {
  8595. name: "Megamacro",
  8596. height: math.unit(1, "mile")
  8597. },
  8598. {
  8599. name: "Megamacro+",
  8600. height: math.unit(10, "miles")
  8601. },
  8602. ]
  8603. ))
  8604. characterMakers.push(() => makeCharacter(
  8605. { name: "Mal" },
  8606. {
  8607. front: {
  8608. height: math.unit(4, "feet"),
  8609. weight: math.unit(50, "lb"),
  8610. name: "Front",
  8611. image: {
  8612. source: "./media/characters/mal/front.svg",
  8613. extra: 785 / 724,
  8614. bottom: 0.07
  8615. }
  8616. },
  8617. },
  8618. [
  8619. {
  8620. name: "Micro",
  8621. height: math.unit(4, "inches")
  8622. },
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(4, "feet"),
  8626. default: true
  8627. },
  8628. {
  8629. name: "Macro",
  8630. height: math.unit(200, "feet")
  8631. },
  8632. ]
  8633. ))
  8634. characterMakers.push(() => makeCharacter(
  8635. { name: "Jordan Deware" },
  8636. {
  8637. front: {
  8638. height: math.unit(6, "feet"),
  8639. weight: math.unit(150, "lb"),
  8640. name: "Front",
  8641. image: {
  8642. source: "./media/characters/jordan-deware/front.svg",
  8643. extra: 1191 / 1012
  8644. }
  8645. },
  8646. },
  8647. [
  8648. {
  8649. name: "Nano",
  8650. height: math.unit(0.01, "mm")
  8651. },
  8652. {
  8653. name: "Minimicro",
  8654. height: math.unit(1, "mm")
  8655. },
  8656. {
  8657. name: "Micro",
  8658. height: math.unit(0.5, "inches")
  8659. },
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(4, "feet"),
  8663. default: true
  8664. },
  8665. {
  8666. name: "Minimacro",
  8667. height: math.unit(40, "meters")
  8668. },
  8669. {
  8670. name: "Small Macro",
  8671. height: math.unit(400, "meters")
  8672. },
  8673. {
  8674. name: "Macro",
  8675. height: math.unit(4, "miles")
  8676. },
  8677. {
  8678. name: "Megamacro",
  8679. height: math.unit(40, "miles")
  8680. },
  8681. {
  8682. name: "Megamacro+",
  8683. height: math.unit(400, "miles")
  8684. },
  8685. {
  8686. name: "Gigamacro",
  8687. height: math.unit(400000, "miles")
  8688. },
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Kimiko" },
  8693. {
  8694. side: {
  8695. height: math.unit(6, "feet"),
  8696. weight: math.unit(150, "lb"),
  8697. name: "Side",
  8698. image: {
  8699. source: "./media/characters/kimiko/side.svg",
  8700. extra: 600 / 358
  8701. }
  8702. },
  8703. },
  8704. [
  8705. {
  8706. name: "Normal",
  8707. height: math.unit(15, "feet"),
  8708. default: true
  8709. },
  8710. {
  8711. name: "Macro",
  8712. height: math.unit(220, "feet")
  8713. },
  8714. {
  8715. name: "Macro+",
  8716. height: math.unit(1450, "feet")
  8717. },
  8718. {
  8719. name: "Megamacro",
  8720. height: math.unit(11500, "feet")
  8721. },
  8722. {
  8723. name: "Gigamacro",
  8724. height: math.unit(9500, "miles")
  8725. },
  8726. {
  8727. name: "Teramacro",
  8728. height: math.unit(2208005005, "miles")
  8729. },
  8730. {
  8731. name: "Examacro",
  8732. height: math.unit(2750, "parsecs")
  8733. },
  8734. {
  8735. name: "Zettamacro",
  8736. height: math.unit(101500, "parsecs")
  8737. },
  8738. ]
  8739. ))
  8740. characterMakers.push(() => makeCharacter(
  8741. { name: "Andrew Sleepy" },
  8742. {
  8743. front: {
  8744. height: math.unit(6, "feet"),
  8745. weight: math.unit(70, "kg"),
  8746. name: "Front",
  8747. image: {
  8748. source: "./media/characters/andrew-sleepy/front.svg"
  8749. }
  8750. },
  8751. side: {
  8752. height: math.unit(6, "feet"),
  8753. weight: math.unit(70, "kg"),
  8754. name: "Side",
  8755. image: {
  8756. source: "./media/characters/andrew-sleepy/side.svg"
  8757. }
  8758. },
  8759. },
  8760. [
  8761. {
  8762. name: "Micro",
  8763. height: math.unit(1, "mm"),
  8764. default: true
  8765. },
  8766. ]
  8767. ))
  8768. characterMakers.push(() => makeCharacter(
  8769. { name: "Judio" },
  8770. {
  8771. front: {
  8772. height: math.unit(6, "feet"),
  8773. weight: math.unit(150, "lb"),
  8774. name: "Front",
  8775. image: {
  8776. source: "./media/characters/judio/front.svg",
  8777. extra: 1258 / 1110
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Normal",
  8784. height: math.unit(5 + 6 / 12, "feet")
  8785. },
  8786. {
  8787. name: "Macro",
  8788. height: math.unit(1000, "feet"),
  8789. default: true
  8790. },
  8791. {
  8792. name: "Megamacro",
  8793. height: math.unit(10, "miles")
  8794. },
  8795. ]
  8796. ))
  8797. characterMakers.push(() => makeCharacter(
  8798. { name: "Nomaxice" },
  8799. {
  8800. front: {
  8801. height: math.unit(6, "feet"),
  8802. weight: math.unit(68, "kg"),
  8803. name: "Front",
  8804. image: {
  8805. source: "./media/characters/nomaxice/front.svg",
  8806. extra: 1498 / 1073,
  8807. bottom: 0.075
  8808. }
  8809. },
  8810. foot: {
  8811. height: math.unit(1.1, "feet"),
  8812. name: "Foot",
  8813. image: {
  8814. source: "./media/characters/nomaxice/foot.svg"
  8815. }
  8816. },
  8817. },
  8818. [
  8819. {
  8820. name: "Micro",
  8821. height: math.unit(8, "cm")
  8822. },
  8823. {
  8824. name: "Norm",
  8825. height: math.unit(1.82, "m")
  8826. },
  8827. {
  8828. name: "Norm+",
  8829. height: math.unit(8.8, "feet")
  8830. },
  8831. {
  8832. name: "Big",
  8833. height: math.unit(8, "meters"),
  8834. default: true
  8835. },
  8836. {
  8837. name: "Macro",
  8838. height: math.unit(18, "meters")
  8839. },
  8840. {
  8841. name: "Macro+",
  8842. height: math.unit(88, "meters")
  8843. },
  8844. ]
  8845. ))
  8846. characterMakers.push(() => makeCharacter(
  8847. { name: "Dydros" },
  8848. {
  8849. front: {
  8850. height: math.unit(12, "feet"),
  8851. weight: math.unit(1.5, "tons"),
  8852. name: "Front",
  8853. image: {
  8854. source: "./media/characters/dydros/front.svg",
  8855. extra: 863 / 800,
  8856. bottom: 0.015
  8857. }
  8858. },
  8859. back: {
  8860. height: math.unit(12, "feet"),
  8861. weight: math.unit(1.5, "tons"),
  8862. name: "Back",
  8863. image: {
  8864. source: "./media/characters/dydros/back.svg",
  8865. extra: 900 / 843,
  8866. bottom: 0.005
  8867. }
  8868. },
  8869. },
  8870. [
  8871. {
  8872. name: "Normal",
  8873. height: math.unit(12, "feet"),
  8874. default: true
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Riggi" },
  8880. {
  8881. front: {
  8882. height: math.unit(6, "feet"),
  8883. weight: math.unit(100, "kg"),
  8884. name: "Front",
  8885. image: {
  8886. source: "./media/characters/riggi/front.svg",
  8887. extra: 5787 / 5303
  8888. }
  8889. },
  8890. hyper: {
  8891. height: math.unit(6 * 5 / 3, "feet"),
  8892. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8893. name: "Hyper",
  8894. image: {
  8895. source: "./media/characters/riggi/hyper.svg",
  8896. extra: 3595 / 3485
  8897. }
  8898. },
  8899. },
  8900. [
  8901. {
  8902. name: "Small Macro",
  8903. height: math.unit(50, "feet")
  8904. },
  8905. {
  8906. name: "Default",
  8907. height: math.unit(200, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Loom",
  8912. height: math.unit(10000, "feet")
  8913. },
  8914. {
  8915. name: "Cruising Altitude",
  8916. height: math.unit(30000, "feet")
  8917. },
  8918. {
  8919. name: "Megamacro",
  8920. height: math.unit(100, "miles")
  8921. },
  8922. {
  8923. name: "Continent Sized",
  8924. height: math.unit(2800, "miles")
  8925. },
  8926. {
  8927. name: "Earth Sized",
  8928. height: math.unit(8000, "miles")
  8929. },
  8930. ]
  8931. ))
  8932. characterMakers.push(() => makeCharacter(
  8933. { name: "Alexi" },
  8934. {
  8935. front: {
  8936. height: math.unit(6, "feet"),
  8937. weight: math.unit(250, "lb"),
  8938. name: "Front",
  8939. image: {
  8940. source: "./media/characters/alexi/front.svg",
  8941. extra: 3483 / 3291,
  8942. bottom: 0.04
  8943. }
  8944. },
  8945. back: {
  8946. height: math.unit(6, "feet"),
  8947. weight: math.unit(250, "lb"),
  8948. name: "Back",
  8949. image: {
  8950. source: "./media/characters/alexi/back.svg",
  8951. extra: 3533 / 3356,
  8952. bottom: 0.021
  8953. }
  8954. },
  8955. frontTransforming: {
  8956. height: math.unit(8.58, "feet"),
  8957. weight: math.unit(1300, "lb"),
  8958. name: "Transforming",
  8959. image: {
  8960. source: "./media/characters/alexi/front-transforming.svg",
  8961. extra: 437 / 409,
  8962. bottom: 19/458.66
  8963. }
  8964. },
  8965. frontTransformed: {
  8966. height: math.unit(12.5, "feet"),
  8967. weight: math.unit(4000, "lb"),
  8968. name: "Transformed",
  8969. image: {
  8970. source: "./media/characters/alexi/front-transformed.svg",
  8971. extra: 639 / 614,
  8972. bottom: 30.55/671
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(3, "meters"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Minimacro",
  8984. height: math.unit(30, "meters")
  8985. },
  8986. {
  8987. name: "Macro",
  8988. height: math.unit(500, "meters")
  8989. },
  8990. {
  8991. name: "Megamacro",
  8992. height: math.unit(9000, "km")
  8993. },
  8994. {
  8995. name: "Teramacro",
  8996. height: math.unit(384000, "km")
  8997. },
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Kayroo" },
  9002. {
  9003. front: {
  9004. height: math.unit(6, "feet"),
  9005. weight: math.unit(150, "lb"),
  9006. name: "Front",
  9007. image: {
  9008. source: "./media/characters/kayroo/front.svg",
  9009. extra: 1153 / 1038,
  9010. bottom: 0.06
  9011. }
  9012. },
  9013. foot: {
  9014. height: math.unit(6, "feet"),
  9015. weight: math.unit(150, "lb"),
  9016. name: "Foot",
  9017. image: {
  9018. source: "./media/characters/kayroo/foot.svg"
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Normal",
  9025. height: math.unit(8, "feet"),
  9026. default: true
  9027. },
  9028. {
  9029. name: "Minimacro",
  9030. height: math.unit(250, "feet")
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(2800, "feet")
  9035. },
  9036. {
  9037. name: "Megamacro",
  9038. height: math.unit(5200, "feet")
  9039. },
  9040. {
  9041. name: "Gigamacro",
  9042. height: math.unit(27000, "feet")
  9043. },
  9044. {
  9045. name: "Omega",
  9046. height: math.unit(45000, "feet")
  9047. },
  9048. ]
  9049. ))
  9050. characterMakers.push(() => makeCharacter(
  9051. { name: "Rhys" },
  9052. {
  9053. front: {
  9054. height: math.unit(18, "feet"),
  9055. weight: math.unit(5800, "lb"),
  9056. name: "Front",
  9057. image: {
  9058. source: "./media/characters/rhys/front.svg",
  9059. extra: 3386 / 3090,
  9060. bottom: 0.07
  9061. }
  9062. },
  9063. },
  9064. [
  9065. {
  9066. name: "Normal",
  9067. height: math.unit(18, "feet"),
  9068. default: true
  9069. },
  9070. {
  9071. name: "Working Size",
  9072. height: math.unit(200, "feet")
  9073. },
  9074. {
  9075. name: "Demolition Size",
  9076. height: math.unit(2000, "feet")
  9077. },
  9078. {
  9079. name: "Maximum Licensed Size",
  9080. height: math.unit(5, "miles")
  9081. },
  9082. {
  9083. name: "Maximum Observed Size",
  9084. height: math.unit(10, "yottameters")
  9085. },
  9086. ]
  9087. ))
  9088. characterMakers.push(() => makeCharacter(
  9089. { name: "Toto" },
  9090. {
  9091. front: {
  9092. height: math.unit(6, "feet"),
  9093. weight: math.unit(250, "lb"),
  9094. name: "Front",
  9095. image: {
  9096. source: "./media/characters/toto/front.svg",
  9097. extra: 527 / 479,
  9098. bottom: 0.05
  9099. }
  9100. },
  9101. },
  9102. [
  9103. {
  9104. name: "Micro",
  9105. height: math.unit(3, "feet")
  9106. },
  9107. {
  9108. name: "Normal",
  9109. height: math.unit(10, "feet")
  9110. },
  9111. {
  9112. name: "Macro",
  9113. height: math.unit(150, "feet"),
  9114. default: true
  9115. },
  9116. {
  9117. name: "Megamacro",
  9118. height: math.unit(1200, "feet")
  9119. },
  9120. ]
  9121. ))
  9122. characterMakers.push(() => makeCharacter(
  9123. { name: "King" },
  9124. {
  9125. back: {
  9126. height: math.unit(6, "feet"),
  9127. weight: math.unit(150, "lb"),
  9128. name: "Back",
  9129. image: {
  9130. source: "./media/characters/king/back.svg"
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Micro",
  9137. height: math.unit(2, "inches")
  9138. },
  9139. {
  9140. name: "Normal",
  9141. height: math.unit(8, "feet")
  9142. },
  9143. {
  9144. name: "Macro",
  9145. height: math.unit(200, "feet"),
  9146. default: true
  9147. },
  9148. {
  9149. name: "Megamacro",
  9150. height: math.unit(50, "miles")
  9151. },
  9152. ]
  9153. ))
  9154. characterMakers.push(() => makeCharacter(
  9155. { name: "Cordite" },
  9156. {
  9157. anthro: {
  9158. height: math.unit(6 + 5 / 12, "feet"),
  9159. weight: math.unit(280, "lb"),
  9160. name: "Anthro",
  9161. image: {
  9162. source: "./media/characters/cordite/anthro.svg",
  9163. extra: 1986 / 1905,
  9164. bottom: 0.025
  9165. }
  9166. },
  9167. feral: {
  9168. height: math.unit(2, "feet"),
  9169. weight: math.unit(90, "lb"),
  9170. name: "Feral",
  9171. image: {
  9172. source: "./media/characters/cordite/feral.svg",
  9173. extra: 1260 / 755,
  9174. bottom: 0.05
  9175. }
  9176. },
  9177. },
  9178. [
  9179. {
  9180. name: "Normal",
  9181. height: math.unit(6 + 5 / 12, "feet"),
  9182. default: true
  9183. },
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Pianostrong" },
  9188. {
  9189. front: {
  9190. height: math.unit(6, "feet"),
  9191. weight: math.unit(150, "lb"),
  9192. name: "Front",
  9193. image: {
  9194. source: "./media/characters/pianostrong/front.svg",
  9195. extra: 6577 / 6254,
  9196. bottom: 0.02
  9197. }
  9198. },
  9199. side: {
  9200. height: math.unit(6, "feet"),
  9201. weight: math.unit(150, "lb"),
  9202. name: "Side",
  9203. image: {
  9204. source: "./media/characters/pianostrong/side.svg",
  9205. extra: 6106 / 5730
  9206. }
  9207. },
  9208. back: {
  9209. height: math.unit(6, "feet"),
  9210. weight: math.unit(150, "lb"),
  9211. name: "Back",
  9212. image: {
  9213. source: "./media/characters/pianostrong/back.svg",
  9214. extra: 6085 / 5733,
  9215. bottom: 0.01
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Macro",
  9222. height: math.unit(100, "feet")
  9223. },
  9224. {
  9225. name: "Macro+",
  9226. height: math.unit(300, "feet"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Macro++",
  9231. height: math.unit(1000, "feet")
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Kona" },
  9237. {
  9238. front: {
  9239. height: math.unit(6, "feet"),
  9240. weight: math.unit(150, "lb"),
  9241. name: "Front",
  9242. image: {
  9243. source: "./media/characters/kona/front.svg",
  9244. extra: 2960 / 2629,
  9245. bottom: 0.005
  9246. }
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Normal",
  9252. height: math.unit(11 + 8 / 12, "feet")
  9253. },
  9254. {
  9255. name: "Macro",
  9256. height: math.unit(850, "feet"),
  9257. default: true
  9258. },
  9259. {
  9260. name: "Macro+",
  9261. height: math.unit(1.5, "km"),
  9262. default: true
  9263. },
  9264. {
  9265. name: "Megamacro",
  9266. height: math.unit(80, "miles")
  9267. },
  9268. {
  9269. name: "Gigamacro",
  9270. height: math.unit(3500, "miles")
  9271. },
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Levi" },
  9276. {
  9277. side: {
  9278. height: math.unit(1.9, "meters"),
  9279. weight: math.unit(326, "kg"),
  9280. name: "Side",
  9281. image: {
  9282. source: "./media/characters/levi/side.svg",
  9283. extra: 1704 / 1334,
  9284. bottom: 0.02
  9285. }
  9286. },
  9287. },
  9288. [
  9289. {
  9290. name: "Normal",
  9291. height: math.unit(1.9, "meters"),
  9292. default: true
  9293. },
  9294. {
  9295. name: "Macro",
  9296. height: math.unit(20, "meters")
  9297. },
  9298. {
  9299. name: "Macro+",
  9300. height: math.unit(200, "meters")
  9301. },
  9302. {
  9303. name: "Megamacro",
  9304. height: math.unit(2, "km")
  9305. },
  9306. {
  9307. name: "Megamacro+",
  9308. height: math.unit(20, "km")
  9309. },
  9310. {
  9311. name: "Gigamacro",
  9312. height: math.unit(2500, "km")
  9313. },
  9314. {
  9315. name: "Gigamacro+",
  9316. height: math.unit(120000, "km")
  9317. },
  9318. {
  9319. name: "Teramacro",
  9320. height: math.unit(7.77e6, "km")
  9321. },
  9322. ]
  9323. ))
  9324. characterMakers.push(() => makeCharacter(
  9325. { name: "BMC" },
  9326. {
  9327. front: {
  9328. height: math.unit(6 + 4 / 12, "feet"),
  9329. weight: math.unit(188, "lb"),
  9330. name: "Front",
  9331. image: {
  9332. source: "./media/characters/bmc/front.svg",
  9333. extra: 1067 / 1022,
  9334. bottom: 0.047
  9335. }
  9336. },
  9337. },
  9338. [
  9339. {
  9340. name: "Human-sized",
  9341. height: math.unit(6 + 4 / 12, "feet")
  9342. },
  9343. {
  9344. name: "Small",
  9345. height: math.unit(250, "feet")
  9346. },
  9347. {
  9348. name: "Normal",
  9349. height: math.unit(1250, "feet"),
  9350. default: true
  9351. },
  9352. {
  9353. name: "Good Day",
  9354. height: math.unit(88, "miles")
  9355. },
  9356. {
  9357. name: "Largest Measured Size",
  9358. height: math.unit(11.2e6, "lightyears")
  9359. },
  9360. ]
  9361. ))
  9362. characterMakers.push(() => makeCharacter(
  9363. { name: "Sven the Kaiju" },
  9364. {
  9365. front: {
  9366. height: math.unit(20, "feet"),
  9367. weight: math.unit(2016, "kg"),
  9368. name: "Front",
  9369. image: {
  9370. source: "./media/characters/sven-the-kaiju/front.svg",
  9371. extra: 1479 / 1449,
  9372. bottom: 0.05
  9373. }
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Fairy",
  9379. height: math.unit(6, "inches")
  9380. },
  9381. {
  9382. name: "Normal",
  9383. height: math.unit(20, "feet"),
  9384. default: true
  9385. },
  9386. {
  9387. name: "Rampage",
  9388. height: math.unit(200, "feet")
  9389. },
  9390. {
  9391. name: "Archfey Forest Guardian",
  9392. height: math.unit(1, "mile")
  9393. },
  9394. ]
  9395. ))
  9396. characterMakers.push(() => makeCharacter(
  9397. { name: "Marik" },
  9398. {
  9399. front: {
  9400. height: math.unit(4, "meters"),
  9401. weight: math.unit(2, "tons"),
  9402. name: "Front",
  9403. image: {
  9404. source: "./media/characters/marik/front.svg",
  9405. extra: 1057 / 1003,
  9406. bottom: 0.08
  9407. }
  9408. },
  9409. },
  9410. [
  9411. {
  9412. name: "Normal",
  9413. height: math.unit(4, "meters"),
  9414. default: true
  9415. },
  9416. {
  9417. name: "Macro",
  9418. height: math.unit(20, "meters")
  9419. },
  9420. {
  9421. name: "Megamacro",
  9422. height: math.unit(50, "km")
  9423. },
  9424. {
  9425. name: "Gigamacro",
  9426. height: math.unit(100, "km")
  9427. },
  9428. {
  9429. name: "Alpha Macro",
  9430. height: math.unit(7.88e7, "yottameters")
  9431. },
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Mel" },
  9436. {
  9437. front: {
  9438. height: math.unit(6, "feet"),
  9439. weight: math.unit(110, "lb"),
  9440. name: "Front",
  9441. image: {
  9442. source: "./media/characters/mel/front.svg",
  9443. extra: 736 / 617,
  9444. bottom: 0.017
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Pico",
  9451. height: math.unit(3, "pm")
  9452. },
  9453. {
  9454. name: "Nano",
  9455. height: math.unit(3, "nm")
  9456. },
  9457. {
  9458. name: "Micro",
  9459. height: math.unit(0.3, "mm"),
  9460. default: true
  9461. },
  9462. {
  9463. name: "Micro+",
  9464. height: math.unit(3, "mm")
  9465. },
  9466. {
  9467. name: "Normal",
  9468. height: math.unit(5 + 10.5 / 12, "feet")
  9469. },
  9470. ]
  9471. ))
  9472. characterMakers.push(() => makeCharacter(
  9473. { name: "Lykonous" },
  9474. {
  9475. kaiju: {
  9476. height: math.unit(1.75, "meters"),
  9477. weight: math.unit(55, "kg"),
  9478. name: "Kaiju",
  9479. image: {
  9480. source: "./media/characters/lykonous/kaiju.svg",
  9481. extra: 1055 / 946,
  9482. bottom: 0.135
  9483. }
  9484. },
  9485. },
  9486. [
  9487. {
  9488. name: "Normal",
  9489. height: math.unit(2.5, "meters"),
  9490. default: true
  9491. },
  9492. {
  9493. name: "Kaiju Dragon",
  9494. height: math.unit(60, "meters")
  9495. },
  9496. {
  9497. name: "Mega Kaiju",
  9498. height: math.unit(120, "km")
  9499. },
  9500. {
  9501. name: "Giga Kaiju",
  9502. height: math.unit(200, "megameters")
  9503. },
  9504. {
  9505. name: "Terra Kaiju",
  9506. height: math.unit(400, "gigameters")
  9507. },
  9508. {
  9509. name: "Kaiju Dragon God",
  9510. height: math.unit(13000, "exaparsecs")
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Blü" },
  9516. {
  9517. front: {
  9518. height: math.unit(6, "feet"),
  9519. weight: math.unit(150, "lb"),
  9520. name: "Front",
  9521. image: {
  9522. source: "./media/characters/blü/front.svg",
  9523. extra: 1883 / 1564,
  9524. bottom: 0.031
  9525. }
  9526. },
  9527. },
  9528. [
  9529. {
  9530. name: "Normal",
  9531. height: math.unit(13, "feet"),
  9532. default: true
  9533. },
  9534. {
  9535. name: "Big Boi",
  9536. height: math.unit(150, "meters")
  9537. },
  9538. {
  9539. name: "Mini Stomper",
  9540. height: math.unit(300, "meters")
  9541. },
  9542. {
  9543. name: "Macro",
  9544. height: math.unit(1000, "meters")
  9545. },
  9546. {
  9547. name: "Megamacro",
  9548. height: math.unit(11000, "meters")
  9549. },
  9550. {
  9551. name: "Gigamacro",
  9552. height: math.unit(11000, "km")
  9553. },
  9554. {
  9555. name: "Teramacro",
  9556. height: math.unit(420000, "km")
  9557. },
  9558. {
  9559. name: "Examacro",
  9560. height: math.unit(120, "parsecs")
  9561. },
  9562. {
  9563. name: "God Tho",
  9564. height: math.unit(98000000000, "parsecs")
  9565. },
  9566. ]
  9567. ))
  9568. characterMakers.push(() => makeCharacter(
  9569. { name: "Scales" },
  9570. {
  9571. taurFront: {
  9572. height: math.unit(6, "feet"),
  9573. weight: math.unit(200, "lb"),
  9574. name: "Taur (Front)",
  9575. image: {
  9576. source: "./media/characters/scales/taur-front.svg",
  9577. extra: 1,
  9578. bottom: 0.05
  9579. }
  9580. },
  9581. taurBack: {
  9582. height: math.unit(6, "feet"),
  9583. weight: math.unit(200, "lb"),
  9584. name: "Taur (Back)",
  9585. image: {
  9586. source: "./media/characters/scales/taur-back.svg",
  9587. extra: 1,
  9588. bottom: 0.08
  9589. }
  9590. },
  9591. anthro: {
  9592. height: math.unit(6 * 7 / 12, "feet"),
  9593. weight: math.unit(100, "lb"),
  9594. name: "Anthro",
  9595. image: {
  9596. source: "./media/characters/scales/anthro.svg",
  9597. extra: 1,
  9598. bottom: 0.06
  9599. }
  9600. },
  9601. },
  9602. [
  9603. {
  9604. name: "Normal",
  9605. height: math.unit(12, "feet"),
  9606. default: true
  9607. },
  9608. ]
  9609. ))
  9610. characterMakers.push(() => makeCharacter(
  9611. { name: "Koragos" },
  9612. {
  9613. front: {
  9614. height: math.unit(6, "feet"),
  9615. weight: math.unit(150, "lb"),
  9616. name: "Front",
  9617. image: {
  9618. source: "./media/characters/koragos/front.svg",
  9619. extra: 841 / 794,
  9620. bottom: 0.035
  9621. }
  9622. },
  9623. back: {
  9624. height: math.unit(6, "feet"),
  9625. weight: math.unit(150, "lb"),
  9626. name: "Back",
  9627. image: {
  9628. source: "./media/characters/koragos/back.svg",
  9629. extra: 841 / 810,
  9630. bottom: 0.022
  9631. }
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Normal",
  9637. height: math.unit(6 + 11 / 12, "feet"),
  9638. default: true
  9639. },
  9640. {
  9641. name: "Macro",
  9642. height: math.unit(490, "feet")
  9643. },
  9644. {
  9645. name: "Megamacro",
  9646. height: math.unit(10, "miles")
  9647. },
  9648. {
  9649. name: "Gigamacro",
  9650. height: math.unit(50, "miles")
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Xylrem" },
  9656. {
  9657. front: {
  9658. height: math.unit(6, "feet"),
  9659. weight: math.unit(250, "lb"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/xylrem/front.svg",
  9663. extra: 3323 / 3050,
  9664. bottom: 0.065
  9665. }
  9666. },
  9667. },
  9668. [
  9669. {
  9670. name: "Micro",
  9671. height: math.unit(4, "feet")
  9672. },
  9673. {
  9674. name: "Normal",
  9675. height: math.unit(16, "feet"),
  9676. default: true
  9677. },
  9678. {
  9679. name: "Macro",
  9680. height: math.unit(2720, "feet")
  9681. },
  9682. {
  9683. name: "Megamacro",
  9684. height: math.unit(25000, "miles")
  9685. },
  9686. ]
  9687. ))
  9688. characterMakers.push(() => makeCharacter(
  9689. { name: "Ikideru" },
  9690. {
  9691. front: {
  9692. height: math.unit(8, "feet"),
  9693. weight: math.unit(250, "kg"),
  9694. name: "Front",
  9695. image: {
  9696. source: "./media/characters/ikideru/front.svg",
  9697. extra: 930 / 870,
  9698. bottom: 0.087
  9699. }
  9700. },
  9701. back: {
  9702. height: math.unit(8, "feet"),
  9703. weight: math.unit(250, "kg"),
  9704. name: "Back",
  9705. image: {
  9706. source: "./media/characters/ikideru/back.svg",
  9707. extra: 919 / 852,
  9708. bottom: 0.055
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Rare",
  9715. height: math.unit(8, "feet"),
  9716. default: true
  9717. },
  9718. {
  9719. name: "Playful Loom",
  9720. height: math.unit(80, "feet")
  9721. },
  9722. {
  9723. name: "City Leaner",
  9724. height: math.unit(230, "feet")
  9725. },
  9726. {
  9727. name: "Megamacro",
  9728. height: math.unit(2500, "feet")
  9729. },
  9730. {
  9731. name: "Gigamacro",
  9732. height: math.unit(26400, "feet")
  9733. },
  9734. {
  9735. name: "Tectonic Shifter",
  9736. height: math.unit(1.7, "megameters")
  9737. },
  9738. {
  9739. name: "Planet Carer",
  9740. height: math.unit(21, "megameters")
  9741. },
  9742. {
  9743. name: "God",
  9744. height: math.unit(11157.22, "parsecs")
  9745. },
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Neo" },
  9750. {
  9751. front: {
  9752. height: math.unit(6, "feet"),
  9753. weight: math.unit(120, "lb"),
  9754. name: "Front",
  9755. image: {
  9756. source: "./media/characters/neo/front.svg"
  9757. }
  9758. },
  9759. },
  9760. [
  9761. {
  9762. name: "Micro",
  9763. height: math.unit(2, "inches"),
  9764. default: true
  9765. },
  9766. {
  9767. name: "Human Size",
  9768. height: math.unit(5 + 8 / 12, "feet")
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Chauncey (Chantz)" },
  9774. {
  9775. front: {
  9776. height: math.unit(13 + 10 / 12, "feet"),
  9777. weight: math.unit(5320, "lb"),
  9778. name: "Front",
  9779. image: {
  9780. source: "./media/characters/chauncey-chantz/front.svg",
  9781. extra: 1587 / 1435,
  9782. bottom: 0.02
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(13 + 10 / 12, "feet"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "Macro",
  9794. height: math.unit(45, "feet")
  9795. },
  9796. {
  9797. name: "Megamacro",
  9798. height: math.unit(250, "miles")
  9799. },
  9800. {
  9801. name: "Planetary",
  9802. height: math.unit(10000, "miles")
  9803. },
  9804. {
  9805. name: "Galactic",
  9806. height: math.unit(40000, "parsecs")
  9807. },
  9808. {
  9809. name: "Universal",
  9810. height: math.unit(1, "yottameter")
  9811. },
  9812. ]
  9813. ))
  9814. characterMakers.push(() => makeCharacter(
  9815. { name: "Epifox" },
  9816. {
  9817. front: {
  9818. height: math.unit(6, "feet"),
  9819. weight: math.unit(150, "lb"),
  9820. name: "Front",
  9821. image: {
  9822. source: "./media/characters/epifox/front.svg",
  9823. extra: 1,
  9824. bottom: 0.075
  9825. }
  9826. },
  9827. },
  9828. [
  9829. {
  9830. name: "Micro",
  9831. height: math.unit(6, "inches")
  9832. },
  9833. {
  9834. name: "Normal",
  9835. height: math.unit(12, "feet"),
  9836. default: true
  9837. },
  9838. {
  9839. name: "Macro",
  9840. height: math.unit(3810, "feet")
  9841. },
  9842. {
  9843. name: "Megamacro",
  9844. height: math.unit(500, "miles")
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Colin T." },
  9850. {
  9851. front: {
  9852. height: math.unit(1.8796, "m"),
  9853. weight: math.unit(230, "lb"),
  9854. name: "Front",
  9855. image: {
  9856. source: "./media/characters/colin-t/front.svg",
  9857. extra: 1272 / 1193,
  9858. bottom: 0.07
  9859. }
  9860. },
  9861. },
  9862. [
  9863. {
  9864. name: "Micro",
  9865. height: math.unit(0.571, "meters")
  9866. },
  9867. {
  9868. name: "Normal",
  9869. height: math.unit(1.8796, "meters"),
  9870. default: true
  9871. },
  9872. {
  9873. name: "Tall",
  9874. height: math.unit(4, "meters")
  9875. },
  9876. {
  9877. name: "Macro",
  9878. height: math.unit(67.241, "meters")
  9879. },
  9880. {
  9881. name: "Megamacro",
  9882. height: math.unit(371.856, "meters")
  9883. },
  9884. {
  9885. name: "Planetary",
  9886. height: math.unit(12631.5689, "km")
  9887. },
  9888. ]
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Matvei" },
  9892. {
  9893. front: {
  9894. height: math.unit(1.85, "meters"),
  9895. weight: math.unit(80, "kg"),
  9896. name: "Front",
  9897. image: {
  9898. source: "./media/characters/matvei/front.svg",
  9899. extra: 614 / 594,
  9900. bottom: 0.01
  9901. }
  9902. },
  9903. },
  9904. [
  9905. {
  9906. name: "Normal",
  9907. height: math.unit(1.85, "meters"),
  9908. default: true
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Quincy" },
  9914. {
  9915. front: {
  9916. height: math.unit(5 + 9 / 12, "feet"),
  9917. weight: math.unit(70, "lb"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/quincy/front.svg",
  9921. extra: 3041 / 2751
  9922. }
  9923. },
  9924. back: {
  9925. height: math.unit(5 + 9 / 12, "feet"),
  9926. weight: math.unit(70, "lb"),
  9927. name: "Back",
  9928. image: {
  9929. source: "./media/characters/quincy/back.svg",
  9930. extra: 3041 / 2751
  9931. }
  9932. },
  9933. flying: {
  9934. height: math.unit(5 + 4 / 12, "feet"),
  9935. weight: math.unit(70, "lb"),
  9936. name: "Flying",
  9937. image: {
  9938. source: "./media/characters/quincy/flying.svg",
  9939. extra: 1044 / 930
  9940. }
  9941. },
  9942. },
  9943. [
  9944. {
  9945. name: "Micro",
  9946. height: math.unit(3, "cm")
  9947. },
  9948. {
  9949. name: "Normal",
  9950. height: math.unit(5 + 9 / 12, "feet")
  9951. },
  9952. {
  9953. name: "Macro",
  9954. height: math.unit(200, "meters"),
  9955. default: true
  9956. },
  9957. {
  9958. name: "Megamacro",
  9959. height: math.unit(1000, "meters")
  9960. },
  9961. ]
  9962. ))
  9963. characterMakers.push(() => makeCharacter(
  9964. { name: "Vanrel" },
  9965. {
  9966. front: {
  9967. height: math.unit(4 + 7 / 12, "feet"),
  9968. weight: math.unit(150, "lb"),
  9969. name: "Front",
  9970. image: {
  9971. source: "./media/characters/vanrel/front.svg",
  9972. extra: 1,
  9973. bottom: 0.02
  9974. }
  9975. },
  9976. elemental: {
  9977. height: math.unit(3, "feet"),
  9978. weight: math.unit(150, "lb"),
  9979. name: "Elemental",
  9980. image: {
  9981. source: "./media/characters/vanrel/elemental.svg",
  9982. extra: 192.3/162.8,
  9983. bottom: 1.79/194.17
  9984. }
  9985. },
  9986. side: {
  9987. height: math.unit(4 + 7 / 12, "feet"),
  9988. weight: math.unit(150, "lb"),
  9989. name: "Side",
  9990. image: {
  9991. source: "./media/characters/vanrel/side.svg",
  9992. extra: 1,
  9993. bottom: 0.025
  9994. }
  9995. },
  9996. tome: {
  9997. height: math.unit(1.35, "feet"),
  9998. weight: math.unit(10, "lb"),
  9999. name: "Vanrel's Tome",
  10000. rename: true,
  10001. image: {
  10002. source: "./media/characters/vanrel/tome.svg"
  10003. }
  10004. },
  10005. beans: {
  10006. height: math.unit(0.89, "feet"),
  10007. name: "Beans",
  10008. image: {
  10009. source: "./media/characters/vanrel/beans.svg"
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Normal",
  10016. height: math.unit(4 + 7 / 12, "feet"),
  10017. default: true
  10018. },
  10019. ]
  10020. ))
  10021. characterMakers.push(() => makeCharacter(
  10022. { name: "Kuiper Vanrel" },
  10023. {
  10024. front: {
  10025. height: math.unit(7 + 5 / 12, "feet"),
  10026. weight: math.unit(150, "lb"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/kuiper-vanrel/front.svg",
  10030. extra: 1118 / 1068,
  10031. bottom: 0.09
  10032. }
  10033. },
  10034. foot: {
  10035. height: math.unit(0.55, "meters"),
  10036. name: "Foot",
  10037. image: {
  10038. source: "./media/characters/kuiper-vanrel/foot.svg",
  10039. }
  10040. },
  10041. battle: {
  10042. height: math.unit(6.824, "feet"),
  10043. weight: math.unit(150, "lb"),
  10044. name: "Battle",
  10045. image: {
  10046. source: "./media/characters/kuiper-vanrel/battle.svg",
  10047. extra: 1466/1327,
  10048. bottom: 29/1492.5
  10049. }
  10050. },
  10051. },
  10052. [
  10053. {
  10054. name: "Normal",
  10055. height: math.unit(7 + 5 / 12, "feet"),
  10056. default: true
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Keset Vanrel" },
  10062. {
  10063. front: {
  10064. height: math.unit(8 + 5 / 12, "feet"),
  10065. weight: math.unit(150, "lb"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/keset-vanrel/front.svg",
  10069. extra: 1150 / 1084,
  10070. bottom: 0.05
  10071. }
  10072. },
  10073. hand: {
  10074. height: math.unit(0.6, "meters"),
  10075. name: "Hand",
  10076. image: {
  10077. source: "./media/characters/keset-vanrel/hand.svg"
  10078. }
  10079. },
  10080. foot: {
  10081. height: math.unit(0.94978, "meters"),
  10082. name: "Foot",
  10083. image: {
  10084. source: "./media/characters/keset-vanrel/foot.svg"
  10085. }
  10086. },
  10087. battle: {
  10088. height: math.unit(7.408, "feet"),
  10089. weight: math.unit(150, "lb"),
  10090. name: "Battle",
  10091. image: {
  10092. source: "./media/characters/keset-vanrel/battle.svg",
  10093. extra: 1890/1386,
  10094. bottom: 73.28/1970
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(8 + 5 / 12, "feet"),
  10102. default: true
  10103. },
  10104. ]
  10105. ))
  10106. characterMakers.push(() => makeCharacter(
  10107. { name: "Neos" },
  10108. {
  10109. front: {
  10110. height: math.unit(6, "feet"),
  10111. weight: math.unit(150, "lb"),
  10112. name: "Front",
  10113. image: {
  10114. source: "./media/characters/neos/front.svg",
  10115. extra: 1696 / 992,
  10116. bottom: 0.14
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(54, "cm"),
  10124. default: true
  10125. },
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(100, "m")
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(10, "km")
  10133. },
  10134. {
  10135. name: "Megamacro+",
  10136. height: math.unit(100, "km")
  10137. },
  10138. {
  10139. name: "Gigamacro",
  10140. height: math.unit(100, "Mm")
  10141. },
  10142. {
  10143. name: "Teramacro",
  10144. height: math.unit(100, "Gm")
  10145. },
  10146. {
  10147. name: "Examacro",
  10148. height: math.unit(100, "Em")
  10149. },
  10150. {
  10151. name: "Godly",
  10152. height: math.unit(10000, "Ym")
  10153. },
  10154. {
  10155. name: "Beyond Godly",
  10156. height: math.unit(10000000, "Ym")
  10157. },
  10158. ]
  10159. ))
  10160. characterMakers.push(() => makeCharacter(
  10161. { name: "Sammy Mouse" },
  10162. {
  10163. feminine: {
  10164. height: math.unit(5, "feet"),
  10165. weight: math.unit(100, "lb"),
  10166. name: "Feminine",
  10167. image: {
  10168. source: "./media/characters/sammy-mouse/feminine.svg",
  10169. extra: 2526 / 2425,
  10170. bottom: 0.123
  10171. }
  10172. },
  10173. masculine: {
  10174. height: math.unit(5, "feet"),
  10175. weight: math.unit(100, "lb"),
  10176. name: "Masculine",
  10177. image: {
  10178. source: "./media/characters/sammy-mouse/masculine.svg",
  10179. extra: 2526 / 2425,
  10180. bottom: 0.123
  10181. }
  10182. },
  10183. },
  10184. [
  10185. {
  10186. name: "Micro",
  10187. height: math.unit(5, "inches")
  10188. },
  10189. {
  10190. name: "Normal",
  10191. height: math.unit(5, "feet"),
  10192. default: true
  10193. },
  10194. {
  10195. name: "Macro",
  10196. height: math.unit(60, "feet")
  10197. },
  10198. ]
  10199. ))
  10200. characterMakers.push(() => makeCharacter(
  10201. { name: "Kole" },
  10202. {
  10203. front: {
  10204. height: math.unit(4, "feet"),
  10205. weight: math.unit(50, "lb"),
  10206. name: "Front",
  10207. image: {
  10208. source: "./media/characters/kole/front.svg",
  10209. extra: 1423 / 1303,
  10210. bottom: 0.025
  10211. }
  10212. },
  10213. back: {
  10214. height: math.unit(4, "feet"),
  10215. weight: math.unit(50, "lb"),
  10216. name: "Back",
  10217. image: {
  10218. source: "./media/characters/kole/back.svg",
  10219. extra: 1426 / 1280,
  10220. bottom: 0.02
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(4, "feet"),
  10228. default: true
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Rufran" },
  10234. {
  10235. front: {
  10236. height: math.unit(2 + 6 / 12, "feet"),
  10237. weight: math.unit(20, "lb"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/rufran/front.svg",
  10241. extra: 2041 / 1839,
  10242. bottom: 0.055
  10243. }
  10244. },
  10245. back: {
  10246. height: math.unit(2 + 6 / 12, "feet"),
  10247. weight: math.unit(20, "lb"),
  10248. name: "Back",
  10249. image: {
  10250. source: "./media/characters/rufran/back.svg",
  10251. extra: 2054 / 1839,
  10252. bottom: 0.01
  10253. }
  10254. },
  10255. hand: {
  10256. height: math.unit(0.2166, "meters"),
  10257. name: "Hand",
  10258. image: {
  10259. source: "./media/characters/rufran/hand.svg"
  10260. }
  10261. },
  10262. foot: {
  10263. height: math.unit(0.185, "meters"),
  10264. name: "Foot",
  10265. image: {
  10266. source: "./media/characters/rufran/foot.svg"
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Micro",
  10273. height: math.unit(1, "inch")
  10274. },
  10275. {
  10276. name: "Normal",
  10277. height: math.unit(2 + 6 / 12, "feet"),
  10278. default: true
  10279. },
  10280. {
  10281. name: "Big",
  10282. height: math.unit(60, "feet")
  10283. },
  10284. {
  10285. name: "Macro",
  10286. height: math.unit(325, "feet")
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Chip" },
  10292. {
  10293. front: {
  10294. height: math.unit(0.3, "meters"),
  10295. weight: math.unit(3.5, "kg"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/chip/front.svg",
  10299. extra: 748 / 674
  10300. }
  10301. },
  10302. },
  10303. [
  10304. {
  10305. name: "Micro",
  10306. height: math.unit(1, "inch"),
  10307. default: true
  10308. },
  10309. ]
  10310. ))
  10311. characterMakers.push(() => makeCharacter(
  10312. { name: "Torvid" },
  10313. {
  10314. side: {
  10315. height: math.unit(2.3, "meters"),
  10316. weight: math.unit(3500, "lb"),
  10317. name: "Side",
  10318. image: {
  10319. source: "./media/characters/torvid/side.svg",
  10320. extra: 1972 / 722,
  10321. bottom: 0.035
  10322. }
  10323. },
  10324. },
  10325. [
  10326. {
  10327. name: "Normal",
  10328. height: math.unit(2.3, "meters"),
  10329. default: true
  10330. },
  10331. ]
  10332. ))
  10333. characterMakers.push(() => makeCharacter(
  10334. { name: "Susan" },
  10335. {
  10336. front: {
  10337. height: math.unit(2, "meters"),
  10338. weight: math.unit(150.5, "kg"),
  10339. name: "Front",
  10340. image: {
  10341. source: "./media/characters/susan/front.svg",
  10342. extra: 693 / 635,
  10343. bottom: 0.05
  10344. }
  10345. },
  10346. },
  10347. [
  10348. {
  10349. name: "Megamacro",
  10350. height: math.unit(505, "miles"),
  10351. default: true
  10352. },
  10353. ]
  10354. ))
  10355. characterMakers.push(() => makeCharacter(
  10356. { name: "Raindrops" },
  10357. {
  10358. front: {
  10359. height: math.unit(6, "feet"),
  10360. weight: math.unit(150, "lb"),
  10361. name: "Front",
  10362. image: {
  10363. source: "./media/characters/raindrops/front.svg",
  10364. extra: 2655 / 2461,
  10365. bottom: 0.02
  10366. }
  10367. },
  10368. back: {
  10369. height: math.unit(6, "feet"),
  10370. weight: math.unit(150, "lb"),
  10371. name: "Back",
  10372. image: {
  10373. source: "./media/characters/raindrops/back.svg",
  10374. extra: 2574 / 2400,
  10375. bottom: 0.03
  10376. }
  10377. },
  10378. },
  10379. [
  10380. {
  10381. name: "Micro",
  10382. height: math.unit(6, "inches")
  10383. },
  10384. {
  10385. name: "Normal",
  10386. height: math.unit(6 + 2 / 12, "feet")
  10387. },
  10388. {
  10389. name: "Macro",
  10390. height: math.unit(131, "feet"),
  10391. default: true
  10392. },
  10393. {
  10394. name: "Megamacro",
  10395. height: math.unit(15, "miles")
  10396. },
  10397. {
  10398. name: "Gigamacro",
  10399. height: math.unit(4000, "miles")
  10400. },
  10401. {
  10402. name: "Teramacro",
  10403. height: math.unit(315000, "miles")
  10404. },
  10405. ]
  10406. ))
  10407. characterMakers.push(() => makeCharacter(
  10408. { name: "Tezwa" },
  10409. {
  10410. front: {
  10411. height: math.unit(2.794, "meters"),
  10412. weight: math.unit(325, "kg"),
  10413. name: "Front",
  10414. image: {
  10415. source: "./media/characters/tezwa/front.svg",
  10416. extra: 2083 / 1906,
  10417. bottom: 0.031
  10418. }
  10419. },
  10420. foot: {
  10421. height: math.unit(0.687, "meters"),
  10422. name: "Foot",
  10423. image: {
  10424. source: "./media/characters/tezwa/foot.svg"
  10425. }
  10426. },
  10427. },
  10428. [
  10429. {
  10430. name: "Normal",
  10431. height: math.unit(9 + 2 / 12, "feet"),
  10432. default: true
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Typhus" },
  10438. {
  10439. front: {
  10440. height: math.unit(58, "feet"),
  10441. weight: math.unit(89000, "lb"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/typhus/front.svg",
  10445. extra: 816 / 800,
  10446. bottom: 0.065
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Macro",
  10453. height: math.unit(58, "feet"),
  10454. default: true
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Lyra Von Wulf" },
  10460. {
  10461. front: {
  10462. height: math.unit(12, "feet"),
  10463. weight: math.unit(6, "tonnes"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/lyra-von-wulf/front.svg",
  10467. extra: 1,
  10468. bottom: 0.10
  10469. }
  10470. },
  10471. frontMecha: {
  10472. height: math.unit(12, "feet"),
  10473. weight: math.unit(12, "tonnes"),
  10474. name: "Front (Mecha)",
  10475. image: {
  10476. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10477. extra: 1,
  10478. bottom: 0.042
  10479. }
  10480. },
  10481. maw: {
  10482. height: math.unit(2.2, "feet"),
  10483. name: "Maw",
  10484. image: {
  10485. source: "./media/characters/lyra-von-wulf/maw.svg"
  10486. }
  10487. },
  10488. },
  10489. [
  10490. {
  10491. name: "Normal",
  10492. height: math.unit(12, "feet"),
  10493. default: true
  10494. },
  10495. {
  10496. name: "Classic",
  10497. height: math.unit(50, "feet")
  10498. },
  10499. {
  10500. name: "Macro",
  10501. height: math.unit(500, "feet")
  10502. },
  10503. {
  10504. name: "Megamacro",
  10505. height: math.unit(1, "mile")
  10506. },
  10507. {
  10508. name: "Gigamacro",
  10509. height: math.unit(400, "miles")
  10510. },
  10511. {
  10512. name: "Teramacro",
  10513. height: math.unit(22000, "miles")
  10514. },
  10515. {
  10516. name: "Solarmacro",
  10517. height: math.unit(8600000, "miles")
  10518. },
  10519. {
  10520. name: "Galactic",
  10521. height: math.unit(1057000, "lightyears")
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Dixon" },
  10527. {
  10528. front: {
  10529. height: math.unit(6 + 10 / 12, "feet"),
  10530. weight: math.unit(150, "lb"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/dixon/front.svg",
  10534. extra: 3361 / 3209,
  10535. bottom: 0.01
  10536. }
  10537. },
  10538. },
  10539. [
  10540. {
  10541. name: "Normal",
  10542. height: math.unit(6 + 10 / 12, "feet"),
  10543. default: true
  10544. },
  10545. {
  10546. name: "Big",
  10547. height: math.unit(12, "meters")
  10548. },
  10549. {
  10550. name: "Macro",
  10551. height: math.unit(500, "meters")
  10552. },
  10553. {
  10554. name: "Megamacro",
  10555. height: math.unit(2, "km")
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Kauko" },
  10561. {
  10562. front: {
  10563. height: math.unit(185, "cm"),
  10564. weight: math.unit(68, "kg"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/kauko/front.svg",
  10568. extra: 1455 / 1421,
  10569. bottom: 0.03
  10570. }
  10571. },
  10572. back: {
  10573. height: math.unit(185, "cm"),
  10574. weight: math.unit(68, "kg"),
  10575. name: "Back",
  10576. image: {
  10577. source: "./media/characters/kauko/back.svg",
  10578. extra: 1455 / 1421,
  10579. bottom: 0.004
  10580. }
  10581. },
  10582. },
  10583. [
  10584. {
  10585. name: "Normal",
  10586. height: math.unit(185, "cm"),
  10587. default: true
  10588. },
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Varg" },
  10593. {
  10594. front: {
  10595. height: math.unit(6, "feet"),
  10596. weight: math.unit(150, "kg"),
  10597. name: "Front",
  10598. image: {
  10599. source: "./media/characters/varg/front.svg",
  10600. extra: 1108 / 1018,
  10601. bottom: 0.0375
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Normal",
  10608. height: math.unit(5, "meters")
  10609. },
  10610. {
  10611. name: "Macro",
  10612. height: math.unit(200, "meters")
  10613. },
  10614. {
  10615. name: "Megamacro",
  10616. height: math.unit(20, "kilometers")
  10617. },
  10618. {
  10619. name: "True Size",
  10620. height: math.unit(211, "km"),
  10621. default: true
  10622. },
  10623. {
  10624. name: "Gigamacro",
  10625. height: math.unit(1000, "km")
  10626. },
  10627. {
  10628. name: "Gigamacro+",
  10629. height: math.unit(8000, "km")
  10630. },
  10631. {
  10632. name: "Teramacro",
  10633. height: math.unit(1000000, "km")
  10634. },
  10635. ]
  10636. ))
  10637. characterMakers.push(() => makeCharacter(
  10638. { name: "Dayza" },
  10639. {
  10640. front: {
  10641. height: math.unit(7 + 7 / 12, "feet"),
  10642. weight: math.unit(267, "lb"),
  10643. name: "Front",
  10644. image: {
  10645. source: "./media/characters/dayza/front.svg",
  10646. extra: 1262 / 1200,
  10647. bottom: 0.035
  10648. }
  10649. },
  10650. side: {
  10651. height: math.unit(7 + 7 / 12, "feet"),
  10652. weight: math.unit(267, "lb"),
  10653. name: "Side",
  10654. image: {
  10655. source: "./media/characters/dayza/side.svg",
  10656. extra: 1295 / 1245,
  10657. bottom: 0.05
  10658. }
  10659. },
  10660. back: {
  10661. height: math.unit(7 + 7 / 12, "feet"),
  10662. weight: math.unit(267, "lb"),
  10663. name: "Back",
  10664. image: {
  10665. source: "./media/characters/dayza/back.svg",
  10666. extra: 1241 / 1170
  10667. }
  10668. },
  10669. },
  10670. [
  10671. {
  10672. name: "Normal",
  10673. height: math.unit(7 + 7 / 12, "feet"),
  10674. default: true
  10675. },
  10676. {
  10677. name: "Macro",
  10678. height: math.unit(155, "feet")
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "Xanthos" },
  10684. {
  10685. front: {
  10686. height: math.unit(6 + 5 / 12, "feet"),
  10687. weight: math.unit(160, "lb"),
  10688. name: "Front",
  10689. image: {
  10690. source: "./media/characters/xanthos/front.svg",
  10691. extra: 1,
  10692. bottom: 0.04
  10693. }
  10694. },
  10695. back: {
  10696. height: math.unit(6 + 5 / 12, "feet"),
  10697. weight: math.unit(160, "lb"),
  10698. name: "Back",
  10699. image: {
  10700. source: "./media/characters/xanthos/back.svg",
  10701. extra: 1,
  10702. bottom: 0.03
  10703. }
  10704. },
  10705. hand: {
  10706. height: math.unit(0.928, "feet"),
  10707. name: "Hand",
  10708. image: {
  10709. source: "./media/characters/xanthos/hand.svg"
  10710. }
  10711. },
  10712. foot: {
  10713. height: math.unit(1.286, "feet"),
  10714. name: "Foot",
  10715. image: {
  10716. source: "./media/characters/xanthos/foot.svg"
  10717. }
  10718. },
  10719. },
  10720. [
  10721. {
  10722. name: "Normal",
  10723. height: math.unit(6 + 5 / 12, "feet"),
  10724. default: true
  10725. },
  10726. {
  10727. name: "Normal+",
  10728. height: math.unit(6, "meters")
  10729. },
  10730. {
  10731. name: "Macro",
  10732. height: math.unit(40, "feet")
  10733. },
  10734. {
  10735. name: "Macro+",
  10736. height: math.unit(200, "meters")
  10737. },
  10738. {
  10739. name: "Megamacro",
  10740. height: math.unit(20, "km")
  10741. },
  10742. {
  10743. name: "Megamacro+",
  10744. height: math.unit(100, "km")
  10745. },
  10746. ]
  10747. ))
  10748. characterMakers.push(() => makeCharacter(
  10749. { name: "Grynn" },
  10750. {
  10751. front: {
  10752. height: math.unit(6 + 3 / 12, "feet"),
  10753. weight: math.unit(215, "lb"),
  10754. name: "Front",
  10755. image: {
  10756. source: "./media/characters/grynn/front.svg",
  10757. extra: 4627 / 4209,
  10758. bottom: 0.047
  10759. }
  10760. },
  10761. },
  10762. [
  10763. {
  10764. name: "Micro",
  10765. height: math.unit(6, "inches")
  10766. },
  10767. {
  10768. name: "Normal",
  10769. height: math.unit(6 + 3 / 12, "feet"),
  10770. default: true
  10771. },
  10772. {
  10773. name: "Big",
  10774. height: math.unit(104, "feet")
  10775. },
  10776. {
  10777. name: "Macro",
  10778. height: math.unit(944, "feet")
  10779. },
  10780. {
  10781. name: "Macro+",
  10782. height: math.unit(9480, "feet")
  10783. },
  10784. {
  10785. name: "Megamacro",
  10786. height: math.unit(78752, "feet")
  10787. },
  10788. {
  10789. name: "Megamacro+",
  10790. height: math.unit(630128, "feet")
  10791. },
  10792. {
  10793. name: "Megamacro++",
  10794. height: math.unit(3150695, "feet")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Mocha Aura" },
  10800. {
  10801. front: {
  10802. height: math.unit(7 + 5 / 12, "feet"),
  10803. weight: math.unit(450, "lb"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/mocha-aura/front.svg",
  10807. extra: 1907 / 1817,
  10808. bottom: 0.04
  10809. }
  10810. },
  10811. back: {
  10812. height: math.unit(7 + 5 / 12, "feet"),
  10813. weight: math.unit(450, "lb"),
  10814. name: "Back",
  10815. image: {
  10816. source: "./media/characters/mocha-aura/back.svg",
  10817. extra: 1900 / 1825,
  10818. bottom: 0.045
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Nano",
  10825. height: math.unit(1, "nm")
  10826. },
  10827. {
  10828. name: "Megamicro",
  10829. height: math.unit(1, "mm")
  10830. },
  10831. {
  10832. name: "Micro",
  10833. height: math.unit(3, "inches")
  10834. },
  10835. {
  10836. name: "Normal",
  10837. height: math.unit(7 + 5 / 12, "feet"),
  10838. default: true
  10839. },
  10840. {
  10841. name: "Macro",
  10842. height: math.unit(30, "feet")
  10843. },
  10844. {
  10845. name: "Megamacro",
  10846. height: math.unit(3500, "feet")
  10847. },
  10848. {
  10849. name: "Teramacro",
  10850. height: math.unit(500000, "miles")
  10851. },
  10852. {
  10853. name: "Petamacro",
  10854. height: math.unit(50000000000000000, "parsecs")
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Ilisha Devya" },
  10860. {
  10861. front: {
  10862. height: math.unit(6, "feet"),
  10863. weight: math.unit(150, "lb"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/ilisha-devya/front.svg",
  10867. extra: 1,
  10868. bottom: 0.175
  10869. }
  10870. },
  10871. back: {
  10872. height: math.unit(6, "feet"),
  10873. weight: math.unit(150, "lb"),
  10874. name: "Back",
  10875. image: {
  10876. source: "./media/characters/ilisha-devya/back.svg",
  10877. extra: 1,
  10878. bottom: 0.015
  10879. }
  10880. },
  10881. },
  10882. [
  10883. {
  10884. name: "Macro",
  10885. height: math.unit(500, "feet"),
  10886. default: true
  10887. },
  10888. {
  10889. name: "Megamacro",
  10890. height: math.unit(10, "miles")
  10891. },
  10892. {
  10893. name: "Gigamacro",
  10894. height: math.unit(100000, "miles")
  10895. },
  10896. {
  10897. name: "Examacro",
  10898. height: math.unit(1e9, "lightyears")
  10899. },
  10900. {
  10901. name: "Omniversal",
  10902. height: math.unit(1e33, "lightyears")
  10903. },
  10904. {
  10905. name: "Beyond Infinite",
  10906. height: math.unit(1e100, "lightyears")
  10907. },
  10908. ]
  10909. ))
  10910. characterMakers.push(() => makeCharacter(
  10911. { name: "Mira" },
  10912. {
  10913. Side: {
  10914. height: math.unit(6, "feet"),
  10915. weight: math.unit(150, "lb"),
  10916. name: "Side",
  10917. image: {
  10918. source: "./media/characters/mira/side.svg",
  10919. extra: 900 / 799,
  10920. bottom: 0.02
  10921. }
  10922. },
  10923. },
  10924. [
  10925. {
  10926. name: "Human Size",
  10927. height: math.unit(6, "feet")
  10928. },
  10929. {
  10930. name: "Macro",
  10931. height: math.unit(100, "feet"),
  10932. default: true
  10933. },
  10934. {
  10935. name: "Megamacro",
  10936. height: math.unit(10, "miles")
  10937. },
  10938. {
  10939. name: "Gigamacro",
  10940. height: math.unit(25000, "miles")
  10941. },
  10942. {
  10943. name: "Teramacro",
  10944. height: math.unit(300, "AU")
  10945. },
  10946. {
  10947. name: "Full Size",
  10948. height: math.unit(4.5e10, "lightyears")
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Holly" },
  10954. {
  10955. front: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(150, "lb"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/holly/front.svg",
  10961. extra: 639 / 606
  10962. }
  10963. },
  10964. back: {
  10965. height: math.unit(6, "feet"),
  10966. weight: math.unit(150, "lb"),
  10967. name: "Back",
  10968. image: {
  10969. source: "./media/characters/holly/back.svg",
  10970. extra: 623 / 598
  10971. }
  10972. },
  10973. frontWorking: {
  10974. height: math.unit(6, "feet"),
  10975. weight: math.unit(150, "lb"),
  10976. name: "Front (Working)",
  10977. image: {
  10978. source: "./media/characters/holly/front-working.svg",
  10979. extra: 607 / 577,
  10980. bottom: 0.048
  10981. }
  10982. },
  10983. },
  10984. [
  10985. {
  10986. name: "Normal",
  10987. height: math.unit(12 + 3 / 12, "feet"),
  10988. default: true
  10989. },
  10990. ]
  10991. ))
  10992. characterMakers.push(() => makeCharacter(
  10993. { name: "Porter" },
  10994. {
  10995. front: {
  10996. height: math.unit(6, "feet"),
  10997. weight: math.unit(150, "lb"),
  10998. name: "Front",
  10999. image: {
  11000. source: "./media/characters/porter/front.svg",
  11001. extra: 1,
  11002. bottom: 0.01
  11003. }
  11004. },
  11005. frontRobes: {
  11006. height: math.unit(6, "feet"),
  11007. weight: math.unit(150, "lb"),
  11008. name: "Front (Robes)",
  11009. image: {
  11010. source: "./media/characters/porter/front-robes.svg",
  11011. extra: 1.01,
  11012. bottom: 0.01
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(11 + 9 / 12, "feet"),
  11020. default: true
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Lucy" },
  11026. {
  11027. legendary: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(150, "lb"),
  11030. name: "Legendary",
  11031. image: {
  11032. source: "./media/characters/lucy/legendary.svg",
  11033. extra: 1355 / 1100,
  11034. bottom: 0.045
  11035. }
  11036. },
  11037. },
  11038. [
  11039. {
  11040. name: "Legendary",
  11041. height: math.unit(86882 * 2, "miles"),
  11042. default: true
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Drusilla" },
  11048. {
  11049. front: {
  11050. height: math.unit(6, "feet"),
  11051. weight: math.unit(150, "lb"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/drusilla/front.svg",
  11055. extra: 678 / 635,
  11056. bottom: 0.03
  11057. }
  11058. },
  11059. back: {
  11060. height: math.unit(6, "feet"),
  11061. weight: math.unit(150, "lb"),
  11062. name: "Back",
  11063. image: {
  11064. source: "./media/characters/drusilla/back.svg",
  11065. extra: 678 / 635,
  11066. bottom: 0.005
  11067. }
  11068. },
  11069. },
  11070. [
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(100, "feet")
  11074. },
  11075. {
  11076. name: "Canon Height",
  11077. height: math.unit(2000, "feet"),
  11078. default: true
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Renard Thatch" },
  11084. {
  11085. front: {
  11086. height: math.unit(6, "feet"),
  11087. weight: math.unit(180, "lb"),
  11088. name: "Front",
  11089. image: {
  11090. source: "./media/characters/renard-thatch/front.svg",
  11091. extra: 2411 / 2275,
  11092. bottom: 0.01
  11093. }
  11094. },
  11095. frontPosing: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(180, "lb"),
  11098. name: "Front (Posing)",
  11099. image: {
  11100. source: "./media/characters/renard-thatch/front-posing.svg",
  11101. extra: 2381 / 2261,
  11102. bottom: 0.01
  11103. }
  11104. },
  11105. back: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(180, "lb"),
  11108. name: "Back",
  11109. image: {
  11110. source: "./media/characters/renard-thatch/back.svg",
  11111. extra: 2428 / 2288
  11112. }
  11113. },
  11114. },
  11115. [
  11116. {
  11117. name: "Micro",
  11118. height: math.unit(3, "inches")
  11119. },
  11120. {
  11121. name: "Default",
  11122. height: math.unit(6, "feet"),
  11123. default: true
  11124. },
  11125. {
  11126. name: "Macro",
  11127. height: math.unit(75, "feet")
  11128. },
  11129. ]
  11130. ))
  11131. characterMakers.push(() => makeCharacter(
  11132. { name: "Sekvra" },
  11133. {
  11134. front: {
  11135. height: math.unit(1450, "feet"),
  11136. weight: math.unit(1.21e6, "tons"),
  11137. name: "Front",
  11138. image: {
  11139. source: "./media/characters/sekvra/front.svg",
  11140. extra: 1,
  11141. bottom: 0.03
  11142. }
  11143. },
  11144. frontClothed: {
  11145. height: math.unit(1450, "feet"),
  11146. weight: math.unit(1.21e6, "tons"),
  11147. name: "Front (Clothed)",
  11148. image: {
  11149. source: "./media/characters/sekvra/front-clothed.svg",
  11150. extra: 1,
  11151. bottom: 0.03
  11152. }
  11153. },
  11154. side: {
  11155. height: math.unit(1450, "feet"),
  11156. weight: math.unit(1.21e6, "tons"),
  11157. name: "Side",
  11158. image: {
  11159. source: "./media/characters/sekvra/side.svg",
  11160. extra: 1,
  11161. bottom: 0.025
  11162. }
  11163. },
  11164. back: {
  11165. height: math.unit(1450, "feet"),
  11166. weight: math.unit(1.21e6, "tons"),
  11167. name: "Back",
  11168. image: {
  11169. source: "./media/characters/sekvra/back.svg",
  11170. extra: 1,
  11171. bottom: 0.005
  11172. }
  11173. },
  11174. },
  11175. [
  11176. {
  11177. name: "Macro",
  11178. height: math.unit(1450, "feet"),
  11179. default: true
  11180. },
  11181. {
  11182. name: "Megamacro",
  11183. height: math.unit(15000, "feet")
  11184. },
  11185. ]
  11186. ))
  11187. characterMakers.push(() => makeCharacter(
  11188. { name: "Carmine" },
  11189. {
  11190. front: {
  11191. height: math.unit(6, "feet"),
  11192. weight: math.unit(150, "lb"),
  11193. name: "Front",
  11194. image: {
  11195. source: "./media/characters/carmine/front.svg",
  11196. extra: 1,
  11197. bottom: 0.035
  11198. }
  11199. },
  11200. frontArmor: {
  11201. height: math.unit(6, "feet"),
  11202. weight: math.unit(150, "lb"),
  11203. name: "Front (Armor)",
  11204. image: {
  11205. source: "./media/characters/carmine/front-armor.svg",
  11206. extra: 1,
  11207. bottom: 0.035
  11208. }
  11209. },
  11210. },
  11211. [
  11212. {
  11213. name: "Large",
  11214. height: math.unit(1, "mile")
  11215. },
  11216. {
  11217. name: "Huge",
  11218. height: math.unit(40, "miles"),
  11219. default: true
  11220. },
  11221. {
  11222. name: "Colossal",
  11223. height: math.unit(2500, "miles")
  11224. },
  11225. ]
  11226. ))
  11227. characterMakers.push(() => makeCharacter(
  11228. { name: "Elyssia" },
  11229. {
  11230. front: {
  11231. height: math.unit(6, "feet"),
  11232. weight: math.unit(150, "lb"),
  11233. name: "Front",
  11234. image: {
  11235. source: "./media/characters/elyssia/front.svg",
  11236. extra: 2201 / 2035,
  11237. bottom: 0.05
  11238. }
  11239. },
  11240. frontClothed: {
  11241. height: math.unit(6, "feet"),
  11242. weight: math.unit(150, "lb"),
  11243. name: "Front (Clothed)",
  11244. image: {
  11245. source: "./media/characters/elyssia/front-clothed.svg",
  11246. extra: 2201 / 2035,
  11247. bottom: 0.05
  11248. }
  11249. },
  11250. back: {
  11251. height: math.unit(6, "feet"),
  11252. weight: math.unit(150, "lb"),
  11253. name: "Back",
  11254. image: {
  11255. source: "./media/characters/elyssia/back.svg",
  11256. extra: 2201 / 2035,
  11257. bottom: 0.013
  11258. }
  11259. },
  11260. },
  11261. [
  11262. {
  11263. name: "Smaller",
  11264. height: math.unit(150, "feet")
  11265. },
  11266. {
  11267. name: "Standard",
  11268. height: math.unit(1400, "feet"),
  11269. default: true
  11270. },
  11271. {
  11272. name: "Distracted",
  11273. height: math.unit(15000, "feet")
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "Geno Maxwell" },
  11279. {
  11280. front: {
  11281. height: math.unit(7 + 4 / 12, "feet"),
  11282. weight: math.unit(500, "lb"),
  11283. name: "Front",
  11284. image: {
  11285. source: "./media/characters/geno-maxwell/front.svg",
  11286. extra: 2207 / 2040,
  11287. bottom: 0.015
  11288. }
  11289. },
  11290. },
  11291. [
  11292. {
  11293. name: "Micro",
  11294. height: math.unit(3, "inches")
  11295. },
  11296. {
  11297. name: "Normal",
  11298. height: math.unit(7 + 4 / 12, "feet"),
  11299. default: true
  11300. },
  11301. {
  11302. name: "Macro",
  11303. height: math.unit(220, "feet")
  11304. },
  11305. {
  11306. name: "Megamacro",
  11307. height: math.unit(11, "miles")
  11308. },
  11309. ]
  11310. ))
  11311. characterMakers.push(() => makeCharacter(
  11312. { name: "Regena Maxwell" },
  11313. {
  11314. front: {
  11315. height: math.unit(7 + 4 / 12, "feet"),
  11316. weight: math.unit(500, "lb"),
  11317. name: "Front",
  11318. image: {
  11319. source: "./media/characters/regena-maxwell/front.svg",
  11320. extra: 3115 / 2770,
  11321. bottom: 0.02
  11322. }
  11323. },
  11324. },
  11325. [
  11326. {
  11327. name: "Normal",
  11328. height: math.unit(7 + 4 / 12, "feet"),
  11329. default: true
  11330. },
  11331. {
  11332. name: "Macro",
  11333. height: math.unit(220, "feet")
  11334. },
  11335. {
  11336. name: "Megamacro",
  11337. height: math.unit(11, "miles")
  11338. },
  11339. ]
  11340. ))
  11341. characterMakers.push(() => makeCharacter(
  11342. { name: "XGlidingDragonX" },
  11343. {
  11344. front: {
  11345. height: math.unit(6, "feet"),
  11346. weight: math.unit(150, "lb"),
  11347. name: "Front",
  11348. image: {
  11349. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11350. extra: 860 / 690,
  11351. bottom: 0.03
  11352. }
  11353. },
  11354. },
  11355. [
  11356. {
  11357. name: "Normal",
  11358. height: math.unit(1.7, "meters"),
  11359. default: true
  11360. },
  11361. ]
  11362. ))
  11363. characterMakers.push(() => makeCharacter(
  11364. { name: "Quilly" },
  11365. {
  11366. front: {
  11367. height: math.unit(6, "feet"),
  11368. weight: math.unit(150, "lb"),
  11369. name: "Front",
  11370. image: {
  11371. source: "./media/characters/quilly/front.svg",
  11372. extra: 890 / 776
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Gigamacro",
  11379. height: math.unit(404090, "miles"),
  11380. default: true
  11381. },
  11382. ]
  11383. ))
  11384. characterMakers.push(() => makeCharacter(
  11385. { name: "Tempest" },
  11386. {
  11387. front: {
  11388. height: math.unit(7 + 8 / 12, "feet"),
  11389. weight: math.unit(350, "lb"),
  11390. name: "Front",
  11391. image: {
  11392. source: "./media/characters/tempest/front.svg",
  11393. extra: 1175 / 1086,
  11394. bottom: 0.02
  11395. }
  11396. },
  11397. },
  11398. [
  11399. {
  11400. name: "Normal",
  11401. height: math.unit(7 + 8 / 12, "feet"),
  11402. default: true
  11403. },
  11404. ]
  11405. ))
  11406. characterMakers.push(() => makeCharacter(
  11407. { name: "Rodger" },
  11408. {
  11409. side: {
  11410. height: math.unit(4 + 5 / 12, "feet"),
  11411. weight: math.unit(80, "lb"),
  11412. name: "Side",
  11413. image: {
  11414. source: "./media/characters/rodger/side.svg",
  11415. extra: 1235 / 1118
  11416. }
  11417. },
  11418. },
  11419. [
  11420. {
  11421. name: "Micro",
  11422. height: math.unit(1, "inch")
  11423. },
  11424. {
  11425. name: "Normal",
  11426. height: math.unit(4 + 5 / 12, "feet"),
  11427. default: true
  11428. },
  11429. {
  11430. name: "Macro",
  11431. height: math.unit(120, "feet")
  11432. },
  11433. ]
  11434. ))
  11435. characterMakers.push(() => makeCharacter(
  11436. { name: "Danyel" },
  11437. {
  11438. front: {
  11439. height: math.unit(6, "feet"),
  11440. weight: math.unit(150, "lb"),
  11441. name: "Front",
  11442. image: {
  11443. source: "./media/characters/danyel/front.svg",
  11444. extra: 1185 / 1123,
  11445. bottom: 0.05
  11446. }
  11447. },
  11448. },
  11449. [
  11450. {
  11451. name: "Shrunken",
  11452. height: math.unit(0.5, "mm")
  11453. },
  11454. {
  11455. name: "Micro",
  11456. height: math.unit(1, "mm"),
  11457. default: true
  11458. },
  11459. {
  11460. name: "Upsized",
  11461. height: math.unit(5 + 5 / 12, "feet")
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Vivian Bijoux" },
  11467. {
  11468. front: {
  11469. height: math.unit(5 + 6 / 12, "feet"),
  11470. weight: math.unit(200, "lb"),
  11471. name: "Front",
  11472. image: {
  11473. source: "./media/characters/vivian-bijoux/front.svg",
  11474. extra: 1,
  11475. bottom: 0.072
  11476. }
  11477. },
  11478. },
  11479. [
  11480. {
  11481. name: "Normal",
  11482. height: math.unit(5 + 6 / 12, "feet"),
  11483. default: true
  11484. },
  11485. {
  11486. name: "Bad Dream",
  11487. height: math.unit(500, "feet")
  11488. },
  11489. {
  11490. name: "Nightmare",
  11491. height: math.unit(500, "miles")
  11492. },
  11493. ]
  11494. ))
  11495. characterMakers.push(() => makeCharacter(
  11496. { name: "Zeta" },
  11497. {
  11498. front: {
  11499. height: math.unit(6 + 1 / 12, "feet"),
  11500. weight: math.unit(260, "lb"),
  11501. name: "Front",
  11502. image: {
  11503. source: "./media/characters/zeta/front.svg",
  11504. extra: 1968 / 1889,
  11505. bottom: 0.06
  11506. }
  11507. },
  11508. back: {
  11509. height: math.unit(6 + 1 / 12, "feet"),
  11510. weight: math.unit(260, "lb"),
  11511. name: "Back",
  11512. image: {
  11513. source: "./media/characters/zeta/back.svg",
  11514. extra: 1944 / 1858,
  11515. bottom: 0.03
  11516. }
  11517. },
  11518. hand: {
  11519. height: math.unit(1.112, "feet"),
  11520. name: "Hand",
  11521. image: {
  11522. source: "./media/characters/zeta/hand.svg"
  11523. }
  11524. },
  11525. foot: {
  11526. height: math.unit(1.48, "feet"),
  11527. name: "Foot",
  11528. image: {
  11529. source: "./media/characters/zeta/foot.svg"
  11530. }
  11531. },
  11532. },
  11533. [
  11534. {
  11535. name: "Micro",
  11536. height: math.unit(6, "inches")
  11537. },
  11538. {
  11539. name: "Normal",
  11540. height: math.unit(6 + 1 / 12, "feet"),
  11541. default: true
  11542. },
  11543. {
  11544. name: "Macro",
  11545. height: math.unit(20, "feet")
  11546. },
  11547. ]
  11548. ))
  11549. characterMakers.push(() => makeCharacter(
  11550. { name: "Jamie Larsen" },
  11551. {
  11552. front: {
  11553. height: math.unit(6, "feet"),
  11554. weight: math.unit(150, "lb"),
  11555. name: "Front",
  11556. image: {
  11557. source: "./media/characters/jamie-larsen/front.svg",
  11558. extra: 962 / 933,
  11559. bottom: 0.02
  11560. }
  11561. },
  11562. back: {
  11563. height: math.unit(6, "feet"),
  11564. weight: math.unit(150, "lb"),
  11565. name: "Back",
  11566. image: {
  11567. source: "./media/characters/jamie-larsen/back.svg",
  11568. extra: 997 / 946
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Macro",
  11575. height: math.unit(28 + 7 / 12, "feet"),
  11576. default: true
  11577. },
  11578. {
  11579. name: "Macro+",
  11580. height: math.unit(180, "feet")
  11581. },
  11582. {
  11583. name: "Megamacro",
  11584. height: math.unit(10, "miles")
  11585. },
  11586. {
  11587. name: "Gigamacro",
  11588. height: math.unit(200000, "miles")
  11589. },
  11590. ]
  11591. ))
  11592. characterMakers.push(() => makeCharacter(
  11593. { name: "Vance" },
  11594. {
  11595. front: {
  11596. height: math.unit(6, "feet"),
  11597. weight: math.unit(120, "lb"),
  11598. name: "Front",
  11599. image: {
  11600. source: "./media/characters/vance/front.svg",
  11601. extra: 1980 / 1890,
  11602. bottom: 0.09
  11603. }
  11604. },
  11605. back: {
  11606. height: math.unit(6, "feet"),
  11607. weight: math.unit(120, "lb"),
  11608. name: "Back",
  11609. image: {
  11610. source: "./media/characters/vance/back.svg",
  11611. extra: 2081 / 1994,
  11612. bottom: 0.014
  11613. }
  11614. },
  11615. hand: {
  11616. height: math.unit(0.88, "feet"),
  11617. name: "Hand",
  11618. image: {
  11619. source: "./media/characters/vance/hand.svg"
  11620. }
  11621. },
  11622. foot: {
  11623. height: math.unit(0.64, "feet"),
  11624. name: "Foot",
  11625. image: {
  11626. source: "./media/characters/vance/foot.svg"
  11627. }
  11628. },
  11629. },
  11630. [
  11631. {
  11632. name: "Small",
  11633. height: math.unit(90, "feet"),
  11634. default: true
  11635. },
  11636. {
  11637. name: "Macro",
  11638. height: math.unit(100, "meters")
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(15, "miles")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Xochitl" },
  11648. {
  11649. front: {
  11650. height: math.unit(6, "feet"),
  11651. weight: math.unit(180, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/xochitl/front.svg",
  11655. extra: 2297 / 2261,
  11656. bottom: 0.065
  11657. }
  11658. },
  11659. back: {
  11660. height: math.unit(6, "feet"),
  11661. weight: math.unit(180, "lb"),
  11662. name: "Back",
  11663. image: {
  11664. source: "./media/characters/xochitl/back.svg",
  11665. extra: 2386 / 2354,
  11666. bottom: 0.01
  11667. }
  11668. },
  11669. foot: {
  11670. height: math.unit(6 / 5 * 1.15, "feet"),
  11671. weight: math.unit(150, "lb"),
  11672. name: "Foot",
  11673. image: {
  11674. source: "./media/characters/xochitl/foot.svg"
  11675. }
  11676. },
  11677. },
  11678. [
  11679. {
  11680. name: "Macro",
  11681. height: math.unit(80, "feet")
  11682. },
  11683. {
  11684. name: "Macro+",
  11685. height: math.unit(400, "feet"),
  11686. default: true
  11687. },
  11688. {
  11689. name: "Gigamacro",
  11690. height: math.unit(80000, "miles")
  11691. },
  11692. {
  11693. name: "Gigamacro+",
  11694. height: math.unit(400000, "miles")
  11695. },
  11696. {
  11697. name: "Teramacro",
  11698. height: math.unit(300, "AU")
  11699. },
  11700. ]
  11701. ))
  11702. characterMakers.push(() => makeCharacter(
  11703. { name: "Vincent" },
  11704. {
  11705. front: {
  11706. height: math.unit(6, "feet"),
  11707. weight: math.unit(150, "lb"),
  11708. name: "Front",
  11709. image: {
  11710. source: "./media/characters/vincent/front.svg",
  11711. extra: 1130 / 1080,
  11712. bottom: 0.055
  11713. }
  11714. },
  11715. beak: {
  11716. height: math.unit(6 * 0.1, "feet"),
  11717. name: "Beak",
  11718. image: {
  11719. source: "./media/characters/vincent/beak.svg"
  11720. }
  11721. },
  11722. hand: {
  11723. height: math.unit(6 * 0.85, "feet"),
  11724. weight: math.unit(150, "lb"),
  11725. name: "Hand",
  11726. image: {
  11727. source: "./media/characters/vincent/hand.svg"
  11728. }
  11729. },
  11730. foot: {
  11731. height: math.unit(6 * 0.19, "feet"),
  11732. weight: math.unit(150, "lb"),
  11733. name: "Foot",
  11734. image: {
  11735. source: "./media/characters/vincent/foot.svg"
  11736. }
  11737. },
  11738. },
  11739. [
  11740. {
  11741. name: "Base",
  11742. height: math.unit(6 + 5 / 12, "feet"),
  11743. default: true
  11744. },
  11745. {
  11746. name: "Macro",
  11747. height: math.unit(300, "feet")
  11748. },
  11749. {
  11750. name: "Megamacro",
  11751. height: math.unit(2, "miles")
  11752. },
  11753. {
  11754. name: "Gigamacro",
  11755. height: math.unit(1000, "miles")
  11756. },
  11757. ]
  11758. ))
  11759. characterMakers.push(() => makeCharacter(
  11760. { name: "Jay" },
  11761. {
  11762. front: {
  11763. height: math.unit(6 + 2 / 12, "feet"),
  11764. weight: math.unit(265, "lb"),
  11765. name: "Front",
  11766. image: {
  11767. source: "./media/characters/jay/front.svg",
  11768. extra: 1510 / 1430,
  11769. bottom: 0.042
  11770. }
  11771. },
  11772. back: {
  11773. height: math.unit(6 + 2 / 12, "feet"),
  11774. weight: math.unit(265, "lb"),
  11775. name: "Back",
  11776. image: {
  11777. source: "./media/characters/jay/back.svg",
  11778. extra: 1510 / 1430,
  11779. bottom: 0.025
  11780. }
  11781. },
  11782. clothed: {
  11783. height: math.unit(6 + 2 / 12, "feet"),
  11784. weight: math.unit(265, "lb"),
  11785. name: "Front (Clothed)",
  11786. image: {
  11787. source: "./media/characters/jay/clothed.svg",
  11788. extra: 744 / 699,
  11789. bottom: 0.043
  11790. }
  11791. },
  11792. head: {
  11793. height: math.unit(1.772, "feet"),
  11794. name: "Head",
  11795. image: {
  11796. source: "./media/characters/jay/head.svg"
  11797. }
  11798. },
  11799. sizeRay: {
  11800. height: math.unit(1.331, "feet"),
  11801. name: "Size Ray",
  11802. image: {
  11803. source: "./media/characters/jay/size-ray.svg"
  11804. }
  11805. },
  11806. },
  11807. [
  11808. {
  11809. name: "Micro",
  11810. height: math.unit(1, "inch")
  11811. },
  11812. {
  11813. name: "Normal",
  11814. height: math.unit(6 + 2 / 12, "feet"),
  11815. default: true
  11816. },
  11817. {
  11818. name: "Macro",
  11819. height: math.unit(1, "mile")
  11820. },
  11821. {
  11822. name: "Megamacro",
  11823. height: math.unit(100, "miles")
  11824. },
  11825. ]
  11826. ))
  11827. characterMakers.push(() => makeCharacter(
  11828. { name: "Coatl" },
  11829. {
  11830. front: {
  11831. height: math.unit(2, "meters"),
  11832. weight: math.unit(500, "kg"),
  11833. name: "Front",
  11834. image: {
  11835. source: "./media/characters/coatl/front.svg",
  11836. extra: 3948 / 3500,
  11837. bottom: 0.082
  11838. }
  11839. },
  11840. },
  11841. [
  11842. {
  11843. name: "Normal",
  11844. height: math.unit(4, "meters")
  11845. },
  11846. {
  11847. name: "Macro",
  11848. height: math.unit(100, "meters"),
  11849. default: true
  11850. },
  11851. {
  11852. name: "Macro+",
  11853. height: math.unit(300, "meters")
  11854. },
  11855. {
  11856. name: "Megamacro",
  11857. height: math.unit(3, "gigameters")
  11858. },
  11859. {
  11860. name: "Megamacro+",
  11861. height: math.unit(300, "terameters")
  11862. },
  11863. {
  11864. name: "Megamacro++",
  11865. height: math.unit(3, "lightyears")
  11866. },
  11867. ]
  11868. ))
  11869. characterMakers.push(() => makeCharacter(
  11870. { name: "Shiroryu" },
  11871. {
  11872. front: {
  11873. height: math.unit(6, "feet"),
  11874. weight: math.unit(50, "kg"),
  11875. name: "front",
  11876. image: {
  11877. source: "./media/characters/shiroryu/front.svg",
  11878. extra: 1990 / 1935
  11879. }
  11880. },
  11881. },
  11882. [
  11883. {
  11884. name: "Mortal Mingling",
  11885. height: math.unit(3, "meters")
  11886. },
  11887. {
  11888. name: "Kaiju-ish",
  11889. height: math.unit(250, "meters")
  11890. },
  11891. {
  11892. name: "Somewhat Godly",
  11893. height: math.unit(400, "km"),
  11894. default: true
  11895. },
  11896. {
  11897. name: "Planetary",
  11898. height: math.unit(300, "megameters")
  11899. },
  11900. {
  11901. name: "Galaxy-dwarfing",
  11902. height: math.unit(450, "kiloparsecs")
  11903. },
  11904. {
  11905. name: "Universe Eater",
  11906. height: math.unit(150, "gigaparsecs")
  11907. },
  11908. {
  11909. name: "Almost Immeasurable",
  11910. height: math.unit(1.3e266, "yottaparsecs")
  11911. },
  11912. ]
  11913. ))
  11914. characterMakers.push(() => makeCharacter(
  11915. { name: "Umeko" },
  11916. {
  11917. front: {
  11918. height: math.unit(6, "feet"),
  11919. weight: math.unit(150, "lb"),
  11920. name: "Front",
  11921. image: {
  11922. source: "./media/characters/umeko/front.svg",
  11923. extra: 1,
  11924. bottom: 0.019
  11925. }
  11926. },
  11927. frontArmored: {
  11928. height: math.unit(6, "feet"),
  11929. weight: math.unit(150, "lb"),
  11930. name: "Front (Armored)",
  11931. image: {
  11932. source: "./media/characters/umeko/front-armored.svg",
  11933. extra: 1,
  11934. bottom: 0.021
  11935. }
  11936. },
  11937. },
  11938. [
  11939. {
  11940. name: "Macro",
  11941. height: math.unit(220, "feet"),
  11942. default: true
  11943. },
  11944. {
  11945. name: "Guardian Dragon",
  11946. height: math.unit(50, "miles")
  11947. },
  11948. {
  11949. name: "Cosmic",
  11950. height: math.unit(800000, "miles")
  11951. },
  11952. ]
  11953. ))
  11954. characterMakers.push(() => makeCharacter(
  11955. { name: "Cassidy" },
  11956. {
  11957. front: {
  11958. height: math.unit(6, "feet"),
  11959. weight: math.unit(150, "lb"),
  11960. name: "Front",
  11961. image: {
  11962. source: "./media/characters/cassidy/front.svg",
  11963. extra: 1,
  11964. bottom: 0.043
  11965. }
  11966. },
  11967. },
  11968. [
  11969. {
  11970. name: "Canon Height",
  11971. height: math.unit(120, "feet"),
  11972. default: true
  11973. },
  11974. {
  11975. name: "Macro+",
  11976. height: math.unit(400, "feet")
  11977. },
  11978. {
  11979. name: "Macro++",
  11980. height: math.unit(4000, "feet")
  11981. },
  11982. {
  11983. name: "Megamacro",
  11984. height: math.unit(3, "miles")
  11985. },
  11986. ]
  11987. ))
  11988. characterMakers.push(() => makeCharacter(
  11989. { name: "Isaac" },
  11990. {
  11991. front: {
  11992. height: math.unit(6, "feet"),
  11993. weight: math.unit(150, "lb"),
  11994. name: "Front",
  11995. image: {
  11996. source: "./media/characters/isaac/front.svg",
  11997. extra: 896 / 815,
  11998. bottom: 0.11
  11999. }
  12000. },
  12001. },
  12002. [
  12003. {
  12004. name: "Human Size",
  12005. height: math.unit(8, "feet"),
  12006. default: true
  12007. },
  12008. {
  12009. name: "Macro",
  12010. height: math.unit(400, "feet")
  12011. },
  12012. {
  12013. name: "Megamacro",
  12014. height: math.unit(50, "miles")
  12015. },
  12016. {
  12017. name: "Canon Height",
  12018. height: math.unit(200, "AU")
  12019. },
  12020. ]
  12021. ))
  12022. characterMakers.push(() => makeCharacter(
  12023. { name: "Sleekit" },
  12024. {
  12025. front: {
  12026. height: math.unit(6, "feet"),
  12027. weight: math.unit(72, "kg"),
  12028. name: "Front",
  12029. image: {
  12030. source: "./media/characters/sleekit/front.svg",
  12031. extra: 4693 / 4487,
  12032. bottom: 0.012
  12033. }
  12034. },
  12035. },
  12036. [
  12037. {
  12038. name: "Minimum Height",
  12039. height: math.unit(10, "meters")
  12040. },
  12041. {
  12042. name: "Smaller",
  12043. height: math.unit(25, "meters")
  12044. },
  12045. {
  12046. name: "Larger",
  12047. height: math.unit(38, "meters"),
  12048. default: true
  12049. },
  12050. {
  12051. name: "Maximum height",
  12052. height: math.unit(100, "meters")
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Nillia" },
  12058. {
  12059. front: {
  12060. height: math.unit(6, "feet"),
  12061. weight: math.unit(150, "lb"),
  12062. name: "Front",
  12063. image: {
  12064. source: "./media/characters/nillia/front.svg",
  12065. extra: 2195 / 2037,
  12066. bottom: 0.005
  12067. }
  12068. },
  12069. back: {
  12070. height: math.unit(6, "feet"),
  12071. weight: math.unit(150, "lb"),
  12072. name: "Back",
  12073. image: {
  12074. source: "./media/characters/nillia/back.svg",
  12075. extra: 2195 / 2037,
  12076. bottom: 0.005
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Canon Height",
  12083. height: math.unit(489, "feet"),
  12084. default: true
  12085. }
  12086. ]
  12087. ))
  12088. characterMakers.push(() => makeCharacter(
  12089. { name: "Mesmyriza" },
  12090. {
  12091. front: {
  12092. height: math.unit(6, "feet"),
  12093. weight: math.unit(150, "lb"),
  12094. name: "Front",
  12095. image: {
  12096. source: "./media/characters/mesmyriza/front.svg",
  12097. extra: 2067 / 1784,
  12098. bottom: 0.035
  12099. }
  12100. },
  12101. foot: {
  12102. height: math.unit(6 / (250 / 35), "feet"),
  12103. name: "Foot",
  12104. image: {
  12105. source: "./media/characters/mesmyriza/foot.svg"
  12106. }
  12107. },
  12108. },
  12109. [
  12110. {
  12111. name: "Macro",
  12112. height: math.unit(457, "meters"),
  12113. default: true
  12114. },
  12115. {
  12116. name: "Megamacro",
  12117. height: math.unit(8, "megameters")
  12118. },
  12119. ]
  12120. ))
  12121. characterMakers.push(() => makeCharacter(
  12122. { name: "Saudade" },
  12123. {
  12124. front: {
  12125. height: math.unit(6, "feet"),
  12126. weight: math.unit(250, "lb"),
  12127. name: "Front",
  12128. image: {
  12129. source: "./media/characters/saudade/front.svg",
  12130. extra: 1172 / 1139,
  12131. bottom: 0.035
  12132. }
  12133. },
  12134. },
  12135. [
  12136. {
  12137. name: "Micro",
  12138. height: math.unit(3, "inches")
  12139. },
  12140. {
  12141. name: "Normal",
  12142. height: math.unit(6, "feet"),
  12143. default: true
  12144. },
  12145. {
  12146. name: "Macro",
  12147. height: math.unit(50, "feet")
  12148. },
  12149. {
  12150. name: "Megamacro",
  12151. height: math.unit(2800, "feet")
  12152. },
  12153. ]
  12154. ))
  12155. characterMakers.push(() => makeCharacter(
  12156. { name: "Keireer" },
  12157. {
  12158. front: {
  12159. height: math.unit(5 + 4 / 12, "feet"),
  12160. weight: math.unit(100, "lb"),
  12161. name: "Front",
  12162. image: {
  12163. source: "./media/characters/keireer/front.svg",
  12164. extra: 716 / 666,
  12165. bottom: 0.05
  12166. }
  12167. },
  12168. },
  12169. [
  12170. {
  12171. name: "Normal",
  12172. height: math.unit(5 + 4 / 12, "feet"),
  12173. default: true
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Mirja" },
  12179. {
  12180. front: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(90, "kg"),
  12183. name: "Front",
  12184. image: {
  12185. source: "./media/characters/mirja/front.svg",
  12186. extra: 1789 / 1683,
  12187. bottom: 0.05
  12188. }
  12189. },
  12190. frontDressed: {
  12191. height: math.unit(6, "feet"),
  12192. weight: math.unit(90, "lb"),
  12193. name: "Front (Dressed)",
  12194. image: {
  12195. source: "./media/characters/mirja/front-dressed.svg",
  12196. extra: 1789 / 1683,
  12197. bottom: 0.05
  12198. }
  12199. },
  12200. back: {
  12201. height: math.unit(6, "feet"),
  12202. weight: math.unit(90, "lb"),
  12203. name: "Back",
  12204. image: {
  12205. source: "./media/characters/mirja/back.svg",
  12206. extra: 953 / 917,
  12207. bottom: 0.017
  12208. }
  12209. },
  12210. },
  12211. [
  12212. {
  12213. name: "\"Incognito\"",
  12214. height: math.unit(3, "meters")
  12215. },
  12216. {
  12217. name: "Strolling Size",
  12218. height: math.unit(15, "km")
  12219. },
  12220. {
  12221. name: "Larger Strolling Size",
  12222. height: math.unit(400, "km")
  12223. },
  12224. {
  12225. name: "Preferred Size",
  12226. height: math.unit(5000, "km")
  12227. },
  12228. {
  12229. name: "True Size",
  12230. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12231. default: true
  12232. },
  12233. ]
  12234. ))
  12235. characterMakers.push(() => makeCharacter(
  12236. { name: "Nightraver" },
  12237. {
  12238. front: {
  12239. height: math.unit(15, "feet"),
  12240. weight: math.unit(880, "kg"),
  12241. name: "Front",
  12242. image: {
  12243. source: "./media/characters/nightraver/front.svg",
  12244. extra: 2444 / 2160,
  12245. bottom: 0.027
  12246. }
  12247. },
  12248. back: {
  12249. height: math.unit(15, "feet"),
  12250. weight: math.unit(880, "kg"),
  12251. name: "Back",
  12252. image: {
  12253. source: "./media/characters/nightraver/back.svg",
  12254. extra: 2309 / 2180,
  12255. bottom: 0.005
  12256. }
  12257. },
  12258. sole: {
  12259. height: math.unit(2.878, "feet"),
  12260. name: "Sole",
  12261. image: {
  12262. source: "./media/characters/nightraver/sole.svg"
  12263. }
  12264. },
  12265. foot: {
  12266. height: math.unit(2.285, "feet"),
  12267. name: "Foot",
  12268. image: {
  12269. source: "./media/characters/nightraver/foot.svg"
  12270. }
  12271. },
  12272. maw: {
  12273. height: math.unit(2.67, "feet"),
  12274. name: "Maw",
  12275. image: {
  12276. source: "./media/characters/nightraver/maw.svg"
  12277. }
  12278. },
  12279. },
  12280. [
  12281. {
  12282. name: "Micro",
  12283. height: math.unit(1, "cm")
  12284. },
  12285. {
  12286. name: "Normal",
  12287. height: math.unit(15, "feet"),
  12288. default: true
  12289. },
  12290. {
  12291. name: "Macro",
  12292. height: math.unit(300, "feet")
  12293. },
  12294. {
  12295. name: "Megamacro",
  12296. height: math.unit(300, "miles")
  12297. },
  12298. {
  12299. name: "Gigamacro",
  12300. height: math.unit(10000, "miles")
  12301. },
  12302. ]
  12303. ))
  12304. characterMakers.push(() => makeCharacter(
  12305. { name: "Arc" },
  12306. {
  12307. side: {
  12308. height: math.unit(2, "inches"),
  12309. weight: math.unit(5, "grams"),
  12310. name: "Side",
  12311. image: {
  12312. source: "./media/characters/arc/side.svg"
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Micro",
  12319. height: math.unit(2, "inches"),
  12320. default: true
  12321. },
  12322. ]
  12323. ))
  12324. characterMakers.push(() => makeCharacter(
  12325. { name: "Nebula Shahar" },
  12326. {
  12327. front: {
  12328. height: math.unit(1.1938, "meters"),
  12329. weight: math.unit(54, "kg"),
  12330. name: "Front",
  12331. image: {
  12332. source: "./media/characters/nebula-shahar/front.svg",
  12333. extra: 1642 / 1436,
  12334. bottom: 0.06
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Megamicro",
  12341. height: math.unit(0.3, "mm")
  12342. },
  12343. {
  12344. name: "Micro",
  12345. height: math.unit(3, "cm")
  12346. },
  12347. {
  12348. name: "Normal",
  12349. height: math.unit(138, "cm"),
  12350. default: true
  12351. },
  12352. {
  12353. name: "Macro",
  12354. height: math.unit(30, "m")
  12355. },
  12356. ]
  12357. ))
  12358. characterMakers.push(() => makeCharacter(
  12359. { name: "Shayla" },
  12360. {
  12361. front: {
  12362. height: math.unit(5.24, "feet"),
  12363. weight: math.unit(150, "lb"),
  12364. name: "Front",
  12365. image: {
  12366. source: "./media/characters/shayla/front.svg",
  12367. extra: 1512 / 1414,
  12368. bottom: 0.01
  12369. }
  12370. },
  12371. back: {
  12372. height: math.unit(5.24, "feet"),
  12373. weight: math.unit(150, "lb"),
  12374. name: "Back",
  12375. image: {
  12376. source: "./media/characters/shayla/back.svg",
  12377. extra: 1512 / 1414
  12378. }
  12379. },
  12380. hand: {
  12381. height: math.unit(0.7781496062992126, "feet"),
  12382. name: "Hand",
  12383. image: {
  12384. source: "./media/characters/shayla/hand.svg"
  12385. }
  12386. },
  12387. foot: {
  12388. height: math.unit(1.4206036745406823, "feet"),
  12389. name: "Foot",
  12390. image: {
  12391. source: "./media/characters/shayla/foot.svg"
  12392. }
  12393. },
  12394. },
  12395. [
  12396. {
  12397. name: "Micro",
  12398. height: math.unit(0.32, "feet")
  12399. },
  12400. {
  12401. name: "Normal",
  12402. height: math.unit(5.24, "feet"),
  12403. default: true
  12404. },
  12405. {
  12406. name: "Macro",
  12407. height: math.unit(492.12, "feet")
  12408. },
  12409. {
  12410. name: "Megamacro",
  12411. height: math.unit(186.41, "miles")
  12412. },
  12413. ]
  12414. ))
  12415. characterMakers.push(() => makeCharacter(
  12416. { name: "Pia Jr." },
  12417. {
  12418. front: {
  12419. height: math.unit(2.2, "m"),
  12420. weight: math.unit(120, "kg"),
  12421. name: "Front",
  12422. image: {
  12423. source: "./media/characters/pia-jr/front.svg",
  12424. extra: 1000 / 970,
  12425. bottom: 0.035
  12426. }
  12427. },
  12428. hand: {
  12429. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12430. name: "Hand",
  12431. image: {
  12432. source: "./media/characters/pia-jr/hand.svg"
  12433. }
  12434. },
  12435. paw: {
  12436. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12437. name: "Paw",
  12438. image: {
  12439. source: "./media/characters/pia-jr/paw.svg"
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Micro",
  12446. height: math.unit(1.2, "cm")
  12447. },
  12448. {
  12449. name: "Normal",
  12450. height: math.unit(2.2, "m"),
  12451. default: true
  12452. },
  12453. {
  12454. name: "Macro",
  12455. height: math.unit(180, "m")
  12456. },
  12457. {
  12458. name: "Megamacro",
  12459. height: math.unit(420, "km")
  12460. },
  12461. ]
  12462. ))
  12463. characterMakers.push(() => makeCharacter(
  12464. { name: "Pia Sr." },
  12465. {
  12466. front: {
  12467. height: math.unit(2, "m"),
  12468. weight: math.unit(115, "kg"),
  12469. name: "Front",
  12470. image: {
  12471. source: "./media/characters/pia-sr/front.svg",
  12472. extra: 760 / 730,
  12473. bottom: 0.015
  12474. }
  12475. },
  12476. back: {
  12477. height: math.unit(2, "m"),
  12478. weight: math.unit(115, "kg"),
  12479. name: "Back",
  12480. image: {
  12481. source: "./media/characters/pia-sr/back.svg",
  12482. extra: 760 / 730,
  12483. bottom: 0.01
  12484. }
  12485. },
  12486. hand: {
  12487. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12488. name: "Hand",
  12489. image: {
  12490. source: "./media/characters/pia-sr/hand.svg"
  12491. }
  12492. },
  12493. foot: {
  12494. height: math.unit(1.83, "feet"),
  12495. name: "Foot",
  12496. image: {
  12497. source: "./media/characters/pia-sr/foot.svg"
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Micro",
  12504. height: math.unit(88, "mm")
  12505. },
  12506. {
  12507. name: "Normal",
  12508. height: math.unit(2, "m"),
  12509. default: true
  12510. },
  12511. {
  12512. name: "Macro",
  12513. height: math.unit(200, "m")
  12514. },
  12515. {
  12516. name: "Megamacro",
  12517. height: math.unit(420, "km")
  12518. },
  12519. ]
  12520. ))
  12521. characterMakers.push(() => makeCharacter(
  12522. { name: "KIBIBYTE" },
  12523. {
  12524. front: {
  12525. height: math.unit(8 + 2 / 12, "feet"),
  12526. weight: math.unit(300, "lb"),
  12527. name: "Front",
  12528. image: {
  12529. source: "./media/characters/kibibyte/front.svg",
  12530. extra: 2221 / 2098,
  12531. bottom: 0.04
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Normal",
  12538. height: math.unit(8 + 2 / 12, "feet"),
  12539. default: true
  12540. },
  12541. {
  12542. name: "Socialable Macro",
  12543. height: math.unit(50, "feet")
  12544. },
  12545. {
  12546. name: "Macro",
  12547. height: math.unit(300, "feet")
  12548. },
  12549. {
  12550. name: "Megamacro",
  12551. height: math.unit(500, "miles")
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Felix" },
  12557. {
  12558. front: {
  12559. height: math.unit(6, "feet"),
  12560. weight: math.unit(150, "lb"),
  12561. name: "Front",
  12562. image: {
  12563. source: "./media/characters/felix/front.svg",
  12564. extra: 762 / 722,
  12565. bottom: 0.02
  12566. }
  12567. },
  12568. frontClothed: {
  12569. height: math.unit(6, "feet"),
  12570. weight: math.unit(150, "lb"),
  12571. name: "Front (Clothed)",
  12572. image: {
  12573. source: "./media/characters/felix/front-clothed.svg",
  12574. extra: 762 / 722,
  12575. bottom: 0.02
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Normal",
  12582. height: math.unit(6 + 8 / 12, "feet"),
  12583. default: true
  12584. },
  12585. {
  12586. name: "Macro",
  12587. height: math.unit(2600, "feet")
  12588. },
  12589. {
  12590. name: "Megamacro",
  12591. height: math.unit(450, "miles")
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Tobo" },
  12597. {
  12598. front: {
  12599. height: math.unit(6 + 1 / 12, "feet"),
  12600. weight: math.unit(250, "lb"),
  12601. name: "Front",
  12602. image: {
  12603. source: "./media/characters/tobo/front.svg",
  12604. extra: 608 / 586,
  12605. bottom: 0.023
  12606. }
  12607. },
  12608. back: {
  12609. height: math.unit(6 + 1 / 12, "feet"),
  12610. weight: math.unit(250, "lb"),
  12611. name: "Back",
  12612. image: {
  12613. source: "./media/characters/tobo/back.svg",
  12614. extra: 608 / 586
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Nano",
  12621. height: math.unit(2, "nm")
  12622. },
  12623. {
  12624. name: "Megamicro",
  12625. height: math.unit(0.1, "mm")
  12626. },
  12627. {
  12628. name: "Micro",
  12629. height: math.unit(1, "inch"),
  12630. default: true
  12631. },
  12632. {
  12633. name: "Human-sized",
  12634. height: math.unit(6 + 1 / 12, "feet")
  12635. },
  12636. {
  12637. name: "Macro",
  12638. height: math.unit(250, "feet")
  12639. },
  12640. {
  12641. name: "Megamacro",
  12642. height: math.unit(75, "miles")
  12643. },
  12644. {
  12645. name: "Texas-sized",
  12646. height: math.unit(750, "miles")
  12647. },
  12648. {
  12649. name: "Teramacro",
  12650. height: math.unit(50000, "miles")
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Danny Kapowsky" },
  12656. {
  12657. front: {
  12658. height: math.unit(6, "feet"),
  12659. weight: math.unit(269, "lb"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/danny-kapowsky/front.svg",
  12663. extra: 766 / 736,
  12664. bottom: 0.044
  12665. }
  12666. },
  12667. back: {
  12668. height: math.unit(6, "feet"),
  12669. weight: math.unit(269, "lb"),
  12670. name: "Back",
  12671. image: {
  12672. source: "./media/characters/danny-kapowsky/back.svg",
  12673. extra: 797 / 760,
  12674. bottom: 0.025
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Macro",
  12681. height: math.unit(150, "feet"),
  12682. default: true
  12683. },
  12684. {
  12685. name: "Macro+",
  12686. height: math.unit(200, "feet")
  12687. },
  12688. {
  12689. name: "Macro++",
  12690. height: math.unit(300, "feet")
  12691. },
  12692. {
  12693. name: "Macro+++",
  12694. height: math.unit(400, "feet")
  12695. },
  12696. ]
  12697. ))
  12698. characterMakers.push(() => makeCharacter(
  12699. { name: "Finn" },
  12700. {
  12701. side: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(170, "lb"),
  12704. name: "Side",
  12705. image: {
  12706. source: "./media/characters/finn/side.svg",
  12707. extra: 1953 / 1807,
  12708. bottom: 0.057
  12709. }
  12710. },
  12711. },
  12712. [
  12713. {
  12714. name: "Megamacro",
  12715. height: math.unit(14445, "feet"),
  12716. default: true
  12717. },
  12718. ]
  12719. ))
  12720. characterMakers.push(() => makeCharacter(
  12721. { name: "Roy" },
  12722. {
  12723. front: {
  12724. height: math.unit(5 + 6 / 12, "feet"),
  12725. weight: math.unit(125, "lb"),
  12726. name: "Front",
  12727. image: {
  12728. source: "./media/characters/roy/front.svg",
  12729. extra: 1,
  12730. bottom: 0.11
  12731. }
  12732. },
  12733. },
  12734. [
  12735. {
  12736. name: "Micro",
  12737. height: math.unit(3, "inches"),
  12738. default: true
  12739. },
  12740. {
  12741. name: "Normal",
  12742. height: math.unit(5 + 6 / 12, "feet")
  12743. },
  12744. {
  12745. name: "Lesser Macro",
  12746. height: math.unit(60, "feet")
  12747. },
  12748. {
  12749. name: "Greater Macro",
  12750. height: math.unit(120, "feet")
  12751. },
  12752. ]
  12753. ))
  12754. characterMakers.push(() => makeCharacter(
  12755. { name: "Aevsivs" },
  12756. {
  12757. front: {
  12758. height: math.unit(6, "feet"),
  12759. weight: math.unit(100, "lb"),
  12760. name: "Front",
  12761. image: {
  12762. source: "./media/characters/aevsivs/front.svg",
  12763. extra: 1,
  12764. bottom: 0.03
  12765. }
  12766. },
  12767. back: {
  12768. height: math.unit(6, "feet"),
  12769. weight: math.unit(100, "lb"),
  12770. name: "Back",
  12771. image: {
  12772. source: "./media/characters/aevsivs/back.svg"
  12773. }
  12774. },
  12775. },
  12776. [
  12777. {
  12778. name: "Micro",
  12779. height: math.unit(2, "inches"),
  12780. default: true
  12781. },
  12782. {
  12783. name: "Normal",
  12784. height: math.unit(5, "feet")
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "Hildegard" },
  12790. {
  12791. front: {
  12792. height: math.unit(5 + 7 / 12, "feet"),
  12793. weight: math.unit(159, "lb"),
  12794. name: "Front",
  12795. image: {
  12796. source: "./media/characters/hildegard/front.svg",
  12797. extra: 312 / 286,
  12798. bottom: 0.005
  12799. }
  12800. },
  12801. },
  12802. [
  12803. {
  12804. name: "Normal",
  12805. height: math.unit(5 + 7 / 12, "feet"),
  12806. default: true
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Bernard & Wilder" },
  12812. {
  12813. bernard: {
  12814. height: math.unit(2 + 7 / 12, "feet"),
  12815. weight: math.unit(66, "lb"),
  12816. name: "Bernard",
  12817. rename: true,
  12818. image: {
  12819. source: "./media/characters/bernard-wilder/bernard.svg",
  12820. extra: 192 / 128,
  12821. bottom: 0.05
  12822. }
  12823. },
  12824. wilder: {
  12825. height: math.unit(5 + 8 / 12, "feet"),
  12826. weight: math.unit(143, "lb"),
  12827. name: "Wilder",
  12828. rename: true,
  12829. image: {
  12830. source: "./media/characters/bernard-wilder/wilder.svg",
  12831. extra: 361 / 312,
  12832. bottom: 0.02
  12833. }
  12834. },
  12835. },
  12836. [
  12837. {
  12838. name: "Normal",
  12839. height: math.unit(2 + 7 / 12, "feet"),
  12840. default: true
  12841. },
  12842. ]
  12843. ))
  12844. characterMakers.push(() => makeCharacter(
  12845. { name: "Hearth" },
  12846. {
  12847. anthro: {
  12848. height: math.unit(6 + 1 / 12, "feet"),
  12849. weight: math.unit(155, "lb"),
  12850. name: "Anthro",
  12851. image: {
  12852. source: "./media/characters/hearth/anthro.svg",
  12853. extra: 260 / 250,
  12854. bottom: 0.02
  12855. }
  12856. },
  12857. feral: {
  12858. height: math.unit(3.78, "feet"),
  12859. weight: math.unit(35, "kg"),
  12860. name: "Feral",
  12861. image: {
  12862. source: "./media/characters/hearth/feral.svg",
  12863. extra: 153 / 135,
  12864. bottom: 0.03
  12865. }
  12866. },
  12867. },
  12868. [
  12869. {
  12870. name: "Normal",
  12871. height: math.unit(6 + 1 / 12, "feet"),
  12872. default: true
  12873. },
  12874. ]
  12875. ))
  12876. characterMakers.push(() => makeCharacter(
  12877. { name: "Ingrid" },
  12878. {
  12879. front: {
  12880. height: math.unit(6, "feet"),
  12881. weight: math.unit(182, "lb"),
  12882. name: "Front",
  12883. image: {
  12884. source: "./media/characters/ingrid/front.svg",
  12885. extra: 294 / 268,
  12886. bottom: 0.027
  12887. }
  12888. },
  12889. },
  12890. [
  12891. {
  12892. name: "Normal",
  12893. height: math.unit(6, "feet"),
  12894. default: true
  12895. },
  12896. ]
  12897. ))
  12898. characterMakers.push(() => makeCharacter(
  12899. { name: "Malgam" },
  12900. {
  12901. eevee: {
  12902. height: math.unit(2 + 10 / 12, "feet"),
  12903. weight: math.unit(86, "lb"),
  12904. name: "Malgam",
  12905. image: {
  12906. source: "./media/characters/malgam/eevee.svg",
  12907. extra: 218 / 180,
  12908. bottom: 0.2
  12909. }
  12910. },
  12911. sylveon: {
  12912. height: math.unit(4, "feet"),
  12913. weight: math.unit(101, "lb"),
  12914. name: "Future Malgam",
  12915. rename: true,
  12916. image: {
  12917. source: "./media/characters/malgam/sylveon.svg",
  12918. extra: 371 / 325,
  12919. bottom: 0.015
  12920. }
  12921. },
  12922. gigantamax: {
  12923. height: math.unit(50, "feet"),
  12924. name: "Gigantamax Malgam",
  12925. rename: true,
  12926. image: {
  12927. source: "./media/characters/malgam/gigantamax.svg"
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Normal",
  12934. height: math.unit(2 + 10 / 12, "feet"),
  12935. default: true
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Fleur" },
  12941. {
  12942. front: {
  12943. height: math.unit(5 + 11 / 12, "feet"),
  12944. weight: math.unit(188, "lb"),
  12945. name: "Front",
  12946. image: {
  12947. source: "./media/characters/fleur/front.svg",
  12948. extra: 309 / 283,
  12949. bottom: 0.007
  12950. }
  12951. },
  12952. },
  12953. [
  12954. {
  12955. name: "Normal",
  12956. height: math.unit(5 + 11 / 12, "feet"),
  12957. default: true
  12958. },
  12959. ]
  12960. ))
  12961. characterMakers.push(() => makeCharacter(
  12962. { name: "Jude" },
  12963. {
  12964. front: {
  12965. height: math.unit(5 + 4 / 12, "feet"),
  12966. weight: math.unit(122, "lb"),
  12967. name: "Front",
  12968. image: {
  12969. source: "./media/characters/jude/front.svg",
  12970. extra: 288 / 273,
  12971. bottom: 0.03
  12972. }
  12973. },
  12974. },
  12975. [
  12976. {
  12977. name: "Normal",
  12978. height: math.unit(5 + 4 / 12, "feet"),
  12979. default: true
  12980. },
  12981. ]
  12982. ))
  12983. characterMakers.push(() => makeCharacter(
  12984. { name: "Seara" },
  12985. {
  12986. front: {
  12987. height: math.unit(5 + 11 / 12, "feet"),
  12988. weight: math.unit(190, "lb"),
  12989. name: "Front",
  12990. image: {
  12991. source: "./media/characters/seara/front.svg",
  12992. extra: 1,
  12993. bottom: 0.05
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Normal",
  13000. height: math.unit(5 + 11 / 12, "feet"),
  13001. default: true
  13002. },
  13003. ]
  13004. ))
  13005. characterMakers.push(() => makeCharacter(
  13006. { name: "Caspian" },
  13007. {
  13008. front: {
  13009. height: math.unit(16 + 5 / 12, "feet"),
  13010. weight: math.unit(524, "lb"),
  13011. name: "Front",
  13012. image: {
  13013. source: "./media/characters/caspian/front.svg",
  13014. extra: 1,
  13015. bottom: 0.04
  13016. }
  13017. },
  13018. },
  13019. [
  13020. {
  13021. name: "Normal",
  13022. height: math.unit(16 + 5 / 12, "feet"),
  13023. default: true
  13024. },
  13025. ]
  13026. ))
  13027. characterMakers.push(() => makeCharacter(
  13028. { name: "Mika" },
  13029. {
  13030. front: {
  13031. height: math.unit(5 + 7 / 12, "feet"),
  13032. weight: math.unit(170, "lb"),
  13033. name: "Front",
  13034. image: {
  13035. source: "./media/characters/mika/front.svg",
  13036. extra: 1,
  13037. bottom: 0.016
  13038. }
  13039. },
  13040. },
  13041. [
  13042. {
  13043. name: "Normal",
  13044. height: math.unit(5 + 7 / 12, "feet"),
  13045. default: true
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Sol" },
  13051. {
  13052. front: {
  13053. height: math.unit(6 + 2 / 12, "feet"),
  13054. weight: math.unit(268, "lb"),
  13055. name: "Front",
  13056. image: {
  13057. source: "./media/characters/sol/front.svg",
  13058. extra: 247 / 231,
  13059. bottom: 0.05
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Normal",
  13066. height: math.unit(6 + 2 / 12, "feet"),
  13067. default: true
  13068. },
  13069. ]
  13070. ))
  13071. characterMakers.push(() => makeCharacter(
  13072. { name: "Umiko" },
  13073. {
  13074. buizel: {
  13075. height: math.unit(2 + 5 / 12, "feet"),
  13076. weight: math.unit(87, "lb"),
  13077. name: "Buizel",
  13078. image: {
  13079. source: "./media/characters/umiko/buizel.svg",
  13080. extra: 172 / 157,
  13081. bottom: 0.01
  13082. }
  13083. },
  13084. floatzel: {
  13085. height: math.unit(5 + 9 / 12, "feet"),
  13086. weight: math.unit(250, "lb"),
  13087. name: "Floatzel",
  13088. image: {
  13089. source: "./media/characters/umiko/floatzel.svg",
  13090. extra: 262 / 248
  13091. }
  13092. },
  13093. },
  13094. [
  13095. {
  13096. name: "Normal",
  13097. height: math.unit(2 + 5 / 12, "feet"),
  13098. default: true
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Iliac" },
  13104. {
  13105. front: {
  13106. height: math.unit(6 + 2 / 12, "feet"),
  13107. weight: math.unit(146, "lb"),
  13108. name: "Front",
  13109. image: {
  13110. source: "./media/characters/iliac/front.svg",
  13111. extra: 389 / 365,
  13112. bottom: 0.035
  13113. }
  13114. },
  13115. },
  13116. [
  13117. {
  13118. name: "Normal",
  13119. height: math.unit(6 + 2 / 12, "feet"),
  13120. default: true
  13121. },
  13122. ]
  13123. ))
  13124. characterMakers.push(() => makeCharacter(
  13125. { name: "Topaz" },
  13126. {
  13127. front: {
  13128. height: math.unit(6, "feet"),
  13129. weight: math.unit(170, "lb"),
  13130. name: "Front",
  13131. image: {
  13132. source: "./media/characters/topaz/front.svg",
  13133. extra: 317 / 303,
  13134. bottom: 0.055
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Normal",
  13141. height: math.unit(6, "feet"),
  13142. default: true
  13143. },
  13144. ]
  13145. ))
  13146. characterMakers.push(() => makeCharacter(
  13147. { name: "Gabriel" },
  13148. {
  13149. front: {
  13150. height: math.unit(5 + 11 / 12, "feet"),
  13151. weight: math.unit(144, "lb"),
  13152. name: "Front",
  13153. image: {
  13154. source: "./media/characters/gabriel/front.svg",
  13155. extra: 285 / 262,
  13156. bottom: 0.004
  13157. }
  13158. },
  13159. },
  13160. [
  13161. {
  13162. name: "Normal",
  13163. height: math.unit(5 + 11 / 12, "feet"),
  13164. default: true
  13165. },
  13166. ]
  13167. ))
  13168. characterMakers.push(() => makeCharacter(
  13169. { name: "Tempest (Suicune)" },
  13170. {
  13171. side: {
  13172. height: math.unit(6 + 5 / 12, "feet"),
  13173. weight: math.unit(300, "lb"),
  13174. name: "Side",
  13175. image: {
  13176. source: "./media/characters/tempest-suicune/side.svg",
  13177. extra: 195 / 154,
  13178. bottom: 0.04
  13179. }
  13180. },
  13181. },
  13182. [
  13183. {
  13184. name: "Normal",
  13185. height: math.unit(6 + 5 / 12, "feet"),
  13186. default: true
  13187. },
  13188. ]
  13189. ))
  13190. characterMakers.push(() => makeCharacter(
  13191. { name: "Vulcan" },
  13192. {
  13193. front: {
  13194. height: math.unit(7 + 2 / 12, "feet"),
  13195. weight: math.unit(322, "lb"),
  13196. name: "Front",
  13197. image: {
  13198. source: "./media/characters/vulcan/front.svg",
  13199. extra: 154 / 147,
  13200. bottom: 0.04
  13201. }
  13202. },
  13203. },
  13204. [
  13205. {
  13206. name: "Normal",
  13207. height: math.unit(7 + 2 / 12, "feet"),
  13208. default: true
  13209. },
  13210. ]
  13211. ))
  13212. characterMakers.push(() => makeCharacter(
  13213. { name: "Gault" },
  13214. {
  13215. front: {
  13216. height: math.unit(5 + 10 / 12, "feet"),
  13217. weight: math.unit(264, "lb"),
  13218. name: "Front",
  13219. image: {
  13220. source: "./media/characters/gault/front.svg",
  13221. extra: 161 / 140,
  13222. bottom: 0.028
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Normal",
  13229. height: math.unit(5 + 10 / 12, "feet"),
  13230. default: true
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Shard" },
  13236. {
  13237. front: {
  13238. height: math.unit(6, "feet"),
  13239. weight: math.unit(150, "lb"),
  13240. name: "Front",
  13241. image: {
  13242. source: "./media/characters/shard/front.svg",
  13243. extra: 273 / 238,
  13244. bottom: 0.02
  13245. }
  13246. },
  13247. },
  13248. [
  13249. {
  13250. name: "Normal",
  13251. height: math.unit(3 + 6 / 12, "feet"),
  13252. default: true
  13253. },
  13254. ]
  13255. ))
  13256. characterMakers.push(() => makeCharacter(
  13257. { name: "Ashe" },
  13258. {
  13259. front: {
  13260. height: math.unit(5 + 11 / 12, "feet"),
  13261. weight: math.unit(146, "lb"),
  13262. name: "Front",
  13263. image: {
  13264. source: "./media/characters/ashe/front.svg",
  13265. extra: 400 / 373,
  13266. bottom: 0.01
  13267. }
  13268. },
  13269. },
  13270. [
  13271. {
  13272. name: "Normal",
  13273. height: math.unit(5 + 11 / 12, "feet"),
  13274. default: true
  13275. },
  13276. ]
  13277. ))
  13278. characterMakers.push(() => makeCharacter(
  13279. { name: "Beatrix" },
  13280. {
  13281. front: {
  13282. height: math.unit(5 + 5 / 12, "feet"),
  13283. weight: math.unit(135, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/beatrix/front.svg",
  13287. extra: 392 / 379,
  13288. bottom: 0.01
  13289. }
  13290. },
  13291. },
  13292. [
  13293. {
  13294. name: "Normal",
  13295. height: math.unit(6, "feet"),
  13296. default: true
  13297. },
  13298. ]
  13299. ))
  13300. characterMakers.push(() => makeCharacter(
  13301. { name: "Ignatius" },
  13302. {
  13303. front: {
  13304. height: math.unit(6, "feet"),
  13305. weight: math.unit(150, "lb"),
  13306. name: "Front",
  13307. image: {
  13308. source: "./media/characters/ignatius/front.svg",
  13309. extra: 245 / 222,
  13310. bottom: 0.01
  13311. }
  13312. },
  13313. },
  13314. [
  13315. {
  13316. name: "Normal",
  13317. height: math.unit(5 + 5 / 12, "feet"),
  13318. default: true
  13319. },
  13320. ]
  13321. ))
  13322. characterMakers.push(() => makeCharacter(
  13323. { name: "Mei Li" },
  13324. {
  13325. front: {
  13326. height: math.unit(6 + 2 / 12, "feet"),
  13327. weight: math.unit(138, "lb"),
  13328. name: "Front",
  13329. image: {
  13330. source: "./media/characters/mei-li/front.svg",
  13331. extra: 237 / 229,
  13332. bottom: 0.03
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Normal",
  13339. height: math.unit(6 + 2 / 12, "feet"),
  13340. default: true
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Puru" },
  13346. {
  13347. front: {
  13348. height: math.unit(2 + 4 / 12, "feet"),
  13349. weight: math.unit(62, "lb"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/puru/front.svg",
  13353. extra: 206 / 149,
  13354. bottom: 0.06
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Normal",
  13361. height: math.unit(2 + 4 / 12, "feet"),
  13362. default: true
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Kee" },
  13368. {
  13369. taur: {
  13370. height: math.unit(11, "feet"),
  13371. weight: math.unit(500, "lb"),
  13372. name: "Taur",
  13373. image: {
  13374. source: "./media/characters/kee/taur.svg",
  13375. extra: 1,
  13376. bottom: 0.04
  13377. }
  13378. },
  13379. },
  13380. [
  13381. {
  13382. name: "Normal",
  13383. height: math.unit(11, "feet"),
  13384. default: true
  13385. },
  13386. ]
  13387. ))
  13388. characterMakers.push(() => makeCharacter(
  13389. { name: "Cobalt (Dracha)" },
  13390. {
  13391. anthro: {
  13392. height: math.unit(7, "feet"),
  13393. weight: math.unit(190, "lb"),
  13394. name: "Anthro",
  13395. image: {
  13396. source: "./media/characters/cobalt-dracha/anthro.svg",
  13397. extra: 231 / 225,
  13398. bottom: 0.04
  13399. }
  13400. },
  13401. feral: {
  13402. height: math.unit(9 + 7 / 12, "feet"),
  13403. weight: math.unit(294, "lb"),
  13404. name: "Feral",
  13405. image: {
  13406. source: "./media/characters/cobalt-dracha/feral.svg",
  13407. extra: 692 / 633,
  13408. bottom: 0.05
  13409. }
  13410. },
  13411. },
  13412. [
  13413. {
  13414. name: "Normal",
  13415. height: math.unit(7, "feet"),
  13416. default: true
  13417. },
  13418. ]
  13419. ))
  13420. characterMakers.push(() => makeCharacter(
  13421. { name: "Java" },
  13422. {
  13423. fallen: {
  13424. height: math.unit(11 + 8 / 12, "feet"),
  13425. weight: math.unit(485, "lb"),
  13426. name: "Java (Fallen)",
  13427. rename: true,
  13428. image: {
  13429. source: "./media/characters/java/fallen.svg",
  13430. extra: 226 / 208,
  13431. bottom: 0.005
  13432. }
  13433. },
  13434. godkin: {
  13435. height: math.unit(10 + 6 / 12, "feet"),
  13436. weight: math.unit(328, "lb"),
  13437. name: "Java (Godkin)",
  13438. rename: true,
  13439. image: {
  13440. source: "./media/characters/java/godkin.svg",
  13441. extra: 270 / 262,
  13442. bottom: 0.02
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Normal",
  13449. height: math.unit(11 + 8 / 12, "feet"),
  13450. default: true
  13451. },
  13452. ]
  13453. ))
  13454. characterMakers.push(() => makeCharacter(
  13455. { name: "Skoll" },
  13456. {
  13457. front: {
  13458. height: math.unit(7 + 8 / 12, "feet"),
  13459. weight: math.unit(320, "lb"),
  13460. name: "Front",
  13461. image: {
  13462. source: "./media/characters/skoll/front.svg",
  13463. extra: 232 / 220,
  13464. bottom: 0.02
  13465. }
  13466. },
  13467. },
  13468. [
  13469. {
  13470. name: "Normal",
  13471. height: math.unit(7 + 8 / 12, "feet"),
  13472. default: true
  13473. },
  13474. ]
  13475. ))
  13476. characterMakers.push(() => makeCharacter(
  13477. { name: "Purna" },
  13478. {
  13479. front: {
  13480. height: math.unit(5 + 9 / 12, "feet"),
  13481. weight: math.unit(170, "lb"),
  13482. name: "Front",
  13483. image: {
  13484. source: "./media/characters/purna/front.svg",
  13485. extra: 239 / 229,
  13486. bottom: 0.01
  13487. }
  13488. },
  13489. },
  13490. [
  13491. {
  13492. name: "Normal",
  13493. height: math.unit(5 + 9 / 12, "feet"),
  13494. default: true
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Kuva" },
  13500. {
  13501. front: {
  13502. height: math.unit(5 + 9 / 12, "feet"),
  13503. weight: math.unit(142, "lb"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/kuva/front.svg",
  13507. extra: 281 / 271,
  13508. bottom: 0.006
  13509. }
  13510. },
  13511. },
  13512. [
  13513. {
  13514. name: "Normal",
  13515. height: math.unit(5 + 9 / 12, "feet"),
  13516. default: true
  13517. },
  13518. ]
  13519. ))
  13520. characterMakers.push(() => makeCharacter(
  13521. { name: "Embra" },
  13522. {
  13523. anthro: {
  13524. height: math.unit(9 + 2 / 12, "feet"),
  13525. weight: math.unit(270, "lb"),
  13526. name: "Anthro",
  13527. image: {
  13528. source: "./media/characters/embra/anthro.svg",
  13529. extra: 200 / 187,
  13530. bottom: 0.02
  13531. }
  13532. },
  13533. feral: {
  13534. height: math.unit(18 + 8 / 12, "feet"),
  13535. weight: math.unit(576, "lb"),
  13536. name: "Feral",
  13537. image: {
  13538. source: "./media/characters/embra/feral.svg",
  13539. extra: 152 / 137,
  13540. bottom: 0.037
  13541. }
  13542. },
  13543. },
  13544. [
  13545. {
  13546. name: "Normal",
  13547. height: math.unit(9 + 2 / 12, "feet"),
  13548. default: true
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Grottos" },
  13554. {
  13555. anthro: {
  13556. height: math.unit(10 + 9 / 12, "feet"),
  13557. weight: math.unit(224, "lb"),
  13558. name: "Anthro",
  13559. image: {
  13560. source: "./media/characters/grottos/anthro.svg",
  13561. extra: 350 / 332,
  13562. bottom: 0.045
  13563. }
  13564. },
  13565. feral: {
  13566. height: math.unit(20 + 7 / 12, "feet"),
  13567. weight: math.unit(629, "lb"),
  13568. name: "Feral",
  13569. image: {
  13570. source: "./media/characters/grottos/feral.svg",
  13571. extra: 207 / 190,
  13572. bottom: 0.05
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Normal",
  13579. height: math.unit(10 + 9 / 12, "feet"),
  13580. default: true
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Frifna" },
  13586. {
  13587. anthro: {
  13588. height: math.unit(9 + 6 / 12, "feet"),
  13589. weight: math.unit(298, "lb"),
  13590. name: "Anthro",
  13591. image: {
  13592. source: "./media/characters/frifna/anthro.svg",
  13593. extra: 282 / 269,
  13594. bottom: 0.015
  13595. }
  13596. },
  13597. feral: {
  13598. height: math.unit(16 + 2 / 12, "feet"),
  13599. weight: math.unit(624, "lb"),
  13600. name: "Feral",
  13601. image: {
  13602. source: "./media/characters/frifna/feral.svg"
  13603. }
  13604. },
  13605. },
  13606. [
  13607. {
  13608. name: "Normal",
  13609. height: math.unit(9 + 6 / 12, "feet"),
  13610. default: true
  13611. },
  13612. ]
  13613. ))
  13614. characterMakers.push(() => makeCharacter(
  13615. { name: "Elise" },
  13616. {
  13617. front: {
  13618. height: math.unit(6 + 2 / 12, "feet"),
  13619. weight: math.unit(168, "lb"),
  13620. name: "Front",
  13621. image: {
  13622. source: "./media/characters/elise/front.svg",
  13623. extra: 276 / 271
  13624. }
  13625. },
  13626. },
  13627. [
  13628. {
  13629. name: "Normal",
  13630. height: math.unit(6 + 2 / 12, "feet"),
  13631. default: true
  13632. },
  13633. ]
  13634. ))
  13635. characterMakers.push(() => makeCharacter(
  13636. { name: "Glade" },
  13637. {
  13638. front: {
  13639. height: math.unit(5 + 10 / 12, "feet"),
  13640. weight: math.unit(210, "lb"),
  13641. name: "Front",
  13642. image: {
  13643. source: "./media/characters/glade/front.svg",
  13644. extra: 258 / 247,
  13645. bottom: 0.008
  13646. }
  13647. },
  13648. },
  13649. [
  13650. {
  13651. name: "Normal",
  13652. height: math.unit(5 + 10 / 12, "feet"),
  13653. default: true
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "Rina" },
  13659. {
  13660. front: {
  13661. height: math.unit(5 + 10 / 12, "feet"),
  13662. weight: math.unit(129, "lb"),
  13663. name: "Front",
  13664. image: {
  13665. source: "./media/characters/rina/front.svg",
  13666. extra: 266 / 255,
  13667. bottom: 0.005
  13668. }
  13669. },
  13670. },
  13671. [
  13672. {
  13673. name: "Normal",
  13674. height: math.unit(5 + 10 / 12, "feet"),
  13675. default: true
  13676. },
  13677. ]
  13678. ))
  13679. characterMakers.push(() => makeCharacter(
  13680. { name: "Veronica" },
  13681. {
  13682. front: {
  13683. height: math.unit(6 + 1 / 12, "feet"),
  13684. weight: math.unit(192, "lb"),
  13685. name: "Front",
  13686. image: {
  13687. source: "./media/characters/veronica/front.svg",
  13688. extra: 319 / 309,
  13689. bottom: 0.005
  13690. }
  13691. },
  13692. },
  13693. [
  13694. {
  13695. name: "Normal",
  13696. height: math.unit(6 + 1 / 12, "feet"),
  13697. default: true
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Braxton" },
  13703. {
  13704. front: {
  13705. height: math.unit(9 + 3 / 12, "feet"),
  13706. weight: math.unit(1100, "lb"),
  13707. name: "Front",
  13708. image: {
  13709. source: "./media/characters/braxton/front.svg",
  13710. extra: 1057 / 984,
  13711. bottom: 0.05
  13712. }
  13713. },
  13714. },
  13715. [
  13716. {
  13717. name: "Normal",
  13718. height: math.unit(9 + 3 / 12, "feet")
  13719. },
  13720. {
  13721. name: "Giant",
  13722. height: math.unit(300, "feet"),
  13723. default: true
  13724. },
  13725. {
  13726. name: "Macro",
  13727. height: math.unit(700, "feet")
  13728. },
  13729. {
  13730. name: "Megamacro",
  13731. height: math.unit(6000, "feet")
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Blue Feyonics" },
  13737. {
  13738. front: {
  13739. height: math.unit(6 + 7 / 12, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/blue-feyonics/front.svg",
  13744. extra: 1403 / 1306,
  13745. bottom: 0.047
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Normal",
  13752. height: math.unit(6 + 7 / 12, "feet"),
  13753. default: true
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "Maxwell" },
  13759. {
  13760. front: {
  13761. height: math.unit(1.8, "meters"),
  13762. weight: math.unit(60, "kg"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/maxwell/front.svg",
  13766. extra: 2060 / 1873
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Micro",
  13773. height: math.unit(1, "mm")
  13774. },
  13775. {
  13776. name: "Normal",
  13777. height: math.unit(1.8, "meter"),
  13778. default: true
  13779. },
  13780. {
  13781. name: "Macro",
  13782. height: math.unit(30, "meters")
  13783. },
  13784. {
  13785. name: "Megamacro",
  13786. height: math.unit(10, "km")
  13787. },
  13788. ]
  13789. ))
  13790. characterMakers.push(() => makeCharacter(
  13791. { name: "Jack" },
  13792. {
  13793. front: {
  13794. height: math.unit(6, "feet"),
  13795. weight: math.unit(150, "lb"),
  13796. name: "Front",
  13797. image: {
  13798. source: "./media/characters/jack/front.svg",
  13799. extra: 1754 / 1640,
  13800. bottom: 0.01
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Normal",
  13807. height: math.unit(80000, "feet"),
  13808. default: true
  13809. },
  13810. {
  13811. name: "Max size",
  13812. height: math.unit(10, "lightyears")
  13813. },
  13814. ]
  13815. ))
  13816. characterMakers.push(() => makeCharacter(
  13817. { name: "Cafat" },
  13818. {
  13819. upright: {
  13820. height: math.unit(7, "feet"),
  13821. weight: math.unit(170, "lb"),
  13822. name: "Upright",
  13823. image: {
  13824. source: "./media/characters/cafat/upright.svg",
  13825. bottom: 0.01
  13826. }
  13827. },
  13828. uprightFull: {
  13829. height: math.unit(7, "feet"),
  13830. weight: math.unit(170, "lb"),
  13831. name: "Upright (Full)",
  13832. image: {
  13833. source: "./media/characters/cafat/upright-full.svg",
  13834. bottom: 0.01
  13835. }
  13836. },
  13837. side: {
  13838. height: math.unit(5, "feet"),
  13839. weight: math.unit(150, "lb"),
  13840. name: "Side",
  13841. image: {
  13842. source: "./media/characters/cafat/side.svg"
  13843. }
  13844. },
  13845. },
  13846. [
  13847. {
  13848. name: "Small",
  13849. height: math.unit(7, "feet"),
  13850. default: true
  13851. },
  13852. {
  13853. name: "Large",
  13854. height: math.unit(15.5, "feet")
  13855. },
  13856. ]
  13857. ))
  13858. characterMakers.push(() => makeCharacter(
  13859. { name: "Verin Raharra" },
  13860. {
  13861. front: {
  13862. height: math.unit(6, "feet"),
  13863. weight: math.unit(150, "lb"),
  13864. name: "Front",
  13865. image: {
  13866. source: "./media/characters/verin-raharra/front.svg",
  13867. extra: 5019 / 4835,
  13868. bottom: 0.023
  13869. }
  13870. },
  13871. },
  13872. [
  13873. {
  13874. name: "Normal",
  13875. height: math.unit(7 + 5 / 12, "feet"),
  13876. default: true
  13877. },
  13878. {
  13879. name: "Upsized",
  13880. height: math.unit(20, "feet")
  13881. },
  13882. ]
  13883. ))
  13884. characterMakers.push(() => makeCharacter(
  13885. { name: "Nakata" },
  13886. {
  13887. front: {
  13888. height: math.unit(7, "feet"),
  13889. weight: math.unit(230, "lb"),
  13890. name: "Front",
  13891. image: {
  13892. source: "./media/characters/nakata/front.svg",
  13893. extra: 1.005,
  13894. bottom: 0.01
  13895. }
  13896. },
  13897. },
  13898. [
  13899. {
  13900. name: "Normal",
  13901. height: math.unit(7, "feet"),
  13902. default: true
  13903. },
  13904. {
  13905. name: "Big",
  13906. height: math.unit(14, "feet")
  13907. },
  13908. {
  13909. name: "Macro",
  13910. height: math.unit(400, "feet")
  13911. },
  13912. ]
  13913. ))
  13914. characterMakers.push(() => makeCharacter(
  13915. { name: "Lily" },
  13916. {
  13917. front: {
  13918. height: math.unit(4.91, "feet"),
  13919. weight: math.unit(100, "lb"),
  13920. name: "Front",
  13921. image: {
  13922. source: "./media/characters/lily/front.svg",
  13923. extra: 1585 / 1415,
  13924. bottom: 0.02
  13925. }
  13926. },
  13927. },
  13928. [
  13929. {
  13930. name: "Normal",
  13931. height: math.unit(4.91, "feet"),
  13932. default: true
  13933. },
  13934. ]
  13935. ))
  13936. characterMakers.push(() => makeCharacter(
  13937. { name: "Sheila" },
  13938. {
  13939. laying: {
  13940. height: math.unit(4 + 4 / 12, "feet"),
  13941. weight: math.unit(600, "lb"),
  13942. name: "Laying",
  13943. image: {
  13944. source: "./media/characters/sheila/laying.svg",
  13945. extra: 1333 / 1265,
  13946. bottom: 0.16
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Normal",
  13953. height: math.unit(4 + 4 / 12, "feet"),
  13954. default: true
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Sax" },
  13960. {
  13961. front: {
  13962. height: math.unit(6, "feet"),
  13963. weight: math.unit(190, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/sax/front.svg",
  13967. extra: 1187 / 973,
  13968. bottom: 0.042
  13969. }
  13970. },
  13971. },
  13972. [
  13973. {
  13974. name: "Micro",
  13975. height: math.unit(4, "inches"),
  13976. default: true
  13977. },
  13978. ]
  13979. ))
  13980. characterMakers.push(() => makeCharacter(
  13981. { name: "Pandora" },
  13982. {
  13983. front: {
  13984. height: math.unit(6, "feet"),
  13985. weight: math.unit(150, "lb"),
  13986. name: "Front",
  13987. image: {
  13988. source: "./media/characters/pandora/front.svg",
  13989. extra: 2720 / 2556,
  13990. bottom: 0.015
  13991. }
  13992. },
  13993. back: {
  13994. height: math.unit(6, "feet"),
  13995. weight: math.unit(150, "lb"),
  13996. name: "Back",
  13997. image: {
  13998. source: "./media/characters/pandora/back.svg",
  13999. extra: 2720 / 2556,
  14000. bottom: 0.01
  14001. }
  14002. },
  14003. beans: {
  14004. height: math.unit(6 / 8, "feet"),
  14005. name: "Beans",
  14006. image: {
  14007. source: "./media/characters/pandora/beans.svg"
  14008. }
  14009. },
  14010. skirt: {
  14011. height: math.unit(6, "feet"),
  14012. weight: math.unit(150, "lb"),
  14013. name: "Skirt",
  14014. image: {
  14015. source: "./media/characters/pandora/skirt.svg",
  14016. extra: 1622 / 1525,
  14017. bottom: 0.015
  14018. }
  14019. },
  14020. hoodie: {
  14021. height: math.unit(6, "feet"),
  14022. weight: math.unit(150, "lb"),
  14023. name: "Hoodie",
  14024. image: {
  14025. source: "./media/characters/pandora/hoodie.svg",
  14026. extra: 1622 / 1525,
  14027. bottom: 0.015
  14028. }
  14029. },
  14030. casual: {
  14031. height: math.unit(6, "feet"),
  14032. weight: math.unit(150, "lb"),
  14033. name: "Casual",
  14034. image: {
  14035. source: "./media/characters/pandora/casual.svg",
  14036. extra: 1622 / 1525,
  14037. bottom: 0.015
  14038. }
  14039. },
  14040. },
  14041. [
  14042. {
  14043. name: "Normal",
  14044. height: math.unit(6, "feet")
  14045. },
  14046. {
  14047. name: "Big Steppy",
  14048. height: math.unit(1, "km"),
  14049. default: true
  14050. },
  14051. ]
  14052. ))
  14053. characterMakers.push(() => makeCharacter(
  14054. { name: "Venio Darcony" },
  14055. {
  14056. side: {
  14057. height: math.unit(10, "feet"),
  14058. weight: math.unit(800, "kg"),
  14059. name: "Side",
  14060. image: {
  14061. source: "./media/characters/venio-darcony/side.svg",
  14062. extra: 1373 / 1003,
  14063. bottom: 0.037
  14064. }
  14065. },
  14066. front: {
  14067. height: math.unit(19, "feet"),
  14068. weight: math.unit(800, "kg"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/venio-darcony/front.svg"
  14072. }
  14073. },
  14074. back: {
  14075. height: math.unit(19, "feet"),
  14076. weight: math.unit(800, "kg"),
  14077. name: "Back",
  14078. image: {
  14079. source: "./media/characters/venio-darcony/back.svg"
  14080. }
  14081. },
  14082. sideNsfw: {
  14083. height: math.unit(10, "feet"),
  14084. weight: math.unit(800, "kg"),
  14085. name: "Side (NSFW)",
  14086. image: {
  14087. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14088. extra: 1373 / 1003,
  14089. bottom: 0.037
  14090. }
  14091. },
  14092. frontNsfw: {
  14093. height: math.unit(19, "feet"),
  14094. weight: math.unit(800, "kg"),
  14095. name: "Front (NSFW)",
  14096. image: {
  14097. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14098. }
  14099. },
  14100. backNsfw: {
  14101. height: math.unit(19, "feet"),
  14102. weight: math.unit(800, "kg"),
  14103. name: "Back (NSFW)",
  14104. image: {
  14105. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14106. }
  14107. },
  14108. sideArmored: {
  14109. height: math.unit(10, "feet"),
  14110. weight: math.unit(800, "kg"),
  14111. name: "Side (Armored)",
  14112. image: {
  14113. source: "./media/characters/venio-darcony/side-armored.svg",
  14114. extra: 1373 / 1003,
  14115. bottom: 0.037
  14116. }
  14117. },
  14118. frontArmored: {
  14119. height: math.unit(19, "feet"),
  14120. weight: math.unit(900, "kg"),
  14121. name: "Front (Armored)",
  14122. image: {
  14123. source: "./media/characters/venio-darcony/front-armored.svg"
  14124. }
  14125. },
  14126. backArmored: {
  14127. height: math.unit(19, "feet"),
  14128. weight: math.unit(900, "kg"),
  14129. name: "Back (Armored)",
  14130. image: {
  14131. source: "./media/characters/venio-darcony/back-armored.svg"
  14132. }
  14133. },
  14134. sword: {
  14135. height: math.unit(10, "feet"),
  14136. weight: math.unit(50, "lb"),
  14137. name: "Sword",
  14138. image: {
  14139. source: "./media/characters/venio-darcony/sword.svg"
  14140. }
  14141. },
  14142. },
  14143. [
  14144. {
  14145. name: "Normal",
  14146. height: math.unit(10, "feet")
  14147. },
  14148. {
  14149. name: "Macro",
  14150. height: math.unit(130, "feet"),
  14151. default: true
  14152. },
  14153. {
  14154. name: "Macro+",
  14155. height: math.unit(240, "feet")
  14156. },
  14157. ]
  14158. ))
  14159. characterMakers.push(() => makeCharacter(
  14160. { name: "Veski" },
  14161. {
  14162. front: {
  14163. height: math.unit(6, "feet"),
  14164. weight: math.unit(150, "lb"),
  14165. name: "Front",
  14166. image: {
  14167. source: "./media/characters/veski/front.svg",
  14168. extra: 1299 / 1225,
  14169. bottom: 0.04
  14170. }
  14171. },
  14172. back: {
  14173. height: math.unit(6, "feet"),
  14174. weight: math.unit(150, "lb"),
  14175. name: "Back",
  14176. image: {
  14177. source: "./media/characters/veski/back.svg",
  14178. extra: 1299 / 1225,
  14179. bottom: 0.008
  14180. }
  14181. },
  14182. maw: {
  14183. height: math.unit(1.5 * 1.21, "feet"),
  14184. name: "Maw",
  14185. image: {
  14186. source: "./media/characters/veski/maw.svg"
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Macro",
  14193. height: math.unit(2, "km"),
  14194. default: true
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Isabelle" },
  14200. {
  14201. front: {
  14202. height: math.unit(5 + 7 / 12, "feet"),
  14203. name: "Front",
  14204. image: {
  14205. source: "./media/characters/isabelle/front.svg",
  14206. extra: 2130 / 1976,
  14207. bottom: 0.05
  14208. }
  14209. },
  14210. },
  14211. [
  14212. {
  14213. name: "Supermicro",
  14214. height: math.unit(10, "micrometers")
  14215. },
  14216. {
  14217. name: "Micro",
  14218. height: math.unit(1, "inch")
  14219. },
  14220. {
  14221. name: "Tiny",
  14222. height: math.unit(5, "inches")
  14223. },
  14224. {
  14225. name: "Standard",
  14226. height: math.unit(5 + 7 / 12, "inches")
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(80, "meters"),
  14231. default: true
  14232. },
  14233. {
  14234. name: "Megamacro",
  14235. height: math.unit(250, "meters")
  14236. },
  14237. {
  14238. name: "Gigamacro",
  14239. height: math.unit(5, "km")
  14240. },
  14241. {
  14242. name: "Cosmic",
  14243. height: math.unit(2.5e6, "miles")
  14244. },
  14245. ]
  14246. ))
  14247. characterMakers.push(() => makeCharacter(
  14248. { name: "Hanzo" },
  14249. {
  14250. front: {
  14251. height: math.unit(6, "feet"),
  14252. weight: math.unit(150, "lb"),
  14253. name: "Front",
  14254. image: {
  14255. source: "./media/characters/hanzo/front.svg",
  14256. extra: 374 / 344,
  14257. bottom: 0.02
  14258. }
  14259. },
  14260. },
  14261. [
  14262. {
  14263. name: "Normal",
  14264. height: math.unit(8, "feet"),
  14265. default: true
  14266. },
  14267. ]
  14268. ))
  14269. characterMakers.push(() => makeCharacter(
  14270. { name: "Anna" },
  14271. {
  14272. front: {
  14273. height: math.unit(7, "feet"),
  14274. weight: math.unit(130, "lb"),
  14275. name: "Front",
  14276. image: {
  14277. source: "./media/characters/anna/front.svg",
  14278. extra: 169 / 145,
  14279. bottom: 0.06
  14280. }
  14281. },
  14282. full: {
  14283. height: math.unit(4.96, "feet"),
  14284. weight: math.unit(220, "lb"),
  14285. name: "Full",
  14286. image: {
  14287. source: "./media/characters/anna/full.svg",
  14288. extra: 138 / 114,
  14289. bottom: 0.15
  14290. }
  14291. },
  14292. tongue: {
  14293. height: math.unit(2.53, "feet"),
  14294. name: "Tongue",
  14295. image: {
  14296. source: "./media/characters/anna/tongue.svg"
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Normal",
  14303. height: math.unit(7, "feet"),
  14304. default: true
  14305. },
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Ian Corvid" },
  14310. {
  14311. front: {
  14312. height: math.unit(7, "feet"),
  14313. weight: math.unit(150, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/ian-corvid/front.svg",
  14317. extra: 150 / 142,
  14318. bottom: 0.02
  14319. }
  14320. },
  14321. back: {
  14322. height: math.unit(7, "feet"),
  14323. weight: math.unit(150, "lb"),
  14324. name: "Back",
  14325. image: {
  14326. source: "./media/characters/ian-corvid/back.svg",
  14327. extra: 150 / 143,
  14328. bottom: 0.01
  14329. }
  14330. },
  14331. stomping: {
  14332. height: math.unit(7, "feet"),
  14333. weight: math.unit(150, "lb"),
  14334. name: "Stomping",
  14335. image: {
  14336. source: "./media/characters/ian-corvid/stomping.svg",
  14337. extra: 76 / 72
  14338. }
  14339. },
  14340. sitting: {
  14341. height: math.unit(7 / 1.8, "feet"),
  14342. weight: math.unit(150, "lb"),
  14343. name: "Sitting",
  14344. image: {
  14345. source: "./media/characters/ian-corvid/sitting.svg",
  14346. extra: 1400 / 1269,
  14347. bottom: 0.15
  14348. }
  14349. },
  14350. },
  14351. [
  14352. {
  14353. name: "Tiny Microw",
  14354. height: math.unit(1, "inch")
  14355. },
  14356. {
  14357. name: "Microw",
  14358. height: math.unit(6, "inches")
  14359. },
  14360. {
  14361. name: "Crow",
  14362. height: math.unit(7 + 1 / 12, "feet"),
  14363. default: true
  14364. },
  14365. {
  14366. name: "Macrow",
  14367. height: math.unit(176, "feet")
  14368. },
  14369. ]
  14370. ))
  14371. characterMakers.push(() => makeCharacter(
  14372. { name: "Natalie Kellon" },
  14373. {
  14374. front: {
  14375. height: math.unit(5 + 7 / 12, "feet"),
  14376. weight: math.unit(147, "lb"),
  14377. name: "Front",
  14378. image: {
  14379. source: "./media/characters/natalie-kellon/front.svg",
  14380. extra: 1214 / 1141,
  14381. bottom: 0.02
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Micro",
  14388. height: math.unit(1 / 16, "inch")
  14389. },
  14390. {
  14391. name: "Tiny",
  14392. height: math.unit(4, "inches")
  14393. },
  14394. {
  14395. name: "Normal",
  14396. height: math.unit(5 + 7 / 12, "feet"),
  14397. default: true
  14398. },
  14399. {
  14400. name: "Amazon",
  14401. height: math.unit(12, "feet")
  14402. },
  14403. {
  14404. name: "Giantess",
  14405. height: math.unit(160, "meters")
  14406. },
  14407. {
  14408. name: "Titaness",
  14409. height: math.unit(800, "meters")
  14410. },
  14411. ]
  14412. ))
  14413. characterMakers.push(() => makeCharacter(
  14414. { name: "Alluria" },
  14415. {
  14416. front: {
  14417. height: math.unit(6, "feet"),
  14418. weight: math.unit(150, "lb"),
  14419. name: "Front",
  14420. image: {
  14421. source: "./media/characters/alluria/front.svg",
  14422. extra: 806 / 738,
  14423. bottom: 0.01
  14424. }
  14425. },
  14426. side: {
  14427. height: math.unit(6, "feet"),
  14428. weight: math.unit(150, "lb"),
  14429. name: "Side",
  14430. image: {
  14431. source: "./media/characters/alluria/side.svg",
  14432. extra: 800 / 750,
  14433. }
  14434. },
  14435. back: {
  14436. height: math.unit(6, "feet"),
  14437. weight: math.unit(150, "lb"),
  14438. name: "Back",
  14439. image: {
  14440. source: "./media/characters/alluria/back.svg",
  14441. extra: 806 / 738,
  14442. }
  14443. },
  14444. frontMaid: {
  14445. height: math.unit(6, "feet"),
  14446. weight: math.unit(150, "lb"),
  14447. name: "Front (Maid)",
  14448. image: {
  14449. source: "./media/characters/alluria/front-maid.svg",
  14450. extra: 806 / 738,
  14451. bottom: 0.01
  14452. }
  14453. },
  14454. sideMaid: {
  14455. height: math.unit(6, "feet"),
  14456. weight: math.unit(150, "lb"),
  14457. name: "Side (Maid)",
  14458. image: {
  14459. source: "./media/characters/alluria/side-maid.svg",
  14460. extra: 800 / 750,
  14461. bottom: 0.005
  14462. }
  14463. },
  14464. backMaid: {
  14465. height: math.unit(6, "feet"),
  14466. weight: math.unit(150, "lb"),
  14467. name: "Back (Maid)",
  14468. image: {
  14469. source: "./media/characters/alluria/back-maid.svg",
  14470. extra: 806 / 738,
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Micro",
  14477. height: math.unit(6, "inches"),
  14478. default: true
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Kyle" },
  14484. {
  14485. front: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(150, "lb"),
  14488. name: "Front",
  14489. image: {
  14490. source: "./media/characters/kyle/front.svg",
  14491. extra: 1069 / 962,
  14492. bottom: 77.228 / 1727.45
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Macro",
  14499. height: math.unit(150, "feet"),
  14500. default: true
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Duncan" },
  14506. {
  14507. front: {
  14508. height: math.unit(6, "feet"),
  14509. weight: math.unit(300, "lb"),
  14510. name: "Front",
  14511. image: {
  14512. source: "./media/characters/duncan/front.svg",
  14513. extra: 1650 / 1482,
  14514. bottom: 0.05
  14515. }
  14516. },
  14517. },
  14518. [
  14519. {
  14520. name: "Macro",
  14521. height: math.unit(100, "feet"),
  14522. default: true
  14523. },
  14524. ]
  14525. ))
  14526. characterMakers.push(() => makeCharacter(
  14527. { name: "Memory" },
  14528. {
  14529. front: {
  14530. height: math.unit(5 + 4 / 12, "feet"),
  14531. weight: math.unit(220, "lb"),
  14532. name: "Front",
  14533. image: {
  14534. source: "./media/characters/memory/front.svg",
  14535. extra: 3641 / 3545,
  14536. bottom: 0.03
  14537. }
  14538. },
  14539. back: {
  14540. height: math.unit(5 + 4 / 12, "feet"),
  14541. weight: math.unit(220, "lb"),
  14542. name: "Back",
  14543. image: {
  14544. source: "./media/characters/memory/back.svg",
  14545. extra: 3641 / 3545,
  14546. bottom: 0.025
  14547. }
  14548. },
  14549. frontSkirt: {
  14550. height: math.unit(5 + 4 / 12, "feet"),
  14551. weight: math.unit(220, "lb"),
  14552. name: "Front (Skirt)",
  14553. image: {
  14554. source: "./media/characters/memory/front-skirt.svg",
  14555. extra: 3641 / 3545,
  14556. bottom: 0.03
  14557. }
  14558. },
  14559. frontDress: {
  14560. height: math.unit(5 + 4 / 12, "feet"),
  14561. weight: math.unit(220, "lb"),
  14562. name: "Front (Dress)",
  14563. image: {
  14564. source: "./media/characters/memory/front-dress.svg",
  14565. extra: 3641 / 3545,
  14566. bottom: 0.03
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Micro",
  14573. height: math.unit(6, "inches"),
  14574. default: true
  14575. },
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(5 + 4 / 12, "feet")
  14579. },
  14580. ]
  14581. ))
  14582. characterMakers.push(() => makeCharacter(
  14583. { name: "Luno" },
  14584. {
  14585. front: {
  14586. height: math.unit(4 + 11 / 12, "feet"),
  14587. weight: math.unit(100, "lb"),
  14588. name: "Front",
  14589. image: {
  14590. source: "./media/characters/luno/front.svg",
  14591. extra: 1535 / 1487,
  14592. bottom: 0.03
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Micro",
  14599. height: math.unit(3, "inches")
  14600. },
  14601. {
  14602. name: "Normal",
  14603. height: math.unit(4 + 11 / 12, "feet"),
  14604. default: true
  14605. },
  14606. {
  14607. name: "Macro",
  14608. height: math.unit(300, "feet")
  14609. },
  14610. {
  14611. name: "Megamacro",
  14612. height: math.unit(700, "miles")
  14613. },
  14614. ]
  14615. ))
  14616. characterMakers.push(() => makeCharacter(
  14617. { name: "Jamesy" },
  14618. {
  14619. front: {
  14620. height: math.unit(6 + 2 / 12, "feet"),
  14621. weight: math.unit(170, "lb"),
  14622. name: "Front",
  14623. image: {
  14624. source: "./media/characters/jamesy/front.svg",
  14625. extra: 440 / 382,
  14626. bottom: 0.005
  14627. }
  14628. },
  14629. },
  14630. [
  14631. {
  14632. name: "Micro",
  14633. height: math.unit(3, "inches")
  14634. },
  14635. {
  14636. name: "Normal",
  14637. height: math.unit(6 + 2 / 12, "feet"),
  14638. default: true
  14639. },
  14640. {
  14641. name: "Macro",
  14642. height: math.unit(300, "feet")
  14643. },
  14644. {
  14645. name: "Megamacro",
  14646. height: math.unit(700, "miles")
  14647. },
  14648. ]
  14649. ))
  14650. characterMakers.push(() => makeCharacter(
  14651. { name: "Mark" },
  14652. {
  14653. front: {
  14654. height: math.unit(6, "feet"),
  14655. weight: math.unit(160, "lb"),
  14656. name: "Front",
  14657. image: {
  14658. source: "./media/characters/mark/front.svg",
  14659. extra: 3300 / 3100,
  14660. bottom: 136.42 / 3440.47
  14661. }
  14662. },
  14663. },
  14664. [
  14665. {
  14666. name: "Macro",
  14667. height: math.unit(120, "meters")
  14668. },
  14669. {
  14670. name: "Bigger Macro",
  14671. height: math.unit(350, "meters")
  14672. },
  14673. {
  14674. name: "Megamacro",
  14675. height: math.unit(8, "km"),
  14676. default: true
  14677. },
  14678. {
  14679. name: "Continental",
  14680. height: math.unit(4550, "km")
  14681. },
  14682. {
  14683. name: "Planetary",
  14684. height: math.unit(65000, "km")
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Mac" },
  14690. {
  14691. front: {
  14692. height: math.unit(6, "feet"),
  14693. weight: math.unit(400, "lb"),
  14694. name: "Front",
  14695. image: {
  14696. source: "./media/characters/mac/front.svg",
  14697. extra: 1048 / 987.7,
  14698. bottom: 60 / 1107.6,
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Macro",
  14705. height: math.unit(500, "feet"),
  14706. default: true
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Bari" },
  14712. {
  14713. front: {
  14714. height: math.unit(5 + 2 / 12, "feet"),
  14715. weight: math.unit(190, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/bari/front.svg",
  14719. extra: 3156 / 2880,
  14720. bottom: 0.03
  14721. }
  14722. },
  14723. back: {
  14724. height: math.unit(5 + 2 / 12, "feet"),
  14725. weight: math.unit(190, "lb"),
  14726. name: "Back",
  14727. image: {
  14728. source: "./media/characters/bari/back.svg",
  14729. extra: 3260 / 2834,
  14730. bottom: 0.025
  14731. }
  14732. },
  14733. frontPlush: {
  14734. height: math.unit(5 + 2 / 12, "feet"),
  14735. weight: math.unit(190, "lb"),
  14736. name: "Front (Plush)",
  14737. image: {
  14738. source: "./media/characters/bari/front-plush.svg",
  14739. extra: 1112 / 1061,
  14740. bottom: 0.002
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Micro",
  14747. height: math.unit(3, "inches")
  14748. },
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(5 + 2 / 12, "feet"),
  14752. default: true
  14753. },
  14754. {
  14755. name: "Macro",
  14756. height: math.unit(20, "feet")
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Hunter Misha Raven" },
  14762. {
  14763. front: {
  14764. height: math.unit(6 + 1 / 12, "feet"),
  14765. weight: math.unit(275, "lb"),
  14766. name: "Front",
  14767. image: {
  14768. source: "./media/characters/hunter-misha-raven/front.svg"
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Mortal",
  14775. height: math.unit(6 + 1 / 12, "feet")
  14776. },
  14777. {
  14778. name: "Divine",
  14779. height: math.unit(1.12134e34, "parsecs"),
  14780. default: true
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "Max Calore" },
  14786. {
  14787. front: {
  14788. height: math.unit(6 + 3 / 12, "feet"),
  14789. weight: math.unit(220, "lb"),
  14790. name: "Front",
  14791. image: {
  14792. source: "./media/characters/max-calore/front.svg",
  14793. extra: 1700 / 1648,
  14794. bottom: 0.01
  14795. }
  14796. },
  14797. back: {
  14798. height: math.unit(6 + 3 / 12, "feet"),
  14799. weight: math.unit(220, "lb"),
  14800. name: "Back",
  14801. image: {
  14802. source: "./media/characters/max-calore/back.svg",
  14803. extra: 1700 / 1648,
  14804. bottom: 0.01
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Normal",
  14811. height: math.unit(6 + 3 / 12, "feet"),
  14812. default: true
  14813. },
  14814. ]
  14815. ))
  14816. characterMakers.push(() => makeCharacter(
  14817. { name: "Aspen" },
  14818. {
  14819. side: {
  14820. height: math.unit(2 + 8 / 12, "feet"),
  14821. weight: math.unit(99, "lb"),
  14822. name: "Side",
  14823. image: {
  14824. source: "./media/characters/aspen/side.svg",
  14825. extra: 152 / 138,
  14826. bottom: 0.032
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Normal",
  14833. height: math.unit(2 + 8 / 12, "feet"),
  14834. default: true
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Sheila (Feral Wolf)" },
  14840. {
  14841. side: {
  14842. height: math.unit(3 + 2 / 12, "feet"),
  14843. weight: math.unit(224, "lb"),
  14844. name: "Side",
  14845. image: {
  14846. source: "./media/characters/sheila-feral-wolf/side.svg",
  14847. extra: 179 / 166,
  14848. bottom: 0.03
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Normal",
  14855. height: math.unit(3 + 2 / 12, "feet"),
  14856. default: true
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Michelle" },
  14862. {
  14863. side: {
  14864. height: math.unit(1 + 9 / 12, "feet"),
  14865. weight: math.unit(38, "lb"),
  14866. name: "Side",
  14867. image: {
  14868. source: "./media/characters/michelle/side.svg",
  14869. extra: 147 / 136.7,
  14870. bottom: 0.03
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(1 + 9 / 12, "feet"),
  14878. default: true
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Nino" },
  14884. {
  14885. front: {
  14886. height: math.unit(1 + 1 / 12, "feet"),
  14887. weight: math.unit(18, "lb"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/nino/front.svg"
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(1 + 1 / 12, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Viola" },
  14904. {
  14905. front: {
  14906. height: math.unit(1, "feet"),
  14907. weight: math.unit(16, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/viola/front.svg"
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(1, "feet"),
  14918. default: true
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Atlas" },
  14924. {
  14925. front: {
  14926. height: math.unit(6 + 5 / 12, "feet"),
  14927. weight: math.unit(580, "lb"),
  14928. name: "Front",
  14929. image: {
  14930. source: "./media/characters/atlas/front.svg",
  14931. extra: 298.5 / 290,
  14932. bottom: 0.015
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Normal",
  14939. height: math.unit(6 + 5 / 12, "feet"),
  14940. default: true
  14941. },
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Davy" },
  14946. {
  14947. side: {
  14948. height: math.unit(1 + 10 / 12, "feet"),
  14949. weight: math.unit(25, "lb"),
  14950. name: "Side",
  14951. image: {
  14952. source: "./media/characters/davy/side.svg",
  14953. extra: 200 / 170,
  14954. bottom: 0.01
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Normal",
  14961. height: math.unit(1 + 10 / 12, "feet"),
  14962. default: true
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Fiona" },
  14968. {
  14969. side: {
  14970. height: math.unit(4 + 8 / 12, "feet"),
  14971. weight: math.unit(166, "lb"),
  14972. name: "Side",
  14973. image: {
  14974. source: "./media/characters/fiona/side.svg",
  14975. extra: 232 / 220,
  14976. bottom: 0.03
  14977. }
  14978. },
  14979. },
  14980. [
  14981. {
  14982. name: "Normal",
  14983. height: math.unit(4 + 8 / 12, "feet"),
  14984. default: true
  14985. },
  14986. ]
  14987. ))
  14988. characterMakers.push(() => makeCharacter(
  14989. { name: "Lyla" },
  14990. {
  14991. front: {
  14992. height: math.unit(2, "feet"),
  14993. weight: math.unit(62, "lb"),
  14994. name: "Front",
  14995. image: {
  14996. source: "./media/characters/lyla/front.svg",
  14997. bottom: 0.1
  14998. }
  14999. },
  15000. },
  15001. [
  15002. {
  15003. name: "Normal",
  15004. height: math.unit(2, "feet"),
  15005. default: true
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Perseus" },
  15011. {
  15012. side: {
  15013. height: math.unit(1.8, "feet"),
  15014. weight: math.unit(44, "lb"),
  15015. name: "Side",
  15016. image: {
  15017. source: "./media/characters/perseus/side.svg",
  15018. bottom: 0.21
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Normal",
  15025. height: math.unit(1.8, "feet"),
  15026. default: true
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Remus" },
  15032. {
  15033. side: {
  15034. height: math.unit(4 + 2 / 12, "feet"),
  15035. weight: math.unit(20, "lb"),
  15036. name: "Side",
  15037. image: {
  15038. source: "./media/characters/remus/side.svg"
  15039. }
  15040. },
  15041. },
  15042. [
  15043. {
  15044. name: "Normal",
  15045. height: math.unit(4 + 2 / 12, "feet"),
  15046. default: true
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Raf" },
  15052. {
  15053. front: {
  15054. height: math.unit(4 + 11 / 12, "feet"),
  15055. weight: math.unit(114, "lb"),
  15056. name: "Front",
  15057. image: {
  15058. source: "./media/characters/raf/front.svg",
  15059. bottom: 0.01
  15060. }
  15061. },
  15062. side: {
  15063. height: math.unit(4 + 11 / 12, "feet"),
  15064. weight: math.unit(114, "lb"),
  15065. name: "Side",
  15066. image: {
  15067. source: "./media/characters/raf/side.svg",
  15068. bottom: 0.005
  15069. }
  15070. },
  15071. },
  15072. [
  15073. {
  15074. name: "Micro",
  15075. height: math.unit(2, "inches")
  15076. },
  15077. {
  15078. name: "Normal",
  15079. height: math.unit(4 + 11 / 12, "feet"),
  15080. default: true
  15081. },
  15082. {
  15083. name: "Macro",
  15084. height: math.unit(70, "feet")
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Liam Einarr" },
  15090. {
  15091. front: {
  15092. height: math.unit(1.5, "meters"),
  15093. weight: math.unit(68, "kg"),
  15094. name: "Front",
  15095. image: {
  15096. source: "./media/characters/liam-einarr/front.svg",
  15097. extra: 2822 / 2666
  15098. }
  15099. },
  15100. back: {
  15101. height: math.unit(1.5, "meters"),
  15102. weight: math.unit(68, "kg"),
  15103. name: "Back",
  15104. image: {
  15105. source: "./media/characters/liam-einarr/back.svg",
  15106. extra: 2822 / 2666,
  15107. bottom: 0.015
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(1.5, "meters"),
  15115. default: true
  15116. },
  15117. {
  15118. name: "Macro",
  15119. height: math.unit(150, "meters")
  15120. },
  15121. {
  15122. name: "Megamacro",
  15123. height: math.unit(35, "km")
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Linda" },
  15129. {
  15130. front: {
  15131. height: math.unit(6, "feet"),
  15132. weight: math.unit(75, "kg"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/linda/front.svg",
  15136. extra: 930 / 874,
  15137. bottom: 0.004
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(6, "feet"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Caylex" },
  15151. {
  15152. front: {
  15153. height: math.unit(6 + 8 / 12, "feet"),
  15154. weight: math.unit(220, "lb"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/caylex/front.svg",
  15158. extra: 821 / 772,
  15159. bottom: 0.07
  15160. }
  15161. },
  15162. back: {
  15163. height: math.unit(6 + 8 / 12, "feet"),
  15164. weight: math.unit(220, "lb"),
  15165. name: "Back",
  15166. image: {
  15167. source: "./media/characters/caylex/back.svg",
  15168. extra: 821 / 772,
  15169. bottom: 0.022
  15170. }
  15171. },
  15172. hand: {
  15173. height: math.unit(1.25, "feet"),
  15174. name: "Hand",
  15175. image: {
  15176. source: "./media/characters/caylex/hand.svg"
  15177. }
  15178. },
  15179. foot: {
  15180. height: math.unit(1.6, "feet"),
  15181. name: "Foot",
  15182. image: {
  15183. source: "./media/characters/caylex/foot.svg"
  15184. }
  15185. },
  15186. armored: {
  15187. height: math.unit(6 + 8 / 12, "feet"),
  15188. weight: math.unit(250, "lb"),
  15189. name: "Armored",
  15190. image: {
  15191. source: "./media/characters/caylex/armored.svg",
  15192. extra: 1420 / 1310,
  15193. bottom: 0.045
  15194. }
  15195. },
  15196. },
  15197. [
  15198. {
  15199. name: "Normal",
  15200. height: math.unit(6 + 8 / 12, "feet"),
  15201. default: true
  15202. },
  15203. {
  15204. name: "Normal+",
  15205. height: math.unit(12, "feet")
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Alana" },
  15211. {
  15212. front: {
  15213. height: math.unit(7 + 6 / 12, "feet"),
  15214. weight: math.unit(288, "lb"),
  15215. name: "Front",
  15216. image: {
  15217. source: "./media/characters/alana/front.svg",
  15218. extra: 679 / 653,
  15219. bottom: 22.5 / 701
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Normal",
  15226. height: math.unit(7 + 6 / 12, "feet")
  15227. },
  15228. {
  15229. name: "Large",
  15230. height: math.unit(50, "feet")
  15231. },
  15232. {
  15233. name: "Macro",
  15234. height: math.unit(100, "feet"),
  15235. default: true
  15236. },
  15237. {
  15238. name: "Macro+",
  15239. height: math.unit(200, "feet")
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Hasani" },
  15245. {
  15246. front: {
  15247. height: math.unit(6 + 1 / 12, "feet"),
  15248. weight: math.unit(210, "lb"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/hasani/front.svg",
  15252. extra: 244 / 232,
  15253. bottom: 0.01
  15254. }
  15255. },
  15256. back: {
  15257. height: math.unit(6 + 1 / 12, "feet"),
  15258. weight: math.unit(210, "lb"),
  15259. name: "Back",
  15260. image: {
  15261. source: "./media/characters/hasani/back.svg",
  15262. extra: 244 / 232,
  15263. bottom: 0.01
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(6 + 1 / 12, "feet")
  15271. },
  15272. {
  15273. name: "Macro",
  15274. height: math.unit(175, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Nita" },
  15281. {
  15282. front: {
  15283. height: math.unit(1.82, "meters"),
  15284. weight: math.unit(140, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/nita/front.svg",
  15288. extra: 2473 / 2363,
  15289. bottom: 0.01
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(1.82, "m")
  15297. },
  15298. {
  15299. name: "Macro",
  15300. height: math.unit(300, "m")
  15301. },
  15302. {
  15303. name: "Mistake Canon",
  15304. height: math.unit(0.5, "miles"),
  15305. default: true
  15306. },
  15307. {
  15308. name: "Big Mistake",
  15309. height: math.unit(13, "miles")
  15310. },
  15311. {
  15312. name: "Playing God",
  15313. height: math.unit(2450, "miles")
  15314. },
  15315. ]
  15316. ))
  15317. characterMakers.push(() => makeCharacter(
  15318. { name: "Shiriko" },
  15319. {
  15320. front: {
  15321. height: math.unit(4, "feet"),
  15322. weight: math.unit(120, "lb"),
  15323. name: "Front",
  15324. image: {
  15325. source: "./media/characters/shiriko/front.svg",
  15326. extra: 195 / 188
  15327. }
  15328. },
  15329. },
  15330. [
  15331. {
  15332. name: "Normal",
  15333. height: math.unit(4, "feet"),
  15334. default: true
  15335. },
  15336. ]
  15337. ))
  15338. characterMakers.push(() => makeCharacter(
  15339. { name: "Deja" },
  15340. {
  15341. front: {
  15342. height: math.unit(6, "feet"),
  15343. name: "front",
  15344. image: {
  15345. source: "./media/characters/deja/front.svg",
  15346. extra: 926 / 840,
  15347. bottom: 0.07
  15348. }
  15349. },
  15350. },
  15351. [
  15352. {
  15353. name: "Planck Length",
  15354. height: math.unit(1.6e-35, "meters")
  15355. },
  15356. {
  15357. name: "Normal",
  15358. height: math.unit(30.48, "meters"),
  15359. default: true
  15360. },
  15361. {
  15362. name: "Universal",
  15363. height: math.unit(8.8e26, "meters")
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Anima" },
  15369. {
  15370. side: {
  15371. height: math.unit(8, "feet"),
  15372. weight: math.unit(6300, "lb"),
  15373. name: "Side",
  15374. image: {
  15375. source: "./media/characters/anima/side.svg",
  15376. bottom: 0.035
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Normal",
  15383. height: math.unit(8, "feet"),
  15384. default: true
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Bianca" },
  15390. {
  15391. front: {
  15392. height: math.unit(8, "feet"),
  15393. weight: math.unit(350, "lb"),
  15394. name: "Front",
  15395. image: {
  15396. source: "./media/characters/bianca/front.svg",
  15397. extra: 234 / 225,
  15398. bottom: 0.03
  15399. }
  15400. },
  15401. },
  15402. [
  15403. {
  15404. name: "Normal",
  15405. height: math.unit(8, "feet"),
  15406. default: true
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Adinia" },
  15412. {
  15413. front: {
  15414. height: math.unit(6, "feet"),
  15415. weight: math.unit(150, "lb"),
  15416. name: "Front",
  15417. image: {
  15418. source: "./media/characters/adinia/front.svg",
  15419. extra: 1845 / 1672,
  15420. bottom: 0.02
  15421. }
  15422. },
  15423. back: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(150, "lb"),
  15426. name: "Back",
  15427. image: {
  15428. source: "./media/characters/adinia/back.svg",
  15429. extra: 1845 / 1672,
  15430. bottom: 0.002
  15431. }
  15432. },
  15433. },
  15434. [
  15435. {
  15436. name: "Normal",
  15437. height: math.unit(11 + 5 / 12, "feet"),
  15438. default: true
  15439. },
  15440. ]
  15441. ))
  15442. characterMakers.push(() => makeCharacter(
  15443. { name: "Lykasa" },
  15444. {
  15445. front: {
  15446. height: math.unit(3, "meters"),
  15447. weight: math.unit(200, "kg"),
  15448. name: "Front",
  15449. image: {
  15450. source: "./media/characters/lykasa/front.svg",
  15451. extra: 1076 / 976,
  15452. bottom: 0.06
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Normal",
  15459. height: math.unit(3, "meters")
  15460. },
  15461. {
  15462. name: "Kaiju",
  15463. height: math.unit(120, "meters"),
  15464. default: true
  15465. },
  15466. {
  15467. name: "Mega Kaiju",
  15468. height: math.unit(240, "km")
  15469. },
  15470. {
  15471. name: "Giga Kaiju",
  15472. height: math.unit(400, "megameters")
  15473. },
  15474. {
  15475. name: "Tera Kaiju",
  15476. height: math.unit(800, "gigameters")
  15477. },
  15478. {
  15479. name: "Kaiju Dragon Goddess",
  15480. height: math.unit(26, "zettaparsecs")
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Malfaren" },
  15486. {
  15487. side: {
  15488. height: math.unit(283 / 124 * 6, "feet"),
  15489. weight: math.unit(35000, "lb"),
  15490. name: "Side",
  15491. image: {
  15492. source: "./media/characters/malfaren/side.svg",
  15493. extra: 2500 / 1010,
  15494. bottom: 0.01
  15495. }
  15496. },
  15497. front: {
  15498. height: math.unit(22.36, "feet"),
  15499. weight: math.unit(35000, "lb"),
  15500. name: "Front",
  15501. image: {
  15502. source: "./media/characters/malfaren/front.svg",
  15503. extra: 1631 / 1476,
  15504. bottom: 0.01
  15505. }
  15506. },
  15507. maw: {
  15508. height: math.unit(6.9, "feet"),
  15509. name: "Maw",
  15510. image: {
  15511. source: "./media/characters/malfaren/maw.svg"
  15512. }
  15513. },
  15514. },
  15515. [
  15516. {
  15517. name: "Big",
  15518. height: math.unit(283 / 162 * 6, "feet"),
  15519. },
  15520. {
  15521. name: "Bigger",
  15522. height: math.unit(283 / 124 * 6, "feet")
  15523. },
  15524. {
  15525. name: "Massive",
  15526. height: math.unit(283 / 92 * 6, "feet"),
  15527. default: true
  15528. },
  15529. {
  15530. name: "👀💦",
  15531. height: math.unit(283 / 73 * 6, "feet"),
  15532. },
  15533. ]
  15534. ))
  15535. characterMakers.push(() => makeCharacter(
  15536. { name: "Kernel" },
  15537. {
  15538. front: {
  15539. height: math.unit(1.7, "m"),
  15540. weight: math.unit(70, "kg"),
  15541. name: "Front",
  15542. image: {
  15543. source: "./media/characters/kernel/front.svg",
  15544. extra: 222 / 210,
  15545. bottom: 0.007
  15546. }
  15547. },
  15548. },
  15549. [
  15550. {
  15551. name: "Nano",
  15552. height: math.unit(17, "micrometers")
  15553. },
  15554. {
  15555. name: "Micro",
  15556. height: math.unit(1.7, "mm")
  15557. },
  15558. {
  15559. name: "Small",
  15560. height: math.unit(1.7, "cm")
  15561. },
  15562. {
  15563. name: "Normal",
  15564. height: math.unit(1.7, "m"),
  15565. default: true
  15566. },
  15567. ]
  15568. ))
  15569. characterMakers.push(() => makeCharacter(
  15570. { name: "Jayne Folest" },
  15571. {
  15572. front: {
  15573. height: math.unit(1.75, "meters"),
  15574. weight: math.unit(65, "kg"),
  15575. name: "Front",
  15576. image: {
  15577. source: "./media/characters/jayne-folest/front.svg",
  15578. extra: 2115 / 2007,
  15579. bottom: 0.02
  15580. }
  15581. },
  15582. back: {
  15583. height: math.unit(1.75, "meters"),
  15584. weight: math.unit(65, "kg"),
  15585. name: "Back",
  15586. image: {
  15587. source: "./media/characters/jayne-folest/back.svg",
  15588. extra: 2115 / 2007,
  15589. bottom: 0.005
  15590. }
  15591. },
  15592. frontClothed: {
  15593. height: math.unit(1.75, "meters"),
  15594. weight: math.unit(65, "kg"),
  15595. name: "Front (Clothed)",
  15596. image: {
  15597. source: "./media/characters/jayne-folest/front-clothed.svg",
  15598. extra: 2115 / 2007,
  15599. bottom: 0.035
  15600. }
  15601. },
  15602. hand: {
  15603. height: math.unit(1 / 1.260, "feet"),
  15604. name: "Hand",
  15605. image: {
  15606. source: "./media/characters/jayne-folest/hand.svg"
  15607. }
  15608. },
  15609. foot: {
  15610. height: math.unit(1 / 0.918, "feet"),
  15611. name: "Foot",
  15612. image: {
  15613. source: "./media/characters/jayne-folest/foot.svg"
  15614. }
  15615. },
  15616. },
  15617. [
  15618. {
  15619. name: "Micro",
  15620. height: math.unit(4, "cm")
  15621. },
  15622. {
  15623. name: "Normal",
  15624. height: math.unit(1.75, "meters")
  15625. },
  15626. {
  15627. name: "Macro",
  15628. height: math.unit(47.5, "meters"),
  15629. default: true
  15630. },
  15631. ]
  15632. ))
  15633. characterMakers.push(() => makeCharacter(
  15634. { name: "Algier" },
  15635. {
  15636. front: {
  15637. height: math.unit(180, "cm"),
  15638. weight: math.unit(70, "kg"),
  15639. name: "Front",
  15640. image: {
  15641. source: "./media/characters/algier/front.svg",
  15642. extra: 596 / 572,
  15643. bottom: 0.04
  15644. }
  15645. },
  15646. back: {
  15647. height: math.unit(180, "cm"),
  15648. weight: math.unit(70, "kg"),
  15649. name: "Back",
  15650. image: {
  15651. source: "./media/characters/algier/back.svg",
  15652. extra: 596 / 572,
  15653. bottom: 0.025
  15654. }
  15655. },
  15656. frontdressed: {
  15657. height: math.unit(180, "cm"),
  15658. weight: math.unit(150, "kg"),
  15659. name: "Front-dressed",
  15660. image: {
  15661. source: "./media/characters/algier/front-dressed.svg",
  15662. extra: 596 / 572,
  15663. bottom: 0.038
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Micro",
  15670. height: math.unit(5, "cm")
  15671. },
  15672. {
  15673. name: "Normal",
  15674. height: math.unit(180, "cm"),
  15675. default: true
  15676. },
  15677. {
  15678. name: "Macro",
  15679. height: math.unit(64, "m")
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Pretzel" },
  15685. {
  15686. upright: {
  15687. height: math.unit(7, "feet"),
  15688. weight: math.unit(300, "lb"),
  15689. name: "Upright",
  15690. image: {
  15691. source: "./media/characters/pretzel/upright.svg",
  15692. extra: 534 / 522,
  15693. bottom: 0.065
  15694. }
  15695. },
  15696. sprawling: {
  15697. height: math.unit(3.75, "feet"),
  15698. weight: math.unit(300, "lb"),
  15699. name: "Sprawling",
  15700. image: {
  15701. source: "./media/characters/pretzel/sprawling.svg",
  15702. extra: 314 / 281,
  15703. bottom: 0.1
  15704. }
  15705. },
  15706. tongue: {
  15707. height: math.unit(2, "feet"),
  15708. name: "Tongue",
  15709. image: {
  15710. source: "./media/characters/pretzel/tongue.svg"
  15711. }
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(7, "feet"),
  15718. default: true
  15719. },
  15720. {
  15721. name: "Oversized",
  15722. height: math.unit(15, "feet")
  15723. },
  15724. {
  15725. name: "Huge",
  15726. height: math.unit(30, "feet")
  15727. },
  15728. {
  15729. name: "Macro",
  15730. height: math.unit(250, "feet")
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Roxi" },
  15736. {
  15737. sideFront: {
  15738. height: math.unit(5 + 2 / 12, "feet"),
  15739. weight: math.unit(120, "lb"),
  15740. name: "Front Side",
  15741. image: {
  15742. source: "./media/characters/roxi/side-front.svg",
  15743. extra: 2924 / 2717,
  15744. bottom: 0.08
  15745. }
  15746. },
  15747. sideBack: {
  15748. height: math.unit(5 + 2 / 12, "feet"),
  15749. weight: math.unit(120, "lb"),
  15750. name: "Back Side",
  15751. image: {
  15752. source: "./media/characters/roxi/side-back.svg",
  15753. extra: 2904 / 2693,
  15754. bottom: 0.06
  15755. }
  15756. },
  15757. front: {
  15758. height: math.unit(5 + 2 / 12, "feet"),
  15759. weight: math.unit(120, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/roxi/front.svg",
  15763. extra: 2028 / 1907,
  15764. bottom: 0.01
  15765. }
  15766. },
  15767. frontAlt: {
  15768. height: math.unit(5 + 2 / 12, "feet"),
  15769. weight: math.unit(120, "lb"),
  15770. name: "Front (Alt)",
  15771. image: {
  15772. source: "./media/characters/roxi/front-alt.svg",
  15773. extra: 1828 / 1798,
  15774. bottom: 0.01
  15775. }
  15776. },
  15777. sitting: {
  15778. height: math.unit(2.8, "feet"),
  15779. weight: math.unit(120, "lb"),
  15780. name: "Sitting",
  15781. image: {
  15782. source: "./media/characters/roxi/sitting.svg",
  15783. extra: 2660 / 2462,
  15784. bottom: 0.1
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Normal",
  15791. height: math.unit(5 + 2 / 12, "feet"),
  15792. default: true
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Shadow" },
  15798. {
  15799. side: {
  15800. height: math.unit(55, "feet"),
  15801. weight: math.unit(153, "tons"),
  15802. name: "Side",
  15803. image: {
  15804. source: "./media/characters/shadow/side.svg",
  15805. extra: 701 / 628,
  15806. bottom: 0.02
  15807. }
  15808. },
  15809. flying: {
  15810. height: math.unit(145, "feet"),
  15811. weight: math.unit(153, "tons"),
  15812. name: "Flying",
  15813. image: {
  15814. source: "./media/characters/shadow/flying.svg"
  15815. }
  15816. },
  15817. },
  15818. [
  15819. {
  15820. name: "Normal",
  15821. height: math.unit(55, "feet"),
  15822. default: true
  15823. },
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Marcie" },
  15828. {
  15829. front: {
  15830. height: math.unit(6, "feet"),
  15831. weight: math.unit(200, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/marcie/front.svg",
  15835. extra: 960 / 876,
  15836. bottom: 58 / 1017.87
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Macro",
  15843. height: math.unit(1, "mile"),
  15844. default: true
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Kachina" },
  15850. {
  15851. front: {
  15852. height: math.unit(7, "feet"),
  15853. weight: math.unit(200, "lb"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/kachina/front.svg",
  15857. extra: 1290.68 / 1119,
  15858. bottom: 36.5 / 1327.18
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(7, "feet"),
  15866. default: true
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Kash" },
  15872. {
  15873. looking: {
  15874. height: math.unit(2, "meters"),
  15875. weight: math.unit(300, "kg"),
  15876. name: "Looking",
  15877. image: {
  15878. source: "./media/characters/kash/looking.svg",
  15879. extra: 474 / 344,
  15880. bottom: 0.03
  15881. }
  15882. },
  15883. side: {
  15884. height: math.unit(2, "meters"),
  15885. weight: math.unit(300, "kg"),
  15886. name: "Side",
  15887. image: {
  15888. source: "./media/characters/kash/side.svg",
  15889. extra: 302 / 251,
  15890. bottom: 0.03
  15891. }
  15892. },
  15893. front: {
  15894. height: math.unit(2, "meters"),
  15895. weight: math.unit(300, "kg"),
  15896. name: "Front",
  15897. image: {
  15898. source: "./media/characters/kash/front.svg",
  15899. extra: 495 / 360,
  15900. bottom: 0.015
  15901. }
  15902. },
  15903. },
  15904. [
  15905. {
  15906. name: "Normal",
  15907. height: math.unit(2, "meters"),
  15908. default: true
  15909. },
  15910. {
  15911. name: "Big",
  15912. height: math.unit(3, "meters")
  15913. },
  15914. {
  15915. name: "Large",
  15916. height: math.unit(5, "meters")
  15917. },
  15918. ]
  15919. ))
  15920. characterMakers.push(() => makeCharacter(
  15921. { name: "Lalim" },
  15922. {
  15923. feeding: {
  15924. height: math.unit(6.7, "feet"),
  15925. weight: math.unit(350, "lb"),
  15926. name: "Feeding",
  15927. image: {
  15928. source: "./media/characters/lalim/feeding.svg",
  15929. }
  15930. },
  15931. },
  15932. [
  15933. {
  15934. name: "Normal",
  15935. height: math.unit(6.7, "feet"),
  15936. default: true
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "De'Vout" },
  15942. {
  15943. front: {
  15944. height: math.unit(9.5, "feet"),
  15945. weight: math.unit(600, "lb"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/de'vout/front.svg",
  15949. extra: 1443 / 1328,
  15950. bottom: 0.025
  15951. }
  15952. },
  15953. back: {
  15954. height: math.unit(9.5, "feet"),
  15955. weight: math.unit(600, "lb"),
  15956. name: "Back",
  15957. image: {
  15958. source: "./media/characters/de'vout/back.svg",
  15959. extra: 1443 / 1328
  15960. }
  15961. },
  15962. frontDressed: {
  15963. height: math.unit(9.5, "feet"),
  15964. weight: math.unit(600, "lb"),
  15965. name: "Front (Dressed",
  15966. image: {
  15967. source: "./media/characters/de'vout/front-dressed.svg",
  15968. extra: 1443 / 1328,
  15969. bottom: 0.025
  15970. }
  15971. },
  15972. backDressed: {
  15973. height: math.unit(9.5, "feet"),
  15974. weight: math.unit(600, "lb"),
  15975. name: "Back (Dressed",
  15976. image: {
  15977. source: "./media/characters/de'vout/back-dressed.svg",
  15978. extra: 1443 / 1328
  15979. }
  15980. },
  15981. },
  15982. [
  15983. {
  15984. name: "Normal",
  15985. height: math.unit(9.5, "feet"),
  15986. default: true
  15987. },
  15988. ]
  15989. ))
  15990. characterMakers.push(() => makeCharacter(
  15991. { name: "Talana" },
  15992. {
  15993. front: {
  15994. height: math.unit(8, "feet"),
  15995. weight: math.unit(225, "lb"),
  15996. name: "Front",
  15997. image: {
  15998. source: "./media/characters/talana/front.svg",
  15999. extra: 1410 / 1300,
  16000. bottom: 0.015
  16001. }
  16002. },
  16003. frontDressed: {
  16004. height: math.unit(8, "feet"),
  16005. weight: math.unit(225, "lb"),
  16006. name: "Front (Dressed",
  16007. image: {
  16008. source: "./media/characters/talana/front-dressed.svg",
  16009. extra: 1410 / 1300,
  16010. bottom: 0.015
  16011. }
  16012. },
  16013. },
  16014. [
  16015. {
  16016. name: "Normal",
  16017. height: math.unit(8, "feet"),
  16018. default: true
  16019. },
  16020. ]
  16021. ))
  16022. characterMakers.push(() => makeCharacter(
  16023. { name: "Xeauvok" },
  16024. {
  16025. side: {
  16026. height: math.unit(7.2, "feet"),
  16027. weight: math.unit(150, "lb"),
  16028. name: "Side",
  16029. image: {
  16030. source: "./media/characters/xeauvok/side.svg",
  16031. extra: 1975 / 1523,
  16032. bottom: 0.07
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(7.2, "feet"),
  16040. default: true
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Zara" },
  16046. {
  16047. side: {
  16048. height: math.unit(10, "feet"),
  16049. weight: math.unit(900, "kg"),
  16050. name: "Side",
  16051. image: {
  16052. source: "./media/characters/zara/side.svg",
  16053. extra: 504 / 498
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Normal",
  16060. height: math.unit(10, "feet"),
  16061. default: true
  16062. },
  16063. ]
  16064. ))
  16065. characterMakers.push(() => makeCharacter(
  16066. { name: "Richard (Dragon)" },
  16067. {
  16068. side: {
  16069. height: math.unit(6, "feet"),
  16070. weight: math.unit(150, "lb"),
  16071. name: "Side",
  16072. image: {
  16073. source: "./media/characters/richard-dragon/side.svg",
  16074. extra: 845 / 340,
  16075. bottom: 0.017
  16076. }
  16077. },
  16078. maw: {
  16079. height: math.unit(2.97, "feet"),
  16080. name: "Maw",
  16081. image: {
  16082. source: "./media/characters/richard-dragon/maw.svg"
  16083. }
  16084. },
  16085. },
  16086. [
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Richard (Smeargle)" },
  16091. {
  16092. front: {
  16093. height: math.unit(4, "feet"),
  16094. weight: math.unit(100, "lb"),
  16095. name: "Front",
  16096. image: {
  16097. source: "./media/characters/richard-smeargle/front.svg",
  16098. extra: 2952 / 2820,
  16099. bottom: 0.028
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(4, "feet"),
  16107. default: true
  16108. },
  16109. {
  16110. name: "Dynamax",
  16111. height: math.unit(20, "meters")
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Klay" },
  16117. {
  16118. front: {
  16119. height: math.unit(6, "feet"),
  16120. weight: math.unit(110, "lb"),
  16121. name: "Front",
  16122. image: {
  16123. source: "./media/characters/klay/front.svg",
  16124. extra: 962 / 883,
  16125. bottom: 0.04
  16126. }
  16127. },
  16128. back: {
  16129. height: math.unit(6, "feet"),
  16130. weight: math.unit(110, "lb"),
  16131. name: "Back",
  16132. image: {
  16133. source: "./media/characters/klay/back.svg",
  16134. extra: 962 / 883
  16135. }
  16136. },
  16137. beans: {
  16138. height: math.unit(1.15, "feet"),
  16139. name: "Beans",
  16140. image: {
  16141. source: "./media/characters/klay/beans.svg"
  16142. }
  16143. },
  16144. },
  16145. [
  16146. {
  16147. name: "Micro",
  16148. height: math.unit(6, "inches")
  16149. },
  16150. {
  16151. name: "Mini",
  16152. height: math.unit(3, "feet")
  16153. },
  16154. {
  16155. name: "Normal",
  16156. height: math.unit(6, "feet"),
  16157. default: true
  16158. },
  16159. {
  16160. name: "Big",
  16161. height: math.unit(25, "feet")
  16162. },
  16163. {
  16164. name: "Macro",
  16165. height: math.unit(100, "feet")
  16166. },
  16167. {
  16168. name: "Megamacro",
  16169. height: math.unit(400, "feet")
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Marcus" },
  16175. {
  16176. front: {
  16177. height: math.unit(6, "feet"),
  16178. weight: math.unit(160, "lb"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/marcus/front.svg",
  16182. extra: 734 / 676,
  16183. bottom: 0.03
  16184. }
  16185. },
  16186. },
  16187. [
  16188. {
  16189. name: "Little",
  16190. height: math.unit(6, "feet")
  16191. },
  16192. {
  16193. name: "Normal",
  16194. height: math.unit(110, "feet"),
  16195. default: true
  16196. },
  16197. {
  16198. name: "Macro",
  16199. height: math.unit(250, "feet")
  16200. },
  16201. {
  16202. name: "Megamacro",
  16203. height: math.unit(1000, "feet")
  16204. },
  16205. ]
  16206. ))
  16207. characterMakers.push(() => makeCharacter(
  16208. { name: "Claude DelRoute" },
  16209. {
  16210. front: {
  16211. height: math.unit(7, "feet"),
  16212. weight: math.unit(275, "lb"),
  16213. name: "Front",
  16214. image: {
  16215. source: "./media/characters/claude-delroute/front.svg",
  16216. extra: 230 / 214,
  16217. bottom: 0.007
  16218. }
  16219. },
  16220. side: {
  16221. height: math.unit(7, "feet"),
  16222. weight: math.unit(275, "lb"),
  16223. name: "Side",
  16224. image: {
  16225. source: "./media/characters/claude-delroute/side.svg",
  16226. extra: 222 / 214,
  16227. bottom: 0.01
  16228. }
  16229. },
  16230. back: {
  16231. height: math.unit(7, "feet"),
  16232. weight: math.unit(275, "lb"),
  16233. name: "Back",
  16234. image: {
  16235. source: "./media/characters/claude-delroute/back.svg",
  16236. extra: 230 / 214,
  16237. bottom: 0.015
  16238. }
  16239. },
  16240. maw: {
  16241. height: math.unit(0.6407, "meters"),
  16242. name: "Maw",
  16243. image: {
  16244. source: "./media/characters/claude-delroute/maw.svg"
  16245. }
  16246. },
  16247. },
  16248. [
  16249. {
  16250. name: "Normal",
  16251. height: math.unit(7, "feet"),
  16252. default: true
  16253. },
  16254. {
  16255. name: "Lorge",
  16256. height: math.unit(20, "feet")
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Dragonien" },
  16262. {
  16263. front: {
  16264. height: math.unit(8 + 4 / 12, "feet"),
  16265. weight: math.unit(600, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/dragonien/front.svg",
  16269. extra: 100 / 94,
  16270. bottom: 3.3 / 103.3445
  16271. }
  16272. },
  16273. back: {
  16274. height: math.unit(8 + 4 / 12, "feet"),
  16275. weight: math.unit(600, "lb"),
  16276. name: "Back",
  16277. image: {
  16278. source: "./media/characters/dragonien/back.svg",
  16279. extra: 776 / 746,
  16280. bottom: 6.4 / 782.0616
  16281. }
  16282. },
  16283. foot: {
  16284. height: math.unit(1.54, "feet"),
  16285. name: "Foot",
  16286. image: {
  16287. source: "./media/characters/dragonien/foot.svg",
  16288. }
  16289. },
  16290. },
  16291. [
  16292. {
  16293. name: "Normal",
  16294. height: math.unit(8 + 4 / 12, "feet"),
  16295. default: true
  16296. },
  16297. {
  16298. name: "Macro",
  16299. height: math.unit(200, "feet")
  16300. },
  16301. {
  16302. name: "Megamacro",
  16303. height: math.unit(1, "mile")
  16304. },
  16305. {
  16306. name: "Gigamacro",
  16307. height: math.unit(1000, "miles")
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Desta" },
  16313. {
  16314. front: {
  16315. height: math.unit(5 + 2 / 12, "feet"),
  16316. weight: math.unit(110, "lb"),
  16317. name: "Front",
  16318. image: {
  16319. source: "./media/characters/desta/front.svg",
  16320. extra: 1482 / 1417
  16321. }
  16322. },
  16323. side: {
  16324. height: math.unit(5 + 2 / 12, "feet"),
  16325. weight: math.unit(110, "lb"),
  16326. name: "Side",
  16327. image: {
  16328. source: "./media/characters/desta/side.svg",
  16329. extra: 2579 / 2491,
  16330. bottom: 0.053
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Micro",
  16337. height: math.unit(6, "inches")
  16338. },
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(5 + 2 / 12, "feet"),
  16342. default: true
  16343. },
  16344. {
  16345. name: "Macro",
  16346. height: math.unit(62, "feet")
  16347. },
  16348. {
  16349. name: "Megamacro",
  16350. height: math.unit(1800, "feet")
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Storm Alystar" },
  16356. {
  16357. front: {
  16358. height: math.unit(10, "feet"),
  16359. weight: math.unit(700, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/storm-alystar/front.svg",
  16363. extra: 2112 / 1898,
  16364. bottom: 0.034
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Micro",
  16371. height: math.unit(3.5, "inches")
  16372. },
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(10, "feet"),
  16376. default: true
  16377. },
  16378. {
  16379. name: "Macro",
  16380. height: math.unit(400, "feet")
  16381. },
  16382. {
  16383. name: "Deific",
  16384. height: math.unit(60, "miles")
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Ilia" },
  16390. {
  16391. front: {
  16392. height: math.unit(2.35, "meters"),
  16393. weight: math.unit(119, "kg"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/ilia/front.svg",
  16397. extra: 1285 / 1255,
  16398. bottom: 0.06
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Normal",
  16405. height: math.unit(2.35, "meters")
  16406. },
  16407. {
  16408. name: "Macro",
  16409. height: math.unit(140, "meters"),
  16410. default: true
  16411. },
  16412. {
  16413. name: "Megamacro",
  16414. height: math.unit(100, "miles")
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "KingDead" },
  16420. {
  16421. front: {
  16422. height: math.unit(6 + 5 / 12, "feet"),
  16423. weight: math.unit(190, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/kingdead/front.svg",
  16427. extra: 1228 / 1177
  16428. }
  16429. },
  16430. },
  16431. [
  16432. {
  16433. name: "Micro",
  16434. height: math.unit(7, "inches")
  16435. },
  16436. {
  16437. name: "Normal",
  16438. height: math.unit(6 + 5 / 12, "feet")
  16439. },
  16440. {
  16441. name: "Macro",
  16442. height: math.unit(150, "feet"),
  16443. default: true
  16444. },
  16445. {
  16446. name: "Megamacro",
  16447. height: math.unit(200, "miles")
  16448. },
  16449. ]
  16450. ))
  16451. characterMakers.push(() => makeCharacter(
  16452. { name: "Kyrehx" },
  16453. {
  16454. front: {
  16455. height: math.unit(8, "feet"),
  16456. weight: math.unit(600, "lb"),
  16457. name: "Front",
  16458. image: {
  16459. source: "./media/characters/kyrehx/front.svg",
  16460. extra: 1195 / 1095,
  16461. bottom: 0.034
  16462. }
  16463. },
  16464. },
  16465. [
  16466. {
  16467. name: "Micro",
  16468. height: math.unit(2, "inches")
  16469. },
  16470. {
  16471. name: "Normal",
  16472. height: math.unit(8, "feet"),
  16473. default: true
  16474. },
  16475. {
  16476. name: "Macro",
  16477. height: math.unit(255, "feet")
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Xang" },
  16483. {
  16484. front: {
  16485. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16486. weight: math.unit(184, "lb"),
  16487. name: "Front",
  16488. image: {
  16489. source: "./media/characters/xang/front.svg",
  16490. extra: 845 / 755
  16491. }
  16492. },
  16493. },
  16494. [
  16495. {
  16496. name: "Normal",
  16497. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16498. default: true
  16499. },
  16500. {
  16501. name: "Macro",
  16502. height: math.unit(0.935 * 146, "feet")
  16503. },
  16504. {
  16505. name: "Megamacro",
  16506. height: math.unit(0.935 * 3, "miles")
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Doc Weardno" },
  16512. {
  16513. frontDressed: {
  16514. height: math.unit(5 + 7 / 12, "feet"),
  16515. weight: math.unit(140, "lb"),
  16516. name: "Front (Dressed)",
  16517. image: {
  16518. source: "./media/characters/doc-weardno/front-dressed.svg",
  16519. extra: 263 / 234
  16520. }
  16521. },
  16522. backDressed: {
  16523. height: math.unit(5 + 7 / 12, "feet"),
  16524. weight: math.unit(140, "lb"),
  16525. name: "Back (Dressed)",
  16526. image: {
  16527. source: "./media/characters/doc-weardno/back-dressed.svg",
  16528. extra: 266 / 238
  16529. }
  16530. },
  16531. front: {
  16532. height: math.unit(5 + 7 / 12, "feet"),
  16533. weight: math.unit(140, "lb"),
  16534. name: "Front",
  16535. image: {
  16536. source: "./media/characters/doc-weardno/front.svg",
  16537. extra: 254 / 233
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Micro",
  16544. height: math.unit(3, "inches")
  16545. },
  16546. {
  16547. name: "Normal",
  16548. height: math.unit(5 + 7 / 12, "feet"),
  16549. default: true
  16550. },
  16551. {
  16552. name: "Macro",
  16553. height: math.unit(25, "feet")
  16554. },
  16555. {
  16556. name: "Megamacro",
  16557. height: math.unit(2, "miles")
  16558. },
  16559. ]
  16560. ))
  16561. characterMakers.push(() => makeCharacter(
  16562. { name: "Seth Whilst" },
  16563. {
  16564. front: {
  16565. height: math.unit(6 + 2 / 12, "feet"),
  16566. weight: math.unit(153, "lb"),
  16567. name: "Front",
  16568. image: {
  16569. source: "./media/characters/seth-whilst/front.svg",
  16570. bottom: 0.07
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Micro",
  16577. height: math.unit(5, "inches")
  16578. },
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(6 + 2 / 12, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Pocket Jabari" },
  16588. {
  16589. front: {
  16590. height: math.unit(3, "inches"),
  16591. weight: math.unit(8, "grams"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/pocket-jabari/front.svg",
  16595. extra: 1024 / 974,
  16596. bottom: 0.039
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Minimicro",
  16603. height: math.unit(8, "mm")
  16604. },
  16605. {
  16606. name: "Micro",
  16607. height: math.unit(3, "inches"),
  16608. default: true
  16609. },
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(3, "feet")
  16613. },
  16614. ]
  16615. ))
  16616. characterMakers.push(() => makeCharacter(
  16617. { name: "Sapphy" },
  16618. {
  16619. front: {
  16620. height: math.unit(15, "feet"),
  16621. weight: math.unit(3280, "lb"),
  16622. name: "Front",
  16623. image: {
  16624. source: "./media/characters/sapphy/front.svg",
  16625. extra: 671 / 577,
  16626. bottom: 0.085
  16627. }
  16628. },
  16629. back: {
  16630. height: math.unit(15, "feet"),
  16631. weight: math.unit(3280, "lb"),
  16632. name: "Back",
  16633. image: {
  16634. source: "./media/characters/sapphy/back.svg",
  16635. extra: 631 / 607,
  16636. bottom: 0.045
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Normal",
  16643. height: math.unit(15, "feet")
  16644. },
  16645. {
  16646. name: "Casual Macro",
  16647. height: math.unit(120, "feet")
  16648. },
  16649. {
  16650. name: "Macro",
  16651. height: math.unit(2150, "feet"),
  16652. default: true
  16653. },
  16654. {
  16655. name: "Megamacro",
  16656. height: math.unit(8, "miles")
  16657. },
  16658. {
  16659. name: "Galaxy Mom",
  16660. height: math.unit(6, "megalightyears")
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Kiro" },
  16666. {
  16667. front: {
  16668. height: math.unit(6, "feet"),
  16669. weight: math.unit(170, "lb"),
  16670. name: "Front",
  16671. image: {
  16672. source: "./media/characters/kiro/front.svg",
  16673. extra: 1064 / 1012,
  16674. bottom: 0.052
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Micro",
  16681. height: math.unit(6, "inches")
  16682. },
  16683. {
  16684. name: "Normal",
  16685. height: math.unit(6, "feet"),
  16686. default: true
  16687. },
  16688. {
  16689. name: "Macro",
  16690. height: math.unit(72, "feet")
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Irishfox" },
  16696. {
  16697. front: {
  16698. height: math.unit(5 + 9 / 12, "feet"),
  16699. weight: math.unit(175, "lb"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/irishfox/front.svg",
  16703. extra: 1912 / 1680,
  16704. bottom: 0.02
  16705. }
  16706. },
  16707. },
  16708. [
  16709. {
  16710. name: "Nano",
  16711. height: math.unit(1, "mm")
  16712. },
  16713. {
  16714. name: "Micro",
  16715. height: math.unit(2, "inches")
  16716. },
  16717. {
  16718. name: "Normal",
  16719. height: math.unit(5 + 9 / 12, "feet"),
  16720. default: true
  16721. },
  16722. {
  16723. name: "Macro",
  16724. height: math.unit(45, "feet")
  16725. },
  16726. ]
  16727. ))
  16728. characterMakers.push(() => makeCharacter(
  16729. { name: "Aronai Sieyes" },
  16730. {
  16731. front: {
  16732. height: math.unit(6 + 1 / 12, "feet"),
  16733. weight: math.unit(150, "lb"),
  16734. name: "Front",
  16735. image: {
  16736. source: "./media/characters/aronai-sieyes/front.svg",
  16737. extra: 1556 / 1480,
  16738. bottom: 0.015
  16739. }
  16740. },
  16741. side: {
  16742. height: math.unit(6 + 1 / 12, "feet"),
  16743. weight: math.unit(150, "lb"),
  16744. name: "Side",
  16745. image: {
  16746. source: "./media/characters/aronai-sieyes/side.svg",
  16747. extra: 1433 / 1390,
  16748. bottom: 0.0393
  16749. }
  16750. },
  16751. back: {
  16752. height: math.unit(6 + 1 / 12, "feet"),
  16753. weight: math.unit(150, "lb"),
  16754. name: "Back",
  16755. image: {
  16756. source: "./media/characters/aronai-sieyes/back.svg",
  16757. extra: 1544 / 1494,
  16758. bottom: 0.02
  16759. }
  16760. },
  16761. frontClothed: {
  16762. height: math.unit(6 + 1 / 12, "feet"),
  16763. weight: math.unit(150, "lb"),
  16764. name: "Front (Clothed)",
  16765. image: {
  16766. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16767. extra: 1582 / 1527
  16768. }
  16769. },
  16770. feral: {
  16771. height: math.unit(18, "feet"),
  16772. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16773. name: "Feral",
  16774. image: {
  16775. source: "./media/characters/aronai-sieyes/feral.svg",
  16776. extra: 1530 / 1240,
  16777. bottom: 0.035
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Micro",
  16784. height: math.unit(2, "inches")
  16785. },
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(6 + 1 / 12, "feet"),
  16789. default: true
  16790. }
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Xuna" },
  16795. {
  16796. front: {
  16797. height: math.unit(12, "feet"),
  16798. weight: math.unit(410, "kg"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/xuna/front.svg",
  16802. extra: 2184 / 1980
  16803. }
  16804. },
  16805. side: {
  16806. height: math.unit(12, "feet"),
  16807. weight: math.unit(410, "kg"),
  16808. name: "Side",
  16809. image: {
  16810. source: "./media/characters/xuna/side.svg",
  16811. extra: 2184 / 1980
  16812. }
  16813. },
  16814. back: {
  16815. height: math.unit(12, "feet"),
  16816. weight: math.unit(410, "kg"),
  16817. name: "Back",
  16818. image: {
  16819. source: "./media/characters/xuna/back.svg",
  16820. extra: 2184 / 1980
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Nano glow",
  16827. height: math.unit(10, "nm")
  16828. },
  16829. {
  16830. name: "Micro floof",
  16831. height: math.unit(0.3, "m")
  16832. },
  16833. {
  16834. name: "Huggable softy boi",
  16835. height: math.unit(3.6576, "m"),
  16836. default: true
  16837. },
  16838. {
  16839. name: "Admirable floof",
  16840. height: math.unit(80, "meters")
  16841. },
  16842. {
  16843. name: "Gentle macro",
  16844. height: math.unit(300, "meters")
  16845. },
  16846. {
  16847. name: "Very careful floof",
  16848. height: math.unit(3200, "meters")
  16849. },
  16850. {
  16851. name: "The mega floof",
  16852. height: math.unit(36000, "meters")
  16853. },
  16854. {
  16855. name: "Giga-fur-Wicker",
  16856. height: math.unit(4800000, "meters")
  16857. },
  16858. {
  16859. name: "Licky world",
  16860. height: math.unit(20000000, "meters")
  16861. },
  16862. {
  16863. name: "Floofy cyan sun",
  16864. height: math.unit(1500000000, "meters")
  16865. },
  16866. {
  16867. name: "Milky Wicker",
  16868. height: math.unit(1000000000000000000000, "meters")
  16869. },
  16870. {
  16871. name: "The observing Wicker",
  16872. height: math.unit(999999999999999999999999999, "meters")
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Arokha Sieyes" },
  16878. {
  16879. front: {
  16880. height: math.unit(5 + 9 / 12, "feet"),
  16881. weight: math.unit(150, "lb"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/arokha-sieyes/front.svg",
  16885. extra: 1425 / 1284,
  16886. bottom: 0.05
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(5 + 9 / 12, "feet")
  16894. },
  16895. {
  16896. name: "Macro",
  16897. height: math.unit(30, "meters"),
  16898. default: true
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Arokh Sieyes" },
  16904. {
  16905. front: {
  16906. height: math.unit(6, "feet"),
  16907. weight: math.unit(180, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/arokh-sieyes/front.svg",
  16911. extra: 1830 / 1769,
  16912. bottom: 0.01
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(6, "feet")
  16920. },
  16921. {
  16922. name: "Macro",
  16923. height: math.unit(30, "meters"),
  16924. default: true
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Goldeneye" },
  16930. {
  16931. side: {
  16932. height: math.unit(13 + 1 / 12, "feet"),
  16933. weight: math.unit(8.5, "tonnes"),
  16934. name: "Side",
  16935. image: {
  16936. source: "./media/characters/goldeneye/side.svg",
  16937. extra: 1182 / 778,
  16938. bottom: 0.067
  16939. }
  16940. },
  16941. paw: {
  16942. height: math.unit(3.4, "feet"),
  16943. name: "Paw",
  16944. image: {
  16945. source: "./media/characters/goldeneye/paw.svg"
  16946. }
  16947. },
  16948. },
  16949. [
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(13 + 1 / 12, "feet"),
  16953. default: true
  16954. },
  16955. ]
  16956. ))
  16957. characterMakers.push(() => makeCharacter(
  16958. { name: "Leonardo Lycheborne" },
  16959. {
  16960. front: {
  16961. height: math.unit(6 + 1 / 12, "feet"),
  16962. weight: math.unit(210, "lb"),
  16963. name: "Front",
  16964. image: {
  16965. source: "./media/characters/leonardo-lycheborne/front.svg",
  16966. extra: 390 / 365,
  16967. bottom: 0.032
  16968. }
  16969. },
  16970. side: {
  16971. height: math.unit(6 + 1 / 12, "feet"),
  16972. weight: math.unit(210, "lb"),
  16973. name: "Side",
  16974. image: {
  16975. source: "./media/characters/leonardo-lycheborne/side.svg",
  16976. extra: 390 / 365,
  16977. bottom: 0.005
  16978. }
  16979. },
  16980. back: {
  16981. height: math.unit(6 + 1 / 12, "feet"),
  16982. weight: math.unit(210, "lb"),
  16983. name: "Back",
  16984. image: {
  16985. source: "./media/characters/leonardo-lycheborne/back.svg",
  16986. extra: 392 / 366,
  16987. bottom: 0.01
  16988. }
  16989. },
  16990. hand: {
  16991. height: math.unit(1.08, "feet"),
  16992. name: "Hand",
  16993. image: {
  16994. source: "./media/characters/leonardo-lycheborne/hand.svg"
  16995. }
  16996. },
  16997. foot: {
  16998. height: math.unit(1.32, "feet"),
  16999. name: "Foot",
  17000. image: {
  17001. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17002. }
  17003. },
  17004. were: {
  17005. height: math.unit(20, "feet"),
  17006. weight: math.unit(7800, "lb"),
  17007. name: "Were",
  17008. image: {
  17009. source: "./media/characters/leonardo-lycheborne/were.svg",
  17010. extra: 308 / 294,
  17011. bottom: 0.048
  17012. }
  17013. },
  17014. feral: {
  17015. height: math.unit(7.5, "feet"),
  17016. weight: math.unit(600, "lb"),
  17017. name: "Feral",
  17018. image: {
  17019. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17020. extra: 210 / 186,
  17021. bottom: 0.108
  17022. }
  17023. },
  17024. taur: {
  17025. height: math.unit(11, "feet"),
  17026. weight: math.unit(3300, "lb"),
  17027. name: "Taur",
  17028. image: {
  17029. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17030. extra: 320 / 303,
  17031. bottom: 0.025
  17032. }
  17033. },
  17034. barghest: {
  17035. height: math.unit(11, "feet"),
  17036. weight: math.unit(1300, "lb"),
  17037. name: "Barghest",
  17038. image: {
  17039. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17040. extra: 323 / 302,
  17041. bottom: 0.027
  17042. }
  17043. },
  17044. dick: {
  17045. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17046. name: "Dick",
  17047. image: {
  17048. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17049. }
  17050. },
  17051. dickWere: {
  17052. height: math.unit((20) / 3.8, "feet"),
  17053. name: "Dick (Were)",
  17054. image: {
  17055. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17056. }
  17057. },
  17058. },
  17059. [
  17060. {
  17061. name: "Normal",
  17062. height: math.unit(6 + 1 / 12, "feet"),
  17063. default: true
  17064. },
  17065. ]
  17066. ))
  17067. characterMakers.push(() => makeCharacter(
  17068. { name: "Jet" },
  17069. {
  17070. front: {
  17071. height: math.unit(10, "feet"),
  17072. weight: math.unit(350, "lb"),
  17073. name: "Front",
  17074. image: {
  17075. source: "./media/characters/jet/front.svg",
  17076. extra: 2050 / 1980,
  17077. bottom: 0.013
  17078. }
  17079. },
  17080. back: {
  17081. height: math.unit(10, "feet"),
  17082. weight: math.unit(350, "lb"),
  17083. name: "Back",
  17084. image: {
  17085. source: "./media/characters/jet/back.svg",
  17086. extra: 2050 / 1980,
  17087. bottom: 0.013
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Micro",
  17094. height: math.unit(6, "inches")
  17095. },
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(10, "feet"),
  17099. default: true
  17100. },
  17101. {
  17102. name: "Macro",
  17103. height: math.unit(100, "feet")
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Tanarath" },
  17109. {
  17110. front: {
  17111. height: math.unit(15, "feet"),
  17112. weight: math.unit(2800, "lb"),
  17113. name: "Front",
  17114. image: {
  17115. source: "./media/characters/tanarath/front.svg",
  17116. extra: 2392 / 2220,
  17117. bottom: 0.03
  17118. }
  17119. },
  17120. back: {
  17121. height: math.unit(15, "feet"),
  17122. weight: math.unit(2800, "lb"),
  17123. name: "Back",
  17124. image: {
  17125. source: "./media/characters/tanarath/back.svg",
  17126. extra: 2392 / 2220,
  17127. bottom: 0.03
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(15, "feet"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Patty CattyBatty" },
  17141. {
  17142. front: {
  17143. height: math.unit(7 + 1 / 12, "feet"),
  17144. weight: math.unit(175, "lb"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/patty-cattybatty/front.svg",
  17148. extra: 908 / 874,
  17149. bottom: 0.025
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Micro",
  17156. height: math.unit(1, "inch")
  17157. },
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(7 + 1 / 12, "feet")
  17161. },
  17162. {
  17163. name: "Mini Macro",
  17164. height: math.unit(155, "feet")
  17165. },
  17166. {
  17167. name: "Macro",
  17168. height: math.unit(1077, "feet")
  17169. },
  17170. {
  17171. name: "Mega Macro",
  17172. height: math.unit(47650, "feet"),
  17173. default: true
  17174. },
  17175. {
  17176. name: "Giga Macro",
  17177. height: math.unit(440, "miles")
  17178. },
  17179. {
  17180. name: "Tera Macro",
  17181. height: math.unit(8700, "miles")
  17182. },
  17183. {
  17184. name: "Planetary Macro",
  17185. height: math.unit(32700, "miles")
  17186. },
  17187. {
  17188. name: "Solar Macro",
  17189. height: math.unit(550000, "miles")
  17190. },
  17191. {
  17192. name: "Celestial Macro",
  17193. height: math.unit(2.5, "AU")
  17194. },
  17195. ]
  17196. ))
  17197. characterMakers.push(() => makeCharacter(
  17198. { name: "Cappu" },
  17199. {
  17200. front: {
  17201. height: math.unit(4 + 5 / 12, "feet"),
  17202. weight: math.unit(90, "lb"),
  17203. name: "Front",
  17204. image: {
  17205. source: "./media/characters/cappu/front.svg",
  17206. extra: 1247 / 1152,
  17207. bottom: 0.012
  17208. }
  17209. },
  17210. },
  17211. [
  17212. {
  17213. name: "Normal",
  17214. height: math.unit(4 + 5 / 12, "feet"),
  17215. default: true
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Sebi" },
  17221. {
  17222. frontDressed: {
  17223. height: math.unit(70, "cm"),
  17224. weight: math.unit(6, "kg"),
  17225. name: "Front (Dressed)",
  17226. image: {
  17227. source: "./media/characters/sebi/front-dressed.svg",
  17228. extra: 713.5 / 686.5,
  17229. bottom: 0.003
  17230. }
  17231. },
  17232. front: {
  17233. height: math.unit(70, "cm"),
  17234. weight: math.unit(5, "kg"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/sebi/front.svg",
  17238. extra: 713.5 / 686.5,
  17239. bottom: 0.003
  17240. }
  17241. }
  17242. },
  17243. [
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(70, "cm"),
  17247. default: true
  17248. },
  17249. {
  17250. name: "Macro",
  17251. height: math.unit(8, "meters")
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Typhek" },
  17257. {
  17258. front: {
  17259. height: math.unit(6, "feet"),
  17260. weight: math.unit(150, "lb"),
  17261. name: "Front",
  17262. image: {
  17263. source: "./media/characters/typhek/front.svg",
  17264. extra: 1948 / 1929,
  17265. bottom: 0.025
  17266. }
  17267. },
  17268. side: {
  17269. height: math.unit(6, "feet"),
  17270. weight: math.unit(150, "lb"),
  17271. name: "Side",
  17272. image: {
  17273. source: "./media/characters/typhek/side.svg",
  17274. extra: 2034 / 2010,
  17275. bottom: 0.003
  17276. }
  17277. },
  17278. back: {
  17279. height: math.unit(6, "feet"),
  17280. weight: math.unit(150, "lb"),
  17281. name: "Back",
  17282. image: {
  17283. source: "./media/characters/typhek/back.svg",
  17284. extra: 2005 / 1978,
  17285. bottom: 0.004
  17286. }
  17287. },
  17288. palm: {
  17289. height: math.unit(1.2, "feet"),
  17290. name: "Palm",
  17291. image: {
  17292. source: "./media/characters/typhek/palm.svg"
  17293. }
  17294. },
  17295. fist: {
  17296. height: math.unit(1.1, "feet"),
  17297. name: "Fist",
  17298. image: {
  17299. source: "./media/characters/typhek/fist.svg"
  17300. }
  17301. },
  17302. foot: {
  17303. height: math.unit(1.57, "feet"),
  17304. name: "Foot",
  17305. image: {
  17306. source: "./media/characters/typhek/foot.svg"
  17307. }
  17308. },
  17309. sole: {
  17310. height: math.unit(2.05, "feet"),
  17311. name: "Sole",
  17312. image: {
  17313. source: "./media/characters/typhek/sole.svg"
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Macro",
  17320. height: math.unit(40, "stories"),
  17321. default: true
  17322. },
  17323. {
  17324. name: "Megamacro",
  17325. height: math.unit(1, "mile")
  17326. },
  17327. {
  17328. name: "Gigamacro",
  17329. height: math.unit(4000, "solarradii")
  17330. },
  17331. {
  17332. name: "Universal",
  17333. height: math.unit(1.1, "universes")
  17334. }
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Kassy" },
  17339. {
  17340. side: {
  17341. height: math.unit(5 + 7 / 12, "feet"),
  17342. weight: math.unit(150, "lb"),
  17343. name: "Side",
  17344. image: {
  17345. source: "./media/characters/kassy/side.svg",
  17346. extra: 1280 / 1225,
  17347. bottom: 0.002
  17348. }
  17349. },
  17350. front: {
  17351. height: math.unit(5 + 7 / 12, "feet"),
  17352. weight: math.unit(150, "lb"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/kassy/front.svg",
  17356. extra: 1280 / 1225,
  17357. bottom: 0.025
  17358. }
  17359. },
  17360. back: {
  17361. height: math.unit(5 + 7 / 12, "feet"),
  17362. weight: math.unit(150, "lb"),
  17363. name: "Back",
  17364. image: {
  17365. source: "./media/characters/kassy/back.svg",
  17366. extra: 1280 / 1225,
  17367. bottom: 0.002
  17368. }
  17369. },
  17370. foot: {
  17371. height: math.unit(1.266, "feet"),
  17372. name: "Foot",
  17373. image: {
  17374. source: "./media/characters/kassy/foot.svg"
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Normal",
  17381. height: math.unit(5 + 7 / 12, "feet")
  17382. },
  17383. {
  17384. name: "Macro",
  17385. height: math.unit(137, "feet"),
  17386. default: true
  17387. },
  17388. {
  17389. name: "Megamacro",
  17390. height: math.unit(1, "mile")
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Neil" },
  17396. {
  17397. front: {
  17398. height: math.unit(6 + 1 / 12, "feet"),
  17399. weight: math.unit(200, "lb"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/neil/front.svg",
  17403. extra: 1326 / 1250,
  17404. bottom: 0.023
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(6 + 1 / 12, "feet"),
  17412. default: true
  17413. },
  17414. {
  17415. name: "Macro",
  17416. height: math.unit(200, "feet")
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Atticus" },
  17422. {
  17423. front: {
  17424. height: math.unit(5 + 9 / 12, "feet"),
  17425. weight: math.unit(190, "lb"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/atticus/front.svg",
  17429. extra: 2934 / 2785,
  17430. bottom: 0.025
  17431. }
  17432. },
  17433. },
  17434. [
  17435. {
  17436. name: "Normal",
  17437. height: math.unit(5 + 9 / 12, "feet"),
  17438. default: true
  17439. },
  17440. {
  17441. name: "Macro",
  17442. height: math.unit(180, "feet")
  17443. },
  17444. ]
  17445. ))
  17446. characterMakers.push(() => makeCharacter(
  17447. { name: "Milo" },
  17448. {
  17449. side: {
  17450. height: math.unit(9, "feet"),
  17451. weight: math.unit(650, "lb"),
  17452. name: "Side",
  17453. image: {
  17454. source: "./media/characters/milo/side.svg",
  17455. extra: 2644 / 2310,
  17456. bottom: 0.032
  17457. }
  17458. },
  17459. },
  17460. [
  17461. {
  17462. name: "Normal",
  17463. height: math.unit(9, "feet"),
  17464. default: true
  17465. },
  17466. {
  17467. name: "Macro",
  17468. height: math.unit(300, "feet")
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Ijzer" },
  17474. {
  17475. side: {
  17476. height: math.unit(8, "meters"),
  17477. weight: math.unit(90000, "kg"),
  17478. name: "Side",
  17479. image: {
  17480. source: "./media/characters/ijzer/side.svg",
  17481. extra: 2756 / 1600,
  17482. bottom: 0.01
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Small",
  17489. height: math.unit(3, "meters")
  17490. },
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(8, "meters"),
  17494. default: true
  17495. },
  17496. {
  17497. name: "Normal+",
  17498. height: math.unit(10, "meters")
  17499. },
  17500. {
  17501. name: "Bigger",
  17502. height: math.unit(24, "meters")
  17503. },
  17504. {
  17505. name: "Huge",
  17506. height: math.unit(80, "meters")
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Luca Cervicum" },
  17512. {
  17513. front: {
  17514. height: math.unit(6 + 2 / 12, "feet"),
  17515. weight: math.unit(153, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/luca-cervicum/front.svg",
  17519. extra: 370 / 327,
  17520. bottom: 0.015
  17521. }
  17522. },
  17523. back: {
  17524. height: math.unit(6 + 2 / 12, "feet"),
  17525. weight: math.unit(153, "lb"),
  17526. name: "Back",
  17527. image: {
  17528. source: "./media/characters/luca-cervicum/back.svg",
  17529. extra: 367 / 333,
  17530. bottom: 0.005
  17531. }
  17532. },
  17533. frontGear: {
  17534. height: math.unit(6 + 2 / 12, "feet"),
  17535. weight: math.unit(173, "lb"),
  17536. name: "Front (Gear)",
  17537. image: {
  17538. source: "./media/characters/luca-cervicum/front-gear.svg",
  17539. extra: 377 / 333,
  17540. bottom: 0.006
  17541. }
  17542. },
  17543. },
  17544. [
  17545. {
  17546. name: "Normal",
  17547. height: math.unit(6 + 2 / 12, "feet"),
  17548. default: true
  17549. },
  17550. ]
  17551. ))
  17552. characterMakers.push(() => makeCharacter(
  17553. { name: "Oliver" },
  17554. {
  17555. front: {
  17556. height: math.unit(6 + 1 / 12, "feet"),
  17557. weight: math.unit(304, "lb"),
  17558. name: "Front",
  17559. image: {
  17560. source: "./media/characters/oliver/front.svg",
  17561. extra: 157 / 143,
  17562. bottom: 0.08
  17563. }
  17564. },
  17565. },
  17566. [
  17567. {
  17568. name: "Normal",
  17569. height: math.unit(6 + 1 / 12, "feet"),
  17570. default: true
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Shane" },
  17576. {
  17577. front: {
  17578. height: math.unit(5 + 7 / 12, "feet"),
  17579. weight: math.unit(140, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/shane/front.svg",
  17583. extra: 304 / 289,
  17584. bottom: 0.005
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Normal",
  17591. height: math.unit(5 + 7 / 12, "feet"),
  17592. default: true
  17593. },
  17594. ]
  17595. ))
  17596. characterMakers.push(() => makeCharacter(
  17597. { name: "Shin" },
  17598. {
  17599. front: {
  17600. height: math.unit(5 + 9 / 12, "feet"),
  17601. weight: math.unit(178, "lb"),
  17602. name: "Front",
  17603. image: {
  17604. source: "./media/characters/shin/front.svg",
  17605. extra: 159 / 151,
  17606. bottom: 0.015
  17607. }
  17608. },
  17609. },
  17610. [
  17611. {
  17612. name: "Normal",
  17613. height: math.unit(5 + 9 / 12, "feet"),
  17614. default: true
  17615. },
  17616. ]
  17617. ))
  17618. characterMakers.push(() => makeCharacter(
  17619. { name: "Xerxes" },
  17620. {
  17621. front: {
  17622. height: math.unit(5 + 10 / 12, "feet"),
  17623. weight: math.unit(168, "lb"),
  17624. name: "Front",
  17625. image: {
  17626. source: "./media/characters/xerxes/front.svg",
  17627. extra: 282 / 260,
  17628. bottom: 0.045
  17629. }
  17630. },
  17631. },
  17632. [
  17633. {
  17634. name: "Normal",
  17635. height: math.unit(5 + 10 / 12, "feet"),
  17636. default: true
  17637. },
  17638. ]
  17639. ))
  17640. characterMakers.push(() => makeCharacter(
  17641. { name: "Chaska" },
  17642. {
  17643. front: {
  17644. height: math.unit(6 + 7 / 12, "feet"),
  17645. weight: math.unit(208, "lb"),
  17646. name: "Front",
  17647. image: {
  17648. source: "./media/characters/chaska/front.svg",
  17649. extra: 332 / 319,
  17650. bottom: 0.015
  17651. }
  17652. },
  17653. },
  17654. [
  17655. {
  17656. name: "Normal",
  17657. height: math.unit(6 + 7 / 12, "feet"),
  17658. default: true
  17659. },
  17660. ]
  17661. ))
  17662. characterMakers.push(() => makeCharacter(
  17663. { name: "Enuk" },
  17664. {
  17665. front: {
  17666. height: math.unit(5 + 8 / 12, "feet"),
  17667. weight: math.unit(208, "lb"),
  17668. name: "Front",
  17669. image: {
  17670. source: "./media/characters/enuk/front.svg",
  17671. extra: 437 / 406,
  17672. bottom: 0.02
  17673. }
  17674. },
  17675. },
  17676. [
  17677. {
  17678. name: "Normal",
  17679. height: math.unit(5 + 8 / 12, "feet"),
  17680. default: true
  17681. },
  17682. ]
  17683. ))
  17684. characterMakers.push(() => makeCharacter(
  17685. { name: "Bruun" },
  17686. {
  17687. front: {
  17688. height: math.unit(5 + 10 / 12, "feet"),
  17689. weight: math.unit(252, "lb"),
  17690. name: "Front",
  17691. image: {
  17692. source: "./media/characters/bruun/front.svg",
  17693. extra: 197 / 187,
  17694. bottom: 0.012
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(5 + 10 / 12, "feet"),
  17702. default: true
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Alexeev" },
  17708. {
  17709. front: {
  17710. height: math.unit(6 + 10 / 12, "feet"),
  17711. weight: math.unit(255, "lb"),
  17712. name: "Front",
  17713. image: {
  17714. source: "./media/characters/alexeev/front.svg",
  17715. extra: 213 / 200,
  17716. bottom: 0.05
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(6 + 10 / 12, "feet"),
  17724. default: true
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Evelyn" },
  17730. {
  17731. front: {
  17732. height: math.unit(2 + 8 / 12, "feet"),
  17733. weight: math.unit(22, "lb"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/evelyn/front.svg",
  17737. extra: 208 / 180
  17738. }
  17739. },
  17740. },
  17741. [
  17742. {
  17743. name: "Normal",
  17744. height: math.unit(2 + 8 / 12, "feet"),
  17745. default: true
  17746. },
  17747. ]
  17748. ))
  17749. characterMakers.push(() => makeCharacter(
  17750. { name: "Inca" },
  17751. {
  17752. front: {
  17753. height: math.unit(5 + 9 / 12, "feet"),
  17754. weight: math.unit(139, "lb"),
  17755. name: "Front",
  17756. image: {
  17757. source: "./media/characters/inca/front.svg",
  17758. extra: 294 / 291,
  17759. bottom: 0.03
  17760. }
  17761. },
  17762. },
  17763. [
  17764. {
  17765. name: "Normal",
  17766. height: math.unit(5 + 9 / 12, "feet"),
  17767. default: true
  17768. },
  17769. ]
  17770. ))
  17771. characterMakers.push(() => makeCharacter(
  17772. { name: "Magdalene" },
  17773. {
  17774. front: {
  17775. height: math.unit(5 + 1 / 12, "feet"),
  17776. weight: math.unit(84, "lb"),
  17777. name: "Front",
  17778. image: {
  17779. source: "./media/characters/magdalene/front.svg",
  17780. extra: 293 / 273
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(5 + 1 / 12, "feet"),
  17788. default: true
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Mera" },
  17794. {
  17795. front: {
  17796. height: math.unit(6 + 3 / 12, "feet"),
  17797. weight: math.unit(185, "lb"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/mera/front.svg",
  17801. extra: 291 / 277,
  17802. bottom: 0.03
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(6 + 3 / 12, "feet"),
  17810. default: true
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Ceres" },
  17816. {
  17817. front: {
  17818. height: math.unit(6 + 7 / 12, "feet"),
  17819. weight: math.unit(160, "lb"),
  17820. name: "Front",
  17821. image: {
  17822. source: "./media/characters/ceres/front.svg",
  17823. extra: 1023 / 950,
  17824. bottom: 0.027
  17825. }
  17826. },
  17827. back: {
  17828. height: math.unit(6 + 7 / 12, "feet"),
  17829. weight: math.unit(160, "lb"),
  17830. name: "Back",
  17831. image: {
  17832. source: "./media/characters/ceres/back.svg",
  17833. extra: 1023 / 950
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(6 + 7 / 12, "feet"),
  17841. default: true
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Kris" },
  17847. {
  17848. front: {
  17849. height: math.unit(5 + 10 / 12, "feet"),
  17850. weight: math.unit(150, "lb"),
  17851. name: "Front",
  17852. image: {
  17853. source: "./media/characters/kris/front.svg",
  17854. extra: 885 / 803,
  17855. bottom: 0.03
  17856. }
  17857. },
  17858. },
  17859. [
  17860. {
  17861. name: "Normal",
  17862. height: math.unit(5 + 10 / 12, "feet"),
  17863. default: true
  17864. },
  17865. ]
  17866. ))
  17867. characterMakers.push(() => makeCharacter(
  17868. { name: "Taluthus" },
  17869. {
  17870. front: {
  17871. height: math.unit(7, "feet"),
  17872. weight: math.unit(120, "kg"),
  17873. name: "Front",
  17874. image: {
  17875. source: "./media/characters/taluthus/front.svg",
  17876. extra: 903 / 833,
  17877. bottom: 0.015
  17878. }
  17879. },
  17880. },
  17881. [
  17882. {
  17883. name: "Normal",
  17884. height: math.unit(7, "feet"),
  17885. default: true
  17886. },
  17887. {
  17888. name: "Macro",
  17889. height: math.unit(300, "feet")
  17890. },
  17891. ]
  17892. ))
  17893. characterMakers.push(() => makeCharacter(
  17894. { name: "Dawn" },
  17895. {
  17896. front: {
  17897. height: math.unit(5 + 9 / 12, "feet"),
  17898. weight: math.unit(145, "lb"),
  17899. name: "Front",
  17900. image: {
  17901. source: "./media/characters/dawn/front.svg",
  17902. extra: 2094 / 2016,
  17903. bottom: 0.025
  17904. }
  17905. },
  17906. back: {
  17907. height: math.unit(5 + 9 / 12, "feet"),
  17908. weight: math.unit(160, "lb"),
  17909. name: "Back",
  17910. image: {
  17911. source: "./media/characters/dawn/back.svg",
  17912. extra: 2112 / 2080,
  17913. bottom: 0.005
  17914. }
  17915. },
  17916. },
  17917. [
  17918. {
  17919. name: "Normal",
  17920. height: math.unit(6 + 7 / 12, "feet"),
  17921. default: true
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Arador" },
  17927. {
  17928. anthro: {
  17929. height: math.unit(8 + 3 / 12, "feet"),
  17930. weight: math.unit(450, "lb"),
  17931. name: "Anthro",
  17932. image: {
  17933. source: "./media/characters/arador/anthro.svg",
  17934. extra: 1835 / 1718,
  17935. bottom: 0.025
  17936. }
  17937. },
  17938. feral: {
  17939. height: math.unit(4, "feet"),
  17940. weight: math.unit(200, "lb"),
  17941. name: "Feral",
  17942. image: {
  17943. source: "./media/characters/arador/feral.svg",
  17944. extra: 1683 / 1514,
  17945. bottom: 0.07
  17946. }
  17947. },
  17948. },
  17949. [
  17950. {
  17951. name: "Normal",
  17952. height: math.unit(8 + 3 / 12, "feet")
  17953. },
  17954. {
  17955. name: "Macro",
  17956. height: math.unit(82.5, "feet"),
  17957. default: true
  17958. },
  17959. ]
  17960. ))
  17961. characterMakers.push(() => makeCharacter(
  17962. { name: "Dharsi" },
  17963. {
  17964. front: {
  17965. height: math.unit(5 + 10 / 12, "feet"),
  17966. weight: math.unit(125, "lb"),
  17967. name: "Front",
  17968. image: {
  17969. source: "./media/characters/dharsi/front.svg",
  17970. extra: 716 / 630,
  17971. bottom: 0.035
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Nano",
  17978. height: math.unit(100, "nm")
  17979. },
  17980. {
  17981. name: "Micro",
  17982. height: math.unit(2, "inches")
  17983. },
  17984. {
  17985. name: "Normal",
  17986. height: math.unit(5 + 10 / 12, "feet"),
  17987. default: true
  17988. },
  17989. {
  17990. name: "Macro",
  17991. height: math.unit(1000, "feet")
  17992. },
  17993. {
  17994. name: "Megamacro",
  17995. height: math.unit(10, "miles")
  17996. },
  17997. {
  17998. name: "Gigamacro",
  17999. height: math.unit(3000, "miles")
  18000. },
  18001. {
  18002. name: "Teramacro",
  18003. height: math.unit(500000, "miles")
  18004. },
  18005. {
  18006. name: "Teramacro+",
  18007. height: math.unit(30, "galaxies")
  18008. },
  18009. ]
  18010. ))
  18011. characterMakers.push(() => makeCharacter(
  18012. { name: "Deathy" },
  18013. {
  18014. front: {
  18015. height: math.unit(6, "feet"),
  18016. weight: math.unit(150, "lb"),
  18017. name: "Front",
  18018. image: {
  18019. source: "./media/characters/deathy/front.svg",
  18020. extra: 1552 / 1463,
  18021. bottom: 0.025
  18022. }
  18023. },
  18024. side: {
  18025. height: math.unit(6, "feet"),
  18026. weight: math.unit(150, "lb"),
  18027. name: "Side",
  18028. image: {
  18029. source: "./media/characters/deathy/side.svg",
  18030. extra: 1604 / 1455,
  18031. bottom: 0.025
  18032. }
  18033. },
  18034. back: {
  18035. height: math.unit(6, "feet"),
  18036. weight: math.unit(150, "lb"),
  18037. name: "Back",
  18038. image: {
  18039. source: "./media/characters/deathy/back.svg",
  18040. extra: 1580 / 1463,
  18041. bottom: 0.005
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Micro",
  18048. height: math.unit(5, "millimeters")
  18049. },
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(6 + 5 / 12, "feet"),
  18053. default: true
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Juniper" },
  18059. {
  18060. front: {
  18061. height: math.unit(16, "feet"),
  18062. weight: math.unit(4000, "lb"),
  18063. name: "Front",
  18064. image: {
  18065. source: "./media/characters/juniper/front.svg",
  18066. bottom: 0.04
  18067. }
  18068. },
  18069. },
  18070. [
  18071. {
  18072. name: "Normal",
  18073. height: math.unit(16, "feet"),
  18074. default: true
  18075. },
  18076. ]
  18077. ))
  18078. characterMakers.push(() => makeCharacter(
  18079. { name: "Hipster" },
  18080. {
  18081. front: {
  18082. height: math.unit(6, "feet"),
  18083. weight: math.unit(150, "lb"),
  18084. name: "Front",
  18085. image: {
  18086. source: "./media/characters/hipster/front.svg",
  18087. extra: 1312 / 1209,
  18088. bottom: 0.025
  18089. }
  18090. },
  18091. back: {
  18092. height: math.unit(6, "feet"),
  18093. weight: math.unit(150, "lb"),
  18094. name: "Back",
  18095. image: {
  18096. source: "./media/characters/hipster/back.svg",
  18097. extra: 1281 / 1196,
  18098. bottom: 0.01
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Micro",
  18105. height: math.unit(1, "mm")
  18106. },
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(4, "inches"),
  18110. default: true
  18111. },
  18112. {
  18113. name: "Macro",
  18114. height: math.unit(500, "feet")
  18115. },
  18116. {
  18117. name: "Megamacro",
  18118. height: math.unit(1000, "miles")
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Tendirmuldr" },
  18124. {
  18125. front: {
  18126. height: math.unit(6, "feet"),
  18127. weight: math.unit(150, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/tendirmuldr/front.svg",
  18131. extra: 1878 / 1772,
  18132. bottom: 0.015
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Megamacro",
  18139. height: math.unit(1500, "miles"),
  18140. default: true
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Mort" },
  18146. {
  18147. front: {
  18148. height: math.unit(14, "feet"),
  18149. weight: math.unit(12000, "lb"),
  18150. name: "Front",
  18151. image: {
  18152. source: "./media/characters/mort/front.svg",
  18153. extra: 365 / 318,
  18154. bottom: 0.01
  18155. }
  18156. },
  18157. side: {
  18158. height: math.unit(14, "feet"),
  18159. weight: math.unit(12000, "lb"),
  18160. name: "Side",
  18161. image: {
  18162. source: "./media/characters/mort/side.svg",
  18163. extra: 365 / 318,
  18164. bottom: 0.052
  18165. },
  18166. default: true
  18167. },
  18168. back: {
  18169. height: math.unit(14, "feet"),
  18170. weight: math.unit(12000, "lb"),
  18171. name: "Back",
  18172. image: {
  18173. source: "./media/characters/mort/back.svg",
  18174. extra: 371 / 332,
  18175. bottom: 0.18
  18176. }
  18177. },
  18178. },
  18179. [
  18180. {
  18181. name: "Normal",
  18182. height: math.unit(14, "feet"),
  18183. default: true
  18184. },
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "Lycoa" },
  18189. {
  18190. front: {
  18191. height: math.unit(8, "feet"),
  18192. weight: math.unit(1, "ton"),
  18193. name: "Front",
  18194. image: {
  18195. source: "./media/characters/lycoa/front.svg",
  18196. extra: 1875 / 1789,
  18197. bottom: 0.022
  18198. }
  18199. },
  18200. back: {
  18201. height: math.unit(8, "feet"),
  18202. weight: math.unit(1, "ton"),
  18203. name: "Back",
  18204. image: {
  18205. source: "./media/characters/lycoa/back.svg",
  18206. extra: 1835 / 1781,
  18207. bottom: 0.03
  18208. }
  18209. },
  18210. },
  18211. [
  18212. {
  18213. name: "Normal",
  18214. height: math.unit(8, "feet"),
  18215. default: true
  18216. },
  18217. {
  18218. name: "Macro",
  18219. height: math.unit(30, "feet")
  18220. },
  18221. ]
  18222. ))
  18223. characterMakers.push(() => makeCharacter(
  18224. { name: "Naldara" },
  18225. {
  18226. front: {
  18227. height: math.unit(4 + 2 / 12, "feet"),
  18228. weight: math.unit(70, "lb"),
  18229. name: "Front",
  18230. image: {
  18231. source: "./media/characters/naldara/front.svg",
  18232. extra: 841 / 720,
  18233. bottom: 0.04
  18234. }
  18235. },
  18236. },
  18237. [
  18238. {
  18239. name: "Normal",
  18240. height: math.unit(4 + 2 / 12, "feet"),
  18241. default: true
  18242. },
  18243. ]
  18244. ))
  18245. characterMakers.push(() => makeCharacter(
  18246. { name: "Briar" },
  18247. {
  18248. front: {
  18249. height: math.unit(13 + 7 / 12, "feet"),
  18250. weight: math.unit(1500, "lb"),
  18251. name: "Front",
  18252. image: {
  18253. source: "./media/characters/briar/front.svg",
  18254. extra: 626 / 596,
  18255. bottom: 0.08
  18256. }
  18257. },
  18258. },
  18259. [
  18260. {
  18261. name: "Normal",
  18262. height: math.unit(13 + 7 / 12, "feet"),
  18263. default: true
  18264. },
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "Vanguard" },
  18269. {
  18270. side: {
  18271. height: math.unit(10, "feet"),
  18272. weight: math.unit(500, "lb"),
  18273. name: "Side",
  18274. image: {
  18275. source: "./media/characters/vanguard/side.svg",
  18276. extra: 502 / 425,
  18277. bottom: 0.087
  18278. }
  18279. },
  18280. },
  18281. [
  18282. {
  18283. name: "Normal",
  18284. height: math.unit(10, "feet"),
  18285. default: true
  18286. },
  18287. ]
  18288. ))
  18289. characterMakers.push(() => makeCharacter(
  18290. { name: "Artemis" },
  18291. {
  18292. front: {
  18293. height: math.unit(7.5, "feet"),
  18294. weight: math.unit(2, "lb"),
  18295. name: "Front",
  18296. image: {
  18297. source: "./media/characters/artemis/front.svg",
  18298. extra: 1192 / 1075,
  18299. bottom: 0.07
  18300. }
  18301. },
  18302. },
  18303. [
  18304. {
  18305. name: "Normal",
  18306. height: math.unit(7.5, "feet"),
  18307. default: true
  18308. },
  18309. {
  18310. name: "Enlarged",
  18311. height: math.unit(12, "feet")
  18312. },
  18313. ]
  18314. ))
  18315. characterMakers.push(() => makeCharacter(
  18316. { name: "Kira" },
  18317. {
  18318. front: {
  18319. height: math.unit(5 + 3 / 12, "feet"),
  18320. weight: math.unit(160, "lb"),
  18321. name: "Front",
  18322. image: {
  18323. source: "./media/characters/kira/front.svg",
  18324. extra: 906 / 786,
  18325. bottom: 0.01
  18326. }
  18327. },
  18328. back: {
  18329. height: math.unit(5 + 3 / 12, "feet"),
  18330. weight: math.unit(160, "lb"),
  18331. name: "Back",
  18332. image: {
  18333. source: "./media/characters/kira/back.svg",
  18334. extra: 882 / 757,
  18335. bottom: 0.005
  18336. }
  18337. },
  18338. frontDressed: {
  18339. height: math.unit(5 + 3 / 12, "feet"),
  18340. weight: math.unit(160, "lb"),
  18341. name: "Front (Dressed)",
  18342. image: {
  18343. source: "./media/characters/kira/front-dressed.svg",
  18344. extra: 906 / 786,
  18345. bottom: 0.01
  18346. }
  18347. },
  18348. beans: {
  18349. height: math.unit(0.92, "feet"),
  18350. name: "Beans",
  18351. image: {
  18352. source: "./media/characters/kira/beans.svg"
  18353. }
  18354. },
  18355. },
  18356. [
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(5 + 3 / 12, "feet"),
  18360. default: true
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Scramble" },
  18366. {
  18367. front: {
  18368. height: math.unit(5 + 4 / 12, "feet"),
  18369. weight: math.unit(145, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/scramble/front.svg",
  18373. extra: 763 / 727,
  18374. bottom: 0.05
  18375. }
  18376. },
  18377. back: {
  18378. height: math.unit(5 + 4 / 12, "feet"),
  18379. weight: math.unit(145, "lb"),
  18380. name: "Back",
  18381. image: {
  18382. source: "./media/characters/scramble/back.svg",
  18383. extra: 826 / 737,
  18384. bottom: 0.002
  18385. }
  18386. },
  18387. },
  18388. [
  18389. {
  18390. name: "Normal",
  18391. height: math.unit(5 + 4 / 12, "feet"),
  18392. default: true
  18393. },
  18394. ]
  18395. ))
  18396. characterMakers.push(() => makeCharacter(
  18397. { name: "Biscuit" },
  18398. {
  18399. side: {
  18400. height: math.unit(6 + 2 / 12, "feet"),
  18401. weight: math.unit(190, "lb"),
  18402. name: "Side",
  18403. image: {
  18404. source: "./media/characters/biscuit/side.svg",
  18405. extra: 858 / 791,
  18406. bottom: 0.044
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Normal",
  18413. height: math.unit(6 + 2 / 12, "feet"),
  18414. default: true
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Poffin" },
  18420. {
  18421. front: {
  18422. height: math.unit(5 + 2 / 12, "feet"),
  18423. weight: math.unit(120, "lb"),
  18424. name: "Front",
  18425. image: {
  18426. source: "./media/characters/poffin/front.svg",
  18427. extra: 786 / 680,
  18428. bottom: 0.005
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(5 + 2 / 12, "feet"),
  18436. default: true
  18437. },
  18438. ]
  18439. ))
  18440. characterMakers.push(() => makeCharacter(
  18441. { name: "Dhari" },
  18442. {
  18443. front: {
  18444. height: math.unit(6 + 3 / 12, "feet"),
  18445. weight: math.unit(519, "lb"),
  18446. name: "Front",
  18447. image: {
  18448. source: "./media/characters/dhari/front.svg",
  18449. extra: 1048 / 946,
  18450. bottom: 0.015
  18451. }
  18452. },
  18453. back: {
  18454. height: math.unit(6 + 3 / 12, "feet"),
  18455. weight: math.unit(519, "lb"),
  18456. name: "Back",
  18457. image: {
  18458. source: "./media/characters/dhari/back.svg",
  18459. extra: 1048 / 931,
  18460. bottom: 0.005
  18461. }
  18462. },
  18463. frontDressed: {
  18464. height: math.unit(6 + 3 / 12, "feet"),
  18465. weight: math.unit(519, "lb"),
  18466. name: "Front (Dressed)",
  18467. image: {
  18468. source: "./media/characters/dhari/front-dressed.svg",
  18469. extra: 1713 / 1546,
  18470. bottom: 0.02
  18471. }
  18472. },
  18473. backDressed: {
  18474. height: math.unit(6 + 3 / 12, "feet"),
  18475. weight: math.unit(519, "lb"),
  18476. name: "Back (Dressed)",
  18477. image: {
  18478. source: "./media/characters/dhari/back-dressed.svg",
  18479. extra: 1699 / 1537,
  18480. bottom: 0.01
  18481. }
  18482. },
  18483. maw: {
  18484. height: math.unit(0.95, "feet"),
  18485. name: "Maw",
  18486. image: {
  18487. source: "./media/characters/dhari/maw.svg"
  18488. }
  18489. },
  18490. wereFront: {
  18491. height: math.unit(12 + 8 / 12, "feet"),
  18492. weight: math.unit(4000, "lb"),
  18493. name: "Front (Were)",
  18494. image: {
  18495. source: "./media/characters/dhari/were-front.svg",
  18496. extra: 1065 / 969,
  18497. bottom: 0.015
  18498. }
  18499. },
  18500. wereBack: {
  18501. height: math.unit(12 + 8 / 12, "feet"),
  18502. weight: math.unit(4000, "lb"),
  18503. name: "Back (Were)",
  18504. image: {
  18505. source: "./media/characters/dhari/were-back.svg",
  18506. extra: 1065 / 969,
  18507. bottom: 0.012
  18508. }
  18509. },
  18510. wereMaw: {
  18511. height: math.unit(0.625, "meters"),
  18512. name: "Maw (Were)",
  18513. image: {
  18514. source: "./media/characters/dhari/were-maw.svg"
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Normal",
  18521. height: math.unit(6 + 3 / 12, "feet"),
  18522. default: true
  18523. },
  18524. ]
  18525. ))
  18526. characterMakers.push(() => makeCharacter(
  18527. { name: "Rena Dyne" },
  18528. {
  18529. anthro: {
  18530. height: math.unit(5 + 7 / 12, "feet"),
  18531. weight: math.unit(175, "lb"),
  18532. name: "Anthro",
  18533. image: {
  18534. source: "./media/characters/rena-dyne/anthro.svg",
  18535. extra: 1849 / 1785,
  18536. bottom: 0.005
  18537. }
  18538. },
  18539. taur: {
  18540. height: math.unit(15 + 6 / 12, "feet"),
  18541. weight: math.unit(8000, "lb"),
  18542. name: "Taur",
  18543. image: {
  18544. source: "./media/characters/rena-dyne/taur.svg",
  18545. extra: 2315 / 2234,
  18546. bottom: 0.033
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Normal",
  18553. height: math.unit(5 + 7 / 12, "feet"),
  18554. default: true
  18555. },
  18556. ]
  18557. ))
  18558. characterMakers.push(() => makeCharacter(
  18559. { name: "Weremeep" },
  18560. {
  18561. front: {
  18562. height: math.unit(8, "feet"),
  18563. weight: math.unit(600, "lb"),
  18564. name: "Front",
  18565. image: {
  18566. source: "./media/characters/weremeep/front.svg",
  18567. extra: 967 / 862,
  18568. bottom: 0.01
  18569. }
  18570. },
  18571. },
  18572. [
  18573. {
  18574. name: "Normal",
  18575. height: math.unit(8, "feet"),
  18576. default: true
  18577. },
  18578. {
  18579. name: "Lorg",
  18580. height: math.unit(12, "feet")
  18581. },
  18582. {
  18583. name: "Oh Lawd She Comin'",
  18584. height: math.unit(20, "feet")
  18585. },
  18586. ]
  18587. ))
  18588. characterMakers.push(() => makeCharacter(
  18589. { name: "Reza" },
  18590. {
  18591. front: {
  18592. height: math.unit(4, "feet"),
  18593. weight: math.unit(90, "lb"),
  18594. name: "Front",
  18595. image: {
  18596. source: "./media/characters/reza/front.svg",
  18597. extra: 1183 / 1111,
  18598. bottom: 0.017
  18599. }
  18600. },
  18601. back: {
  18602. height: math.unit(4, "feet"),
  18603. weight: math.unit(90, "lb"),
  18604. name: "Back",
  18605. image: {
  18606. source: "./media/characters/reza/back.svg",
  18607. extra: 1183 / 1111,
  18608. bottom: 0.01
  18609. }
  18610. },
  18611. drake: {
  18612. height: math.unit(30, "feet"),
  18613. weight: math.unit(246960, "lb"),
  18614. name: "Drake",
  18615. image: {
  18616. source: "./media/characters/reza/drake.svg",
  18617. extra: 2350/2024,
  18618. bottom: 60.7/2403
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(4, "feet"),
  18626. default: true
  18627. },
  18628. ]
  18629. ))
  18630. characterMakers.push(() => makeCharacter(
  18631. { name: "Athea" },
  18632. {
  18633. side: {
  18634. height: math.unit(15, "feet"),
  18635. weight: math.unit(14, "tons"),
  18636. name: "Side",
  18637. image: {
  18638. source: "./media/characters/athea/side.svg",
  18639. extra: 960 / 540,
  18640. bottom: 0.003
  18641. }
  18642. },
  18643. sitting: {
  18644. height: math.unit(6 * 2.85, "feet"),
  18645. weight: math.unit(14, "tons"),
  18646. name: "Sitting",
  18647. image: {
  18648. source: "./media/characters/athea/sitting.svg",
  18649. extra: 621 / 581,
  18650. bottom: 0.075
  18651. }
  18652. },
  18653. maw: {
  18654. height: math.unit(7.59498031496063, "feet"),
  18655. name: "Maw",
  18656. image: {
  18657. source: "./media/characters/athea/maw.svg"
  18658. }
  18659. },
  18660. },
  18661. [
  18662. {
  18663. name: "Lap Cat",
  18664. height: math.unit(2.5, "feet")
  18665. },
  18666. {
  18667. name: "Minimacro",
  18668. height: math.unit(15, "feet"),
  18669. default: true
  18670. },
  18671. {
  18672. name: "Macro",
  18673. height: math.unit(120, "feet")
  18674. },
  18675. {
  18676. name: "Macro+",
  18677. height: math.unit(640, "feet")
  18678. },
  18679. {
  18680. name: "Colossus",
  18681. height: math.unit(2.2, "miles")
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Seroko" },
  18687. {
  18688. front: {
  18689. height: math.unit(8 + 8 / 12, "feet"),
  18690. weight: math.unit(130, "kg"),
  18691. name: "Front",
  18692. image: {
  18693. source: "./media/characters/seroko/front.svg",
  18694. extra: 1385 / 1280,
  18695. bottom: 0.025
  18696. }
  18697. },
  18698. back: {
  18699. height: math.unit(8 + 8 / 12, "feet"),
  18700. weight: math.unit(130, "kg"),
  18701. name: "Back",
  18702. image: {
  18703. source: "./media/characters/seroko/back.svg",
  18704. extra: 1369 / 1238,
  18705. bottom: 0.018
  18706. }
  18707. },
  18708. frontDressed: {
  18709. height: math.unit(8 + 8 / 12, "feet"),
  18710. weight: math.unit(130, "kg"),
  18711. name: "Front (Dressed)",
  18712. image: {
  18713. source: "./media/characters/seroko/front-dressed.svg",
  18714. extra: 1366 / 1275,
  18715. bottom: 0.03
  18716. }
  18717. },
  18718. },
  18719. [
  18720. {
  18721. name: "Normal",
  18722. height: math.unit(8 + 8 / 12, "feet"),
  18723. default: true
  18724. },
  18725. ]
  18726. ))
  18727. characterMakers.push(() => makeCharacter(
  18728. { name: "Quatzi" },
  18729. {
  18730. front: {
  18731. height: math.unit(5.5, "feet"),
  18732. weight: math.unit(160, "lb"),
  18733. name: "Front",
  18734. image: {
  18735. source: "./media/characters/quatzi/front.svg",
  18736. extra: 2346 / 2242,
  18737. bottom: 0.015
  18738. }
  18739. },
  18740. },
  18741. [
  18742. {
  18743. name: "Normal",
  18744. height: math.unit(5.5, "feet"),
  18745. default: true
  18746. },
  18747. {
  18748. name: "Big",
  18749. height: math.unit(7.7, "feet")
  18750. },
  18751. ]
  18752. ))
  18753. characterMakers.push(() => makeCharacter(
  18754. { name: "Sen" },
  18755. {
  18756. front: {
  18757. height: math.unit(5 + 11 / 12, "feet"),
  18758. weight: math.unit(180, "lb"),
  18759. name: "Front",
  18760. image: {
  18761. source: "./media/characters/sen/front.svg",
  18762. extra: 1321 / 1254,
  18763. bottom: 0.015
  18764. }
  18765. },
  18766. side: {
  18767. height: math.unit(5 + 11 / 12, "feet"),
  18768. weight: math.unit(180, "lb"),
  18769. name: "Side",
  18770. image: {
  18771. source: "./media/characters/sen/side.svg",
  18772. extra: 1321 / 1254,
  18773. bottom: 0.007
  18774. }
  18775. },
  18776. back: {
  18777. height: math.unit(5 + 11 / 12, "feet"),
  18778. weight: math.unit(180, "lb"),
  18779. name: "Back",
  18780. image: {
  18781. source: "./media/characters/sen/back.svg",
  18782. extra: 1321 / 1254
  18783. }
  18784. },
  18785. },
  18786. [
  18787. {
  18788. name: "Normal",
  18789. height: math.unit(5 + 11 / 12, "feet"),
  18790. default: true
  18791. },
  18792. ]
  18793. ))
  18794. characterMakers.push(() => makeCharacter(
  18795. { name: "Fruity" },
  18796. {
  18797. front: {
  18798. height: math.unit(166.6, "cm"),
  18799. weight: math.unit(66.6, "kg"),
  18800. name: "Front",
  18801. image: {
  18802. source: "./media/characters/fruity/front.svg",
  18803. extra: 1510 / 1386,
  18804. bottom: 0.04
  18805. }
  18806. },
  18807. back: {
  18808. height: math.unit(166.6, "cm"),
  18809. weight: math.unit(66.6, "lb"),
  18810. name: "Back",
  18811. image: {
  18812. source: "./media/characters/fruity/back.svg",
  18813. extra: 1563 / 1435,
  18814. bottom: 0.005
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Normal",
  18821. height: math.unit(166.6, "cm"),
  18822. default: true
  18823. },
  18824. {
  18825. name: "Demonic",
  18826. height: math.unit(166.6, "feet")
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Zost" },
  18832. {
  18833. side: {
  18834. height: math.unit(10, "feet"),
  18835. weight: math.unit(500, "lb"),
  18836. name: "Side",
  18837. image: {
  18838. source: "./media/characters/zost/side.svg",
  18839. extra: 966 / 880,
  18840. bottom: 0.075
  18841. }
  18842. },
  18843. mawFront: {
  18844. height: math.unit(1.08, "meters"),
  18845. name: "Maw (Front)",
  18846. image: {
  18847. source: "./media/characters/zost/maw-front.svg"
  18848. }
  18849. },
  18850. mawSide: {
  18851. height: math.unit(2.66, "feet"),
  18852. name: "Maw (Side)",
  18853. image: {
  18854. source: "./media/characters/zost/maw-side.svg"
  18855. }
  18856. },
  18857. },
  18858. [
  18859. {
  18860. name: "Normal",
  18861. height: math.unit(10, "feet"),
  18862. default: true
  18863. },
  18864. ]
  18865. ))
  18866. characterMakers.push(() => makeCharacter(
  18867. { name: "Luci" },
  18868. {
  18869. front: {
  18870. height: math.unit(5 + 4 / 12, "feet"),
  18871. weight: math.unit(120, "lb"),
  18872. name: "Front",
  18873. image: {
  18874. source: "./media/characters/luci/front.svg",
  18875. extra: 1985 / 1884,
  18876. bottom: 0.04
  18877. }
  18878. },
  18879. back: {
  18880. height: math.unit(5 + 4 / 12, "feet"),
  18881. weight: math.unit(120, "lb"),
  18882. name: "Back",
  18883. image: {
  18884. source: "./media/characters/luci/back.svg",
  18885. extra: 1892 / 1791,
  18886. bottom: 0.002
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(5 + 4 / 12, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "2th" },
  18900. {
  18901. front: {
  18902. height: math.unit(1500, "feet"),
  18903. weight: math.unit(3.8e6, "tons"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/2th/front.svg",
  18907. extra: 3489 / 3350,
  18908. bottom: 0.1
  18909. }
  18910. },
  18911. foot: {
  18912. height: math.unit(461, "feet"),
  18913. name: "Foot",
  18914. image: {
  18915. source: "./media/characters/2th/foot.svg"
  18916. }
  18917. },
  18918. },
  18919. [
  18920. {
  18921. name: "\"Micro\"",
  18922. height: math.unit(15 + 7 / 12, "feet")
  18923. },
  18924. {
  18925. name: "Normal",
  18926. height: math.unit(1500, "feet"),
  18927. default: true
  18928. },
  18929. {
  18930. name: "Macro",
  18931. height: math.unit(5000, "feet")
  18932. },
  18933. {
  18934. name: "Megamacro",
  18935. height: math.unit(15, "miles")
  18936. },
  18937. {
  18938. name: "Gigamacro",
  18939. height: math.unit(4000, "miles")
  18940. },
  18941. {
  18942. name: "Galactic",
  18943. height: math.unit(50, "AU")
  18944. },
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Amethyst" },
  18949. {
  18950. front: {
  18951. height: math.unit(5 + 6 / 12, "feet"),
  18952. weight: math.unit(220, "lb"),
  18953. name: "Front",
  18954. image: {
  18955. source: "./media/characters/amethyst/front.svg",
  18956. extra: 2078 / 2040,
  18957. bottom: 0.045
  18958. }
  18959. },
  18960. back: {
  18961. height: math.unit(5 + 6 / 12, "feet"),
  18962. weight: math.unit(220, "lb"),
  18963. name: "Back",
  18964. image: {
  18965. source: "./media/characters/amethyst/back.svg",
  18966. extra: 2021 / 1989,
  18967. bottom: 0.02
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Normal",
  18974. height: math.unit(5 + 6 / 12, "feet"),
  18975. default: true
  18976. },
  18977. ]
  18978. ))
  18979. characterMakers.push(() => makeCharacter(
  18980. { name: "Yumi Akiyama" },
  18981. {
  18982. front: {
  18983. height: math.unit(4 + 11 / 12, "feet"),
  18984. weight: math.unit(120, "lb"),
  18985. name: "Front",
  18986. image: {
  18987. source: "./media/characters/yumi-akiyama/front.svg",
  18988. extra: 1327 / 1235,
  18989. bottom: 0.02
  18990. }
  18991. },
  18992. back: {
  18993. height: math.unit(4 + 11 / 12, "feet"),
  18994. weight: math.unit(120, "lb"),
  18995. name: "Back",
  18996. image: {
  18997. source: "./media/characters/yumi-akiyama/back.svg",
  18998. extra: 1287 / 1245,
  18999. bottom: 0.002
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Galactic",
  19006. height: math.unit(50, "galaxies"),
  19007. default: true
  19008. },
  19009. {
  19010. name: "Universal",
  19011. height: math.unit(100, "universes")
  19012. },
  19013. ]
  19014. ))
  19015. characterMakers.push(() => makeCharacter(
  19016. { name: "Rifter Yrmori" },
  19017. {
  19018. front: {
  19019. height: math.unit(8, "feet"),
  19020. weight: math.unit(500, "lb"),
  19021. name: "Front",
  19022. image: {
  19023. source: "./media/characters/rifter-yrmori/front.svg",
  19024. extra: 1180 / 1125,
  19025. bottom: 0.02
  19026. }
  19027. },
  19028. back: {
  19029. height: math.unit(8, "feet"),
  19030. weight: math.unit(500, "lb"),
  19031. name: "Back",
  19032. image: {
  19033. source: "./media/characters/rifter-yrmori/back.svg",
  19034. extra: 1190 / 1145,
  19035. bottom: 0.001
  19036. }
  19037. },
  19038. wings: {
  19039. height: math.unit(7.75, "feet"),
  19040. weight: math.unit(500, "lb"),
  19041. name: "Wings",
  19042. image: {
  19043. source: "./media/characters/rifter-yrmori/wings.svg",
  19044. extra: 1357 / 1285
  19045. }
  19046. },
  19047. maw: {
  19048. height: math.unit(0.8, "feet"),
  19049. name: "Maw",
  19050. image: {
  19051. source: "./media/characters/rifter-yrmori/maw.svg"
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(8, "feet"),
  19059. default: true
  19060. },
  19061. {
  19062. name: "Macro",
  19063. height: math.unit(42, "meters")
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Tahajin" },
  19069. {
  19070. were: {
  19071. height: math.unit(25 + 6 / 12, "feet"),
  19072. weight: math.unit(10000, "lb"),
  19073. name: "Were",
  19074. image: {
  19075. source: "./media/characters/tahajin/were.svg",
  19076. extra: 801 / 770,
  19077. bottom: 0.042
  19078. }
  19079. },
  19080. aquatic: {
  19081. height: math.unit(6 + 4 / 12, "feet"),
  19082. weight: math.unit(160, "lb"),
  19083. name: "Aquatic",
  19084. image: {
  19085. source: "./media/characters/tahajin/aquatic.svg",
  19086. extra: 572 / 542,
  19087. bottom: 0.04
  19088. }
  19089. },
  19090. chow: {
  19091. height: math.unit(8 + 11 / 12, "feet"),
  19092. weight: math.unit(450, "lb"),
  19093. name: "Chow",
  19094. image: {
  19095. source: "./media/characters/tahajin/chow.svg",
  19096. extra: 660 / 640,
  19097. bottom: 0.015
  19098. }
  19099. },
  19100. demiNaga: {
  19101. height: math.unit(6 + 8 / 12, "feet"),
  19102. weight: math.unit(300, "lb"),
  19103. name: "Demi Naga",
  19104. image: {
  19105. source: "./media/characters/tahajin/demi-naga.svg",
  19106. extra: 643 / 615,
  19107. bottom: 0.1
  19108. }
  19109. },
  19110. data: {
  19111. height: math.unit(5, "inches"),
  19112. weight: math.unit(0.1, "lb"),
  19113. name: "Data",
  19114. image: {
  19115. source: "./media/characters/tahajin/data.svg"
  19116. }
  19117. },
  19118. fluu: {
  19119. height: math.unit(5 + 7 / 12, "feet"),
  19120. weight: math.unit(140, "lb"),
  19121. name: "Fluu",
  19122. image: {
  19123. source: "./media/characters/tahajin/fluu.svg",
  19124. extra: 628 / 592,
  19125. bottom: 0.02
  19126. }
  19127. },
  19128. starWarrior: {
  19129. height: math.unit(4 + 5 / 12, "feet"),
  19130. weight: math.unit(50, "lb"),
  19131. name: "Star Warrior",
  19132. image: {
  19133. source: "./media/characters/tahajin/star-warrior.svg"
  19134. }
  19135. },
  19136. },
  19137. [
  19138. {
  19139. name: "Normal",
  19140. height: math.unit(25 + 6 / 12, "feet"),
  19141. default: true
  19142. },
  19143. ]
  19144. ))
  19145. characterMakers.push(() => makeCharacter(
  19146. { name: "Gabira" },
  19147. {
  19148. front: {
  19149. height: math.unit(8, "feet"),
  19150. weight: math.unit(350, "lb"),
  19151. name: "Front",
  19152. image: {
  19153. source: "./media/characters/gabira/front.svg",
  19154. extra: 608 / 580,
  19155. bottom: 0.03
  19156. }
  19157. },
  19158. back: {
  19159. height: math.unit(8, "feet"),
  19160. weight: math.unit(350, "lb"),
  19161. name: "Back",
  19162. image: {
  19163. source: "./media/characters/gabira/back.svg",
  19164. extra: 608 / 580,
  19165. bottom: 0.03
  19166. }
  19167. },
  19168. },
  19169. [
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(8, "feet"),
  19173. default: true
  19174. },
  19175. ]
  19176. ))
  19177. characterMakers.push(() => makeCharacter(
  19178. { name: "Sasha Katraine" },
  19179. {
  19180. front: {
  19181. height: math.unit(5 + 3 / 12, "feet"),
  19182. weight: math.unit(137, "lb"),
  19183. name: "Front",
  19184. image: {
  19185. source: "./media/characters/sasha-katraine/front.svg",
  19186. bottom: 0.045
  19187. }
  19188. },
  19189. },
  19190. [
  19191. {
  19192. name: "Micro",
  19193. height: math.unit(5, "inches")
  19194. },
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(5 + 3 / 12, "feet"),
  19198. default: true
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Der" },
  19204. {
  19205. side: {
  19206. height: math.unit(4, "inches"),
  19207. weight: math.unit(200, "grams"),
  19208. name: "Side",
  19209. image: {
  19210. source: "./media/characters/der/side.svg",
  19211. extra: 719 / 400,
  19212. bottom: 30.6 / 749.9187
  19213. }
  19214. },
  19215. },
  19216. [
  19217. {
  19218. name: "Micro",
  19219. height: math.unit(4, "inches"),
  19220. default: true
  19221. },
  19222. ]
  19223. ))
  19224. characterMakers.push(() => makeCharacter(
  19225. { name: "Fixerdragon" },
  19226. {
  19227. side: {
  19228. height: math.unit(30, "meters"),
  19229. weight: math.unit(700, "tonnes"),
  19230. name: "Side",
  19231. image: {
  19232. source: "./media/characters/fixerdragon/side.svg",
  19233. extra: (1293.0514 - 116.03) / 1106.86,
  19234. bottom: 116.03 / 1293.0514
  19235. }
  19236. },
  19237. },
  19238. [
  19239. {
  19240. name: "Planck",
  19241. height: math.unit(1.6e-35, "meters")
  19242. },
  19243. {
  19244. name: "Micro",
  19245. height: math.unit(0.4, "meters")
  19246. },
  19247. {
  19248. name: "Normal",
  19249. height: math.unit(30, "meters"),
  19250. default: true
  19251. },
  19252. {
  19253. name: "Megamacro",
  19254. height: math.unit(1.2, "megameters")
  19255. },
  19256. {
  19257. name: "Teramacro",
  19258. height: math.unit(130, "terameters")
  19259. },
  19260. {
  19261. name: "Yottamacro",
  19262. height: math.unit(6200, "yottameters")
  19263. },
  19264. ]
  19265. ));
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Kite" },
  19268. {
  19269. front: {
  19270. height: math.unit(8, "feet"),
  19271. weight: math.unit(250, "lb"),
  19272. name: "Front",
  19273. image: {
  19274. source: "./media/characters/kite/front.svg",
  19275. extra: 2796 / 2659,
  19276. bottom: 0.002
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Normal",
  19283. height: math.unit(8, "feet"),
  19284. default: true
  19285. },
  19286. {
  19287. name: "Macro",
  19288. height: math.unit(360, "feet")
  19289. },
  19290. {
  19291. name: "Megamacro",
  19292. height: math.unit(1500, "feet")
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Poojawa Vynar" },
  19298. {
  19299. front: {
  19300. height: math.unit(5 + 10 / 12, "feet"),
  19301. weight: math.unit(150, "lb"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/poojawa-vynar/front.svg",
  19305. extra: (1506.1547 - 55) / 1356.6,
  19306. bottom: 55 / 1506.1547
  19307. }
  19308. },
  19309. frontTailless: {
  19310. height: math.unit(5 + 10 / 12, "feet"),
  19311. weight: math.unit(150, "lb"),
  19312. name: "Front (Tailless)",
  19313. image: {
  19314. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  19315. extra: (1506.1547 - 55) / 1356.6,
  19316. bottom: 55 / 1506.1547
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(5 + 10 / 12, "feet"),
  19324. default: true
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Violette" },
  19330. {
  19331. front: {
  19332. height: math.unit(293, "meters"),
  19333. weight: math.unit(70400, "tons"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/violette/front.svg",
  19337. extra: 1227 / 1180,
  19338. bottom: 0.005
  19339. }
  19340. },
  19341. back: {
  19342. height: math.unit(293, "meters"),
  19343. weight: math.unit(70400, "tons"),
  19344. name: "Back",
  19345. image: {
  19346. source: "./media/characters/violette/back.svg",
  19347. extra: 1227 / 1180,
  19348. bottom: 0.005
  19349. }
  19350. },
  19351. },
  19352. [
  19353. {
  19354. name: "Macro",
  19355. height: math.unit(293, "meters"),
  19356. default: true
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Alessandra" },
  19362. {
  19363. front: {
  19364. height: math.unit(1050, "feet"),
  19365. weight: math.unit(200000, "tons"),
  19366. name: "Front",
  19367. image: {
  19368. source: "./media/characters/alessandra/front.svg",
  19369. extra: 960 / 912,
  19370. bottom: 0.06
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Macro",
  19377. height: math.unit(1050, "feet")
  19378. },
  19379. {
  19380. name: "Macro+",
  19381. height: math.unit(900, "meters"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  19388. {
  19389. front: {
  19390. height: math.unit(5, "feet"),
  19391. weight: math.unit(187, "lb"),
  19392. name: "Front",
  19393. image: {
  19394. source: "./media/characters/person/front.svg",
  19395. extra: 3087 / 2945,
  19396. bottom: 91 / 3181
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Micro",
  19403. height: math.unit(3, "inches")
  19404. },
  19405. {
  19406. name: "Normal",
  19407. height: math.unit(5, "feet"),
  19408. default: true
  19409. },
  19410. {
  19411. name: "Macro",
  19412. height: math.unit(90, "feet")
  19413. },
  19414. {
  19415. name: "Max Size",
  19416. height: math.unit(280, "feet")
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Ty" },
  19422. {
  19423. front: {
  19424. height: math.unit(4.5, "meters"),
  19425. weight: math.unit(3200, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/ty/front.svg",
  19429. extra: 1038 / 960,
  19430. bottom: 31.156 / 1068
  19431. }
  19432. },
  19433. back: {
  19434. height: math.unit(4.5, "meters"),
  19435. weight: math.unit(3200, "lb"),
  19436. name: "Back",
  19437. image: {
  19438. source: "./media/characters/ty/back.svg",
  19439. extra: 1044 / 966,
  19440. bottom: 7.48 / 1049
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(4.5, "meters"),
  19448. default: true
  19449. },
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Rocky" },
  19454. {
  19455. front: {
  19456. height: math.unit(5 + 4 / 12, "feet"),
  19457. weight: math.unit(115, "lb"),
  19458. name: "Front",
  19459. image: {
  19460. source: "./media/characters/rocky/front.svg",
  19461. extra: 1012 / 975,
  19462. bottom: 54 / 1066
  19463. }
  19464. },
  19465. },
  19466. [
  19467. {
  19468. name: "Normal",
  19469. height: math.unit(5 + 4 / 12, "feet"),
  19470. default: true
  19471. },
  19472. ]
  19473. ))
  19474. characterMakers.push(() => makeCharacter(
  19475. { name: "Ruin" },
  19476. {
  19477. upright: {
  19478. height: math.unit(6, "meters"),
  19479. weight: math.unit(4000, "kg"),
  19480. name: "Upright",
  19481. image: {
  19482. source: "./media/characters/ruin/upright.svg",
  19483. extra: 668 / 661,
  19484. bottom: 42 / 799.8396
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(6, "meters"),
  19492. default: true
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Robin" },
  19498. {
  19499. front: {
  19500. height: math.unit(5, "feet"),
  19501. weight: math.unit(106, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/robin/front.svg",
  19505. extra: 862 / 799,
  19506. bottom: 42.4 / 914.8856
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Normal",
  19513. height: math.unit(5, "feet"),
  19514. default: true
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Saian" },
  19520. {
  19521. side: {
  19522. height: math.unit(3, "feet"),
  19523. weight: math.unit(225, "lb"),
  19524. name: "Side",
  19525. image: {
  19526. source: "./media/characters/saian/side.svg",
  19527. extra: 566 / 356,
  19528. bottom: 79.7 / 643
  19529. }
  19530. },
  19531. maw: {
  19532. height: math.unit(2.85, "feet"),
  19533. name: "Maw",
  19534. image: {
  19535. source: "./media/characters/saian/maw.svg"
  19536. }
  19537. },
  19538. },
  19539. [
  19540. {
  19541. name: "Normal",
  19542. height: math.unit(3, "feet"),
  19543. default: true
  19544. },
  19545. ]
  19546. ))
  19547. characterMakers.push(() => makeCharacter(
  19548. { name: "Equus Silvermane" },
  19549. {
  19550. side: {
  19551. height: math.unit(8, "feet"),
  19552. weight: math.unit(300, "lb"),
  19553. name: "Side",
  19554. image: {
  19555. source: "./media/characters/equus-silvermane/side.svg",
  19556. extra: 2176 / 2050,
  19557. bottom: 65.7 / 2245
  19558. }
  19559. },
  19560. front: {
  19561. height: math.unit(8, "feet"),
  19562. weight: math.unit(300, "lb"),
  19563. name: "Front",
  19564. image: {
  19565. source: "./media/characters/equus-silvermane/front.svg",
  19566. extra: 4633 / 4400,
  19567. bottom: 71.3 / 4706.915
  19568. }
  19569. },
  19570. sideStepping: {
  19571. height: math.unit(8, "feet"),
  19572. weight: math.unit(300, "lb"),
  19573. name: "Side (Stepping)",
  19574. image: {
  19575. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19576. extra: 1968 / 1860,
  19577. bottom: 16.4 / 1989
  19578. }
  19579. },
  19580. },
  19581. [
  19582. {
  19583. name: "Normal",
  19584. height: math.unit(8, "feet")
  19585. },
  19586. {
  19587. name: "Minimacro",
  19588. height: math.unit(75, "feet"),
  19589. default: true
  19590. },
  19591. {
  19592. name: "Macro",
  19593. height: math.unit(150, "feet")
  19594. },
  19595. {
  19596. name: "Macro+",
  19597. height: math.unit(1000, "feet")
  19598. },
  19599. {
  19600. name: "Megamacro",
  19601. height: math.unit(1, "mile")
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Windar" },
  19607. {
  19608. side: {
  19609. height: math.unit(20, "feet"),
  19610. weight: math.unit(30000, "kg"),
  19611. name: "Side",
  19612. image: {
  19613. source: "./media/characters/windar/side.svg",
  19614. extra: 1491 / 1248,
  19615. bottom: 82.56 / 1568
  19616. }
  19617. },
  19618. },
  19619. [
  19620. {
  19621. name: "Normal",
  19622. height: math.unit(20, "feet"),
  19623. default: true
  19624. },
  19625. ]
  19626. ))
  19627. characterMakers.push(() => makeCharacter(
  19628. { name: "Melody" },
  19629. {
  19630. side: {
  19631. height: math.unit(15.66, "feet"),
  19632. weight: math.unit(150, "lb"),
  19633. name: "Side",
  19634. image: {
  19635. source: "./media/characters/melody/side.svg",
  19636. extra: 1097 / 944,
  19637. bottom: 11.8 / 1109
  19638. }
  19639. },
  19640. sideOutfit: {
  19641. height: math.unit(15.66, "feet"),
  19642. weight: math.unit(150, "lb"),
  19643. name: "Side (Outfit)",
  19644. image: {
  19645. source: "./media/characters/melody/side-outfit.svg",
  19646. extra: 1097 / 944,
  19647. bottom: 11.8 / 1109
  19648. }
  19649. },
  19650. },
  19651. [
  19652. {
  19653. name: "Normal",
  19654. height: math.unit(15.66, "feet"),
  19655. default: true
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Windera" },
  19661. {
  19662. front: {
  19663. height: math.unit(8, "feet"),
  19664. weight: math.unit(325, "lb"),
  19665. name: "Front",
  19666. image: {
  19667. source: "./media/characters/windera/front.svg",
  19668. extra: 3180 / 2845,
  19669. bottom: 178 / 3365
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(8, "feet"),
  19677. default: true
  19678. },
  19679. ]
  19680. ))
  19681. characterMakers.push(() => makeCharacter(
  19682. { name: "Sonear" },
  19683. {
  19684. front: {
  19685. height: math.unit(28.75, "feet"),
  19686. weight: math.unit(2000, "kg"),
  19687. name: "Front",
  19688. image: {
  19689. source: "./media/characters/sonear/front.svg",
  19690. extra: 1041.1 / 964.9,
  19691. bottom: 53.7 / 1096.6
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Normal",
  19698. height: math.unit(28.75, "feet"),
  19699. default: true
  19700. },
  19701. ]
  19702. ))
  19703. characterMakers.push(() => makeCharacter(
  19704. { name: "Kanara" },
  19705. {
  19706. side: {
  19707. height: math.unit(25.5, "feet"),
  19708. weight: math.unit(23000, "kg"),
  19709. name: "Side",
  19710. image: {
  19711. source: "./media/characters/kanara/side.svg"
  19712. }
  19713. },
  19714. },
  19715. [
  19716. {
  19717. name: "Normal",
  19718. height: math.unit(25.5, "feet"),
  19719. default: true
  19720. },
  19721. ]
  19722. ))
  19723. characterMakers.push(() => makeCharacter(
  19724. { name: "Ereus" },
  19725. {
  19726. side: {
  19727. height: math.unit(10, "feet"),
  19728. weight: math.unit(1000, "kg"),
  19729. name: "Side",
  19730. image: {
  19731. source: "./media/characters/ereus/side.svg",
  19732. extra: 1157 / 959,
  19733. bottom: 153 / 1312.5
  19734. }
  19735. },
  19736. },
  19737. [
  19738. {
  19739. name: "Normal",
  19740. height: math.unit(10, "feet"),
  19741. default: true
  19742. },
  19743. ]
  19744. ))
  19745. characterMakers.push(() => makeCharacter(
  19746. { name: "E-ter" },
  19747. {
  19748. side: {
  19749. height: math.unit(4.5, "feet"),
  19750. weight: math.unit(500, "lb"),
  19751. name: "Side",
  19752. image: {
  19753. source: "./media/characters/e-ter/side.svg",
  19754. extra: 1550 / 1248,
  19755. bottom: 146 / 1694
  19756. }
  19757. },
  19758. },
  19759. [
  19760. {
  19761. name: "Normal",
  19762. height: math.unit(4.5, "feet"),
  19763. default: true
  19764. },
  19765. ]
  19766. ))
  19767. characterMakers.push(() => makeCharacter(
  19768. { name: "Yamie" },
  19769. {
  19770. side: {
  19771. height: math.unit(9.7, "feet"),
  19772. weight: math.unit(4000, "kg"),
  19773. name: "Side",
  19774. image: {
  19775. source: "./media/characters/yamie/side.svg"
  19776. }
  19777. },
  19778. },
  19779. [
  19780. {
  19781. name: "Normal",
  19782. height: math.unit(9.7, "feet"),
  19783. default: true
  19784. },
  19785. ]
  19786. ))
  19787. characterMakers.push(() => makeCharacter(
  19788. { name: "Anders" },
  19789. {
  19790. front: {
  19791. height: math.unit(50, "feet"),
  19792. weight: math.unit(50000, "kg"),
  19793. name: "Front",
  19794. image: {
  19795. source: "./media/characters/anders/front.svg",
  19796. extra: 570 / 539,
  19797. bottom: 14.7 / 586.7
  19798. }
  19799. },
  19800. },
  19801. [
  19802. {
  19803. name: "Large",
  19804. height: math.unit(50, "feet")
  19805. },
  19806. {
  19807. name: "Macro",
  19808. height: math.unit(2000, "feet"),
  19809. default: true
  19810. },
  19811. {
  19812. name: "Megamacro",
  19813. height: math.unit(12, "miles")
  19814. },
  19815. ]
  19816. ))
  19817. characterMakers.push(() => makeCharacter(
  19818. { name: "Reban" },
  19819. {
  19820. front: {
  19821. height: math.unit(7 + 2 / 12, "feet"),
  19822. weight: math.unit(300, "lb"),
  19823. name: "Front",
  19824. image: {
  19825. source: "./media/characters/reban/front.svg",
  19826. extra: 516 / 487,
  19827. bottom: 42.82 / 558.356
  19828. }
  19829. },
  19830. dick: {
  19831. height: math.unit(7 / 5, "feet"),
  19832. name: "Dick",
  19833. image: {
  19834. source: "./media/characters/reban/dick.svg"
  19835. }
  19836. },
  19837. },
  19838. [
  19839. {
  19840. name: "Natural Height",
  19841. height: math.unit(7 + 2 / 12, "feet")
  19842. },
  19843. {
  19844. name: "Macro",
  19845. height: math.unit(500, "feet"),
  19846. default: true
  19847. },
  19848. {
  19849. name: "Canon Height",
  19850. height: math.unit(50, "AU")
  19851. },
  19852. ]
  19853. ))
  19854. characterMakers.push(() => makeCharacter(
  19855. { name: "Terrance Keayes" },
  19856. {
  19857. front: {
  19858. height: math.unit(6, "feet"),
  19859. weight: math.unit(150, "lb"),
  19860. name: "Front",
  19861. image: {
  19862. source: "./media/characters/terrance-keayes/front.svg",
  19863. extra: 1.005,
  19864. bottom: 151 / 1615
  19865. }
  19866. },
  19867. side: {
  19868. height: math.unit(6, "feet"),
  19869. weight: math.unit(150, "lb"),
  19870. name: "Side",
  19871. image: {
  19872. source: "./media/characters/terrance-keayes/side.svg",
  19873. extra: 1.005,
  19874. bottom: 129.4 / 1544
  19875. }
  19876. },
  19877. back: {
  19878. height: math.unit(6, "feet"),
  19879. weight: math.unit(150, "lb"),
  19880. name: "Back",
  19881. image: {
  19882. source: "./media/characters/terrance-keayes/back.svg",
  19883. extra: 1.005,
  19884. bottom: 58.4 / 1557.3
  19885. }
  19886. },
  19887. dick: {
  19888. height: math.unit(6 * 0.208, "feet"),
  19889. name: "Dick",
  19890. image: {
  19891. source: "./media/characters/terrance-keayes/dick.svg"
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Canon Height",
  19898. height: math.unit(35, "miles"),
  19899. default: true
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Ofelia" },
  19905. {
  19906. front: {
  19907. height: math.unit(6, "feet"),
  19908. weight: math.unit(150, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/ofelia/front.svg",
  19912. extra: 546 / 541,
  19913. bottom: 39 / 583
  19914. }
  19915. },
  19916. back: {
  19917. height: math.unit(6, "feet"),
  19918. weight: math.unit(150, "lb"),
  19919. name: "Back",
  19920. image: {
  19921. source: "./media/characters/ofelia/back.svg",
  19922. extra: 564 / 559.5,
  19923. bottom: 8.69 / 573.02
  19924. }
  19925. },
  19926. maw: {
  19927. height: math.unit(1, "feet"),
  19928. name: "Maw",
  19929. image: {
  19930. source: "./media/characters/ofelia/maw.svg"
  19931. }
  19932. },
  19933. foot: {
  19934. height: math.unit(1.949, "feet"),
  19935. name: "Foot",
  19936. image: {
  19937. source: "./media/characters/ofelia/foot.svg"
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Canon Height",
  19944. height: math.unit(2000, "miles"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Samuel" },
  19951. {
  19952. front: {
  19953. height: math.unit(6, "feet"),
  19954. weight: math.unit(150, "lb"),
  19955. name: "Front",
  19956. image: {
  19957. source: "./media/characters/samuel/front.svg",
  19958. extra: 265 / 258,
  19959. bottom: 2 / 266.1566
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Macro",
  19966. height: math.unit(100, "feet"),
  19967. default: true
  19968. },
  19969. {
  19970. name: "Full Size",
  19971. height: math.unit(1000, "miles")
  19972. },
  19973. ]
  19974. ))
  19975. characterMakers.push(() => makeCharacter(
  19976. { name: "Beishir Kiel" },
  19977. {
  19978. front: {
  19979. height: math.unit(6, "feet"),
  19980. weight: math.unit(300, "lb"),
  19981. name: "Front",
  19982. image: {
  19983. source: "./media/characters/beishir-kiel/front.svg",
  19984. extra: 569 / 547,
  19985. bottom: 41.9 / 609
  19986. }
  19987. },
  19988. maw: {
  19989. height: math.unit(6 * 0.202, "feet"),
  19990. name: "Maw",
  19991. image: {
  19992. source: "./media/characters/beishir-kiel/maw.svg"
  19993. }
  19994. },
  19995. },
  19996. [
  19997. {
  19998. name: "Macro",
  19999. height: math.unit(300, "feet"),
  20000. default: true
  20001. },
  20002. ]
  20003. ))
  20004. characterMakers.push(() => makeCharacter(
  20005. { name: "Logan Grey" },
  20006. {
  20007. front: {
  20008. height: math.unit(5 + 8 / 12, "feet"),
  20009. weight: math.unit(120, "lb"),
  20010. name: "Front",
  20011. image: {
  20012. source: "./media/characters/logan-grey/front.svg",
  20013. extra: 2539 / 2393,
  20014. bottom: 97.6 / 2636.37
  20015. }
  20016. },
  20017. frontAlt: {
  20018. height: math.unit(5 + 8 / 12, "feet"),
  20019. weight: math.unit(120, "lb"),
  20020. name: "Front (Alt)",
  20021. image: {
  20022. source: "./media/characters/logan-grey/front-alt.svg",
  20023. extra: 958 / 893,
  20024. bottom: 15 / 970.768
  20025. }
  20026. },
  20027. back: {
  20028. height: math.unit(5 + 8 / 12, "feet"),
  20029. weight: math.unit(120, "lb"),
  20030. name: "Back",
  20031. image: {
  20032. source: "./media/characters/logan-grey/back.svg",
  20033. extra: 958 / 893,
  20034. bottom: 2.1881 / 970.9788
  20035. }
  20036. },
  20037. dick: {
  20038. height: math.unit(1.437, "feet"),
  20039. name: "Dick",
  20040. image: {
  20041. source: "./media/characters/logan-grey/dick.svg"
  20042. }
  20043. },
  20044. },
  20045. [
  20046. {
  20047. name: "Normal",
  20048. height: math.unit(5 + 8 / 12, "feet")
  20049. },
  20050. {
  20051. name: "The 500 Foot Femboy",
  20052. height: math.unit(500, "feet"),
  20053. default: true
  20054. },
  20055. {
  20056. name: "Megmacro",
  20057. height: math.unit(20, "miles")
  20058. },
  20059. ]
  20060. ))
  20061. characterMakers.push(() => makeCharacter(
  20062. { name: "Draganta" },
  20063. {
  20064. front: {
  20065. height: math.unit(8 + 2 / 12, "feet"),
  20066. weight: math.unit(275, "lb"),
  20067. name: "Front",
  20068. image: {
  20069. source: "./media/characters/draganta/front.svg",
  20070. extra: 1177 / 1135,
  20071. bottom: 33.46 / 1212.1
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(8 + 6 / 12, "feet"),
  20079. default: true
  20080. },
  20081. {
  20082. name: "Macro",
  20083. height: math.unit(150, "feet")
  20084. },
  20085. {
  20086. name: "Megamacro",
  20087. height: math.unit(1000, "miles")
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20093. {
  20094. front: {
  20095. height: math.unit(1.72, "m"),
  20096. weight: math.unit(80, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/voski/front.svg",
  20100. extra: 2076.22 / 2022.4,
  20101. bottom: 102.7 / 2177.3866
  20102. }
  20103. },
  20104. frontNsfw: {
  20105. height: math.unit(1.72, "m"),
  20106. weight: math.unit(80, "lb"),
  20107. name: "Front (NSFW)",
  20108. image: {
  20109. source: "./media/characters/voski/front-nsfw.svg",
  20110. extra: 2076.22 / 2022.4,
  20111. bottom: 102.7 / 2177.3866
  20112. }
  20113. },
  20114. back: {
  20115. height: math.unit(1.72, "m"),
  20116. weight: math.unit(80, "lb"),
  20117. name: "Back",
  20118. image: {
  20119. source: "./media/characters/voski/back.svg",
  20120. extra: 2104 / 2051,
  20121. bottom: 10.45 / 2113.63
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(1.72, "m")
  20129. },
  20130. {
  20131. name: "Macro",
  20132. height: math.unit(55, "m"),
  20133. default: true
  20134. },
  20135. {
  20136. name: "Macro+",
  20137. height: math.unit(300, "m")
  20138. },
  20139. {
  20140. name: "Macro++",
  20141. height: math.unit(700, "m")
  20142. },
  20143. {
  20144. name: "Macro+++",
  20145. height: math.unit(4500, "m")
  20146. },
  20147. {
  20148. name: "Macro++++",
  20149. height: math.unit(45, "km")
  20150. },
  20151. {
  20152. name: "Macro+++++",
  20153. height: math.unit(1220, "km")
  20154. },
  20155. ]
  20156. ))
  20157. characterMakers.push(() => makeCharacter(
  20158. { name: "Icowom Lee" },
  20159. {
  20160. front: {
  20161. height: math.unit(2.3, "m"),
  20162. weight: math.unit(304, "kg"),
  20163. name: "Front",
  20164. image: {
  20165. source: "./media/characters/icowom-lee/front.svg",
  20166. extra: 3076 / 2933,
  20167. bottom: 51.4 / 3125.1889
  20168. }
  20169. },
  20170. },
  20171. [
  20172. {
  20173. name: "Normal",
  20174. height: math.unit(2.3, "meters"),
  20175. default: true
  20176. },
  20177. {
  20178. name: "Macro",
  20179. height: math.unit(94, "meters"),
  20180. default: true
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  20186. {
  20187. front: {
  20188. height: math.unit(22, "meters"),
  20189. weight: math.unit(21000, "kg"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/shock-diamond/front.svg",
  20193. extra: 2204 / 2053,
  20194. bottom: 65 / 2239.47
  20195. }
  20196. },
  20197. frontNude: {
  20198. height: math.unit(22, "meters"),
  20199. weight: math.unit(21000, "kg"),
  20200. name: "Front (Nude)",
  20201. image: {
  20202. source: "./media/characters/shock-diamond/front-nude.svg",
  20203. extra: 2514 / 2285,
  20204. bottom: 13 / 2527.56
  20205. }
  20206. },
  20207. },
  20208. [
  20209. {
  20210. name: "Normal",
  20211. height: math.unit(3, "meters")
  20212. },
  20213. {
  20214. name: "Macro",
  20215. height: math.unit(22, "meters"),
  20216. default: true
  20217. },
  20218. ]
  20219. ))
  20220. characterMakers.push(() => makeCharacter(
  20221. { name: "Rory" },
  20222. {
  20223. front: {
  20224. height: math.unit(5 + 4 / 12, "feet"),
  20225. weight: math.unit(120, "lb"),
  20226. name: "Front",
  20227. image: {
  20228. source: "./media/characters/rory/front.svg",
  20229. extra: 589 / 556,
  20230. bottom: 45.7 / 635.76
  20231. }
  20232. },
  20233. frontNude: {
  20234. height: math.unit(5 + 4 / 12, "feet"),
  20235. weight: math.unit(120, "lb"),
  20236. name: "Front (Nude)",
  20237. image: {
  20238. source: "./media/characters/rory/front-nude.svg",
  20239. extra: 589 / 556,
  20240. bottom: 45.7 / 635.76
  20241. }
  20242. },
  20243. side: {
  20244. height: math.unit(5 + 4 / 12, "feet"),
  20245. weight: math.unit(120, "lb"),
  20246. name: "Side",
  20247. image: {
  20248. source: "./media/characters/rory/side.svg",
  20249. extra: 597 / 564,
  20250. bottom: 55 / 653
  20251. }
  20252. },
  20253. back: {
  20254. height: math.unit(5 + 4 / 12, "feet"),
  20255. weight: math.unit(120, "lb"),
  20256. name: "Back",
  20257. image: {
  20258. source: "./media/characters/rory/back.svg",
  20259. extra: 620 / 585,
  20260. bottom: 8.86 / 630.43
  20261. }
  20262. },
  20263. dick: {
  20264. height: math.unit(0.86, "feet"),
  20265. name: "Dick",
  20266. image: {
  20267. source: "./media/characters/rory/dick.svg"
  20268. }
  20269. },
  20270. },
  20271. [
  20272. {
  20273. name: "Normal",
  20274. height: math.unit(5 + 4 / 12, "feet"),
  20275. default: true
  20276. },
  20277. {
  20278. name: "Macro",
  20279. height: math.unit(100, "feet")
  20280. },
  20281. {
  20282. name: "Macro+",
  20283. height: math.unit(140, "feet")
  20284. },
  20285. {
  20286. name: "Macro++",
  20287. height: math.unit(300, "feet")
  20288. },
  20289. ]
  20290. ))
  20291. characterMakers.push(() => makeCharacter(
  20292. { name: "Sprisk" },
  20293. {
  20294. front: {
  20295. height: math.unit(5 + 9 / 12, "feet"),
  20296. weight: math.unit(190, "lb"),
  20297. name: "Front",
  20298. image: {
  20299. source: "./media/characters/sprisk/front.svg",
  20300. extra: 1225 / 1180,
  20301. bottom: 42.7 / 1266.4
  20302. }
  20303. },
  20304. frontNsfw: {
  20305. height: math.unit(5 + 9 / 12, "feet"),
  20306. weight: math.unit(190, "lb"),
  20307. name: "Front (NSFW)",
  20308. image: {
  20309. source: "./media/characters/sprisk/front-nsfw.svg",
  20310. extra: 1225 / 1180,
  20311. bottom: 42.7 / 1266.4
  20312. }
  20313. },
  20314. back: {
  20315. height: math.unit(5 + 9 / 12, "feet"),
  20316. weight: math.unit(190, "lb"),
  20317. name: "Back",
  20318. image: {
  20319. source: "./media/characters/sprisk/back.svg",
  20320. extra: 1247 / 1200,
  20321. bottom: 5.6 / 1253.04
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Tiny",
  20328. height: math.unit(2, "inches")
  20329. },
  20330. {
  20331. name: "Normal",
  20332. height: math.unit(5 + 9 / 12, "feet"),
  20333. default: true
  20334. },
  20335. {
  20336. name: "Mini Macro",
  20337. height: math.unit(18, "feet")
  20338. },
  20339. {
  20340. name: "Macro",
  20341. height: math.unit(100, "feet")
  20342. },
  20343. {
  20344. name: "MACRO",
  20345. height: math.unit(50, "miles")
  20346. },
  20347. {
  20348. name: "M A C R O",
  20349. height: math.unit(300, "miles")
  20350. },
  20351. ]
  20352. ))
  20353. characterMakers.push(() => makeCharacter(
  20354. { name: "Bunsen" },
  20355. {
  20356. side: {
  20357. height: math.unit(15.6, "meters"),
  20358. weight: math.unit(700000, "kg"),
  20359. name: "Side",
  20360. image: {
  20361. source: "./media/characters/bunsen/side.svg",
  20362. extra: 1644 / 358
  20363. }
  20364. },
  20365. foot: {
  20366. height: math.unit(1.611 * 1644 / 358, "meter"),
  20367. name: "Foot",
  20368. image: {
  20369. source: "./media/characters/bunsen/foot.svg"
  20370. }
  20371. },
  20372. },
  20373. [
  20374. {
  20375. name: "Small",
  20376. height: math.unit(10, "feet")
  20377. },
  20378. {
  20379. name: "Normal",
  20380. height: math.unit(15.6, "meters"),
  20381. default: true
  20382. },
  20383. ]
  20384. ))
  20385. characterMakers.push(() => makeCharacter(
  20386. { name: "Sesh" },
  20387. {
  20388. front: {
  20389. height: math.unit(4 + 11 / 12, "feet"),
  20390. weight: math.unit(140, "lb"),
  20391. name: "Front",
  20392. image: {
  20393. source: "./media/characters/sesh/front.svg",
  20394. extra: 3420 / 3231,
  20395. bottom: 72 / 3949.5
  20396. }
  20397. },
  20398. },
  20399. [
  20400. {
  20401. name: "Normal",
  20402. height: math.unit(4 + 11 / 12, "feet")
  20403. },
  20404. {
  20405. name: "Grown",
  20406. height: math.unit(15, "feet"),
  20407. default: true
  20408. },
  20409. {
  20410. name: "Macro",
  20411. height: math.unit(1500, "feet")
  20412. },
  20413. {
  20414. name: "Megamacro",
  20415. height: math.unit(30, "miles")
  20416. },
  20417. {
  20418. name: "Continental",
  20419. height: math.unit(3000, "miles")
  20420. },
  20421. {
  20422. name: "Gravity Mass",
  20423. height: math.unit(300000, "miles")
  20424. },
  20425. {
  20426. name: "Planet Buster",
  20427. height: math.unit(30000000, "miles")
  20428. },
  20429. {
  20430. name: "Big",
  20431. height: math.unit(3000000000, "miles")
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Pepper" },
  20437. {
  20438. front: {
  20439. height: math.unit(9, "feet"),
  20440. weight: math.unit(350, "lb"),
  20441. name: "Front",
  20442. image: {
  20443. source: "./media/characters/pepper/front.svg",
  20444. extra: 1448/1312,
  20445. bottom: 9.4/1457.88
  20446. }
  20447. },
  20448. back: {
  20449. height: math.unit(9, "feet"),
  20450. weight: math.unit(350, "lb"),
  20451. name: "Back",
  20452. image: {
  20453. source: "./media/characters/pepper/back.svg",
  20454. extra: 1423/1300,
  20455. bottom: 4.6/1429
  20456. }
  20457. },
  20458. maw: {
  20459. height: math.unit(0.932, "feet"),
  20460. name: "Maw",
  20461. image: {
  20462. source: "./media/characters/pepper/maw.svg"
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(9, "feet"),
  20470. default: true
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Maelstrom" },
  20476. {
  20477. front: {
  20478. height: math.unit(6, "feet"),
  20479. weight: math.unit(150, "lb"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/maelstrom/front.svg",
  20483. extra: 2100/1883,
  20484. bottom: 94/2196.7
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Less Kaiju",
  20491. height: math.unit(200, "feet")
  20492. },
  20493. {
  20494. name: "Kaiju",
  20495. height: math.unit(400, "feet"),
  20496. default: true
  20497. },
  20498. {
  20499. name: "Kaiju-er",
  20500. height: math.unit(600, "feet")
  20501. },
  20502. ]
  20503. ))
  20504. characterMakers.push(() => makeCharacter(
  20505. { name: "Lexir" },
  20506. {
  20507. front: {
  20508. height: math.unit(6 + 5/12, "feet"),
  20509. weight: math.unit(180, "lb"),
  20510. name: "Front",
  20511. image: {
  20512. source: "./media/characters/lexir/front.svg",
  20513. extra: 180/172,
  20514. bottom: 12/192
  20515. }
  20516. },
  20517. back: {
  20518. height: math.unit(6 + 5/12, "feet"),
  20519. weight: math.unit(180, "lb"),
  20520. name: "Back",
  20521. image: {
  20522. source: "./media/characters/lexir/back.svg",
  20523. extra: 183.84/175.5,
  20524. bottom: 3.1/187
  20525. }
  20526. },
  20527. },
  20528. [
  20529. {
  20530. name: "Very Smal",
  20531. height: math.unit(1, "nm")
  20532. },
  20533. {
  20534. name: "Normal",
  20535. height: math.unit(6 + 5/12, "feet"),
  20536. default: true
  20537. },
  20538. {
  20539. name: "Macro",
  20540. height: math.unit(1, "mile")
  20541. },
  20542. {
  20543. name: "Megamacro",
  20544. height: math.unit(50, "miles")
  20545. },
  20546. ]
  20547. ))
  20548. characterMakers.push(() => makeCharacter(
  20549. { name: "Maksio" },
  20550. {
  20551. front: {
  20552. height: math.unit(1.5, "meters"),
  20553. weight: math.unit(100, "lb"),
  20554. name: "Front",
  20555. image: {
  20556. source: "./media/characters/maksio/front.svg",
  20557. extra: 1549/1531,
  20558. bottom: 123.7/1674.5429
  20559. }
  20560. },
  20561. back: {
  20562. height: math.unit(1.5, "meters"),
  20563. weight: math.unit(100, "lb"),
  20564. name: "Back",
  20565. image: {
  20566. source: "./media/characters/maksio/back.svg",
  20567. extra: 1541/1509,
  20568. bottom: 97/1639
  20569. }
  20570. },
  20571. hand: {
  20572. height: math.unit(0.621, "feet"),
  20573. name: "Hand",
  20574. image: {
  20575. source: "./media/characters/maksio/hand.svg"
  20576. }
  20577. },
  20578. foot: {
  20579. height: math.unit(1.611, "feet"),
  20580. name: "Foot",
  20581. image: {
  20582. source: "./media/characters/maksio/foot.svg"
  20583. }
  20584. },
  20585. },
  20586. [
  20587. {
  20588. name: "Shrunken",
  20589. height: math.unit(10, "cm")
  20590. },
  20591. {
  20592. name: "Normal",
  20593. height: math.unit(150, "cm"),
  20594. default: true
  20595. },
  20596. ]
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "Erza Bear" },
  20600. {
  20601. front: {
  20602. height: math.unit(100, "feet"),
  20603. name: "Front",
  20604. image: {
  20605. source: "./media/characters/erza-bear/front.svg",
  20606. extra: 2449/2390,
  20607. bottom: 46/2494
  20608. }
  20609. },
  20610. back: {
  20611. height: math.unit(100, "feet"),
  20612. name: "Back",
  20613. image: {
  20614. source: "./media/characters/erza-bear/back.svg",
  20615. extra: 2489/2430,
  20616. bottom: 85.4/2480
  20617. }
  20618. },
  20619. tail: {
  20620. height: math.unit(42, "feet"),
  20621. name: "Tail",
  20622. image: {
  20623. source: "./media/characters/erza-bear/tail.svg"
  20624. }
  20625. },
  20626. tongue: {
  20627. height: math.unit(8, "feet"),
  20628. name: "Tongue",
  20629. image: {
  20630. source: "./media/characters/erza-bear/tongue.svg"
  20631. }
  20632. },
  20633. dick: {
  20634. height: math.unit(10.5, "feet"),
  20635. name: "Dick",
  20636. image: {
  20637. source: "./media/characters/erza-bear/dick.svg"
  20638. }
  20639. },
  20640. dickVertical: {
  20641. height: math.unit(16.9, "feet"),
  20642. name: "Dick (Vertical)",
  20643. image: {
  20644. source: "./media/characters/erza-bear/dick-vertical.svg"
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Macro",
  20651. height: math.unit(100, "feet"),
  20652. default: true
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(172, "cm"),
  20661. weight: math.unit(73, "kg"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/violet-flor/front.svg",
  20665. extra: 1530/1442,
  20666. bottom: 61.9/1588.8
  20667. }
  20668. },
  20669. back: {
  20670. height: math.unit(180, "cm"),
  20671. weight: math.unit(73, "kg"),
  20672. name: "Back",
  20673. image: {
  20674. source: "./media/characters/violet-flor/back.svg",
  20675. extra: 1692/1630,
  20676. bottom: 20/1712
  20677. }
  20678. },
  20679. },
  20680. [
  20681. {
  20682. name: "Normal",
  20683. height: math.unit(172, "cm"),
  20684. default: true
  20685. },
  20686. ]
  20687. ))
  20688. characterMakers.push(() => makeCharacter(
  20689. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  20690. {
  20691. front: {
  20692. height: math.unit(6, "feet"),
  20693. weight: math.unit(220, "lb"),
  20694. name: "Front",
  20695. image: {
  20696. source: "./media/characters/lynn-rhea/front.svg",
  20697. extra: 310/273
  20698. }
  20699. },
  20700. back: {
  20701. height: math.unit(6, "feet"),
  20702. weight: math.unit(220, "lb"),
  20703. name: "Back",
  20704. image: {
  20705. source: "./media/characters/lynn-rhea/back.svg",
  20706. extra: 310/273
  20707. }
  20708. },
  20709. dicks: {
  20710. height: math.unit(0.9, "feet"),
  20711. name: "Dicks",
  20712. image: {
  20713. source: "./media/characters/lynn-rhea/dicks.svg"
  20714. }
  20715. },
  20716. slit: {
  20717. height: math.unit(0.4, "feet"),
  20718. name: "Slit",
  20719. image: {
  20720. source: "./media/characters/lynn-rhea/slit.svg"
  20721. }
  20722. },
  20723. },
  20724. [
  20725. {
  20726. name: "Micro",
  20727. height: math.unit(1, "inch")
  20728. },
  20729. {
  20730. name: "Macro",
  20731. height: math.unit(60, "feet"),
  20732. default: true
  20733. },
  20734. {
  20735. name: "Megamacro",
  20736. height: math.unit(2, "miles")
  20737. },
  20738. {
  20739. name: "Gigamacro",
  20740. height: math.unit(3, "earths")
  20741. },
  20742. {
  20743. name: "Galactic",
  20744. height: math.unit(0.8, "galaxies")
  20745. },
  20746. ]
  20747. ))
  20748. characterMakers.push(() => makeCharacter(
  20749. { name: "Valathos" },
  20750. {
  20751. front: {
  20752. height: math.unit(1600, "feet"),
  20753. weight: math.unit(85758785169, "kg"),
  20754. name: "Front",
  20755. image: {
  20756. source: "./media/characters/valathos/front.svg",
  20757. extra: 1451/1339
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Macro",
  20764. height: math.unit(1600, "feet"),
  20765. default: true
  20766. },
  20767. ]
  20768. ))
  20769. characterMakers.push(() => makeCharacter(
  20770. { name: "Azula" },
  20771. {
  20772. front: {
  20773. height: math.unit(7 + 5/12, "feet"),
  20774. weight: math.unit(300, "lb"),
  20775. name: "Front",
  20776. image: {
  20777. source: "./media/characters/azula/front.svg",
  20778. extra: 3208/2880,
  20779. bottom: 80.2/3277
  20780. }
  20781. },
  20782. back: {
  20783. height: math.unit(7 + 5/12, "feet"),
  20784. weight: math.unit(300, "lb"),
  20785. name: "Back",
  20786. image: {
  20787. source: "./media/characters/azula/back.svg",
  20788. extra: 3169/2822,
  20789. bottom: 150.6/3321
  20790. }
  20791. },
  20792. },
  20793. [
  20794. {
  20795. name: "Normal",
  20796. height: math.unit(7 + 5/12, "feet"),
  20797. default: true
  20798. },
  20799. {
  20800. name: "Big",
  20801. height: math.unit(20, "feet")
  20802. },
  20803. ]
  20804. ))
  20805. characterMakers.push(() => makeCharacter(
  20806. { name: "Rupert" },
  20807. {
  20808. front: {
  20809. height: math.unit(5 + 1/12, "feet"),
  20810. weight: math.unit(110, "lb"),
  20811. name: "Front",
  20812. image: {
  20813. source: "./media/characters/rupert/front.svg",
  20814. extra: 1549/1495,
  20815. bottom: 54.2/1604.4
  20816. }
  20817. },
  20818. },
  20819. [
  20820. {
  20821. name: "Normal",
  20822. height: math.unit(5 + 1/12, "feet"),
  20823. default: true
  20824. },
  20825. ]
  20826. ))
  20827. characterMakers.push(() => makeCharacter(
  20828. { name: "Sheera Castellar" },
  20829. {
  20830. front: {
  20831. height: math.unit(8 + 4/12, "feet"),
  20832. weight: math.unit(350, "lb"),
  20833. name: "Front",
  20834. image: {
  20835. source: "./media/characters/sheera-castellar/front.svg",
  20836. extra: 1957/1894,
  20837. bottom: 26.97/1975.017
  20838. }
  20839. },
  20840. side: {
  20841. height: math.unit(8 + 4/12, "feet"),
  20842. weight: math.unit(350, "lb"),
  20843. name: "Side",
  20844. image: {
  20845. source: "./media/characters/sheera-castellar/side.svg",
  20846. extra: 1957/1894
  20847. }
  20848. },
  20849. back: {
  20850. height: math.unit(8 + 4/12, "feet"),
  20851. weight: math.unit(350, "lb"),
  20852. name: "Back",
  20853. image: {
  20854. source: "./media/characters/sheera-castellar/back.svg",
  20855. extra: 1957/1894
  20856. }
  20857. },
  20858. angled: {
  20859. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20860. weight: math.unit(350, "lb"),
  20861. name: "Angled",
  20862. image: {
  20863. source: "./media/characters/sheera-castellar/angled.svg",
  20864. extra: 1807/1707,
  20865. bottom: 68/1875
  20866. }
  20867. },
  20868. genitals: {
  20869. height: math.unit(2.2, "feet"),
  20870. name: "Genitals",
  20871. image: {
  20872. source: "./media/characters/sheera-castellar/genitals.svg"
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Normal",
  20879. height: math.unit(8 + 4/12, "feet")
  20880. },
  20881. {
  20882. name: "Macro",
  20883. height: math.unit(150, "feet"),
  20884. default: true
  20885. },
  20886. {
  20887. name: "Macro+",
  20888. height: math.unit(800, "feet")
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  20894. {
  20895. front: {
  20896. height: math.unit(6, "feet"),
  20897. weight: math.unit(150, "lb"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/jaipur/front.svg",
  20901. extra: 3860/3731,
  20902. bottom: 287/4140
  20903. }
  20904. },
  20905. back: {
  20906. height: math.unit(6, "feet"),
  20907. weight: math.unit(150, "lb"),
  20908. name: "Back",
  20909. image: {
  20910. source: "./media/characters/jaipur/back.svg",
  20911. extra: 4060/3930,
  20912. bottom: 151/4200
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Normal",
  20919. height: math.unit(1.85, "meters"),
  20920. default: true
  20921. },
  20922. {
  20923. name: "Macro",
  20924. height: math.unit(150, "meters")
  20925. },
  20926. {
  20927. name: "Macro+",
  20928. height: math.unit(0.5, "miles")
  20929. },
  20930. {
  20931. name: "Macro++",
  20932. height: math.unit(2.5, "miles")
  20933. },
  20934. {
  20935. name: "Macro+++",
  20936. height: math.unit(12, "miles")
  20937. },
  20938. {
  20939. name: "Macro++++",
  20940. height: math.unit(120, "miles")
  20941. },
  20942. {
  20943. name: "Macro+++++",
  20944. height: math.unit(1200, "miles")
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Sheila (Wolf)" },
  20950. {
  20951. front: {
  20952. height: math.unit(6, "feet"),
  20953. weight: math.unit(150, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/sheila-wolf/front.svg",
  20957. extra: 1931/1808,
  20958. bottom: 29.5/1960
  20959. }
  20960. },
  20961. dick: {
  20962. height: math.unit(1.464, "feet"),
  20963. name: "Dick",
  20964. image: {
  20965. source: "./media/characters/sheila-wolf/dick.svg"
  20966. }
  20967. },
  20968. muzzle: {
  20969. height: math.unit(0.513, "feet"),
  20970. name: "Muzzle",
  20971. image: {
  20972. source: "./media/characters/sheila-wolf/muzzle.svg"
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Macro",
  20979. height: math.unit(70, "feet"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(32, "meters"),
  20989. weight: math.unit(300000, "kg"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/almor/front.svg",
  20993. extra: 1408/1322,
  20994. bottom: 94.6/1506.5
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Macro",
  21001. height: math.unit(32, "meters"),
  21002. default: true
  21003. },
  21004. ]
  21005. ))
  21006. characterMakers.push(() => makeCharacter(
  21007. { name: "Silver" },
  21008. {
  21009. front: {
  21010. height: math.unit(7, "feet"),
  21011. weight: math.unit(200, "lb"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/silver/front.svg",
  21015. extra: 472.1/450.5,
  21016. bottom: 26.5/499.424
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Normal",
  21023. height: math.unit(7, "feet"),
  21024. default: true
  21025. },
  21026. {
  21027. name: "Macro",
  21028. height: math.unit(800, "feet")
  21029. },
  21030. {
  21031. name: "Megamacro",
  21032. height: math.unit(250, "miles")
  21033. },
  21034. ]
  21035. ))
  21036. characterMakers.push(() => makeCharacter(
  21037. { name: "Pliskin" },
  21038. {
  21039. front: {
  21040. height: math.unit(6, "feet"),
  21041. weight: math.unit(150, "lb"),
  21042. name: "Front",
  21043. image: {
  21044. source: "./media/characters/pliskin/front.svg",
  21045. extra: 1469/1359,
  21046. bottom: 70/1540
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Micro",
  21053. height: math.unit(3, "inches")
  21054. },
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(5 + 11/12, "feet"),
  21058. default: true
  21059. },
  21060. {
  21061. name: "Macro",
  21062. height: math.unit(120, "feet")
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Sammy" },
  21068. {
  21069. front: {
  21070. height: math.unit(6, "feet"),
  21071. weight: math.unit(150, "lb"),
  21072. name: "Front",
  21073. image: {
  21074. source: "./media/characters/sammy/front.svg",
  21075. extra: 1193/1089,
  21076. bottom: 30.5/1226
  21077. }
  21078. },
  21079. },
  21080. [
  21081. {
  21082. name: "Macro",
  21083. height: math.unit(1700, "feet"),
  21084. default: true
  21085. },
  21086. {
  21087. name: "Examacro",
  21088. height: math.unit(2.5e9, "lightyears")
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21094. {
  21095. front: {
  21096. height: math.unit(21, "meters"),
  21097. weight: math.unit(12, "tonnes"),
  21098. name: "Front",
  21099. image: {
  21100. source: "./media/characters/kuru/front.svg",
  21101. extra: 4301/3785,
  21102. bottom: 371.3/4691
  21103. }
  21104. },
  21105. },
  21106. [
  21107. {
  21108. name: "Macro",
  21109. height: math.unit(21, "meters"),
  21110. default: true
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  21116. {
  21117. front: {
  21118. height: math.unit(23, "meters"),
  21119. weight: math.unit(12.2, "tonnes"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/rakka/front.svg",
  21123. extra: 4670/4169,
  21124. bottom: 301/4968.7
  21125. }
  21126. },
  21127. },
  21128. [
  21129. {
  21130. name: "Macro",
  21131. height: math.unit(23, "meters"),
  21132. default: true
  21133. },
  21134. ]
  21135. ))
  21136. characterMakers.push(() => makeCharacter(
  21137. { name: "Rhys (Feline)" },
  21138. {
  21139. front: {
  21140. height: math.unit(6, "feet"),
  21141. weight: math.unit(150, "lb"),
  21142. name: "Front",
  21143. image: {
  21144. source: "./media/characters/rhys-feline/front.svg",
  21145. extra: 2488/2308,
  21146. bottom: 35.67/2519.19
  21147. }
  21148. },
  21149. },
  21150. [
  21151. {
  21152. name: "Really Small",
  21153. height: math.unit(1, "nm")
  21154. },
  21155. {
  21156. name: "Micro",
  21157. height: math.unit(4, "inches")
  21158. },
  21159. {
  21160. name: "Normal",
  21161. height: math.unit(4 + 10/12, "feet"),
  21162. default: true
  21163. },
  21164. {
  21165. name: "Macro",
  21166. height: math.unit(100, "feet")
  21167. },
  21168. {
  21169. name: "Megamacto",
  21170. height: math.unit(50, "miles")
  21171. },
  21172. ]
  21173. ))
  21174. characterMakers.push(() => makeCharacter(
  21175. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  21176. {
  21177. side: {
  21178. height: math.unit(30, "feet"),
  21179. weight: math.unit(35000, "kg"),
  21180. name: "Side",
  21181. image: {
  21182. source: "./media/characters/alydar/side.svg",
  21183. extra: 234/222,
  21184. bottom: 6.5/241
  21185. }
  21186. },
  21187. front: {
  21188. height: math.unit(30, "feet"),
  21189. weight: math.unit(35000, "kg"),
  21190. name: "Front",
  21191. image: {
  21192. source: "./media/characters/alydar/front.svg",
  21193. extra: 223.37/210.2,
  21194. bottom: 22.3/246.76
  21195. }
  21196. },
  21197. top: {
  21198. height: math.unit(64.54, "feet"),
  21199. weight: math.unit(35000, "kg"),
  21200. name: "Top",
  21201. image: {
  21202. source: "./media/characters/alydar/top.svg"
  21203. }
  21204. },
  21205. anthro: {
  21206. height: math.unit(30, "feet"),
  21207. weight: math.unit(9000, "kg"),
  21208. name: "Anthro",
  21209. image: {
  21210. source: "./media/characters/alydar/anthro.svg",
  21211. extra: 432/421,
  21212. bottom: 7.18/440
  21213. }
  21214. },
  21215. maw: {
  21216. height: math.unit(11.693, "feet"),
  21217. name: "Maw",
  21218. image: {
  21219. source: "./media/characters/alydar/maw.svg"
  21220. }
  21221. },
  21222. head: {
  21223. height: math.unit(11.693, "feet"),
  21224. name: "Head",
  21225. image: {
  21226. source: "./media/characters/alydar/head.svg"
  21227. }
  21228. },
  21229. headAlt: {
  21230. height: math.unit(12.861, "feet"),
  21231. name: "Head (Alt)",
  21232. image: {
  21233. source: "./media/characters/alydar/head-alt.svg"
  21234. }
  21235. },
  21236. wing: {
  21237. height: math.unit(20.712, "feet"),
  21238. name: "Wing",
  21239. image: {
  21240. source: "./media/characters/alydar/wing.svg"
  21241. }
  21242. },
  21243. wingFeather: {
  21244. height: math.unit(9.662, "feet"),
  21245. name: "Wing Feather",
  21246. image: {
  21247. source: "./media/characters/alydar/wing-feather.svg"
  21248. }
  21249. },
  21250. countourFeather: {
  21251. height: math.unit(4.154, "feet"),
  21252. name: "Contour Feather",
  21253. image: {
  21254. source: "./media/characters/alydar/contour-feather.svg"
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Diplomatic",
  21261. height: math.unit(13, "feet"),
  21262. default: true
  21263. },
  21264. {
  21265. name: "Small",
  21266. height: math.unit(30, "feet")
  21267. },
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(95, "feet"),
  21271. default: true
  21272. },
  21273. {
  21274. name: "Large",
  21275. height: math.unit(285, "feet")
  21276. },
  21277. {
  21278. name: "Incomprehensible",
  21279. height: math.unit(450, "megameters")
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "Selicia" },
  21285. {
  21286. side: {
  21287. height: math.unit(11, "feet"),
  21288. weight: math.unit(1750, "kg"),
  21289. name: "Side",
  21290. image: {
  21291. source: "./media/characters/selicia/side.svg",
  21292. extra: 440/396,
  21293. bottom: 24.8/465.979
  21294. }
  21295. },
  21296. maw: {
  21297. height: math.unit(4.665, "feet"),
  21298. name: "Maw",
  21299. image: {
  21300. source: "./media/characters/selicia/maw.svg"
  21301. }
  21302. },
  21303. },
  21304. [
  21305. {
  21306. name: "Normal",
  21307. height: math.unit(11, "feet"),
  21308. default: true
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Layla" },
  21314. {
  21315. side: {
  21316. height: math.unit(2 + 6 /12, "feet"),
  21317. weight: math.unit(30, "lb"),
  21318. name: "Side",
  21319. image: {
  21320. source: "./media/characters/layla/side.svg",
  21321. extra: 244/188,
  21322. bottom: 18.2/262.1
  21323. }
  21324. },
  21325. back: {
  21326. height: math.unit(2 + 6 /12, "feet"),
  21327. weight: math.unit(30, "lb"),
  21328. name: "Back",
  21329. image: {
  21330. source: "./media/characters/layla/back.svg",
  21331. extra: 308/241.5,
  21332. bottom: 8.9/316.8
  21333. }
  21334. },
  21335. cumming: {
  21336. height: math.unit(2 + 6 /12, "feet"),
  21337. weight: math.unit(30, "lb"),
  21338. name: "Cumming",
  21339. image: {
  21340. source: "./media/characters/layla/cumming.svg",
  21341. extra: 342/279,
  21342. bottom: 595/938
  21343. }
  21344. },
  21345. dickFlaccid: {
  21346. height: math.unit(2.595, "feet"),
  21347. name: "Flaccid Genitals",
  21348. image: {
  21349. source: "./media/characters/layla/dick-flaccid.svg"
  21350. }
  21351. },
  21352. dickErect: {
  21353. height: math.unit(2.359, "feet"),
  21354. name: "Erect Genitals",
  21355. image: {
  21356. source: "./media/characters/layla/dick-erect.svg"
  21357. }
  21358. },
  21359. },
  21360. [
  21361. {
  21362. name: "Micro",
  21363. height: math.unit(1, "inch")
  21364. },
  21365. {
  21366. name: "Small",
  21367. height: math.unit(1, "foot")
  21368. },
  21369. {
  21370. name: "Normal",
  21371. height: math.unit(2 + 6/12, "feet"),
  21372. default: true
  21373. },
  21374. {
  21375. name: "Macro",
  21376. height: math.unit(200, "feet")
  21377. },
  21378. {
  21379. name: "Megamacro",
  21380. height: math.unit(1000, "miles")
  21381. },
  21382. {
  21383. name: "Planetary",
  21384. height: math.unit(8000, "miles")
  21385. },
  21386. {
  21387. name: "True Layla",
  21388. height: math.unit(200000*7, "multiverses")
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Knox" },
  21394. {
  21395. back: {
  21396. height: math.unit(10.5, "feet"),
  21397. weight: math.unit(800, "lb"),
  21398. name: "Back",
  21399. image: {
  21400. source: "./media/characters/knox/back.svg",
  21401. extra: 1486/1089,
  21402. bottom: 107/1601.4
  21403. }
  21404. },
  21405. side: {
  21406. height: math.unit(10.5, "feet"),
  21407. weight: math.unit(800, "lb"),
  21408. name: "Side",
  21409. image: {
  21410. source: "./media/characters/knox/side.svg",
  21411. extra: 244/218,
  21412. bottom: 14/260
  21413. }
  21414. },
  21415. },
  21416. [
  21417. {
  21418. name: "Compact",
  21419. height: math.unit(10.5, "feet"),
  21420. default: true
  21421. },
  21422. {
  21423. name: "Dynamax",
  21424. height: math.unit(210, "feet")
  21425. },
  21426. {
  21427. name: "Full Macro",
  21428. height: math.unit(850, "feet")
  21429. },
  21430. ]
  21431. ))
  21432. characterMakers.push(() => makeCharacter(
  21433. { name: "Shin (Pikachu)" },
  21434. {
  21435. front: {
  21436. height: math.unit(6, "feet"),
  21437. weight: math.unit(152, "lb"),
  21438. name: "Front",
  21439. image: {
  21440. source: "./media/characters/shin-pikachu/front.svg",
  21441. extra: 1574/1480,
  21442. bottom: 53.3/1626
  21443. }
  21444. },
  21445. hand: {
  21446. height: math.unit(1.055, "feet"),
  21447. name: "Hand",
  21448. image: {
  21449. source: "./media/characters/shin-pikachu/hand.svg"
  21450. }
  21451. },
  21452. foot: {
  21453. height: math.unit(1.1, "feet"),
  21454. name: "Foot",
  21455. image: {
  21456. source: "./media/characters/shin-pikachu/foot.svg"
  21457. }
  21458. },
  21459. collar: {
  21460. height: math.unit(0.386, "feet"),
  21461. name: "Collar",
  21462. image: {
  21463. source: "./media/characters/shin-pikachu/collar.svg"
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Smallest",
  21470. height: math.unit(0.5, "inches")
  21471. },
  21472. {
  21473. name: "Micro",
  21474. height: math.unit(6, "inches")
  21475. },
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(6, "feet"),
  21479. default: true
  21480. },
  21481. {
  21482. name: "Macro",
  21483. height: math.unit(150, "feet")
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Kayda" },
  21489. {
  21490. front: {
  21491. height: math.unit(28, "feet"),
  21492. weight: math.unit(10500, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/kayda/front.svg",
  21496. extra: 1536/1428,
  21497. bottom: 68.7/1603
  21498. }
  21499. },
  21500. back: {
  21501. height: math.unit(28, "feet"),
  21502. weight: math.unit(10500, "lb"),
  21503. name: "Back",
  21504. image: {
  21505. source: "./media/characters/kayda/back.svg",
  21506. extra: 1557/1464,
  21507. bottom: 39.5/1597.49
  21508. }
  21509. },
  21510. dick: {
  21511. height: math.unit(3.858, "feet"),
  21512. name: "Dick",
  21513. image: {
  21514. source: "./media/characters/kayda/dick.svg"
  21515. }
  21516. },
  21517. },
  21518. [
  21519. {
  21520. name: "Macro",
  21521. height: math.unit(28, "feet"),
  21522. default: true
  21523. },
  21524. ]
  21525. ))
  21526. characterMakers.push(() => makeCharacter(
  21527. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  21528. {
  21529. front: {
  21530. height: math.unit(10 + 11/12, "feet"),
  21531. weight: math.unit(1400, "lb"),
  21532. name: "Front",
  21533. image: {
  21534. source: "./media/characters/brian/front.svg",
  21535. extra: 737/692,
  21536. bottom: 55.4/785
  21537. }
  21538. },
  21539. },
  21540. [
  21541. {
  21542. name: "Normal",
  21543. height: math.unit(10 + 11/12, "feet"),
  21544. default: true
  21545. },
  21546. ]
  21547. ))
  21548. characterMakers.push(() => makeCharacter(
  21549. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  21550. {
  21551. front: {
  21552. height: math.unit(5 + 8/12, "feet"),
  21553. weight: math.unit(140, "lb"),
  21554. name: "Front",
  21555. image: {
  21556. source: "./media/characters/khemri/front.svg",
  21557. extra: 4780/4059,
  21558. bottom: 80.1/4859.25
  21559. }
  21560. },
  21561. },
  21562. [
  21563. {
  21564. name: "Micro",
  21565. height: math.unit(6, "inches")
  21566. },
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(5 + 8/12, "feet"),
  21570. default: true
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Felix Braveheart" },
  21576. {
  21577. front: {
  21578. height: math.unit(13, "feet"),
  21579. weight: math.unit(1700, "lb"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/felix-braveheart/front.svg",
  21583. extra: 1222/1157,
  21584. bottom: 53.2/1280
  21585. }
  21586. },
  21587. back: {
  21588. height: math.unit(13, "feet"),
  21589. weight: math.unit(1700, "lb"),
  21590. name: "Back",
  21591. image: {
  21592. source: "./media/characters/felix-braveheart/back.svg",
  21593. extra: 1277/1203,
  21594. bottom: 50.2/1327
  21595. }
  21596. },
  21597. feral: {
  21598. height: math.unit(6, "feet"),
  21599. weight: math.unit(400, "lb"),
  21600. name: "Feral",
  21601. image: {
  21602. source: "./media/characters/felix-braveheart/feral.svg",
  21603. extra: 682/625,
  21604. bottom: 6.9/688
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(13, "feet"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Shadow Blade" },
  21618. {
  21619. side: {
  21620. height: math.unit(5 + 11/12, "feet"),
  21621. weight: math.unit(1400, "lb"),
  21622. name: "Side",
  21623. image: {
  21624. source: "./media/characters/shadow-blade/side.svg",
  21625. extra: 1726/1267,
  21626. bottom: 58.4/1785
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(5 + 11/12, "feet"),
  21634. default: true
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Karla Halldor" },
  21640. {
  21641. front: {
  21642. height: math.unit(1 + 6/12, "feet"),
  21643. weight: math.unit(25, "lb"),
  21644. name: "Front",
  21645. image: {
  21646. source: "./media/characters/karla-halldor/front.svg",
  21647. extra: 1459/1383,
  21648. bottom: 12/1472
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(1 + 6/12, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Ariam" },
  21662. {
  21663. front: {
  21664. height: math.unit(6 + 2/12, "feet"),
  21665. weight: math.unit(160, "lb"),
  21666. name: "Front",
  21667. image: {
  21668. source: "./media/characters/ariam/front.svg",
  21669. extra: 714/617,
  21670. bottom: 23.4/737,
  21671. }
  21672. },
  21673. squatting: {
  21674. height: math.unit(4.1, "feet"),
  21675. weight: math.unit(160, "lb"),
  21676. name: "Squatting",
  21677. image: {
  21678. source: "./media/characters/ariam/squatting.svg",
  21679. extra: 2617/2112,
  21680. bottom: 61.2/2681,
  21681. }
  21682. },
  21683. },
  21684. [
  21685. {
  21686. name: "Normal",
  21687. height: math.unit(6 + 2/12, "feet"),
  21688. default: true
  21689. },
  21690. {
  21691. name: "Normal+",
  21692. height: math.unit(4, "meters")
  21693. },
  21694. {
  21695. name: "Macro",
  21696. height: math.unit(50, "meters")
  21697. },
  21698. {
  21699. name: "Macro+",
  21700. height: math.unit(100, "meters")
  21701. },
  21702. {
  21703. name: "Megamacro",
  21704. height: math.unit(20, "km")
  21705. },
  21706. ]
  21707. ))
  21708. characterMakers.push(() => makeCharacter(
  21709. { name: "Qodri Class-of-'Fortwelve-Six" },
  21710. {
  21711. front: {
  21712. height: math.unit(1.67, "meters"),
  21713. weight: math.unit(140, "lb"),
  21714. name: "Front",
  21715. image: {
  21716. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21717. extra: 438/410,
  21718. bottom: 0.75/439
  21719. }
  21720. },
  21721. },
  21722. [
  21723. {
  21724. name: "Shrunken",
  21725. height: math.unit(7.6, "cm")
  21726. },
  21727. {
  21728. name: "Human Scale",
  21729. height: math.unit(1.67, "meters")
  21730. },
  21731. {
  21732. name: "Wolxi Scale",
  21733. height: math.unit(36.7, "meters"),
  21734. default: true
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Izue Two-Mothers" },
  21740. {
  21741. front: {
  21742. height: math.unit(1.73, "meters"),
  21743. weight: math.unit(240, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/izue-two-mothers/front.svg",
  21747. extra: 469/437,
  21748. bottom: 1.24/470.6
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Shrunken",
  21755. height: math.unit(7.86, "cm")
  21756. },
  21757. {
  21758. name: "Human Scale",
  21759. height: math.unit(1.73, "meters")
  21760. },
  21761. {
  21762. name: "Wolxi Scale",
  21763. height: math.unit(38, "meters"),
  21764. default: true
  21765. },
  21766. ]
  21767. ))
  21768. characterMakers.push(() => makeCharacter(
  21769. { name: "Teeku Love-Shack" },
  21770. {
  21771. front: {
  21772. height: math.unit(1.55, "meters"),
  21773. weight: math.unit(120, "lb"),
  21774. name: "Front",
  21775. image: {
  21776. source: "./media/characters/teeku-love-shack/front.svg",
  21777. extra: 387/362,
  21778. bottom: 1.51/388
  21779. }
  21780. },
  21781. },
  21782. [
  21783. {
  21784. name: "Shrunken",
  21785. height: math.unit(7, "cm")
  21786. },
  21787. {
  21788. name: "Human Scale",
  21789. height: math.unit(1.55, "meters")
  21790. },
  21791. {
  21792. name: "Wolxi Scale",
  21793. height: math.unit(34.1, "meters"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Dejma the Red" },
  21800. {
  21801. front: {
  21802. height: math.unit(1.83, "meters"),
  21803. weight: math.unit(135, "lb"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/dejma-the-red/front.svg",
  21807. extra: 480/458,
  21808. bottom: 1.8/482
  21809. }
  21810. },
  21811. },
  21812. [
  21813. {
  21814. name: "Shrunken",
  21815. height: math.unit(8.3, "cm")
  21816. },
  21817. {
  21818. name: "Human Scale",
  21819. height: math.unit(1.83, "meters")
  21820. },
  21821. {
  21822. name: "Wolxi Scale",
  21823. height: math.unit(40, "meters"),
  21824. default: true
  21825. },
  21826. ]
  21827. ))
  21828. characterMakers.push(() => makeCharacter(
  21829. { name: "Aki" },
  21830. {
  21831. front: {
  21832. height: math.unit(1.78, "meters"),
  21833. weight: math.unit(65, "kg"),
  21834. name: "Front",
  21835. image: {
  21836. source: "./media/characters/aki/front.svg",
  21837. extra: 452/415
  21838. }
  21839. },
  21840. frontNsfw: {
  21841. height: math.unit(1.78, "meters"),
  21842. weight: math.unit(65, "kg"),
  21843. name: "Front (NSFW)",
  21844. image: {
  21845. source: "./media/characters/aki/front-nsfw.svg",
  21846. extra: 452/415
  21847. }
  21848. },
  21849. back: {
  21850. height: math.unit(1.78, "meters"),
  21851. weight: math.unit(65, "kg"),
  21852. name: "Back",
  21853. image: {
  21854. source: "./media/characters/aki/back.svg",
  21855. extra: 452/415
  21856. }
  21857. },
  21858. rump: {
  21859. height: math.unit(2.05, "feet"),
  21860. name: "Rump",
  21861. image: {
  21862. source: "./media/characters/aki/rump.svg"
  21863. }
  21864. },
  21865. dick: {
  21866. height: math.unit(0.95, "feet"),
  21867. name: "Dick",
  21868. image: {
  21869. source: "./media/characters/aki/dick.svg"
  21870. }
  21871. },
  21872. },
  21873. [
  21874. {
  21875. name: "Micro",
  21876. height: math.unit(15, "cm")
  21877. },
  21878. {
  21879. name: "Normal",
  21880. height: math.unit(178, "cm"),
  21881. default: true
  21882. },
  21883. {
  21884. name: "Macro",
  21885. height: math.unit(214, "m")
  21886. },
  21887. {
  21888. name: "Macro+",
  21889. height: math.unit(534, "m")
  21890. },
  21891. ]
  21892. ))
  21893. characterMakers.push(() => makeCharacter(
  21894. { name: "Ari" },
  21895. {
  21896. front: {
  21897. height: math.unit(5 + 5/12, "feet"),
  21898. weight: math.unit(120, "lb"),
  21899. name: "Front",
  21900. image: {
  21901. source: "./media/characters/ari/front.svg",
  21902. extra: 714.5/682,
  21903. bottom: 8/722.5
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Normal",
  21910. height: math.unit(5 + 5/12, "feet")
  21911. },
  21912. {
  21913. name: "Macro",
  21914. height: math.unit(100, "feet"),
  21915. default: true
  21916. },
  21917. {
  21918. name: "Megamacro",
  21919. height: math.unit(100, "miles")
  21920. },
  21921. {
  21922. name: "Gigamacro",
  21923. height: math.unit(80000, "miles")
  21924. },
  21925. ]
  21926. ))
  21927. characterMakers.push(() => makeCharacter(
  21928. { name: "Bolt" },
  21929. {
  21930. side: {
  21931. height: math.unit(9, "feet"),
  21932. weight: math.unit(400, "kg"),
  21933. name: "Side",
  21934. image: {
  21935. source: "./media/characters/bolt/side.svg",
  21936. extra: 1126/896,
  21937. bottom: 60/1187.3,
  21938. }
  21939. },
  21940. },
  21941. [
  21942. {
  21943. name: "Micro",
  21944. height: math.unit(5, "inches")
  21945. },
  21946. {
  21947. name: "Normal",
  21948. height: math.unit(9, "feet"),
  21949. default: true
  21950. },
  21951. {
  21952. name: "Macro",
  21953. height: math.unit(700, "feet")
  21954. },
  21955. {
  21956. name: "Max Size",
  21957. height: math.unit(1.52e22, "yottameters")
  21958. },
  21959. ]
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  21963. {
  21964. front: {
  21965. height: math.unit(4.53, "meters"),
  21966. weight: math.unit(3, "tons"),
  21967. name: "Front",
  21968. image: {
  21969. source: "./media/characters/draekon-sylviar/front.svg",
  21970. extra: 1228/1068,
  21971. bottom: 41/1270
  21972. }
  21973. },
  21974. tail: {
  21975. height: math.unit(1.772, "meter"),
  21976. name: "Tail",
  21977. image: {
  21978. source: "./media/characters/draekon-sylviar/tail.svg"
  21979. }
  21980. },
  21981. head: {
  21982. height: math.unit(1.331, "meter"),
  21983. name: "Head",
  21984. image: {
  21985. source: "./media/characters/draekon-sylviar/head.svg"
  21986. }
  21987. },
  21988. hand: {
  21989. height: math.unit(0.564, "meter"),
  21990. name: "Hand",
  21991. image: {
  21992. source: "./media/characters/draekon-sylviar/hand.svg"
  21993. }
  21994. },
  21995. foot: {
  21996. height: math.unit(0.621, "meter"),
  21997. name: "Foot",
  21998. image: {
  21999. source: "./media/characters/draekon-sylviar/foot.svg",
  22000. bottom: 32/324
  22001. }
  22002. },
  22003. dick: {
  22004. height: math.unit(61, "cm"),
  22005. name: "Dick",
  22006. image: {
  22007. source: "./media/characters/draekon-sylviar/dick.svg"
  22008. }
  22009. },
  22010. dickseparated: {
  22011. height: math.unit(61, "cm"),
  22012. name: "Dick-separated",
  22013. image: {
  22014. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22015. }
  22016. },
  22017. },
  22018. [
  22019. {
  22020. name: "Small",
  22021. height: math.unit(4.53/2, "meters"),
  22022. default: true
  22023. },
  22024. {
  22025. name: "Normal",
  22026. height: math.unit(4.53, "meters"),
  22027. default: true
  22028. },
  22029. {
  22030. name: "Large",
  22031. height: math.unit(4.53*2, "meters"),
  22032. },
  22033. ]
  22034. ))
  22035. characterMakers.push(() => makeCharacter(
  22036. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22037. {
  22038. front: {
  22039. height: math.unit(6 + 2/12, "feet"),
  22040. weight: math.unit(180, "lb"),
  22041. name: "Front",
  22042. image: {
  22043. source: "./media/characters/brawler/front.svg",
  22044. extra: 3301/3027,
  22045. bottom: 138/3439
  22046. }
  22047. },
  22048. },
  22049. [
  22050. {
  22051. name: "Normal",
  22052. height: math.unit(6 + 2/12, "feet"),
  22053. default: true
  22054. },
  22055. ]
  22056. ))
  22057. characterMakers.push(() => makeCharacter(
  22058. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22059. {
  22060. front: {
  22061. height: math.unit(11, "feet"),
  22062. weight: math.unit(1000, "lb"),
  22063. name: "Front",
  22064. image: {
  22065. source: "./media/characters/alex/front.svg",
  22066. bottom: 44.5/620
  22067. }
  22068. },
  22069. },
  22070. [
  22071. {
  22072. name: "Micro",
  22073. height: math.unit(5, "inches")
  22074. },
  22075. {
  22076. name: "Normal",
  22077. height: math.unit(11, "feet"),
  22078. default: true
  22079. },
  22080. {
  22081. name: "Macro",
  22082. height: math.unit(9.5e9, "feet")
  22083. },
  22084. {
  22085. name: "Max Size",
  22086. height: math.unit(1.4e283, "yottameters")
  22087. },
  22088. ]
  22089. ))
  22090. characterMakers.push(() => makeCharacter(
  22091. { name: "Zenari" },
  22092. {
  22093. female: {
  22094. height: math.unit(29.9, "m"),
  22095. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  22096. name: "Female",
  22097. image: {
  22098. source: "./media/characters/zenari/female.svg",
  22099. extra: 3281.6/3217,
  22100. bottom: 72.2/3353
  22101. }
  22102. },
  22103. male: {
  22104. height: math.unit(27.7, "m"),
  22105. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  22106. name: "Male",
  22107. image: {
  22108. source: "./media/characters/zenari/male.svg",
  22109. extra: 3008/2991,
  22110. bottom: 54.6/3069
  22111. }
  22112. },
  22113. },
  22114. [
  22115. {
  22116. name: "Macro",
  22117. height: math.unit(29.7, "meters"),
  22118. default: true
  22119. },
  22120. ]
  22121. ))
  22122. characterMakers.push(() => makeCharacter(
  22123. { name: "Mactarian" },
  22124. {
  22125. female: {
  22126. height: math.unit(23.8, "m"),
  22127. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22128. name: "Female",
  22129. image: {
  22130. source: "./media/characters/mactarian/female.svg",
  22131. extra: 2662/2569,
  22132. bottom: 73/2736
  22133. }
  22134. },
  22135. male: {
  22136. height: math.unit(23.8, "m"),
  22137. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22138. name: "Male",
  22139. image: {
  22140. source: "./media/characters/mactarian/male.svg",
  22141. extra: 2673/2600,
  22142. bottom: 76/2750
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Macro",
  22149. height: math.unit(23.8, "meters"),
  22150. default: true
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Umok" },
  22156. {
  22157. female: {
  22158. height: math.unit(19.3, "m"),
  22159. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  22160. name: "Female",
  22161. image: {
  22162. source: "./media/characters/umok/female.svg",
  22163. extra: 2186/2078,
  22164. bottom: 87/2277
  22165. }
  22166. },
  22167. male: {
  22168. height: math.unit(19.5, "m"),
  22169. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  22170. name: "Male",
  22171. image: {
  22172. source: "./media/characters/umok/male.svg",
  22173. extra: 2233/2140,
  22174. bottom: 24.4/2258
  22175. }
  22176. },
  22177. },
  22178. [
  22179. {
  22180. name: "Macro",
  22181. height: math.unit(19.3, "meters"),
  22182. default: true
  22183. },
  22184. ]
  22185. ))
  22186. characterMakers.push(() => makeCharacter(
  22187. { name: "Joraxian" },
  22188. {
  22189. female: {
  22190. height: math.unit(26.15, "m"),
  22191. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  22192. name: "Female",
  22193. image: {
  22194. source: "./media/characters/joraxian/female.svg",
  22195. extra: 2943/2831,
  22196. bottom: 27/2972
  22197. }
  22198. },
  22199. male: {
  22200. height: math.unit(25.4, "m"),
  22201. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  22202. name: "Male",
  22203. image: {
  22204. source: "./media/characters/joraxian/male.svg",
  22205. extra: 2835/2741,
  22206. bottom: 27/2862
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Macro",
  22213. height: math.unit(26.15, "meters"),
  22214. default: true
  22215. },
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Sthara" },
  22220. {
  22221. female: {
  22222. height: math.unit(21.6, "m"),
  22223. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  22224. name: "Female",
  22225. image: {
  22226. source: "./media/characters/sthara/female.svg",
  22227. extra: 2516/2347,
  22228. bottom: 21.5/2537
  22229. }
  22230. },
  22231. male: {
  22232. height: math.unit(24, "m"),
  22233. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  22234. name: "Male",
  22235. image: {
  22236. source: "./media/characters/sthara/male.svg",
  22237. extra: 2732/2607,
  22238. bottom: 23/2732
  22239. }
  22240. },
  22241. },
  22242. [
  22243. {
  22244. name: "Macro",
  22245. height: math.unit(21.6, "meters"),
  22246. default: true
  22247. },
  22248. ]
  22249. ))
  22250. characterMakers.push(() => makeCharacter(
  22251. { name: "Luka Bryzant" },
  22252. {
  22253. front: {
  22254. height: math.unit(6 + 4/12, "feet"),
  22255. weight: math.unit(175, "lb"),
  22256. name: "Front",
  22257. image: {
  22258. source: "./media/characters/luka-bryzant/front.svg",
  22259. extra: 311/289,
  22260. bottom: 4/315
  22261. }
  22262. },
  22263. back: {
  22264. height: math.unit(6 + 4/12, "feet"),
  22265. weight: math.unit(175, "lb"),
  22266. name: "Back",
  22267. image: {
  22268. source: "./media/characters/luka-bryzant/back.svg",
  22269. extra: 311/289,
  22270. bottom: 3.8/313.7
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Micro",
  22277. height: math.unit(10, "inches")
  22278. },
  22279. {
  22280. name: "Normal",
  22281. height: math.unit(6 + 4/12, "feet"),
  22282. default: true
  22283. },
  22284. {
  22285. name: "Large",
  22286. height: math.unit(12, "feet")
  22287. },
  22288. ]
  22289. ))
  22290. characterMakers.push(() => makeCharacter(
  22291. { name: "Aman Aquila" },
  22292. {
  22293. front: {
  22294. height: math.unit(5 + 7/12, "feet"),
  22295. weight: math.unit(185, "lb"),
  22296. name: "Front",
  22297. image: {
  22298. source: "./media/characters/aman-aquila/front.svg",
  22299. extra: 1013/976,
  22300. bottom: 45.6/1057
  22301. }
  22302. },
  22303. side: {
  22304. height: math.unit(5 + 7/12, "feet"),
  22305. weight: math.unit(185, "lb"),
  22306. name: "Side",
  22307. image: {
  22308. source: "./media/characters/aman-aquila/side.svg",
  22309. extra: 1054/1011,
  22310. bottom: 15/1070
  22311. }
  22312. },
  22313. back: {
  22314. height: math.unit(5 + 7/12, "feet"),
  22315. weight: math.unit(185, "lb"),
  22316. name: "Back",
  22317. image: {
  22318. source: "./media/characters/aman-aquila/back.svg",
  22319. extra: 1026/970,
  22320. bottom: 12/1039
  22321. }
  22322. },
  22323. head: {
  22324. height: math.unit(1.211, "feet"),
  22325. name: "Head",
  22326. image: {
  22327. source: "./media/characters/aman-aquila/head.svg",
  22328. }
  22329. },
  22330. },
  22331. [
  22332. {
  22333. name: "Minimicro",
  22334. height: math.unit(0.057, "inches")
  22335. },
  22336. {
  22337. name: "Micro",
  22338. height: math.unit(7, "inches")
  22339. },
  22340. {
  22341. name: "Mini",
  22342. height: math.unit(3 + 7/12, "feet")
  22343. },
  22344. {
  22345. name: "Normal",
  22346. height: math.unit(5 + 7/12, "feet"),
  22347. default: true
  22348. },
  22349. {
  22350. name: "Macro",
  22351. height: math.unit(157 + 7/12, "feet")
  22352. },
  22353. {
  22354. name: "Megamacro",
  22355. height: math.unit(1557 + 7/12, "feet")
  22356. },
  22357. {
  22358. name: "Gigamacro",
  22359. height: math.unit(15557 + 7/12, "feet")
  22360. },
  22361. ]
  22362. ))
  22363. characterMakers.push(() => makeCharacter(
  22364. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  22365. {
  22366. front: {
  22367. height: math.unit(3 + 2/12, "inches"),
  22368. weight: math.unit(0.3, "ounces"),
  22369. name: "Front",
  22370. image: {
  22371. source: "./media/characters/hiphae/front.svg",
  22372. extra: 1931/1683,
  22373. bottom: 24/1955
  22374. }
  22375. },
  22376. },
  22377. [
  22378. {
  22379. name: "Normal",
  22380. height: math.unit(3 + 1/2, "inches"),
  22381. default: true
  22382. },
  22383. ]
  22384. ))
  22385. characterMakers.push(() => makeCharacter(
  22386. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  22387. {
  22388. front: {
  22389. height: math.unit(5 + 10/12, "feet"),
  22390. weight: math.unit(165, "lb"),
  22391. name: "Front",
  22392. image: {
  22393. source: "./media/characters/nicky/front.svg",
  22394. extra: 3144/2886,
  22395. bottom: 45.6/3192
  22396. }
  22397. },
  22398. back: {
  22399. height: math.unit(5 + 10/12, "feet"),
  22400. weight: math.unit(165, "lb"),
  22401. name: "Back",
  22402. image: {
  22403. source: "./media/characters/nicky/back.svg",
  22404. extra: 3055/2804,
  22405. bottom: 28.4/3087
  22406. }
  22407. },
  22408. frontclothed: {
  22409. height: math.unit(5 + 10/12, "feet"),
  22410. weight: math.unit(165, "lb"),
  22411. name: "Front-clothed",
  22412. image: {
  22413. source: "./media/characters/nicky/front-clothed.svg",
  22414. extra: 3184.9/2926.9,
  22415. bottom: 86.5/3239.9
  22416. }
  22417. },
  22418. foot: {
  22419. height: math.unit(1.16, "feet"),
  22420. name: "Foot",
  22421. image: {
  22422. source: "./media/characters/nicky/foot.svg"
  22423. }
  22424. },
  22425. feet: {
  22426. height: math.unit(1.34, "feet"),
  22427. name: "Feet",
  22428. image: {
  22429. source: "./media/characters/nicky/feet.svg"
  22430. }
  22431. },
  22432. maw: {
  22433. height: math.unit(0.9, "feet"),
  22434. name: "Maw",
  22435. image: {
  22436. source: "./media/characters/nicky/maw.svg"
  22437. }
  22438. },
  22439. },
  22440. [
  22441. {
  22442. name: "Normal",
  22443. height: math.unit(5 + 10/12, "feet"),
  22444. default: true
  22445. },
  22446. {
  22447. name: "Macro",
  22448. height: math.unit(60, "feet")
  22449. },
  22450. {
  22451. name: "Megamacro",
  22452. height: math.unit(1, "mile")
  22453. },
  22454. ]
  22455. ))
  22456. characterMakers.push(() => makeCharacter(
  22457. { name: "Blair" },
  22458. {
  22459. side: {
  22460. height: math.unit(10, "feet"),
  22461. weight: math.unit(600, "lb"),
  22462. name: "Side",
  22463. image: {
  22464. source: "./media/characters/blair/side.svg",
  22465. bottom: 16.6/475,
  22466. extra: 458/431
  22467. }
  22468. },
  22469. },
  22470. [
  22471. {
  22472. name: "Micro",
  22473. height: math.unit(8, "inches")
  22474. },
  22475. {
  22476. name: "Normal",
  22477. height: math.unit(10, "feet"),
  22478. default: true
  22479. },
  22480. {
  22481. name: "Macro",
  22482. height: math.unit(180, "feet")
  22483. },
  22484. ]
  22485. ))
  22486. characterMakers.push(() => makeCharacter(
  22487. { name: "Fisher" },
  22488. {
  22489. front: {
  22490. height: math.unit(5 + 4/12, "feet"),
  22491. weight: math.unit(125, "lb"),
  22492. name: "Front",
  22493. image: {
  22494. source: "./media/characters/fisher/front.svg",
  22495. extra: 444/390,
  22496. bottom: 2/444.8
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Micro",
  22503. height: math.unit(4, "inches")
  22504. },
  22505. {
  22506. name: "Normal",
  22507. height: math.unit(5 + 4/12, "feet"),
  22508. default: true
  22509. },
  22510. {
  22511. name: "Macro",
  22512. height: math.unit(100, "feet")
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Gliss" },
  22518. {
  22519. front: {
  22520. height: math.unit(6.71, "feet"),
  22521. weight: math.unit(200, "lb"),
  22522. capacity: math.unit(1000000, "people"),
  22523. name: "Front",
  22524. image: {
  22525. source: "./media/characters/gliss/front.svg",
  22526. extra: 2347/2231,
  22527. bottom: 113/2462
  22528. }
  22529. },
  22530. hammerspaceSize: {
  22531. height: math.unit(6.71*717, "feet"),
  22532. weight: math.unit(200, "lb"),
  22533. capacity: math.unit(1000000, "people"),
  22534. name: "Hammerspace Size",
  22535. image: {
  22536. source: "./media/characters/gliss/front.svg",
  22537. extra: 2347/2231,
  22538. bottom: 113/2462
  22539. }
  22540. },
  22541. },
  22542. [
  22543. {
  22544. name: "Normal",
  22545. height: math.unit(6.71, "feet"),
  22546. default: true
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Dune Anderson" },
  22552. {
  22553. side: {
  22554. height: math.unit(1.44, "m"),
  22555. weight: math.unit(80, "kg"),
  22556. name: "Side",
  22557. image: {
  22558. source: "./media/characters/dune-anderson/side.svg",
  22559. bottom: 49/1426
  22560. }
  22561. },
  22562. },
  22563. [
  22564. {
  22565. name: "Wolf-sized",
  22566. height: math.unit(1.44, "meters")
  22567. },
  22568. {
  22569. name: "Normal",
  22570. height: math.unit(5.05, "meters"),
  22571. default: true
  22572. },
  22573. {
  22574. name: "Big",
  22575. height: math.unit(14.4, "meters")
  22576. },
  22577. {
  22578. name: "Huge",
  22579. height: math.unit(144, "meters")
  22580. },
  22581. ]
  22582. ))
  22583. characterMakers.push(() => makeCharacter(
  22584. { name: "Hind" },
  22585. {
  22586. front: {
  22587. height: math.unit(7, "feet"),
  22588. weight: math.unit(425, "lb"),
  22589. name: "Front",
  22590. image: {
  22591. source: "./media/characters/hind/front.svg",
  22592. extra: 2091/1860,
  22593. bottom: 129/2220
  22594. }
  22595. },
  22596. back: {
  22597. height: math.unit(7, "feet"),
  22598. weight: math.unit(425, "lb"),
  22599. name: "Back",
  22600. image: {
  22601. source: "./media/characters/hind/back.svg",
  22602. extra: 2091/1860,
  22603. bottom: 24.6/2309
  22604. }
  22605. },
  22606. tail: {
  22607. height: math.unit(2.8, "feet"),
  22608. name: "Tail",
  22609. image: {
  22610. source: "./media/characters/hind/tail.svg"
  22611. }
  22612. },
  22613. head: {
  22614. height: math.unit(2.55, "feet"),
  22615. name: "Head",
  22616. image: {
  22617. source: "./media/characters/hind/head.svg"
  22618. }
  22619. },
  22620. },
  22621. [
  22622. {
  22623. name: "XS",
  22624. height: math.unit(0.7, "feet")
  22625. },
  22626. {
  22627. name: "Normal",
  22628. height: math.unit(7, "feet"),
  22629. default: true
  22630. },
  22631. {
  22632. name: "XL",
  22633. height: math.unit(70, "feet")
  22634. },
  22635. ]
  22636. ))
  22637. characterMakers.push(() => makeCharacter(
  22638. { name: "Dylan (Skaven)" },
  22639. {
  22640. front: {
  22641. height: math.unit(6, "feet"),
  22642. weight: math.unit(150, "lb"),
  22643. name: "Front",
  22644. image: {
  22645. source: "./media/characters/dylan-skaven/front.svg",
  22646. extra: 2318/2063,
  22647. bottom: 93.4/2410
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Nano",
  22654. height: math.unit(1, "mm")
  22655. },
  22656. {
  22657. name: "Micro",
  22658. height: math.unit(1, "cm")
  22659. },
  22660. {
  22661. name: "Normal",
  22662. height: math.unit(2.1, "meters"),
  22663. default: true
  22664. },
  22665. ]
  22666. ))
  22667. characterMakers.push(() => makeCharacter(
  22668. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  22669. {
  22670. front: {
  22671. height: math.unit(7 + 5/12, "feet"),
  22672. weight: math.unit(357, "lb"),
  22673. name: "Front",
  22674. image: {
  22675. source: "./media/characters/solex-draconov/front.svg",
  22676. extra: 1993/1865,
  22677. bottom: 117/2111
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Natural Height",
  22684. height: math.unit(7 + 5/12, "feet"),
  22685. default: true
  22686. },
  22687. {
  22688. name: "Macro",
  22689. height: math.unit(350, "feet")
  22690. },
  22691. {
  22692. name: "Macro+",
  22693. height: math.unit(1000, "feet")
  22694. },
  22695. {
  22696. name: "Megamacro",
  22697. height: math.unit(20, "km")
  22698. },
  22699. {
  22700. name: "Megamacro+",
  22701. height: math.unit(1000, "km")
  22702. },
  22703. {
  22704. name: "Gigamacro",
  22705. height: math.unit(2.5, "Gm")
  22706. },
  22707. {
  22708. name: "Teramacro",
  22709. height: math.unit(15, "Tm")
  22710. },
  22711. {
  22712. name: "Galactic",
  22713. height: math.unit(30, "Zm")
  22714. },
  22715. {
  22716. name: "Universal",
  22717. height: math.unit(21000, "Ym")
  22718. },
  22719. {
  22720. name: "Omniversal",
  22721. height: math.unit(9.861e50, "Ym")
  22722. },
  22723. {
  22724. name: "Existential",
  22725. height: math.unit(1e300, "meters")
  22726. },
  22727. ]
  22728. ))
  22729. characterMakers.push(() => makeCharacter(
  22730. { name: "Mandarax" },
  22731. {
  22732. side: {
  22733. height: math.unit(25, "feet"),
  22734. weight: math.unit(90000, "lb"),
  22735. name: "Side",
  22736. image: {
  22737. source: "./media/characters/mandarax/side.svg",
  22738. extra: 614/332,
  22739. bottom: 55/630
  22740. }
  22741. },
  22742. head: {
  22743. height: math.unit(11.4, "feet"),
  22744. name: "Head",
  22745. image: {
  22746. source: "./media/characters/mandarax/head.svg"
  22747. }
  22748. },
  22749. belly: {
  22750. height: math.unit(33, "feet"),
  22751. name: "Belly",
  22752. capacity: math.unit(500, "people"),
  22753. image: {
  22754. source: "./media/characters/mandarax/belly.svg"
  22755. }
  22756. },
  22757. dick: {
  22758. height: math.unit(8.46, "feet"),
  22759. name: "Dick",
  22760. image: {
  22761. source: "./media/characters/mandarax/dick.svg"
  22762. }
  22763. },
  22764. top: {
  22765. height: math.unit(28, "meters"),
  22766. name: "Top",
  22767. image: {
  22768. source: "./media/characters/mandarax/top.svg"
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Normal",
  22775. height: math.unit(25, "feet"),
  22776. default: true
  22777. },
  22778. ]
  22779. ))
  22780. //characters
  22781. function makeCharacters() {
  22782. const results = [];
  22783. characterMakers.forEach(character => {
  22784. results.push(character());
  22785. });
  22786. return results;
  22787. }