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

23497 строки
564 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. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. }
  492. function getSpeciesInfo(speciesList) {
  493. let result = new Set();
  494. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  495. result.add(entry)
  496. });
  497. return Array.from(result);
  498. };
  499. function getSpeciesInfoHelper(species) {
  500. if (!speciesData[species]) {
  501. console.warn(species + " doesn't exist");
  502. return [];
  503. }
  504. if (speciesData[species].parents) {
  505. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  506. } else {
  507. return [species];
  508. }
  509. }
  510. characterMakers.push(() => makeCharacter(
  511. {
  512. name: "Fen",
  513. species: ["crux"],
  514. description: {
  515. title: "Bio",
  516. text: "Very furry. Sheds on everything."
  517. },
  518. tags: [
  519. "anthro"
  520. ]
  521. },
  522. {
  523. back: {
  524. height: math.unit(2.2428, "meter"),
  525. weight: math.unit(124.738, "kg"),
  526. name: "Back",
  527. image: {
  528. source: "./media/characters/fen/back.svg",
  529. extra: 1025 / 935,
  530. bottom: 0.01
  531. },
  532. info: {
  533. description: {
  534. mode: "append",
  535. text: "\n\nHe is not currently looking at you."
  536. }
  537. }
  538. },
  539. full: {
  540. height: math.unit(1.34, "meter"),
  541. weight: math.unit(225, "kg"),
  542. name: "Full",
  543. image: {
  544. source: "./media/characters/fen/full.svg"
  545. },
  546. info: {
  547. description: {
  548. mode: "append",
  549. text: "\n\nMunch."
  550. }
  551. }
  552. },
  553. kneeling: {
  554. height: math.unit(5.4, "feet"),
  555. weight: math.unit(124.738, "kg"),
  556. name: "Kneeling",
  557. image: {
  558. source: "./media/characters/fen/kneeling.svg",
  559. extra: 563 / 507
  560. }
  561. },
  562. goo: {
  563. height: math.unit(2.8, "feet"),
  564. weight: math.unit(125, "kg"),
  565. capacity: math.unit(1, "people"),
  566. name: "Goo",
  567. image: {
  568. source: "./media/characters/fen/goo.svg",
  569. bottom: 116/613
  570. }
  571. },
  572. lounging: {
  573. height: math.unit(6.5, "feet"),
  574. weight: math.unit(125, "kg"),
  575. name: "Lounging",
  576. image: {
  577. source: "./media/characters/fen/lounging.svg"
  578. }
  579. },
  580. },
  581. [
  582. {
  583. name: "Normal",
  584. height: math.unit(2.2428, "meter")
  585. },
  586. {
  587. name: "Big",
  588. height: math.unit(12, "feet")
  589. },
  590. {
  591. name: "Minimacro",
  592. height: math.unit(40, "feet"),
  593. default: true,
  594. info: {
  595. description: {
  596. mode: "append",
  597. text: "\n\nTOO DAMN BIG"
  598. }
  599. }
  600. },
  601. {
  602. name: "Macro",
  603. height: math.unit(100, "feet"),
  604. info: {
  605. description: {
  606. mode: "append",
  607. text: "\n\nTOO DAMN BIG"
  608. }
  609. }
  610. },
  611. {
  612. name: "Macro+",
  613. height: math.unit(300, "feet")
  614. },
  615. {
  616. name: "Megamacro",
  617. height: math.unit(2, "miles")
  618. }
  619. ]
  620. ))
  621. characterMakers.push(() => makeCharacter(
  622. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  623. {
  624. front: {
  625. height: math.unit(183, "cm"),
  626. weight: math.unit(80, "kg"),
  627. name: "Front",
  628. image: {
  629. source: "./media/characters/sofia-fluttertail/front.svg",
  630. bottom: 0.01,
  631. extra: 2154 / 2081
  632. }
  633. },
  634. frontAlt: {
  635. height: math.unit(183, "cm"),
  636. weight: math.unit(80, "kg"),
  637. name: "Front (alt)",
  638. image: {
  639. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  640. }
  641. },
  642. back: {
  643. height: math.unit(183, "cm"),
  644. weight: math.unit(80, "kg"),
  645. name: "Back",
  646. image: {
  647. source: "./media/characters/sofia-fluttertail/back.svg"
  648. }
  649. },
  650. kneeling: {
  651. height: math.unit(125, "cm"),
  652. weight: math.unit(80, "kg"),
  653. name: "Kneeling",
  654. image: {
  655. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  656. extra: 1033/977,
  657. bottom: 23.7/1057
  658. }
  659. },
  660. maw: {
  661. height: math.unit(183 / 5, "cm"),
  662. name: "Maw",
  663. image: {
  664. source: "./media/characters/sofia-fluttertail/maw.svg"
  665. }
  666. },
  667. mawcloseup: {
  668. height: math.unit(183 / 5 * 0.41, "cm"),
  669. name: "Maw (Closeup)",
  670. image: {
  671. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  672. }
  673. },
  674. },
  675. [
  676. {
  677. name: "Normal",
  678. height: math.unit(1.83, "meter")
  679. },
  680. {
  681. name: "Size Thief",
  682. height: math.unit(18, "feet")
  683. },
  684. {
  685. name: "50 Foot Collie",
  686. height: math.unit(50, "feet")
  687. },
  688. {
  689. name: "Macro",
  690. height: math.unit(96, "feet"),
  691. default: true
  692. },
  693. {
  694. name: "Megamerger",
  695. height: math.unit(650, "feet")
  696. },
  697. ]
  698. ))
  699. characterMakers.push(() => makeCharacter(
  700. { name: "March", species: ["dragon"], tags: ["anthro"] },
  701. {
  702. front: {
  703. height: math.unit(7, "feet"),
  704. weight: math.unit(100, "kg"),
  705. name: "Front",
  706. image: {
  707. source: "./media/characters/march/front.svg",
  708. extra: 1,
  709. bottom: 0.015
  710. }
  711. },
  712. foot: {
  713. height: math.unit(0.9, "feet"),
  714. name: "Foot",
  715. image: {
  716. source: "./media/characters/march/foot.svg"
  717. }
  718. },
  719. },
  720. [
  721. {
  722. name: "Normal",
  723. height: math.unit(7.9, "feet")
  724. },
  725. {
  726. name: "Macro",
  727. height: math.unit(220, "meters")
  728. },
  729. {
  730. name: "Megamacro",
  731. height: math.unit(2.98, "km"),
  732. default: true
  733. },
  734. {
  735. name: "Gigamacro",
  736. height: math.unit(15963, "km")
  737. },
  738. {
  739. name: "Teramacro",
  740. height: math.unit(2980000000, "km")
  741. },
  742. {
  743. name: "Examacro",
  744. height: math.unit(250, "parsecs")
  745. },
  746. ]
  747. ))
  748. characterMakers.push(() => makeCharacter(
  749. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  750. {
  751. front: {
  752. height: math.unit(6, "feet"),
  753. weight: math.unit(60, "kg"),
  754. name: "Front",
  755. image: {
  756. source: "./media/characters/noir/front.svg",
  757. extra: 1,
  758. bottom: 0.032
  759. }
  760. },
  761. },
  762. [
  763. {
  764. name: "Normal",
  765. height: math.unit(6.6, "feet")
  766. },
  767. {
  768. name: "Macro",
  769. height: math.unit(500, "feet")
  770. },
  771. {
  772. name: "Megamacro",
  773. height: math.unit(2.5, "km"),
  774. default: true
  775. },
  776. {
  777. name: "Gigamacro",
  778. height: math.unit(22500, "km")
  779. },
  780. {
  781. name: "Teramacro",
  782. height: math.unit(2500000000, "km")
  783. },
  784. {
  785. name: "Examacro",
  786. height: math.unit(200, "parsecs")
  787. },
  788. ]
  789. ))
  790. characterMakers.push(() => makeCharacter(
  791. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  792. {
  793. front: {
  794. height: math.unit(7, "feet"),
  795. weight: math.unit(100, "kg"),
  796. name: "Front",
  797. image: {
  798. source: "./media/characters/okuri/front.svg",
  799. extra: 1,
  800. bottom: 0.037
  801. }
  802. },
  803. back: {
  804. height: math.unit(7, "feet"),
  805. weight: math.unit(100, "kg"),
  806. name: "Back",
  807. image: {
  808. source: "./media/characters/okuri/back.svg",
  809. extra: 1,
  810. bottom: 0.007
  811. }
  812. },
  813. },
  814. [
  815. {
  816. name: "Megamacro",
  817. height: math.unit(100, "miles"),
  818. default: true
  819. },
  820. ]
  821. ))
  822. characterMakers.push(() => makeCharacter(
  823. { name: "Manny", species: ["pokemon"], tags: ["anthro"] },
  824. {
  825. front: {
  826. height: math.unit(7, "feet"),
  827. weight: math.unit(100, "kg"),
  828. name: "Front",
  829. image: {
  830. source: "./media/characters/manny/front.svg",
  831. extra: 1,
  832. bottom: 0.06
  833. }
  834. },
  835. back: {
  836. height: math.unit(7, "feet"),
  837. weight: math.unit(100, "kg"),
  838. name: "Back",
  839. image: {
  840. source: "./media/characters/manny/back.svg",
  841. extra: 1,
  842. bottom: 0.014
  843. }
  844. },
  845. },
  846. [
  847. {
  848. name: "Normal",
  849. height: math.unit(7, "feet"),
  850. },
  851. {
  852. name: "Macro",
  853. height: math.unit(78, "feet"),
  854. default: true
  855. },
  856. {
  857. name: "Macro+",
  858. height: math.unit(300, "meters")
  859. },
  860. {
  861. name: "Macro++",
  862. height: math.unit(2400, "meters")
  863. },
  864. {
  865. name: "Megamacro",
  866. height: math.unit(5167, "meters")
  867. },
  868. {
  869. name: "Gigamacro",
  870. height: math.unit(41769, "miles")
  871. },
  872. ]
  873. ))
  874. characterMakers.push(() => makeCharacter(
  875. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  876. {
  877. front: {
  878. height: math.unit(7, "feet"),
  879. weight: math.unit(100, "kg"),
  880. name: "Front",
  881. image: {
  882. source: "./media/characters/adake/front-1.svg"
  883. }
  884. },
  885. frontAlt: {
  886. height: math.unit(7, "feet"),
  887. weight: math.unit(100, "kg"),
  888. name: "Front (Alt)",
  889. image: {
  890. source: "./media/characters/adake/front-2.svg",
  891. extra: 1,
  892. bottom: 0.01
  893. }
  894. },
  895. back: {
  896. height: math.unit(7, "feet"),
  897. weight: math.unit(100, "kg"),
  898. name: "Back",
  899. image: {
  900. source: "./media/characters/adake/back.svg",
  901. }
  902. },
  903. kneel: {
  904. height: math.unit(5.385, "feet"),
  905. weight: math.unit(100, "kg"),
  906. name: "Kneeling",
  907. image: {
  908. source: "./media/characters/adake/kneel.svg",
  909. bottom: 0.052
  910. }
  911. },
  912. },
  913. [
  914. {
  915. name: "Normal",
  916. height: math.unit(7, "feet"),
  917. },
  918. {
  919. name: "Macro",
  920. height: math.unit(78, "feet"),
  921. default: true
  922. },
  923. {
  924. name: "Macro+",
  925. height: math.unit(300, "meters")
  926. },
  927. {
  928. name: "Macro++",
  929. height: math.unit(2400, "meters")
  930. },
  931. {
  932. name: "Megamacro",
  933. height: math.unit(5167, "meters")
  934. },
  935. {
  936. name: "Gigamacro",
  937. height: math.unit(41769, "miles")
  938. },
  939. ]
  940. ))
  941. characterMakers.push(() => makeCharacter(
  942. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  943. {
  944. front: {
  945. height: math.unit(1.65, "meters"),
  946. weight: math.unit(50, "kg"),
  947. name: "Front",
  948. image: {
  949. source: "./media/characters/elijah/front.svg",
  950. extra: 858/830,
  951. bottom: 95.5/953.8559
  952. }
  953. },
  954. back: {
  955. height: math.unit(1.65, "meters"),
  956. weight: math.unit(50, "kg"),
  957. name: "Back",
  958. image: {
  959. source: "./media/characters/elijah/back.svg",
  960. extra: 895/850,
  961. bottom: 5.3/897.956
  962. }
  963. },
  964. frontNsfw: {
  965. height: math.unit(1.65, "meters"),
  966. weight: math.unit(50, "kg"),
  967. name: "Front (NSFW)",
  968. image: {
  969. source: "./media/characters/elijah/front-nsfw.svg",
  970. extra: 858/830,
  971. bottom: 95.5/953.8559
  972. }
  973. },
  974. backNsfw: {
  975. height: math.unit(1.65, "meters"),
  976. weight: math.unit(50, "kg"),
  977. name: "Back (NSFW)",
  978. image: {
  979. source: "./media/characters/elijah/back-nsfw.svg",
  980. extra: 895/850,
  981. bottom: 5.3/897.956
  982. }
  983. },
  984. dick: {
  985. height: math.unit(1, "feet"),
  986. name: "Dick",
  987. image: {
  988. source: "./media/characters/elijah/dick.svg"
  989. }
  990. },
  991. beakOpen: {
  992. height: math.unit(1.25, "feet"),
  993. name: "Beak (Open)",
  994. image: {
  995. source: "./media/characters/elijah/beak-open.svg"
  996. }
  997. },
  998. beakShut: {
  999. height: math.unit(1.25, "feet"),
  1000. name: "Beak (Shut)",
  1001. image: {
  1002. source: "./media/characters/elijah/beak-shut.svg"
  1003. }
  1004. },
  1005. footFlexing: {
  1006. height: math.unit(1.61, "feet"),
  1007. name: "Foot (Flexing)",
  1008. image: {
  1009. source: "./media/characters/elijah/foot-flexing.svg"
  1010. }
  1011. },
  1012. footStepping: {
  1013. height: math.unit(1.44, "feet"),
  1014. name: "Foot (Stepping)",
  1015. image: {
  1016. source: "./media/characters/elijah/foot-stepping.svg"
  1017. }
  1018. },
  1019. plantigradeLeg: {
  1020. height: math.unit(2.34, "feet"),
  1021. name: "Plantigrade Leg",
  1022. image: {
  1023. source: "./media/characters/elijah/plantigrade-leg.svg"
  1024. }
  1025. },
  1026. plantigradeFootLeft: {
  1027. height: math.unit(0.9, "feet"),
  1028. name: "Plantigrade Foot (Left)",
  1029. image: {
  1030. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1031. }
  1032. },
  1033. plantigradeFootRight: {
  1034. height: math.unit(0.9, "feet"),
  1035. name: "Plantigrade Foot (Right)",
  1036. image: {
  1037. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1038. }
  1039. },
  1040. },
  1041. [
  1042. {
  1043. name: "Normal",
  1044. height: math.unit(1.65, "meters")
  1045. },
  1046. {
  1047. name: "Macro",
  1048. height: math.unit(55, "meters"),
  1049. default: true
  1050. },
  1051. {
  1052. name: "Macro+",
  1053. height: math.unit(105, "meters")
  1054. },
  1055. ]
  1056. ))
  1057. characterMakers.push(() => makeCharacter(
  1058. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1059. {
  1060. front: {
  1061. height: math.unit(11, "feet"),
  1062. weight: math.unit(80, "kg"),
  1063. name: "Front",
  1064. image: {
  1065. source: "./media/characters/rai/front.svg",
  1066. extra: 1,
  1067. bottom: 0.03
  1068. }
  1069. },
  1070. side: {
  1071. height: math.unit(11, "feet"),
  1072. weight: math.unit(80, "kg"),
  1073. name: "Side",
  1074. image: {
  1075. source: "./media/characters/rai/side.svg"
  1076. }
  1077. },
  1078. back: {
  1079. height: math.unit(11, "feet"),
  1080. weight: math.unit(80, "lb"),
  1081. name: "Back",
  1082. image: {
  1083. source: "./media/characters/rai/back.svg",
  1084. extra: 1,
  1085. bottom: 0.01
  1086. }
  1087. },
  1088. feral: {
  1089. height: math.unit(11, "feet"),
  1090. weight: math.unit(800, "lb"),
  1091. name: "Feral",
  1092. image: {
  1093. source: "./media/characters/rai/feral.svg",
  1094. extra: 1050 / 659,
  1095. bottom: 0.07
  1096. }
  1097. },
  1098. dragon: {
  1099. height: math.unit(23, "feet"),
  1100. weight: math.unit(50000, "lb"),
  1101. name: "Dragon",
  1102. image: {
  1103. source: "./media/characters/rai/dragon.svg",
  1104. extra: 2498/2030,
  1105. bottom: 85.2/2584
  1106. }
  1107. },
  1108. maw: {
  1109. height: math.unit(6 / 3.81416, "feet"),
  1110. name: "Maw",
  1111. image: {
  1112. source: "./media/characters/rai/maw.svg"
  1113. }
  1114. },
  1115. },
  1116. [
  1117. {
  1118. name: "Normal",
  1119. height: math.unit(11, "feet")
  1120. },
  1121. {
  1122. name: "Macro",
  1123. height: math.unit(302, "feet"),
  1124. default: true
  1125. },
  1126. ]
  1127. ))
  1128. characterMakers.push(() => makeCharacter(
  1129. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1130. {
  1131. front: {
  1132. height: math.unit(7, "feet"),
  1133. weight: math.unit(80, "kg"),
  1134. name: "Front",
  1135. image: {
  1136. source: "./media/characters/jazzy/front.svg",
  1137. extra: 1,
  1138. bottom: 0.01
  1139. }
  1140. },
  1141. back: {
  1142. height: math.unit(7, "feet"),
  1143. weight: math.unit(80, "kg"),
  1144. name: "Back",
  1145. image: {
  1146. source: "./media/characters/jazzy/back.svg",
  1147. extra: 1,
  1148. bottom: 0.01
  1149. }
  1150. },
  1151. },
  1152. [
  1153. {
  1154. name: "Macro",
  1155. height: math.unit(216, "feet"),
  1156. default: true
  1157. },
  1158. ]
  1159. ))
  1160. characterMakers.push(() => makeCharacter(
  1161. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1162. {
  1163. front: {
  1164. height: math.unit(7, "feet"),
  1165. weight: math.unit(80, "kg"),
  1166. name: "Front",
  1167. image: {
  1168. source: "./media/characters/flamm/front.svg",
  1169. extra: 1794 / 1677,
  1170. bottom: 31.7 / 1828.5
  1171. }
  1172. },
  1173. },
  1174. [
  1175. {
  1176. name: "Normal",
  1177. height: math.unit(9.5, "feet")
  1178. },
  1179. {
  1180. name: "Macro",
  1181. height: math.unit(200, "feet"),
  1182. default: true
  1183. },
  1184. ]
  1185. ))
  1186. characterMakers.push(() => makeCharacter(
  1187. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1188. {
  1189. front: {
  1190. height: math.unit(7, "feet"),
  1191. weight: math.unit(80, "kg"),
  1192. name: "Front",
  1193. image: {
  1194. source: "./media/characters/zephiro/front.svg",
  1195. extra: 2309 / 2162,
  1196. bottom: 0.069
  1197. }
  1198. },
  1199. side: {
  1200. height: math.unit(7, "feet"),
  1201. weight: math.unit(80, "kg"),
  1202. name: "Side",
  1203. image: {
  1204. source: "./media/characters/zephiro/side.svg",
  1205. extra: 2403 / 2279,
  1206. bottom: 0.015
  1207. }
  1208. },
  1209. back: {
  1210. height: math.unit(7, "feet"),
  1211. weight: math.unit(80, "kg"),
  1212. name: "Back",
  1213. image: {
  1214. source: "./media/characters/zephiro/back.svg",
  1215. extra: 2373 / 2244,
  1216. bottom: 0.013
  1217. }
  1218. },
  1219. },
  1220. [
  1221. {
  1222. name: "Micro",
  1223. height: math.unit(3, "inches")
  1224. },
  1225. {
  1226. name: "Normal",
  1227. height: math.unit(5 + 3 / 12, "feet"),
  1228. default: true
  1229. },
  1230. {
  1231. name: "Macro",
  1232. height: math.unit(118, "feet")
  1233. },
  1234. ]
  1235. ))
  1236. characterMakers.push(() => makeCharacter(
  1237. { name: "Fory", species: ["weasel"], tags: ["anthro"] },
  1238. {
  1239. front: {
  1240. height: math.unit(5, "feet"),
  1241. weight: math.unit(90, "kg"),
  1242. name: "Front",
  1243. image: {
  1244. source: "./media/characters/fory/front.svg",
  1245. extra: 2862 / 2674,
  1246. bottom: 180 / 3043.8
  1247. }
  1248. },
  1249. back: {
  1250. height: math.unit(5, "feet"),
  1251. weight: math.unit(90, "kg"),
  1252. name: "Back",
  1253. image: {
  1254. source: "./media/characters/fory/back.svg",
  1255. extra: 2962 / 2791,
  1256. bottom: 106 / 3071.8
  1257. }
  1258. },
  1259. foot: {
  1260. height: math.unit(2.14, "feet"),
  1261. name: "Foot",
  1262. image: {
  1263. source: "./media/characters/fory/foot.svg"
  1264. }
  1265. },
  1266. },
  1267. [
  1268. {
  1269. name: "Normal",
  1270. height: math.unit(5, "feet")
  1271. },
  1272. {
  1273. name: "Macro",
  1274. height: math.unit(50, "feet"),
  1275. default: true
  1276. },
  1277. {
  1278. name: "Megamacro",
  1279. height: math.unit(10, "miles")
  1280. },
  1281. {
  1282. name: "Gigamacro",
  1283. height: math.unit(5, "earths")
  1284. },
  1285. ]
  1286. ))
  1287. characterMakers.push(() => makeCharacter(
  1288. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  1289. {
  1290. front: {
  1291. height: math.unit(7, "feet"),
  1292. weight: math.unit(90, "kg"),
  1293. name: "Front",
  1294. image: {
  1295. source: "./media/characters/kurrikage/front.svg",
  1296. extra: 1,
  1297. bottom: 0.035
  1298. }
  1299. },
  1300. back: {
  1301. height: math.unit(7, "feet"),
  1302. weight: math.unit(90, "lb"),
  1303. name: "Back",
  1304. image: {
  1305. source: "./media/characters/kurrikage/back.svg"
  1306. }
  1307. },
  1308. paw: {
  1309. height: math.unit(1.5, "feet"),
  1310. name: "Paw",
  1311. image: {
  1312. source: "./media/characters/kurrikage/paw.svg"
  1313. }
  1314. },
  1315. staff: {
  1316. height: math.unit(6.7, "feet"),
  1317. name: "Staff",
  1318. image: {
  1319. source: "./media/characters/kurrikage/staff.svg"
  1320. }
  1321. },
  1322. peek: {
  1323. height: math.unit(1.05, "feet"),
  1324. name: "Peeking",
  1325. image: {
  1326. source: "./media/characters/kurrikage/peek.svg",
  1327. bottom: 0.08
  1328. }
  1329. },
  1330. },
  1331. [
  1332. {
  1333. name: "Normal",
  1334. height: math.unit(12, "feet"),
  1335. default: true
  1336. },
  1337. {
  1338. name: "Big",
  1339. height: math.unit(20, "feet")
  1340. },
  1341. {
  1342. name: "Macro",
  1343. height: math.unit(500, "feet")
  1344. },
  1345. {
  1346. name: "Megamacro",
  1347. height: math.unit(20, "miles")
  1348. },
  1349. ]
  1350. ))
  1351. characterMakers.push(() => makeCharacter(
  1352. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  1353. {
  1354. front: {
  1355. height: math.unit(6, "feet"),
  1356. weight: math.unit(75, "kg"),
  1357. name: "Front",
  1358. image: {
  1359. source: "./media/characters/shingo/front.svg",
  1360. extra: 3511 / 3338,
  1361. bottom: 0.005
  1362. }
  1363. },
  1364. },
  1365. [
  1366. {
  1367. name: "Micro",
  1368. height: math.unit(4, "inches")
  1369. },
  1370. {
  1371. name: "Normal",
  1372. height: math.unit(6, "feet"),
  1373. default: true
  1374. },
  1375. {
  1376. name: "Macro",
  1377. height: math.unit(108, "feet")
  1378. }
  1379. ]
  1380. ))
  1381. characterMakers.push(() => makeCharacter(
  1382. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  1383. {
  1384. side: {
  1385. height: math.unit(6, "feet"),
  1386. weight: math.unit(75, "kg"),
  1387. name: "Side",
  1388. image: {
  1389. source: "./media/characters/aigey/side.svg"
  1390. }
  1391. },
  1392. },
  1393. [
  1394. {
  1395. name: "Macro",
  1396. height: math.unit(200, "feet"),
  1397. default: true
  1398. },
  1399. {
  1400. name: "Megamacro",
  1401. height: math.unit(100, "miles")
  1402. },
  1403. ]
  1404. )
  1405. )
  1406. characterMakers.push(() => makeCharacter(
  1407. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  1408. {
  1409. front: {
  1410. height: math.unit(5 + 5 / 12, "feet"),
  1411. weight: math.unit(75, "kg"),
  1412. name: "Front",
  1413. image: {
  1414. source: "./media/characters/natasha/front.svg",
  1415. extra: 859/824,
  1416. bottom: 23/879.6
  1417. }
  1418. },
  1419. frontNsfw: {
  1420. height: math.unit(5 + 5 / 12, "feet"),
  1421. weight: math.unit(75, "kg"),
  1422. name: "Front (NSFW)",
  1423. image: {
  1424. source: "./media/characters/natasha/front-nsfw.svg",
  1425. extra: 859/824,
  1426. bottom: 23/879.6
  1427. }
  1428. },
  1429. frontErect: {
  1430. height: math.unit(5 + 5 / 12, "feet"),
  1431. weight: math.unit(75, "kg"),
  1432. name: "Front (Erect)",
  1433. image: {
  1434. source: "./media/characters/natasha/front-erect.svg",
  1435. extra: 859/824,
  1436. bottom: 23/879.6
  1437. }
  1438. },
  1439. back: {
  1440. height: math.unit(5 + 5 / 12, "feet"),
  1441. weight: math.unit(75, "kg"),
  1442. name: "Back",
  1443. image: {
  1444. source: "./media/characters/natasha/back.svg",
  1445. extra: 887.9/852.6,
  1446. bottom: 9.7/896.4
  1447. }
  1448. },
  1449. backAlt: {
  1450. height: math.unit(5 + 5 / 12, "feet"),
  1451. weight: math.unit(75, "kg"),
  1452. name: "Back (Alt)",
  1453. image: {
  1454. source: "./media/characters/natasha/back-alt.svg",
  1455. extra: 1236.7/1192,
  1456. bottom: 22.3/1258.2
  1457. }
  1458. },
  1459. dick: {
  1460. height: math.unit(1.772, "feet"),
  1461. name: "Dick",
  1462. image: {
  1463. source: "./media/characters/natasha/dick.svg"
  1464. }
  1465. },
  1466. },
  1467. [
  1468. {
  1469. name: "Normal",
  1470. height: math.unit(5 + 5 / 12, "feet")
  1471. },
  1472. {
  1473. name: "Large",
  1474. height: math.unit(12, "feet")
  1475. },
  1476. {
  1477. name: "Macro",
  1478. height: math.unit(100, "feet"),
  1479. default: true
  1480. },
  1481. {
  1482. name: "Macro+",
  1483. height: math.unit(260, "feet")
  1484. },
  1485. {
  1486. name: "Macro++",
  1487. height: math.unit(1, "mile")
  1488. },
  1489. ]
  1490. ))
  1491. characterMakers.push(() => makeCharacter(
  1492. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  1493. {
  1494. front: {
  1495. height: math.unit(6, "feet"),
  1496. weight: math.unit(75, "kg"),
  1497. name: "Front",
  1498. image: {
  1499. source: "./media/characters/malik/front.svg"
  1500. }
  1501. },
  1502. side: {
  1503. height: math.unit(6, "feet"),
  1504. weight: math.unit(75, "kg"),
  1505. name: "Side",
  1506. image: {
  1507. source: "./media/characters/malik/side.svg",
  1508. extra: 1.1539
  1509. }
  1510. },
  1511. back: {
  1512. height: math.unit(6, "feet"),
  1513. weight: math.unit(75, "kg"),
  1514. name: "Back",
  1515. image: {
  1516. source: "./media/characters/malik/back.svg"
  1517. }
  1518. },
  1519. },
  1520. [
  1521. {
  1522. name: "Macro",
  1523. height: math.unit(156, "feet"),
  1524. default: true
  1525. },
  1526. {
  1527. name: "Macro+",
  1528. height: math.unit(1188, "feet")
  1529. },
  1530. ]
  1531. ))
  1532. characterMakers.push(() => makeCharacter(
  1533. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  1534. {
  1535. front: {
  1536. height: math.unit(6, "feet"),
  1537. weight: math.unit(75, "kg"),
  1538. name: "Front",
  1539. image: {
  1540. source: "./media/characters/sefer/front.svg"
  1541. }
  1542. },
  1543. back: {
  1544. height: math.unit(6, "feet"),
  1545. weight: math.unit(75, "kg"),
  1546. name: "Back",
  1547. image: {
  1548. source: "./media/characters/sefer/back.svg"
  1549. }
  1550. },
  1551. },
  1552. [
  1553. {
  1554. name: "Normal",
  1555. height: math.unit(6, "feet"),
  1556. default: true
  1557. },
  1558. ]
  1559. ))
  1560. characterMakers.push(() => makeCharacter(
  1561. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  1562. {
  1563. body: {
  1564. height: math.unit(2.2428, "meter"),
  1565. weight: math.unit(124.738, "kg"),
  1566. name: "Body",
  1567. image: {
  1568. extra: 1225 / 1050,
  1569. source: "./media/characters/north/front.svg"
  1570. }
  1571. }
  1572. },
  1573. [
  1574. {
  1575. name: "Micro",
  1576. height: math.unit(4, "inches")
  1577. },
  1578. {
  1579. name: "Macro",
  1580. height: math.unit(63, "meters")
  1581. },
  1582. {
  1583. name: "Megamacro",
  1584. height: math.unit(101, "miles"),
  1585. default: true
  1586. }
  1587. ]
  1588. ))
  1589. characterMakers.push(() => makeCharacter(
  1590. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  1591. {
  1592. angled: {
  1593. height: math.unit(4, "meter"),
  1594. weight: math.unit(150, "kg"),
  1595. name: "Angled",
  1596. image: {
  1597. source: "./media/characters/talan/angled-sfw.svg",
  1598. bottom: 29 / 3734
  1599. }
  1600. },
  1601. angledNsfw: {
  1602. height: math.unit(4, "meter"),
  1603. weight: math.unit(150, "kg"),
  1604. name: "Angled (NSFW)",
  1605. image: {
  1606. source: "./media/characters/talan/angled-nsfw.svg",
  1607. bottom: 29 / 3734
  1608. }
  1609. },
  1610. frontNsfw: {
  1611. height: math.unit(4, "meter"),
  1612. weight: math.unit(150, "kg"),
  1613. name: "Front (NSFW)",
  1614. image: {
  1615. source: "./media/characters/talan/front-nsfw.svg",
  1616. bottom: 29 / 3734
  1617. }
  1618. },
  1619. sideNsfw: {
  1620. height: math.unit(4, "meter"),
  1621. weight: math.unit(150, "kg"),
  1622. name: "Side (NSFW)",
  1623. image: {
  1624. source: "./media/characters/talan/side-nsfw.svg",
  1625. bottom: 29 / 3734
  1626. }
  1627. },
  1628. back: {
  1629. height: math.unit(4, "meter"),
  1630. weight: math.unit(150, "kg"),
  1631. name: "Back",
  1632. image: {
  1633. source: "./media/characters/talan/back.svg"
  1634. }
  1635. },
  1636. dickBottom: {
  1637. height: math.unit(0.621, "meter"),
  1638. name: "Dick (Bottom)",
  1639. image: {
  1640. source: "./media/characters/talan/dick-bottom.svg"
  1641. }
  1642. },
  1643. dickTop: {
  1644. height: math.unit(0.621, "meter"),
  1645. name: "Dick (Top)",
  1646. image: {
  1647. source: "./media/characters/talan/dick-top.svg"
  1648. }
  1649. },
  1650. dickSide: {
  1651. height: math.unit(0.305, "meter"),
  1652. name: "Dick (Side)",
  1653. image: {
  1654. source: "./media/characters/talan/dick-side.svg"
  1655. }
  1656. },
  1657. dickFront: {
  1658. height: math.unit(0.305, "meter"),
  1659. name: "Dick (Front)",
  1660. image: {
  1661. source: "./media/characters/talan/dick-front.svg"
  1662. }
  1663. },
  1664. },
  1665. [
  1666. {
  1667. name: "Normal",
  1668. height: math.unit(4, "meters")
  1669. },
  1670. {
  1671. name: "Macro",
  1672. height: math.unit(100, "meters")
  1673. },
  1674. {
  1675. name: "Megamacro",
  1676. height: math.unit(2, "miles"),
  1677. default: true
  1678. },
  1679. {
  1680. name: "Gigamacro",
  1681. height: math.unit(5000, "miles")
  1682. },
  1683. {
  1684. name: "Teramacro",
  1685. height: math.unit(100, "parsecs")
  1686. }
  1687. ]
  1688. ))
  1689. characterMakers.push(() => makeCharacter(
  1690. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  1691. {
  1692. front: {
  1693. height: math.unit(2, "meter"),
  1694. weight: math.unit(90, "kg"),
  1695. name: "Front",
  1696. image: {
  1697. source: "./media/characters/gael'rathus/front.svg"
  1698. }
  1699. },
  1700. frontAlt: {
  1701. height: math.unit(2, "meter"),
  1702. weight: math.unit(90, "kg"),
  1703. name: "Front (alt)",
  1704. image: {
  1705. source: "./media/characters/gael'rathus/front-alt.svg"
  1706. }
  1707. },
  1708. frontAlt2: {
  1709. height: math.unit(2, "meter"),
  1710. weight: math.unit(90, "kg"),
  1711. name: "Front (alt 2)",
  1712. image: {
  1713. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1714. }
  1715. }
  1716. },
  1717. [
  1718. {
  1719. name: "Normal",
  1720. height: math.unit(9, "feet"),
  1721. default: true
  1722. },
  1723. {
  1724. name: "Large",
  1725. height: math.unit(25, "feet")
  1726. },
  1727. {
  1728. name: "Macro",
  1729. height: math.unit(0.25, "miles")
  1730. },
  1731. {
  1732. name: "Megamacro",
  1733. height: math.unit(10, "miles")
  1734. }
  1735. ]
  1736. ))
  1737. characterMakers.push(() => makeCharacter(
  1738. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  1739. {
  1740. side: {
  1741. height: math.unit(2, "meter"),
  1742. weight: math.unit(140, "kg"),
  1743. name: "Side",
  1744. image: {
  1745. source: "./media/characters/sosha/side.svg",
  1746. bottom: 0.042
  1747. }
  1748. },
  1749. },
  1750. [
  1751. {
  1752. name: "Normal",
  1753. height: math.unit(12, "feet"),
  1754. default: true
  1755. }
  1756. ]
  1757. ))
  1758. characterMakers.push(() => makeCharacter(
  1759. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  1760. {
  1761. side: {
  1762. height: math.unit(5 + 5 / 12, "feet"),
  1763. weight: math.unit(170, "kg"),
  1764. name: "Side",
  1765. image: {
  1766. source: "./media/characters/runnola/side.svg",
  1767. extra: 741 / 448,
  1768. bottom: 0.05
  1769. }
  1770. },
  1771. },
  1772. [
  1773. {
  1774. name: "Small",
  1775. height: math.unit(3, "feet")
  1776. },
  1777. {
  1778. name: "Normal",
  1779. height: math.unit(5 + 5 / 12, "feet"),
  1780. default: true
  1781. },
  1782. {
  1783. name: "Big",
  1784. height: math.unit(10, "feet")
  1785. },
  1786. ]
  1787. ))
  1788. characterMakers.push(() => makeCharacter(
  1789. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  1790. {
  1791. front: {
  1792. height: math.unit(2, "meter"),
  1793. weight: math.unit(50, "kg"),
  1794. name: "Front",
  1795. image: {
  1796. source: "./media/characters/kurribird/front.svg",
  1797. bottom: 0.015
  1798. }
  1799. },
  1800. frontAlt: {
  1801. height: math.unit(1.5, "meter"),
  1802. weight: math.unit(50, "kg"),
  1803. name: "Front (Alt)",
  1804. image: {
  1805. source: "./media/characters/kurribird/front-alt.svg",
  1806. extra: 1.45
  1807. }
  1808. },
  1809. },
  1810. [
  1811. {
  1812. name: "Normal",
  1813. height: math.unit(7, "feet")
  1814. },
  1815. {
  1816. name: "Big",
  1817. height: math.unit(12, "feet"),
  1818. default: true
  1819. },
  1820. {
  1821. name: "Macro",
  1822. height: math.unit(1500, "feet")
  1823. },
  1824. {
  1825. name: "Megamacro",
  1826. height: math.unit(2, "miles")
  1827. }
  1828. ]
  1829. ))
  1830. characterMakers.push(() => makeCharacter(
  1831. { name: "Elbial", species: ["goat", "lion", "demon"], tags: ["anthro"] },
  1832. {
  1833. front: {
  1834. height: math.unit(2, "meter"),
  1835. weight: math.unit(80, "kg"),
  1836. name: "Front",
  1837. image: {
  1838. source: "./media/characters/elbial/front.svg",
  1839. extra: 1643 / 1556,
  1840. bottom: 60.2 / 1696
  1841. }
  1842. },
  1843. side: {
  1844. height: math.unit(2, "meter"),
  1845. weight: math.unit(80, "kg"),
  1846. name: "Side",
  1847. image: {
  1848. source: "./media/characters/elbial/side.svg",
  1849. extra: 1630 / 1565,
  1850. bottom: 71.5 / 1697
  1851. }
  1852. },
  1853. back: {
  1854. height: math.unit(2, "meter"),
  1855. weight: math.unit(80, "kg"),
  1856. name: "Back",
  1857. image: {
  1858. source: "./media/characters/elbial/back.svg",
  1859. extra: 1668 / 1595,
  1860. bottom: 5.6 / 1672
  1861. }
  1862. },
  1863. frontDressed: {
  1864. height: math.unit(2, "meter"),
  1865. weight: math.unit(80, "kg"),
  1866. name: "Front (Dressed)",
  1867. image: {
  1868. source: "./media/characters/elbial/front-dressed.svg",
  1869. extra: 1653 / 1584,
  1870. bottom: 57 / 1708
  1871. }
  1872. },
  1873. genitals: {
  1874. height: math.unit(2 / 3.367, "meter"),
  1875. name: "Genitals",
  1876. image: {
  1877. source: "./media/characters/elbial/genitals.svg"
  1878. }
  1879. },
  1880. },
  1881. [
  1882. {
  1883. name: "Large",
  1884. height: math.unit(100, "feet")
  1885. },
  1886. {
  1887. name: "Macro",
  1888. height: math.unit(500, "feet"),
  1889. default: true
  1890. },
  1891. {
  1892. name: "Megamacro",
  1893. height: math.unit(10, "miles")
  1894. },
  1895. {
  1896. name: "Gigamacro",
  1897. height: math.unit(25000, "miles")
  1898. },
  1899. {
  1900. name: "Full-Size",
  1901. height: math.unit(8000000, "gigaparsecs")
  1902. }
  1903. ]
  1904. ))
  1905. characterMakers.push(() => makeCharacter(
  1906. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  1907. {
  1908. front: {
  1909. height: math.unit(2, "meter"),
  1910. weight: math.unit(60, "kg"),
  1911. name: "Front",
  1912. image: {
  1913. source: "./media/characters/noah/front.svg"
  1914. }
  1915. },
  1916. talons: {
  1917. height: math.unit(0.315, "meter"),
  1918. name: "Talons",
  1919. image: {
  1920. source: "./media/characters/noah/talons.svg"
  1921. }
  1922. }
  1923. },
  1924. [
  1925. {
  1926. name: "Large",
  1927. height: math.unit(50, "feet")
  1928. },
  1929. {
  1930. name: "Macro",
  1931. height: math.unit(750, "feet"),
  1932. default: true
  1933. },
  1934. {
  1935. name: "Megamacro",
  1936. height: math.unit(50, "miles")
  1937. },
  1938. {
  1939. name: "Gigamacro",
  1940. height: math.unit(100000, "miles")
  1941. },
  1942. {
  1943. name: "Full-Size",
  1944. height: math.unit(3000000000, "miles")
  1945. }
  1946. ]
  1947. ))
  1948. characterMakers.push(() => makeCharacter(
  1949. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  1950. {
  1951. front: {
  1952. height: math.unit(2, "meter"),
  1953. weight: math.unit(80, "kg"),
  1954. name: "Front",
  1955. image: {
  1956. source: "./media/characters/natalya/front.svg"
  1957. }
  1958. },
  1959. back: {
  1960. height: math.unit(2, "meter"),
  1961. weight: math.unit(80, "kg"),
  1962. name: "Back",
  1963. image: {
  1964. source: "./media/characters/natalya/back.svg"
  1965. }
  1966. }
  1967. },
  1968. [
  1969. {
  1970. name: "Normal",
  1971. height: math.unit(150, "feet"),
  1972. default: true
  1973. },
  1974. {
  1975. name: "Megamacro",
  1976. height: math.unit(5, "miles")
  1977. },
  1978. {
  1979. name: "Full-Size",
  1980. height: math.unit(600, "kiloparsecs")
  1981. }
  1982. ]
  1983. ))
  1984. characterMakers.push(() => makeCharacter(
  1985. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  1986. {
  1987. front: {
  1988. height: math.unit(2, "meter"),
  1989. weight: math.unit(50, "kg"),
  1990. name: "Front",
  1991. image: {
  1992. source: "./media/characters/erestrebah/front.svg",
  1993. extra: 208 / 193,
  1994. bottom: 0.055
  1995. }
  1996. },
  1997. back: {
  1998. height: math.unit(2, "meter"),
  1999. weight: math.unit(50, "kg"),
  2000. name: "Back",
  2001. image: {
  2002. source: "./media/characters/erestrebah/back.svg",
  2003. extra: 1.3
  2004. }
  2005. }
  2006. },
  2007. [
  2008. {
  2009. name: "Normal",
  2010. height: math.unit(10, "feet")
  2011. },
  2012. {
  2013. name: "Large",
  2014. height: math.unit(50, "feet"),
  2015. default: true
  2016. },
  2017. {
  2018. name: "Macro",
  2019. height: math.unit(300, "feet")
  2020. },
  2021. {
  2022. name: "Macro+",
  2023. height: math.unit(750, "feet")
  2024. },
  2025. {
  2026. name: "Megamacro",
  2027. height: math.unit(3, "miles")
  2028. }
  2029. ]
  2030. ))
  2031. characterMakers.push(() => makeCharacter(
  2032. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2033. {
  2034. front: {
  2035. height: math.unit(2, "meter"),
  2036. weight: math.unit(80, "kg"),
  2037. name: "Front",
  2038. image: {
  2039. source: "./media/characters/jennifer/front.svg",
  2040. bottom: 0.11,
  2041. extra: 1.16
  2042. }
  2043. },
  2044. frontAlt: {
  2045. height: math.unit(2, "meter"),
  2046. weight: math.unit(80, "kg"),
  2047. name: "Front (Alt)",
  2048. image: {
  2049. source: "./media/characters/jennifer/front-alt.svg"
  2050. }
  2051. }
  2052. },
  2053. [
  2054. {
  2055. name: "Canon Height",
  2056. height: math.unit(120, "feet"),
  2057. default: true
  2058. },
  2059. {
  2060. name: "Macro+",
  2061. height: math.unit(300, "feet")
  2062. },
  2063. {
  2064. name: "Megamacro",
  2065. height: math.unit(20000, "feet")
  2066. }
  2067. ]
  2068. ))
  2069. characterMakers.push(() => makeCharacter(
  2070. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2071. {
  2072. front: {
  2073. height: math.unit(2, "meter"),
  2074. weight: math.unit(50, "kg"),
  2075. name: "Front",
  2076. image: {
  2077. source: "./media/characters/kalista/front.svg",
  2078. extra: 1947 / 1700,
  2079. bottom: 76.6/1412.98
  2080. }
  2081. },
  2082. back: {
  2083. height: math.unit(2, "meter"),
  2084. weight: math.unit(50, "kg"),
  2085. name: "Back",
  2086. image: {
  2087. source: "./media/characters/kalista/back.svg",
  2088. extra: 1366 / 1156,
  2089. bottom: 33.9/1362.78
  2090. }
  2091. }
  2092. },
  2093. [
  2094. {
  2095. name: "Uncomfortably Small",
  2096. height: math.unit(10, "feet")
  2097. },
  2098. {
  2099. name: "Small",
  2100. height: math.unit(30, "feet")
  2101. },
  2102. {
  2103. name: "Macro",
  2104. height: math.unit(100, "feet"),
  2105. default: true
  2106. },
  2107. {
  2108. name: "Macro+",
  2109. height: math.unit(2000, "feet")
  2110. },
  2111. {
  2112. name: "True Form",
  2113. height: math.unit(8924, "miles")
  2114. }
  2115. ]
  2116. ))
  2117. characterMakers.push(() => makeCharacter(
  2118. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2119. {
  2120. front: {
  2121. height: math.unit(2, "meter"),
  2122. weight: math.unit(120, "kg"),
  2123. name: "Front",
  2124. image: {
  2125. source: "./media/characters/ggv/front.svg"
  2126. }
  2127. },
  2128. side: {
  2129. height: math.unit(2, "meter"),
  2130. weight: math.unit(120, "kg"),
  2131. name: "Side",
  2132. image: {
  2133. source: "./media/characters/ggv/side.svg"
  2134. }
  2135. }
  2136. },
  2137. [
  2138. {
  2139. name: "Extremely Puny",
  2140. height: math.unit(9 + 5 / 12, "feet")
  2141. },
  2142. {
  2143. name: "Horribly Small",
  2144. height: math.unit(47.7, "miles"),
  2145. default: true
  2146. },
  2147. {
  2148. name: "Reasonably Sized",
  2149. height: math.unit(25000, "parsecs")
  2150. },
  2151. {
  2152. name: "Slightly Uncompressed",
  2153. height: math.unit(7.77e31, "parsecs")
  2154. },
  2155. {
  2156. name: "Omniversal",
  2157. height: math.unit(1e300, "meters")
  2158. },
  2159. ]
  2160. ))
  2161. characterMakers.push(() => makeCharacter(
  2162. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2163. {
  2164. front: {
  2165. height: math.unit(2, "meter"),
  2166. weight: math.unit(75, "lb"),
  2167. name: "Front",
  2168. image: {
  2169. source: "./media/characters/napalm/front.svg"
  2170. }
  2171. },
  2172. back: {
  2173. height: math.unit(2, "meter"),
  2174. weight: math.unit(75, "lb"),
  2175. name: "Back",
  2176. image: {
  2177. source: "./media/characters/napalm/back.svg"
  2178. }
  2179. }
  2180. },
  2181. [
  2182. {
  2183. name: "Standard",
  2184. height: math.unit(55, "feet"),
  2185. default: true
  2186. }
  2187. ]
  2188. ))
  2189. characterMakers.push(() => makeCharacter(
  2190. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2191. {
  2192. front: {
  2193. height: math.unit(7 + 5 / 6, "feet"),
  2194. weight: math.unit(325, "lb"),
  2195. name: "Front",
  2196. image: {
  2197. source: "./media/characters/asana/front.svg",
  2198. extra: 1128 / 1068
  2199. }
  2200. },
  2201. back: {
  2202. height: math.unit(7 + 5 / 6, "feet"),
  2203. weight: math.unit(325, "lb"),
  2204. name: "Back",
  2205. image: {
  2206. source: "./media/characters/asana/back.svg",
  2207. extra: 1128 / 1068
  2208. }
  2209. },
  2210. },
  2211. [
  2212. {
  2213. name: "Standard",
  2214. height: math.unit(7 + 5 / 6, "feet"),
  2215. default: true
  2216. },
  2217. {
  2218. name: "Large",
  2219. height: math.unit(10, "meters")
  2220. },
  2221. {
  2222. name: "Macro",
  2223. height: math.unit(2500, "meters")
  2224. },
  2225. {
  2226. name: "Megamacro",
  2227. height: math.unit(5e6, "meters")
  2228. },
  2229. {
  2230. name: "Examacro",
  2231. height: math.unit(5e12, "lightyears")
  2232. },
  2233. {
  2234. name: "Max Size",
  2235. height: math.unit(1e31, "lightyears")
  2236. }
  2237. ]
  2238. ))
  2239. characterMakers.push(() => makeCharacter(
  2240. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  2241. {
  2242. front: {
  2243. height: math.unit(2, "meter"),
  2244. weight: math.unit(60, "kg"),
  2245. name: "Front",
  2246. image: {
  2247. source: "./media/characters/ebony/front.svg",
  2248. bottom: 0.03,
  2249. extra: 1045 / 810 + 0.03
  2250. }
  2251. },
  2252. side: {
  2253. height: math.unit(2, "meter"),
  2254. weight: math.unit(60, "kg"),
  2255. name: "Side",
  2256. image: {
  2257. source: "./media/characters/ebony/side.svg",
  2258. bottom: 0.03,
  2259. extra: 1045 / 810 + 0.03
  2260. }
  2261. },
  2262. back: {
  2263. height: math.unit(2, "meter"),
  2264. weight: math.unit(60, "kg"),
  2265. name: "Back",
  2266. image: {
  2267. source: "./media/characters/ebony/back.svg",
  2268. bottom: 0.01,
  2269. extra: 1045 / 810 + 0.01
  2270. }
  2271. },
  2272. },
  2273. [
  2274. // TODO check why I did this lol
  2275. {
  2276. name: "Standard",
  2277. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  2278. default: true
  2279. },
  2280. {
  2281. name: "Macro",
  2282. height: math.unit(200, "feet")
  2283. },
  2284. {
  2285. name: "Gigamacro",
  2286. height: math.unit(13000, "km")
  2287. }
  2288. ]
  2289. ))
  2290. characterMakers.push(() => makeCharacter(
  2291. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  2292. {
  2293. front: {
  2294. height: math.unit(6, "feet"),
  2295. weight: math.unit(175, "lb"),
  2296. name: "Front",
  2297. image: {
  2298. source: "./media/characters/mountain/front.svg"
  2299. }
  2300. },
  2301. back: {
  2302. height: math.unit(6, "feet"),
  2303. weight: math.unit(175, "lb"),
  2304. name: "Back",
  2305. image: {
  2306. source: "./media/characters/mountain/back.svg"
  2307. }
  2308. },
  2309. },
  2310. [
  2311. {
  2312. name: "Large",
  2313. height: math.unit(20, "meters")
  2314. },
  2315. {
  2316. name: "Macro",
  2317. height: math.unit(300, "meters")
  2318. },
  2319. {
  2320. name: "Gigamacro",
  2321. height: math.unit(10000, "km"),
  2322. default: true
  2323. },
  2324. {
  2325. name: "Examacro",
  2326. height: math.unit(10e9, "lightyears")
  2327. }
  2328. ]
  2329. ))
  2330. characterMakers.push(() => makeCharacter(
  2331. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  2332. {
  2333. front: {
  2334. height: math.unit(8, "feet"),
  2335. weight: math.unit(500, "lb"),
  2336. name: "Front",
  2337. image: {
  2338. source: "./media/characters/rick/front.svg"
  2339. }
  2340. }
  2341. },
  2342. [
  2343. {
  2344. name: "Normal",
  2345. height: math.unit(8, "feet"),
  2346. default: true
  2347. },
  2348. {
  2349. name: "Macro",
  2350. height: math.unit(5, "km")
  2351. }
  2352. ]
  2353. ))
  2354. characterMakers.push(() => makeCharacter(
  2355. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  2356. {
  2357. front: {
  2358. height: math.unit(8, "feet"),
  2359. weight: math.unit(120, "lb"),
  2360. name: "Front",
  2361. image: {
  2362. source: "./media/characters/ona/front.svg"
  2363. }
  2364. },
  2365. frontAlt: {
  2366. height: math.unit(8, "feet"),
  2367. weight: math.unit(120, "lb"),
  2368. name: "Front (Alt)",
  2369. image: {
  2370. source: "./media/characters/ona/front-alt.svg"
  2371. }
  2372. },
  2373. back: {
  2374. height: math.unit(8, "feet"),
  2375. weight: math.unit(120, "lb"),
  2376. name: "Back",
  2377. image: {
  2378. source: "./media/characters/ona/back.svg"
  2379. }
  2380. },
  2381. foot: {
  2382. height: math.unit(1.1, "feet"),
  2383. name: "Foot",
  2384. image: {
  2385. source: "./media/characters/ona/foot.svg"
  2386. }
  2387. }
  2388. },
  2389. [
  2390. {
  2391. name: "Megamacro",
  2392. height: math.unit(70, "km"),
  2393. default: true
  2394. },
  2395. {
  2396. name: "Gigamacro",
  2397. height: math.unit(681818, "miles")
  2398. },
  2399. {
  2400. name: "Examacro",
  2401. height: math.unit(3800000, "lightyears")
  2402. },
  2403. ]
  2404. ))
  2405. characterMakers.push(() => makeCharacter(
  2406. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  2407. {
  2408. front: {
  2409. height: math.unit(12, "feet"),
  2410. weight: math.unit(3000, "lb"),
  2411. name: "Front",
  2412. image: {
  2413. source: "./media/characters/mech/front.svg",
  2414. bottom: 0.025,
  2415. }
  2416. },
  2417. back: {
  2418. height: math.unit(12, "feet"),
  2419. weight: math.unit(3000, "lb"),
  2420. name: "Back",
  2421. image: {
  2422. source: "./media/characters/mech/back.svg",
  2423. bottom: 0.03,
  2424. }
  2425. }
  2426. },
  2427. [
  2428. {
  2429. name: "Normal",
  2430. height: math.unit(12, "feet")
  2431. },
  2432. {
  2433. name: "Macro",
  2434. height: math.unit(300, "feet"),
  2435. default: true
  2436. },
  2437. {
  2438. name: "Macro+",
  2439. height: math.unit(1500, "feet")
  2440. },
  2441. ]
  2442. ))
  2443. characterMakers.push(() => makeCharacter(
  2444. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  2445. {
  2446. front: {
  2447. height: math.unit(1.3, "meter"),
  2448. weight: math.unit(30, "kg"),
  2449. name: "Front",
  2450. image: {
  2451. source: "./media/characters/gregory/front.svg",
  2452. }
  2453. }
  2454. },
  2455. [
  2456. {
  2457. name: "Normal",
  2458. height: math.unit(1.3, "meter"),
  2459. default: true
  2460. },
  2461. {
  2462. name: "Macro",
  2463. height: math.unit(20, "meter")
  2464. }
  2465. ]
  2466. ))
  2467. characterMakers.push(() => makeCharacter(
  2468. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  2469. {
  2470. front: {
  2471. height: math.unit(2.8, "meter"),
  2472. weight: math.unit(200, "kg"),
  2473. name: "Front",
  2474. image: {
  2475. source: "./media/characters/elory/front.svg",
  2476. }
  2477. }
  2478. },
  2479. [
  2480. {
  2481. name: "Normal",
  2482. height: math.unit(2.8, "meter"),
  2483. default: true
  2484. },
  2485. {
  2486. name: "Macro",
  2487. height: math.unit(38, "meter")
  2488. }
  2489. ]
  2490. ))
  2491. characterMakers.push(() => makeCharacter(
  2492. { name: "Angelpatamon", species: ["patamon"], tags: ["anthro"] },
  2493. {
  2494. front: {
  2495. height: math.unit(470, "feet"),
  2496. weight: math.unit(924, "tons"),
  2497. name: "Front",
  2498. image: {
  2499. source: "./media/characters/angelpatamon/front.svg",
  2500. }
  2501. }
  2502. },
  2503. [
  2504. {
  2505. name: "Normal",
  2506. height: math.unit(470, "feet"),
  2507. default: true
  2508. },
  2509. {
  2510. name: "Deity Size I",
  2511. height: math.unit(28651.2, "km")
  2512. },
  2513. {
  2514. name: "Deity Size II",
  2515. height: math.unit(171907.2, "km")
  2516. }
  2517. ]
  2518. ))
  2519. characterMakers.push(() => makeCharacter(
  2520. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  2521. {
  2522. side: {
  2523. height: math.unit(7.2, "meter"),
  2524. weight: math.unit(8.2, "tons"),
  2525. name: "Side",
  2526. image: {
  2527. source: "./media/characters/cryae/side.svg",
  2528. extra: 3500 / 1500
  2529. }
  2530. }
  2531. },
  2532. [
  2533. {
  2534. name: "Normal",
  2535. height: math.unit(7.2, "meter"),
  2536. default: true
  2537. }
  2538. ]
  2539. ))
  2540. characterMakers.push(() => makeCharacter(
  2541. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  2542. {
  2543. front: {
  2544. height: math.unit(6, "feet"),
  2545. weight: math.unit(175, "lb"),
  2546. name: "Front",
  2547. image: {
  2548. source: "./media/characters/xera/front.svg",
  2549. extra: 2300 / 2061
  2550. }
  2551. },
  2552. side: {
  2553. height: math.unit(6, "feet"),
  2554. weight: math.unit(175, "lb"),
  2555. name: "Side",
  2556. image: {
  2557. source: "./media/characters/xera/side.svg",
  2558. extra: 2300 / 2061
  2559. }
  2560. },
  2561. back: {
  2562. height: math.unit(6, "feet"),
  2563. weight: math.unit(175, "lb"),
  2564. name: "Back",
  2565. image: {
  2566. source: "./media/characters/xera/back.svg"
  2567. }
  2568. },
  2569. },
  2570. [
  2571. {
  2572. name: "Small",
  2573. height: math.unit(10, "feet")
  2574. },
  2575. {
  2576. name: "Macro",
  2577. height: math.unit(500, "meters"),
  2578. default: true
  2579. },
  2580. {
  2581. name: "Macro+",
  2582. height: math.unit(10, "km")
  2583. },
  2584. {
  2585. name: "Gigamacro",
  2586. height: math.unit(25000, "km")
  2587. },
  2588. {
  2589. name: "Teramacro",
  2590. height: math.unit(3e6, "km")
  2591. }
  2592. ]
  2593. ))
  2594. characterMakers.push(() => makeCharacter(
  2595. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  2596. {
  2597. front: {
  2598. height: math.unit(6, "feet"),
  2599. weight: math.unit(175, "lb"),
  2600. name: "Front",
  2601. image: {
  2602. source: "./media/characters/nebula/front.svg",
  2603. extra: 2600 / 2450
  2604. }
  2605. }
  2606. },
  2607. [
  2608. {
  2609. name: "Small",
  2610. height: math.unit(4.5, "meters")
  2611. },
  2612. {
  2613. name: "Macro",
  2614. height: math.unit(1500, "meters"),
  2615. default: true
  2616. },
  2617. {
  2618. name: "Megamacro",
  2619. height: math.unit(150, "km")
  2620. },
  2621. {
  2622. name: "Gigamacro",
  2623. height: math.unit(27000, "km")
  2624. }
  2625. ]
  2626. ))
  2627. characterMakers.push(() => makeCharacter(
  2628. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  2629. {
  2630. front: {
  2631. height: math.unit(6, "feet"),
  2632. weight: math.unit(225, "lb"),
  2633. name: "Front",
  2634. image: {
  2635. source: "./media/characters/abysgar/front.svg"
  2636. }
  2637. }
  2638. },
  2639. [
  2640. {
  2641. name: "Small",
  2642. height: math.unit(4.5, "meters")
  2643. },
  2644. {
  2645. name: "Macro",
  2646. height: math.unit(1250, "meters"),
  2647. default: true
  2648. },
  2649. {
  2650. name: "Megamacro",
  2651. height: math.unit(125, "km")
  2652. },
  2653. {
  2654. name: "Gigamacro",
  2655. height: math.unit(26000, "km")
  2656. }
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  2661. {
  2662. front: {
  2663. height: math.unit(6, "feet"),
  2664. weight: math.unit(180, "lb"),
  2665. name: "Front",
  2666. image: {
  2667. source: "./media/characters/yakuz/front.svg"
  2668. }
  2669. }
  2670. },
  2671. [
  2672. {
  2673. name: "Small",
  2674. height: math.unit(5, "meters")
  2675. },
  2676. {
  2677. name: "Macro",
  2678. height: math.unit(1500, "meters"),
  2679. default: true
  2680. },
  2681. {
  2682. name: "Megamacro",
  2683. height: math.unit(200, "km")
  2684. },
  2685. {
  2686. name: "Gigamacro",
  2687. height: math.unit(100000, "km")
  2688. }
  2689. ]
  2690. ))
  2691. characterMakers.push(() => makeCharacter(
  2692. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  2693. {
  2694. front: {
  2695. height: math.unit(6, "feet"),
  2696. weight: math.unit(175, "lb"),
  2697. name: "Front",
  2698. image: {
  2699. source: "./media/characters/mirova/front.svg"
  2700. }
  2701. }
  2702. },
  2703. [
  2704. {
  2705. name: "Small",
  2706. height: math.unit(5, "meters")
  2707. },
  2708. {
  2709. name: "Macro",
  2710. height: math.unit(900, "meters"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Megamacro",
  2715. height: math.unit(135, "km")
  2716. },
  2717. {
  2718. name: "Gigamacro",
  2719. height: math.unit(20000, "km")
  2720. }
  2721. ]
  2722. ))
  2723. characterMakers.push(() => makeCharacter(
  2724. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  2725. {
  2726. side: {
  2727. height: math.unit(28.35, "feet"),
  2728. weight: math.unit(99.75, "tons"),
  2729. name: "Side",
  2730. image: {
  2731. source: "./media/characters/asana-mech/side.svg"
  2732. }
  2733. }
  2734. },
  2735. [
  2736. {
  2737. name: "Normal",
  2738. height: math.unit(28.35, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Macro",
  2743. height: math.unit(2500, "feet")
  2744. },
  2745. {
  2746. name: "Megamacro",
  2747. height: math.unit(25, "miles")
  2748. },
  2749. {
  2750. name: "Examacro",
  2751. height: math.unit(6e8, "lightyears")
  2752. },
  2753. ]
  2754. ))
  2755. characterMakers.push(() => makeCharacter(
  2756. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  2757. {
  2758. front: {
  2759. height: math.unit(2, "meters"),
  2760. weight: math.unit(70, "kg"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/ashtrek/front.svg",
  2764. extra: 560 / 524,
  2765. bottom: 0.01
  2766. }
  2767. },
  2768. frontArmor: {
  2769. height: math.unit(2, "meters"),
  2770. weight: math.unit(76, "kg"),
  2771. name: "Front (Armor)",
  2772. image: {
  2773. source: "./media/characters/ashtrek/front-armor.svg",
  2774. extra: 561 / 527,
  2775. bottom: 0.01
  2776. }
  2777. },
  2778. side: {
  2779. height: math.unit(2, "meters"),
  2780. weight: math.unit(70, "kg"),
  2781. name: "Side",
  2782. image: {
  2783. source: "./media/characters/ashtrek/side.svg",
  2784. extra: 1717 / 1609,
  2785. bottom: 0.005
  2786. }
  2787. },
  2788. back: {
  2789. height: math.unit(2, "meters"),
  2790. weight: math.unit(70, "kg"),
  2791. name: "Back",
  2792. image: {
  2793. source: "./media/characters/ashtrek/back.svg",
  2794. extra: 1570 / 1501
  2795. }
  2796. },
  2797. },
  2798. [
  2799. {
  2800. name: "DEFCON 5",
  2801. height: math.unit(5, "meters")
  2802. },
  2803. {
  2804. name: "DEFCON 4",
  2805. height: math.unit(500, "meters"),
  2806. default: true
  2807. },
  2808. {
  2809. name: "DEFCON 3",
  2810. height: math.unit(5, "km")
  2811. },
  2812. {
  2813. name: "DEFCON 2",
  2814. height: math.unit(500, "km")
  2815. },
  2816. {
  2817. name: "DEFCON 1",
  2818. height: math.unit(500000, "km")
  2819. },
  2820. {
  2821. name: "DEFCON 0",
  2822. height: math.unit(3, "gigaparsecs")
  2823. },
  2824. ]
  2825. ))
  2826. characterMakers.push(() => makeCharacter(
  2827. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  2828. {
  2829. front: {
  2830. height: math.unit(2, "meters"),
  2831. weight: math.unit(76, "kg"),
  2832. name: "Front",
  2833. image: {
  2834. source: "./media/characters/gale/front.svg"
  2835. }
  2836. },
  2837. frontAlt1: {
  2838. height: math.unit(2, "meters"),
  2839. weight: math.unit(76, "kg"),
  2840. name: "Front (Alt 1)",
  2841. image: {
  2842. source: "./media/characters/gale/front-alt-1.svg"
  2843. }
  2844. },
  2845. frontAlt2: {
  2846. height: math.unit(2, "meters"),
  2847. weight: math.unit(76, "kg"),
  2848. name: "Front (Alt 2)",
  2849. image: {
  2850. source: "./media/characters/gale/front-alt-2.svg"
  2851. }
  2852. },
  2853. },
  2854. [
  2855. {
  2856. name: "Normal",
  2857. height: math.unit(7, "feet")
  2858. },
  2859. {
  2860. name: "Macro",
  2861. height: math.unit(150, "feet"),
  2862. default: true
  2863. },
  2864. {
  2865. name: "Macro+",
  2866. height: math.unit(300, "feet")
  2867. },
  2868. ]
  2869. ))
  2870. characterMakers.push(() => makeCharacter(
  2871. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  2872. {
  2873. front: {
  2874. height: math.unit(2, "meters"),
  2875. weight: math.unit(76, "kg"),
  2876. name: "Front",
  2877. image: {
  2878. source: "./media/characters/draylen/front.svg"
  2879. }
  2880. }
  2881. },
  2882. [
  2883. {
  2884. name: "Macro",
  2885. height: math.unit(150, "feet"),
  2886. default: true
  2887. }
  2888. ]
  2889. ))
  2890. characterMakers.push(() => makeCharacter(
  2891. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  2892. {
  2893. front: {
  2894. height: math.unit(7 + 9 / 12, "feet"),
  2895. weight: math.unit(379, "lbs"),
  2896. name: "Front",
  2897. image: {
  2898. source: "./media/characters/chez/front.svg"
  2899. }
  2900. },
  2901. side: {
  2902. height: math.unit(7 + 9 / 12, "feet"),
  2903. weight: math.unit(379, "lbs"),
  2904. name: "Side",
  2905. image: {
  2906. source: "./media/characters/chez/side.svg"
  2907. }
  2908. }
  2909. },
  2910. [
  2911. {
  2912. name: "Normal",
  2913. height: math.unit(7 + 9 / 12, "feet"),
  2914. default: true
  2915. },
  2916. {
  2917. name: "God King",
  2918. height: math.unit(9750000, "meters")
  2919. }
  2920. ]
  2921. ))
  2922. characterMakers.push(() => makeCharacter(
  2923. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  2924. {
  2925. front: {
  2926. height: math.unit(6, "feet"),
  2927. weight: math.unit(275, "lbs"),
  2928. name: "Front",
  2929. image: {
  2930. source: "./media/characters/kaylum/front.svg",
  2931. bottom: 0.01,
  2932. extra: 1166 / 1031
  2933. }
  2934. },
  2935. frontWingless: {
  2936. height: math.unit(6, "feet"),
  2937. weight: math.unit(275, "lbs"),
  2938. name: "Front (Wingless)",
  2939. image: {
  2940. source: "./media/characters/kaylum/front-wingless.svg",
  2941. bottom: 0.01,
  2942. extra: 1117 / 1031
  2943. }
  2944. }
  2945. },
  2946. [
  2947. {
  2948. name: "Normal",
  2949. height: math.unit(3.05, "meters")
  2950. },
  2951. {
  2952. name: "Master",
  2953. height: math.unit(5.5, "meters")
  2954. },
  2955. {
  2956. name: "Rampage",
  2957. height: math.unit(19, "meters")
  2958. },
  2959. {
  2960. name: "Macro Lite",
  2961. height: math.unit(37, "meters")
  2962. },
  2963. {
  2964. name: "Hyper Predator",
  2965. height: math.unit(61, "meters")
  2966. },
  2967. {
  2968. name: "Macro",
  2969. height: math.unit(138, "meters"),
  2970. default: true
  2971. }
  2972. ]
  2973. ))
  2974. characterMakers.push(() => makeCharacter(
  2975. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  2976. {
  2977. front: {
  2978. height: math.unit(6, "feet"),
  2979. weight: math.unit(150, "lbs"),
  2980. name: "Front",
  2981. image: {
  2982. source: "./media/characters/geta/front.svg"
  2983. }
  2984. }
  2985. },
  2986. [
  2987. {
  2988. name: "Micro",
  2989. height: math.unit(3, "inches"),
  2990. default: true
  2991. },
  2992. {
  2993. name: "Normal",
  2994. height: math.unit(5 + 5 / 12, "feet")
  2995. }
  2996. ]
  2997. ))
  2998. characterMakers.push(() => makeCharacter(
  2999. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3000. {
  3001. front: {
  3002. height: math.unit(6, "feet"),
  3003. weight: math.unit(300, "lbs"),
  3004. name: "Front",
  3005. image: {
  3006. source: "./media/characters/tyrnn/front.svg"
  3007. }
  3008. }
  3009. },
  3010. [
  3011. {
  3012. name: "Main Height",
  3013. height: math.unit(355, "feet"),
  3014. default: true
  3015. },
  3016. {
  3017. name: "Fave. Height",
  3018. height: math.unit(2400, "feet")
  3019. }
  3020. ]
  3021. ))
  3022. characterMakers.push(() => makeCharacter(
  3023. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3024. {
  3025. front: {
  3026. height: math.unit(6, "feet"),
  3027. weight: math.unit(300, "lbs"),
  3028. name: "Front",
  3029. image: {
  3030. source: "./media/characters/appledectomy/front.svg"
  3031. }
  3032. }
  3033. },
  3034. [
  3035. {
  3036. name: "Macro",
  3037. height: math.unit(2500, "feet")
  3038. },
  3039. {
  3040. name: "Megamacro",
  3041. height: math.unit(50, "miles"),
  3042. default: true
  3043. },
  3044. {
  3045. name: "Gigamacro",
  3046. height: math.unit(5000, "miles")
  3047. },
  3048. {
  3049. name: "Teramacro",
  3050. height: math.unit(250000, "miles")
  3051. },
  3052. ]
  3053. ))
  3054. characterMakers.push(() => makeCharacter(
  3055. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3056. {
  3057. front: {
  3058. height: math.unit(6, "feet"),
  3059. weight: math.unit(200, "lbs"),
  3060. name: "Front",
  3061. image: {
  3062. source: "./media/characters/vulpes/front.svg",
  3063. extra: 573 / 543,
  3064. bottom: 0.033
  3065. }
  3066. },
  3067. side: {
  3068. height: math.unit(6, "feet"),
  3069. weight: math.unit(200, "lbs"),
  3070. name: "Side",
  3071. image: {
  3072. source: "./media/characters/vulpes/side.svg",
  3073. extra: 573 / 543,
  3074. bottom: 0.01
  3075. }
  3076. },
  3077. back: {
  3078. height: math.unit(6, "feet"),
  3079. weight: math.unit(200, "lbs"),
  3080. name: "Back",
  3081. image: {
  3082. source: "./media/characters/vulpes/back.svg",
  3083. extra: 573 / 543,
  3084. }
  3085. },
  3086. feet: {
  3087. height: math.unit(1.276, "feet"),
  3088. name: "Feet",
  3089. image: {
  3090. source: "./media/characters/vulpes/feet.svg"
  3091. }
  3092. },
  3093. maw: {
  3094. height: math.unit(1.18, "feet"),
  3095. name: "Maw",
  3096. image: {
  3097. source: "./media/characters/vulpes/maw.svg"
  3098. }
  3099. },
  3100. },
  3101. [
  3102. {
  3103. name: "Micro",
  3104. height: math.unit(2, "inches")
  3105. },
  3106. {
  3107. name: "Normal",
  3108. height: math.unit(6.3, "feet")
  3109. },
  3110. {
  3111. name: "Macro",
  3112. height: math.unit(850, "feet")
  3113. },
  3114. {
  3115. name: "Megamacro",
  3116. height: math.unit(7500, "feet"),
  3117. default: true
  3118. },
  3119. {
  3120. name: "Gigamacro",
  3121. height: math.unit(570000, "miles")
  3122. }
  3123. ]
  3124. ))
  3125. characterMakers.push(() => makeCharacter(
  3126. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3127. {
  3128. front: {
  3129. height: math.unit(6, "feet"),
  3130. weight: math.unit(210, "lbs"),
  3131. name: "Front",
  3132. image: {
  3133. source: "./media/characters/rain-fallen/front.svg"
  3134. }
  3135. },
  3136. side: {
  3137. height: math.unit(6, "feet"),
  3138. weight: math.unit(210, "lbs"),
  3139. name: "Side",
  3140. image: {
  3141. source: "./media/characters/rain-fallen/side.svg"
  3142. }
  3143. },
  3144. back: {
  3145. height: math.unit(6, "feet"),
  3146. weight: math.unit(210, "lbs"),
  3147. name: "Back",
  3148. image: {
  3149. source: "./media/characters/rain-fallen/back.svg"
  3150. }
  3151. },
  3152. feral: {
  3153. height: math.unit(9, "feet"),
  3154. weight: math.unit(700, "lbs"),
  3155. name: "Feral",
  3156. image: {
  3157. source: "./media/characters/rain-fallen/feral.svg"
  3158. }
  3159. },
  3160. },
  3161. [
  3162. {
  3163. name: "Normal",
  3164. height: math.unit(5, "meter")
  3165. },
  3166. {
  3167. name: "Macro",
  3168. height: math.unit(150, "meter"),
  3169. default: true
  3170. },
  3171. {
  3172. name: "Megamacro",
  3173. height: math.unit(278e6, "meter")
  3174. },
  3175. {
  3176. name: "Gigamacro",
  3177. height: math.unit(2e9, "meter")
  3178. },
  3179. {
  3180. name: "Teramacro",
  3181. height: math.unit(8e12, "meter")
  3182. },
  3183. {
  3184. name: "Devourer",
  3185. height: math.unit(14, "zettameters")
  3186. },
  3187. {
  3188. name: "Scarlet King",
  3189. height: math.unit(18, "yottameters")
  3190. },
  3191. {
  3192. name: "Void",
  3193. height: math.unit(6.66e66, "yottameters")
  3194. }
  3195. ]
  3196. ))
  3197. characterMakers.push(() => makeCharacter(
  3198. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  3199. {
  3200. standing: {
  3201. height: math.unit(6, "feet"),
  3202. weight: math.unit(180, "lbs"),
  3203. name: "Standing",
  3204. image: {
  3205. source: "./media/characters/zaakira/standing.svg"
  3206. }
  3207. },
  3208. laying: {
  3209. height: math.unit(3, "feet"),
  3210. weight: math.unit(180, "lbs"),
  3211. name: "Laying",
  3212. image: {
  3213. source: "./media/characters/zaakira/laying.svg"
  3214. }
  3215. },
  3216. },
  3217. [
  3218. {
  3219. name: "Normal",
  3220. height: math.unit(12, "feet")
  3221. },
  3222. {
  3223. name: "Macro",
  3224. height: math.unit(279, "feet"),
  3225. default: true
  3226. }
  3227. ]
  3228. ))
  3229. characterMakers.push(() => makeCharacter(
  3230. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  3231. {
  3232. front: {
  3233. height: math.unit(6, "feet"),
  3234. weight: math.unit(250, "lbs"),
  3235. name: "Front",
  3236. image: {
  3237. source: "./media/characters/sigvald/front.svg",
  3238. extra: 1000 / 850
  3239. }
  3240. },
  3241. back: {
  3242. height: math.unit(6, "feet"),
  3243. weight: math.unit(250, "lbs"),
  3244. name: "Back",
  3245. image: {
  3246. source: "./media/characters/sigvald/back.svg"
  3247. }
  3248. },
  3249. },
  3250. [
  3251. {
  3252. name: "Normal",
  3253. height: math.unit(8, "feet")
  3254. },
  3255. {
  3256. name: "Large",
  3257. height: math.unit(12, "feet")
  3258. },
  3259. {
  3260. name: "Larger",
  3261. height: math.unit(20, "feet")
  3262. },
  3263. {
  3264. name: "Macro",
  3265. height: math.unit(150, "feet")
  3266. },
  3267. {
  3268. name: "Macro+",
  3269. height: math.unit(200, "feet"),
  3270. default: true
  3271. },
  3272. ]
  3273. ))
  3274. characterMakers.push(() => makeCharacter(
  3275. { name: "Scott", species: ["fox"], tags: ["taur"] },
  3276. {
  3277. side: {
  3278. height: math.unit(12, "feet"),
  3279. weight: math.unit(2000, "kg"),
  3280. name: "Side",
  3281. image: {
  3282. source: "./media/characters/scott/side.svg",
  3283. extra: 754/724,
  3284. bottom: 0.069
  3285. }
  3286. },
  3287. upright: {
  3288. height: math.unit(12, "feet"),
  3289. weight: math.unit(2000, "kg"),
  3290. name: "Upright",
  3291. image: {
  3292. source: "./media/characters/scott/upright.svg",
  3293. extra: 3881/3722,
  3294. bottom: 0.05
  3295. }
  3296. },
  3297. },
  3298. [
  3299. {
  3300. name: "Normal",
  3301. height: math.unit(12, "feet"),
  3302. default: true
  3303. },
  3304. ]
  3305. ))
  3306. characterMakers.push(() => makeCharacter(
  3307. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  3308. {
  3309. side: {
  3310. height: math.unit(8, "meters"),
  3311. weight: math.unit(84755, "lbs"),
  3312. name: "Side",
  3313. image: {
  3314. source: "./media/characters/tobias/side.svg",
  3315. extra: 1474 / 1096,
  3316. bottom: 38.9 / 1513.1235
  3317. }
  3318. },
  3319. },
  3320. [
  3321. {
  3322. name: "Normal",
  3323. height: math.unit(8, "meters"),
  3324. default: true
  3325. },
  3326. ]
  3327. ))
  3328. characterMakers.push(() => makeCharacter(
  3329. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  3330. {
  3331. front: {
  3332. height: math.unit(5.5, "feet"),
  3333. weight: math.unit(400, "lbs"),
  3334. name: "Front",
  3335. image: {
  3336. source: "./media/characters/kieran/front.svg",
  3337. extra: 2694/2364,
  3338. bottom: 217/2908
  3339. }
  3340. },
  3341. side: {
  3342. height: math.unit(5.5, "feet"),
  3343. weight: math.unit(400, "lbs"),
  3344. name: "Side",
  3345. image: {
  3346. source: "./media/characters/kieran/side.svg",
  3347. extra: 875/777,
  3348. bottom: 84.6/959
  3349. }
  3350. },
  3351. },
  3352. [
  3353. {
  3354. name: "Normal",
  3355. height: math.unit(5.5, "feet"),
  3356. default: true
  3357. },
  3358. ]
  3359. ))
  3360. characterMakers.push(() => makeCharacter(
  3361. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  3362. {
  3363. side: {
  3364. height: math.unit(2, "meters"),
  3365. weight: math.unit(70, "kg"),
  3366. name: "Side",
  3367. image: {
  3368. source: "./media/characters/sanya/side.svg",
  3369. bottom: 0.02,
  3370. extra: 1.02
  3371. }
  3372. },
  3373. },
  3374. [
  3375. {
  3376. name: "Small",
  3377. height: math.unit(2, "meters")
  3378. },
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(3, "meters")
  3382. },
  3383. {
  3384. name: "Macro",
  3385. height: math.unit(16, "meters"),
  3386. default: true
  3387. },
  3388. ]
  3389. ))
  3390. characterMakers.push(() => makeCharacter(
  3391. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  3392. {
  3393. side: {
  3394. height: math.unit(2, "meters"),
  3395. weight: math.unit(120, "kg"),
  3396. name: "Front",
  3397. image: {
  3398. source: "./media/characters/miranda/front.svg",
  3399. extra: 10.6 / 10
  3400. }
  3401. },
  3402. },
  3403. [
  3404. {
  3405. name: "Normal",
  3406. height: math.unit(10, "feet"),
  3407. default: true
  3408. }
  3409. ]
  3410. ))
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "James", species: ["deer"], tags: ["anthro"] },
  3413. {
  3414. side: {
  3415. height: math.unit(2, "meters"),
  3416. weight: math.unit(100, "kg"),
  3417. name: "Front",
  3418. image: {
  3419. source: "./media/characters/james/front.svg",
  3420. extra: 10 / 8.5
  3421. }
  3422. },
  3423. },
  3424. [
  3425. {
  3426. name: "Normal",
  3427. height: math.unit(8.5, "feet"),
  3428. default: true
  3429. }
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Heather", species: ["cow"], tags: ["taur"] },
  3434. {
  3435. side: {
  3436. height: math.unit(9.5, "feet"),
  3437. weight: math.unit(2500, "lbs"),
  3438. name: "Side",
  3439. image: {
  3440. source: "./media/characters/heather/side.svg"
  3441. }
  3442. },
  3443. },
  3444. [
  3445. {
  3446. name: "Normal",
  3447. height: math.unit(9.5, "feet"),
  3448. default: true
  3449. }
  3450. ]
  3451. ))
  3452. characterMakers.push(() => makeCharacter(
  3453. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  3454. {
  3455. side: {
  3456. height: math.unit(6.5, "feet"),
  3457. weight: math.unit(400, "lbs"),
  3458. name: "Side",
  3459. image: {
  3460. source: "./media/characters/lukas/side.svg",
  3461. extra: 7.25 / 6.5
  3462. }
  3463. },
  3464. },
  3465. [
  3466. {
  3467. name: "Normal",
  3468. height: math.unit(6.5, "feet"),
  3469. default: true
  3470. }
  3471. ]
  3472. ))
  3473. characterMakers.push(() => makeCharacter(
  3474. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  3475. {
  3476. side: {
  3477. height: math.unit(5, "feet"),
  3478. weight: math.unit(3000, "lbs"),
  3479. name: "Side",
  3480. image: {
  3481. source: "./media/characters/louise/side.svg"
  3482. }
  3483. },
  3484. },
  3485. [
  3486. {
  3487. name: "Normal",
  3488. height: math.unit(5, "feet"),
  3489. default: true
  3490. }
  3491. ]
  3492. ))
  3493. characterMakers.push(() => makeCharacter(
  3494. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  3495. {
  3496. side: {
  3497. height: math.unit(6, "feet"),
  3498. weight: math.unit(150, "lbs"),
  3499. name: "Side",
  3500. image: {
  3501. source: "./media/characters/ramona/side.svg"
  3502. }
  3503. },
  3504. },
  3505. [
  3506. {
  3507. name: "Normal",
  3508. height: math.unit(5.3, "meters"),
  3509. default: true
  3510. },
  3511. {
  3512. name: "Macro",
  3513. height: math.unit(20, "stories")
  3514. },
  3515. {
  3516. name: "Macro+",
  3517. height: math.unit(50, "stories")
  3518. },
  3519. ]
  3520. ))
  3521. characterMakers.push(() => makeCharacter(
  3522. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  3523. {
  3524. standing: {
  3525. height: math.unit(5.75, "feet"),
  3526. weight: math.unit(160, "lbs"),
  3527. name: "Standing",
  3528. image: {
  3529. source: "./media/characters/deerpuff/standing.svg",
  3530. extra: 682 / 624
  3531. }
  3532. },
  3533. sitting: {
  3534. height: math.unit(5.75 / 1.79, "feet"),
  3535. weight: math.unit(160, "lbs"),
  3536. name: "Sitting",
  3537. image: {
  3538. source: "./media/characters/deerpuff/sitting.svg",
  3539. bottom: 44 / 400,
  3540. extra: 1
  3541. }
  3542. },
  3543. taurLaying: {
  3544. height: math.unit(6, "feet"),
  3545. weight: math.unit(400, "lbs"),
  3546. name: "Taur (Laying)",
  3547. image: {
  3548. source: "./media/characters/deerpuff/taur-laying.svg"
  3549. }
  3550. },
  3551. },
  3552. [
  3553. {
  3554. name: "Puffball",
  3555. height: math.unit(6, "inches")
  3556. },
  3557. {
  3558. name: "Normalpuff",
  3559. height: math.unit(5.75, "feet")
  3560. },
  3561. {
  3562. name: "Macropuff",
  3563. height: math.unit(1500, "feet"),
  3564. default: true
  3565. },
  3566. {
  3567. name: "Megapuff",
  3568. height: math.unit(500, "miles")
  3569. },
  3570. {
  3571. name: "Gigapuff",
  3572. height: math.unit(250000, "miles")
  3573. },
  3574. {
  3575. name: "Omegapuff",
  3576. height: math.unit(1000, "lightyears")
  3577. },
  3578. ]
  3579. ))
  3580. characterMakers.push(() => makeCharacter(
  3581. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  3582. {
  3583. stomping: {
  3584. height: math.unit(6, "feet"),
  3585. weight: math.unit(170, "lbs"),
  3586. name: "Stomping",
  3587. image: {
  3588. source: "./media/characters/vivian/stomping.svg"
  3589. }
  3590. },
  3591. sitting: {
  3592. height: math.unit(6 / 1.75, "feet"),
  3593. weight: math.unit(170, "lbs"),
  3594. name: "Sitting",
  3595. image: {
  3596. source: "./media/characters/vivian/sitting.svg",
  3597. bottom: 1 / 6.4,
  3598. extra: 1,
  3599. }
  3600. },
  3601. },
  3602. [
  3603. {
  3604. name: "Normal",
  3605. height: math.unit(7, "feet"),
  3606. default: true
  3607. },
  3608. {
  3609. name: "Macro",
  3610. height: math.unit(10, "stories")
  3611. },
  3612. {
  3613. name: "Macro+",
  3614. height: math.unit(30, "stories")
  3615. },
  3616. {
  3617. name: "Megamacro",
  3618. height: math.unit(10, "miles")
  3619. },
  3620. {
  3621. name: "Megamacro+",
  3622. height: math.unit(2750000, "meters")
  3623. },
  3624. ]
  3625. ))
  3626. characterMakers.push(() => makeCharacter(
  3627. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  3628. {
  3629. front: {
  3630. height: math.unit(6, "feet"),
  3631. weight: math.unit(160, "lbs"),
  3632. name: "Front",
  3633. image: {
  3634. source: "./media/characters/prince/front.svg",
  3635. extra: 3400 / 3000
  3636. }
  3637. },
  3638. jumping: {
  3639. height: math.unit(6, "feet"),
  3640. weight: math.unit(160, "lbs"),
  3641. name: "Jumping",
  3642. image: {
  3643. source: "./media/characters/prince/jump.svg",
  3644. extra: 2555 / 2134
  3645. }
  3646. },
  3647. },
  3648. [
  3649. {
  3650. name: "Normal",
  3651. height: math.unit(7.75, "feet"),
  3652. default: true
  3653. },
  3654. {
  3655. name: "Not cute",
  3656. height: math.unit(17, "feet")
  3657. },
  3658. {
  3659. name: "I said NOT",
  3660. height: math.unit(91, "feet")
  3661. },
  3662. {
  3663. name: "Please stop",
  3664. height: math.unit(560, "feet")
  3665. },
  3666. {
  3667. name: "What have you done",
  3668. height: math.unit(2200, "feet")
  3669. },
  3670. {
  3671. name: "Deer God",
  3672. height: math.unit(3.6, "miles")
  3673. },
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  3678. {
  3679. standing: {
  3680. height: math.unit(6, "feet"),
  3681. weight: math.unit(300, "lbs"),
  3682. name: "Standing",
  3683. image: {
  3684. source: "./media/characters/psymon/standing.svg",
  3685. extra: 1888 / 1810,
  3686. bottom: 0.05
  3687. }
  3688. },
  3689. slithering: {
  3690. height: math.unit(6, "feet"),
  3691. weight: math.unit(300, "lbs"),
  3692. name: "Slithering",
  3693. image: {
  3694. source: "./media/characters/psymon/slithering.svg",
  3695. extra: 1330 / 1224
  3696. }
  3697. },
  3698. slitheringAlt: {
  3699. height: math.unit(6, "feet"),
  3700. weight: math.unit(300, "lbs"),
  3701. name: "Slithering (Alt)",
  3702. image: {
  3703. source: "./media/characters/psymon/slithering-alt.svg",
  3704. extra: 1330 / 1224
  3705. }
  3706. },
  3707. },
  3708. [
  3709. {
  3710. name: "Normal",
  3711. height: math.unit(11.25, "feet"),
  3712. default: true
  3713. },
  3714. {
  3715. name: "Large",
  3716. height: math.unit(27, "feet")
  3717. },
  3718. {
  3719. name: "Giant",
  3720. height: math.unit(87, "feet")
  3721. },
  3722. {
  3723. name: "Macro",
  3724. height: math.unit(365, "feet")
  3725. },
  3726. {
  3727. name: "Megamacro",
  3728. height: math.unit(3, "miles")
  3729. },
  3730. {
  3731. name: "World Serpent",
  3732. height: math.unit(8000, "miles")
  3733. },
  3734. ]
  3735. ))
  3736. characterMakers.push(() => makeCharacter(
  3737. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  3738. {
  3739. front: {
  3740. height: math.unit(6, "feet"),
  3741. weight: math.unit(180, "lbs"),
  3742. name: "Front",
  3743. image: {
  3744. source: "./media/characters/daimos/front.svg",
  3745. extra: 4160 / 3897,
  3746. bottom: 0.021
  3747. }
  3748. }
  3749. },
  3750. [
  3751. {
  3752. name: "Normal",
  3753. height: math.unit(8, "feet"),
  3754. default: true
  3755. },
  3756. {
  3757. name: "Big Dog",
  3758. height: math.unit(22, "feet")
  3759. },
  3760. {
  3761. name: "Macro",
  3762. height: math.unit(127, "feet")
  3763. },
  3764. {
  3765. name: "Megamacro",
  3766. height: math.unit(3600, "feet")
  3767. },
  3768. ]
  3769. ))
  3770. characterMakers.push(() => makeCharacter(
  3771. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  3772. {
  3773. side: {
  3774. height: math.unit(6, "feet"),
  3775. weight: math.unit(180, "lbs"),
  3776. name: "Side",
  3777. image: {
  3778. source: "./media/characters/blake/side.svg",
  3779. extra: 1212 / 1120,
  3780. bottom: 0.05
  3781. }
  3782. },
  3783. crouched: {
  3784. height: math.unit(6 * 0.57, "feet"),
  3785. weight: math.unit(180, "lbs"),
  3786. name: "Crouched",
  3787. image: {
  3788. source: "./media/characters/blake/crouched.svg",
  3789. extra: 840 / 587,
  3790. bottom: 0.04
  3791. }
  3792. },
  3793. bent: {
  3794. height: math.unit(6 * 0.75, "feet"),
  3795. weight: math.unit(180, "lbs"),
  3796. name: "Bent",
  3797. image: {
  3798. source: "./media/characters/blake/bent.svg",
  3799. extra: 592 / 544,
  3800. bottom: 0.035
  3801. }
  3802. },
  3803. },
  3804. [
  3805. {
  3806. name: "Normal",
  3807. height: math.unit(8 + 1 / 6, "feet"),
  3808. default: true
  3809. },
  3810. {
  3811. name: "Big Backside",
  3812. height: math.unit(37, "feet")
  3813. },
  3814. {
  3815. name: "Subway Shredder",
  3816. height: math.unit(72, "feet")
  3817. },
  3818. {
  3819. name: "City Carver",
  3820. height: math.unit(1675, "feet")
  3821. },
  3822. {
  3823. name: "Tectonic Tweaker",
  3824. height: math.unit(2300, "miles")
  3825. },
  3826. ]
  3827. ))
  3828. characterMakers.push(() => makeCharacter(
  3829. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  3830. {
  3831. front: {
  3832. height: math.unit(6, "feet"),
  3833. weight: math.unit(180, "lbs"),
  3834. name: "Front",
  3835. image: {
  3836. source: "./media/characters/guisetto/front.svg",
  3837. extra: 856 / 817,
  3838. bottom: 0.06
  3839. }
  3840. },
  3841. airborne: {
  3842. height: math.unit(6, "feet"),
  3843. weight: math.unit(180, "lbs"),
  3844. name: "Airborne",
  3845. image: {
  3846. source: "./media/characters/guisetto/airborne.svg",
  3847. extra: 584 / 525
  3848. }
  3849. },
  3850. },
  3851. [
  3852. {
  3853. name: "Normal",
  3854. height: math.unit(10 + 11 / 12, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Large",
  3859. height: math.unit(35, "feet")
  3860. },
  3861. {
  3862. name: "Macro",
  3863. height: math.unit(475, "feet")
  3864. },
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(6, "feet"),
  3872. weight: math.unit(180, "lbs"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/luxor/front.svg",
  3876. extra: 2940 / 2152
  3877. }
  3878. },
  3879. back: {
  3880. height: math.unit(6, "feet"),
  3881. weight: math.unit(180, "lbs"),
  3882. name: "Back",
  3883. image: {
  3884. source: "./media/characters/luxor/back.svg",
  3885. extra: 1083 / 960
  3886. }
  3887. },
  3888. },
  3889. [
  3890. {
  3891. name: "Normal",
  3892. height: math.unit(5 + 5 / 6, "feet"),
  3893. default: true
  3894. },
  3895. {
  3896. name: "Lamp",
  3897. height: math.unit(50, "feet")
  3898. },
  3899. {
  3900. name: "Lämp",
  3901. height: math.unit(300, "feet")
  3902. },
  3903. {
  3904. name: "The sun is a lamp",
  3905. height: math.unit(250000, "miles")
  3906. },
  3907. ]
  3908. ))
  3909. characterMakers.push(() => makeCharacter(
  3910. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  3911. {
  3912. front: {
  3913. height: math.unit(6, "feet"),
  3914. weight: math.unit(50, "lbs"),
  3915. name: "Front",
  3916. image: {
  3917. source: "./media/characters/huoyan/front.svg"
  3918. }
  3919. },
  3920. side: {
  3921. height: math.unit(6, "feet"),
  3922. weight: math.unit(180, "lbs"),
  3923. name: "Side",
  3924. image: {
  3925. source: "./media/characters/huoyan/side.svg"
  3926. }
  3927. },
  3928. },
  3929. [
  3930. {
  3931. name: "Chef",
  3932. height: math.unit(9, "feet")
  3933. },
  3934. {
  3935. name: "Normal",
  3936. height: math.unit(65, "feet"),
  3937. default: true
  3938. },
  3939. {
  3940. name: "Macro",
  3941. height: math.unit(780, "feet")
  3942. },
  3943. {
  3944. name: "Flaming Mountain",
  3945. height: math.unit(4.8, "miles")
  3946. },
  3947. {
  3948. name: "Celestial",
  3949. height: math.unit(765000, "miles")
  3950. },
  3951. ]
  3952. ))
  3953. characterMakers.push(() => makeCharacter(
  3954. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  3955. {
  3956. front: {
  3957. height: math.unit(5 + 3 / 4, "feet"),
  3958. weight: math.unit(120, "lbs"),
  3959. name: "Front",
  3960. image: {
  3961. source: "./media/characters/tails/front.svg"
  3962. }
  3963. }
  3964. },
  3965. [
  3966. {
  3967. name: "Normal",
  3968. height: math.unit(5 + 3 / 4, "feet"),
  3969. default: true
  3970. }
  3971. ]
  3972. ))
  3973. characterMakers.push(() => makeCharacter(
  3974. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  3975. {
  3976. front: {
  3977. height: math.unit(4, "feet"),
  3978. weight: math.unit(50, "lbs"),
  3979. name: "Front",
  3980. image: {
  3981. source: "./media/characters/rainy/front.svg"
  3982. }
  3983. }
  3984. },
  3985. [
  3986. {
  3987. name: "Macro",
  3988. height: math.unit(800, "feet"),
  3989. default: true
  3990. }
  3991. ]
  3992. ))
  3993. characterMakers.push(() => makeCharacter(
  3994. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  3995. {
  3996. front: {
  3997. height: math.unit(6, "feet"),
  3998. weight: math.unit(150, "lbs"),
  3999. name: "Front",
  4000. image: {
  4001. source: "./media/characters/rainier/front.svg"
  4002. }
  4003. }
  4004. },
  4005. [
  4006. {
  4007. name: "Micro",
  4008. height: math.unit(2, "mm"),
  4009. default: true
  4010. }
  4011. ]
  4012. ))
  4013. characterMakers.push(() => makeCharacter(
  4014. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4015. {
  4016. front: {
  4017. height: math.unit(6, "feet"),
  4018. weight: math.unit(180, "lbs"),
  4019. name: "Front",
  4020. image: {
  4021. source: "./media/characters/andy/front.svg"
  4022. }
  4023. }
  4024. },
  4025. [
  4026. {
  4027. name: "Normal",
  4028. height: math.unit(8, "feet"),
  4029. default: true
  4030. },
  4031. {
  4032. name: "Macro",
  4033. height: math.unit(1000, "feet")
  4034. },
  4035. {
  4036. name: "Megamacro",
  4037. height: math.unit(5, "miles")
  4038. },
  4039. {
  4040. name: "Gigamacro",
  4041. height: math.unit(5000, "miles")
  4042. },
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4047. {
  4048. front: {
  4049. height: math.unit(6, "feet"),
  4050. weight: math.unit(210, "lbs"),
  4051. name: "Front",
  4052. image: {
  4053. source: "./media/characters/cimmaron/front-sfw.svg",
  4054. extra: 701 / 676,
  4055. bottom: 0.046
  4056. }
  4057. },
  4058. back: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(210, "lbs"),
  4061. name: "Back",
  4062. image: {
  4063. source: "./media/characters/cimmaron/back-sfw.svg",
  4064. extra: 701 / 676,
  4065. bottom: 0.046
  4066. }
  4067. },
  4068. frontNsfw: {
  4069. height: math.unit(6, "feet"),
  4070. weight: math.unit(210, "lbs"),
  4071. name: "Front (NSFW)",
  4072. image: {
  4073. source: "./media/characters/cimmaron/front-nsfw.svg",
  4074. extra: 701 / 676,
  4075. bottom: 0.046
  4076. }
  4077. },
  4078. backNsfw: {
  4079. height: math.unit(6, "feet"),
  4080. weight: math.unit(210, "lbs"),
  4081. name: "Back (NSFW)",
  4082. image: {
  4083. source: "./media/characters/cimmaron/back-nsfw.svg",
  4084. extra: 701 / 676,
  4085. bottom: 0.046
  4086. }
  4087. },
  4088. dick: {
  4089. height: math.unit(1.714, "feet"),
  4090. name: "Dick",
  4091. image: {
  4092. source: "./media/characters/cimmaron/dick.svg"
  4093. }
  4094. },
  4095. },
  4096. [
  4097. {
  4098. name: "Normal",
  4099. height: math.unit(6, "feet"),
  4100. default: true
  4101. },
  4102. {
  4103. name: "Macro Mayor",
  4104. height: math.unit(350, "meters")
  4105. },
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(200, "lbs"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/akari/front.svg",
  4117. extra: 962 / 901,
  4118. bottom: 0.04
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Micro",
  4125. height: math.unit(5, "inches"),
  4126. default: true
  4127. },
  4128. {
  4129. name: "Normal",
  4130. height: math.unit(7, "feet")
  4131. },
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(6, "feet"),
  4139. weight: math.unit(140, "lbs"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/cynosura/front.svg",
  4143. extra: 896 / 847
  4144. }
  4145. },
  4146. back: {
  4147. height: math.unit(6, "feet"),
  4148. weight: math.unit(140, "lbs"),
  4149. name: "Back",
  4150. image: {
  4151. source: "./media/characters/cynosura/back.svg",
  4152. extra: 1365 / 1250
  4153. }
  4154. },
  4155. },
  4156. [
  4157. {
  4158. name: "Micro",
  4159. height: math.unit(4, "inches")
  4160. },
  4161. {
  4162. name: "Normal",
  4163. height: math.unit(5.75, "feet"),
  4164. default: true
  4165. },
  4166. {
  4167. name: "Tall",
  4168. height: math.unit(10, "feet")
  4169. },
  4170. {
  4171. name: "Big",
  4172. height: math.unit(20, "feet")
  4173. },
  4174. {
  4175. name: "Macro",
  4176. height: math.unit(50, "feet")
  4177. },
  4178. ]
  4179. ))
  4180. characterMakers.push(() => makeCharacter(
  4181. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4182. {
  4183. front: {
  4184. height: math.unit(6, "feet"),
  4185. weight: math.unit(170, "lbs"),
  4186. name: "Front",
  4187. image: {
  4188. source: "./media/characters/gin/front.svg",
  4189. extra: 1.053,
  4190. bottom: 0.025
  4191. }
  4192. },
  4193. foot: {
  4194. height: math.unit(6 / 4.25, "feet"),
  4195. name: "Foot",
  4196. image: {
  4197. source: "./media/characters/gin/foot.svg"
  4198. }
  4199. },
  4200. sole: {
  4201. height: math.unit(6 / 4.40, "feet"),
  4202. name: "Sole",
  4203. image: {
  4204. source: "./media/characters/gin/sole.svg"
  4205. }
  4206. },
  4207. },
  4208. [
  4209. {
  4210. name: "Normal",
  4211. height: math.unit(13 + 2/12, "feet")
  4212. },
  4213. {
  4214. name: "Macro",
  4215. height: math.unit(1500, "feet")
  4216. },
  4217. {
  4218. name: "Megamacro",
  4219. height: math.unit(200, "miles"),
  4220. default: true
  4221. },
  4222. {
  4223. name: "Gigamacro",
  4224. height: math.unit(500, "megameters")
  4225. },
  4226. {
  4227. name: "Teramacro",
  4228. height: math.unit(15, "lightyears")
  4229. }
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  4234. {
  4235. front: {
  4236. height: math.unit(6 + 1 / 6, "feet"),
  4237. weight: math.unit(178, "lbs"),
  4238. name: "Front",
  4239. image: {
  4240. source: "./media/characters/guy/front.svg"
  4241. }
  4242. }
  4243. },
  4244. [
  4245. {
  4246. name: "Normal",
  4247. height: math.unit(6 + 1 / 6, "feet"),
  4248. default: true
  4249. },
  4250. {
  4251. name: "Large",
  4252. height: math.unit(25 + 7 / 12, "feet")
  4253. },
  4254. {
  4255. name: "Macro",
  4256. height: math.unit(60 + 9 / 12, "feet")
  4257. },
  4258. {
  4259. name: "Macro+",
  4260. height: math.unit(246, "feet")
  4261. },
  4262. {
  4263. name: "Macro++",
  4264. height: math.unit(878, "feet")
  4265. }
  4266. ]
  4267. ))
  4268. characterMakers.push(() => makeCharacter(
  4269. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  4270. {
  4271. front: {
  4272. height: math.unit(9, "feet"),
  4273. weight: math.unit(800, "lbs"),
  4274. name: "Front",
  4275. image: {
  4276. source: "./media/characters/tiberius/front.svg",
  4277. extra: 2295 / 2071
  4278. }
  4279. },
  4280. back: {
  4281. height: math.unit(9, "feet"),
  4282. weight: math.unit(800, "lbs"),
  4283. name: "Back",
  4284. image: {
  4285. source: "./media/characters/tiberius/back.svg",
  4286. extra: 2373 / 2160
  4287. }
  4288. },
  4289. },
  4290. [
  4291. {
  4292. name: "Normal",
  4293. height: math.unit(9, "feet"),
  4294. default: true
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  4300. {
  4301. front: {
  4302. height: math.unit(6, "feet"),
  4303. weight: math.unit(600, "lbs"),
  4304. name: "Front",
  4305. image: {
  4306. source: "./media/characters/surgo/front.svg",
  4307. extra: 3591 / 2227
  4308. }
  4309. },
  4310. back: {
  4311. height: math.unit(6, "feet"),
  4312. weight: math.unit(600, "lbs"),
  4313. name: "Back",
  4314. image: {
  4315. source: "./media/characters/surgo/back.svg",
  4316. extra: 3557 / 2228
  4317. }
  4318. },
  4319. laying: {
  4320. height: math.unit(6 * 0.85, "feet"),
  4321. weight: math.unit(600, "lbs"),
  4322. name: "Laying",
  4323. image: {
  4324. source: "./media/characters/surgo/laying.svg"
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(6, "feet"),
  4332. default: true
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  4338. {
  4339. side: {
  4340. height: math.unit(6, "feet"),
  4341. weight: math.unit(150, "lbs"),
  4342. name: "Side",
  4343. image: {
  4344. source: "./media/characters/cibus/side.svg",
  4345. extra: 800 / 400
  4346. }
  4347. },
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(6, "feet"),
  4353. default: true
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  4359. {
  4360. front: {
  4361. height: math.unit(6, "feet"),
  4362. weight: math.unit(240, "lbs"),
  4363. name: "Front",
  4364. image: {
  4365. source: "./media/characters/nibbles/front.svg"
  4366. }
  4367. },
  4368. side: {
  4369. height: math.unit(6, "feet"),
  4370. weight: math.unit(240, "lbs"),
  4371. name: "Side",
  4372. image: {
  4373. source: "./media/characters/nibbles/side.svg"
  4374. }
  4375. },
  4376. },
  4377. [
  4378. {
  4379. name: "Normal",
  4380. height: math.unit(9, "feet"),
  4381. default: true
  4382. }
  4383. ]
  4384. ))
  4385. characterMakers.push(() => makeCharacter(
  4386. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  4387. {
  4388. side: {
  4389. height: math.unit(5 + 1 / 6, "feet"),
  4390. weight: math.unit(130, "lbs"),
  4391. name: "Side",
  4392. image: {
  4393. source: "./media/characters/rikky/side.svg"
  4394. }
  4395. },
  4396. },
  4397. [
  4398. {
  4399. name: "Normal",
  4400. height: math.unit(5 + 1 / 6, "feet")
  4401. },
  4402. {
  4403. name: "Macro",
  4404. height: math.unit(152, "feet"),
  4405. default: true
  4406. },
  4407. {
  4408. name: "Megamacro",
  4409. height: math.unit(7, "miles")
  4410. }
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  4415. {
  4416. side: {
  4417. height: math.unit(370, "cm"),
  4418. weight: math.unit(350, "lbs"),
  4419. name: "Side",
  4420. image: {
  4421. source: "./media/characters/malfressa/side.svg"
  4422. }
  4423. },
  4424. walking: {
  4425. height: math.unit(370, "cm"),
  4426. weight: math.unit(350, "lbs"),
  4427. name: "Walking",
  4428. image: {
  4429. source: "./media/characters/malfressa/walking.svg"
  4430. }
  4431. },
  4432. feral: {
  4433. height: math.unit(2500, "cm"),
  4434. weight: math.unit(100000, "lbs"),
  4435. name: "Feral",
  4436. image: {
  4437. source: "./media/characters/malfressa/feral.svg",
  4438. extra: 2108 / 837,
  4439. bottom: 0.02
  4440. }
  4441. },
  4442. },
  4443. [
  4444. {
  4445. name: "Normal",
  4446. height: math.unit(370, "cm")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(300, "meters"),
  4451. default: true
  4452. }
  4453. ]
  4454. ))
  4455. characterMakers.push(() => makeCharacter(
  4456. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  4457. {
  4458. front: {
  4459. height: math.unit(6, "feet"),
  4460. weight: math.unit(60, "kg"),
  4461. name: "Front",
  4462. image: {
  4463. source: "./media/characters/jaro/front.svg"
  4464. }
  4465. },
  4466. back: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(60, "kg"),
  4469. name: "Back",
  4470. image: {
  4471. source: "./media/characters/jaro/back.svg"
  4472. }
  4473. },
  4474. },
  4475. [
  4476. {
  4477. name: "Micro",
  4478. height: math.unit(7, "inches")
  4479. },
  4480. {
  4481. name: "Normal",
  4482. height: math.unit(5.5, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Minimacro",
  4487. height: math.unit(20, "feet")
  4488. },
  4489. {
  4490. name: "Macro",
  4491. height: math.unit(200, "meters")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(195, "lb"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/rogue/front.svg"
  4504. }
  4505. },
  4506. },
  4507. [
  4508. {
  4509. name: "Macro",
  4510. height: math.unit(90, "feet"),
  4511. default: true
  4512. },
  4513. ]
  4514. ))
  4515. characterMakers.push(() => makeCharacter(
  4516. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  4517. {
  4518. front: {
  4519. height: math.unit(5 + 8 / 12, "feet"),
  4520. weight: math.unit(140, "lb"),
  4521. name: "Front",
  4522. image: {
  4523. source: "./media/characters/piper/front.svg",
  4524. extra: 3928 / 3681
  4525. }
  4526. },
  4527. },
  4528. [
  4529. {
  4530. name: "Micro",
  4531. height: math.unit(2, "inches")
  4532. },
  4533. {
  4534. name: "Normal",
  4535. height: math.unit(5 + 8 / 12, "feet")
  4536. },
  4537. {
  4538. name: "Macro",
  4539. height: math.unit(250, "feet"),
  4540. default: true
  4541. },
  4542. {
  4543. name: "Megamacro",
  4544. height: math.unit(7, "miles")
  4545. },
  4546. ]
  4547. ))
  4548. characterMakers.push(() => makeCharacter(
  4549. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  4550. {
  4551. front: {
  4552. height: math.unit(6, "feet"),
  4553. weight: math.unit(220, "lb"),
  4554. name: "Front",
  4555. image: {
  4556. source: "./media/characters/gemini/front.svg"
  4557. }
  4558. },
  4559. back: {
  4560. height: math.unit(6, "feet"),
  4561. weight: math.unit(220, "lb"),
  4562. name: "Back",
  4563. image: {
  4564. source: "./media/characters/gemini/back.svg"
  4565. }
  4566. },
  4567. kneeling: {
  4568. height: math.unit(6 / 1.5, "feet"),
  4569. weight: math.unit(220, "lb"),
  4570. name: "Kneeling",
  4571. image: {
  4572. source: "./media/characters/gemini/kneeling.svg",
  4573. bottom: 0.02
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Macro",
  4580. height: math.unit(300, "meters"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Megamacro",
  4585. height: math.unit(6900, "meters")
  4586. },
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Alicia" },
  4591. {
  4592. anthro: {
  4593. height: math.unit(2.35, "meters"),
  4594. weight: math.unit(73, "kg"),
  4595. name: "Anthro",
  4596. image: {
  4597. source: "./media/characters/alicia/anthro.svg"
  4598. }
  4599. },
  4600. feral: {
  4601. height: math.unit(1.69, "meters"),
  4602. weight: math.unit(73, "kg"),
  4603. name: "Feral",
  4604. image: {
  4605. source: "./media/characters/alicia/feral.svg"
  4606. }
  4607. },
  4608. },
  4609. [
  4610. {
  4611. name: "Normal",
  4612. height: math.unit(2.35, "meters")
  4613. },
  4614. {
  4615. name: "Macro",
  4616. height: math.unit(60, "meters"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Megamacro",
  4621. height: math.unit(10000, "kilometers")
  4622. },
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "Archy" },
  4627. {
  4628. front: {
  4629. height: math.unit(7, "feet"),
  4630. weight: math.unit(250, "lbs"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/archy/front.svg"
  4634. }
  4635. }
  4636. },
  4637. [
  4638. {
  4639. name: "Micro",
  4640. height: math.unit(1, "inch")
  4641. },
  4642. {
  4643. name: "Shorty",
  4644. height: math.unit(5, "feet")
  4645. },
  4646. {
  4647. name: "Normal",
  4648. height: math.unit(7, "feet")
  4649. },
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(600, "meters"),
  4653. default: true
  4654. },
  4655. {
  4656. name: "Megamacro",
  4657. height: math.unit(1, "mile")
  4658. },
  4659. ]
  4660. ))
  4661. characterMakers.push(() => makeCharacter(
  4662. { name: "Berri" },
  4663. {
  4664. front: {
  4665. height: math.unit(1.65, "meters"),
  4666. weight: math.unit(74, "kg"),
  4667. name: "Front",
  4668. image: {
  4669. source: "./media/characters/berri/front.svg"
  4670. }
  4671. }
  4672. },
  4673. [
  4674. {
  4675. name: "Normal",
  4676. height: math.unit(1.65, "meters")
  4677. },
  4678. {
  4679. name: "Macro",
  4680. height: math.unit(60, "m"),
  4681. default: true
  4682. },
  4683. {
  4684. name: "Megamacro",
  4685. height: math.unit(9.213, "km")
  4686. },
  4687. {
  4688. name: "Planet Eater",
  4689. height: math.unit(489, "megameters")
  4690. },
  4691. {
  4692. name: "Teramacro",
  4693. height: math.unit(2471635000000, "meters")
  4694. },
  4695. {
  4696. name: "Examacro",
  4697. height: math.unit(8.0624e+26, "meters")
  4698. }
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Lexi" },
  4703. {
  4704. front: {
  4705. height: math.unit(1.72, "meters"),
  4706. weight: math.unit(68, "kg"),
  4707. name: "Front",
  4708. image: {
  4709. source: "./media/characters/lexi/front.svg"
  4710. }
  4711. }
  4712. },
  4713. [
  4714. {
  4715. name: "Very Smol",
  4716. height: math.unit(10, "mm")
  4717. },
  4718. {
  4719. name: "Micro",
  4720. height: math.unit(6.8, "cm"),
  4721. default: true
  4722. },
  4723. {
  4724. name: "Normal",
  4725. height: math.unit(1.72, "m")
  4726. }
  4727. ]
  4728. ))
  4729. characterMakers.push(() => makeCharacter(
  4730. { name: "Martin" },
  4731. {
  4732. front: {
  4733. height: math.unit(1.69, "meters"),
  4734. weight: math.unit(68, "kg"),
  4735. name: "Front",
  4736. image: {
  4737. source: "./media/characters/martin/front.svg",
  4738. extra: 596 / 581
  4739. }
  4740. }
  4741. },
  4742. [
  4743. {
  4744. name: "Micro",
  4745. height: math.unit(6.85, "cm"),
  4746. default: true
  4747. },
  4748. {
  4749. name: "Normal",
  4750. height: math.unit(1.69, "m")
  4751. }
  4752. ]
  4753. ))
  4754. characterMakers.push(() => makeCharacter(
  4755. { name: "Juno" },
  4756. {
  4757. front: {
  4758. height: math.unit(1.69, "meters"),
  4759. weight: math.unit(68, "kg"),
  4760. name: "Front",
  4761. image: {
  4762. source: "./media/characters/juno/front.svg"
  4763. }
  4764. }
  4765. },
  4766. [
  4767. {
  4768. name: "Micro",
  4769. height: math.unit(7, "cm")
  4770. },
  4771. {
  4772. name: "Normal",
  4773. height: math.unit(1.89, "m")
  4774. },
  4775. {
  4776. name: "Macro",
  4777. height: math.unit(353, "meters"),
  4778. default: true
  4779. }
  4780. ]
  4781. ))
  4782. characterMakers.push(() => makeCharacter(
  4783. { name: "Samantha" },
  4784. {
  4785. front: {
  4786. height: math.unit(1.93, "meters"),
  4787. weight: math.unit(83, "kg"),
  4788. name: "Front",
  4789. image: {
  4790. source: "./media/characters/samantha/front.svg"
  4791. }
  4792. },
  4793. frontClothed: {
  4794. height: math.unit(1.93, "meters"),
  4795. weight: math.unit(83, "kg"),
  4796. name: "Front (Clothed)",
  4797. image: {
  4798. source: "./media/characters/samantha/front-clothed.svg"
  4799. }
  4800. },
  4801. back: {
  4802. height: math.unit(1.93, "meters"),
  4803. weight: math.unit(83, "kg"),
  4804. name: "Back",
  4805. image: {
  4806. source: "./media/characters/samantha/back.svg"
  4807. }
  4808. },
  4809. },
  4810. [
  4811. {
  4812. name: "Normal",
  4813. height: math.unit(1.93, "m")
  4814. },
  4815. {
  4816. name: "Macro",
  4817. height: math.unit(74, "meters"),
  4818. default: true
  4819. },
  4820. {
  4821. name: "Macro+",
  4822. height: math.unit(223, "meters"),
  4823. },
  4824. {
  4825. name: "Megamacro",
  4826. height: math.unit(8381, "meters"),
  4827. },
  4828. {
  4829. name: "Megamacro+",
  4830. height: math.unit(12000, "kilometers")
  4831. },
  4832. ]
  4833. ))
  4834. characterMakers.push(() => makeCharacter(
  4835. { name: "Dr. Clay" },
  4836. {
  4837. front: {
  4838. height: math.unit(1.92, "meters"),
  4839. weight: math.unit(80, "kg"),
  4840. name: "Front",
  4841. image: {
  4842. source: "./media/characters/dr-clay/front.svg"
  4843. }
  4844. },
  4845. frontClothed: {
  4846. height: math.unit(1.92, "meters"),
  4847. weight: math.unit(80, "kg"),
  4848. name: "Front (Clothed)",
  4849. image: {
  4850. source: "./media/characters/dr-clay/front-clothed.svg"
  4851. }
  4852. }
  4853. },
  4854. [
  4855. {
  4856. name: "Normal",
  4857. height: math.unit(1.92, "m")
  4858. },
  4859. {
  4860. name: "Macro",
  4861. height: math.unit(214, "meters"),
  4862. default: true
  4863. },
  4864. {
  4865. name: "Macro+",
  4866. height: math.unit(12.237, "meters"),
  4867. },
  4868. {
  4869. name: "Megamacro",
  4870. height: math.unit(557, "megameters"),
  4871. },
  4872. {
  4873. name: "Unimaginable",
  4874. height: math.unit(120e9, "lightyears")
  4875. },
  4876. ]
  4877. ))
  4878. characterMakers.push(() => makeCharacter(
  4879. { name: "Wyvrn Ripsnarl" },
  4880. {
  4881. front: {
  4882. height: math.unit(2, "meters"),
  4883. weight: math.unit(80, "kg"),
  4884. name: "Front",
  4885. image: {
  4886. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4887. }
  4888. }
  4889. },
  4890. [
  4891. {
  4892. name: "Teramacro",
  4893. height: math.unit(500000, "lightyears"),
  4894. default: true
  4895. },
  4896. ]
  4897. ))
  4898. characterMakers.push(() => makeCharacter(
  4899. { name: "Vemus" },
  4900. {
  4901. front: {
  4902. height: math.unit(2, "meters"),
  4903. weight: math.unit(150, "kg"),
  4904. name: "Front",
  4905. image: {
  4906. source: "./media/characters/vemus/front.svg",
  4907. extra: 2384 / 2084,
  4908. bottom: 0.0123
  4909. }
  4910. }
  4911. },
  4912. [
  4913. {
  4914. name: "Normal",
  4915. height: math.unit(3.75, "meters"),
  4916. default: true
  4917. },
  4918. {
  4919. name: "Big",
  4920. height: math.unit(8, "meters")
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(100, "meters")
  4925. },
  4926. {
  4927. name: "Macro+",
  4928. height: math.unit(1500, "meters")
  4929. },
  4930. {
  4931. name: "Stellar",
  4932. height: math.unit(14e8, "meters")
  4933. },
  4934. ]
  4935. ))
  4936. characterMakers.push(() => makeCharacter(
  4937. { name: "Beherit" },
  4938. {
  4939. front: {
  4940. height: math.unit(2, "meters"),
  4941. weight: math.unit(70, "kg"),
  4942. name: "Front",
  4943. image: {
  4944. source: "./media/characters/beherit/front.svg",
  4945. extra: 1408 / 1242
  4946. }
  4947. }
  4948. },
  4949. [
  4950. {
  4951. name: "Normal",
  4952. height: math.unit(6, "feet")
  4953. },
  4954. {
  4955. name: "Lorg",
  4956. height: math.unit(25, "feet"),
  4957. default: true
  4958. },
  4959. {
  4960. name: "Lorger",
  4961. height: math.unit(75, "feet")
  4962. },
  4963. {
  4964. name: "Macro",
  4965. height: math.unit(200, "meters")
  4966. },
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "Everett" },
  4971. {
  4972. front: {
  4973. height: math.unit(2, "meters"),
  4974. weight: math.unit(150, "kg"),
  4975. name: "Front",
  4976. image: {
  4977. source: "./media/characters/everett/front.svg",
  4978. extra: 2038 / 1737,
  4979. bottom: 0.03
  4980. }
  4981. },
  4982. paw: {
  4983. height: math.unit(2 / 3.6, "meters"),
  4984. name: "Paw",
  4985. image: {
  4986. source: "./media/characters/everett/paw.svg"
  4987. }
  4988. },
  4989. },
  4990. [
  4991. {
  4992. name: "Normal",
  4993. height: math.unit(15, "feet"),
  4994. default: true
  4995. },
  4996. {
  4997. name: "Lorg",
  4998. height: math.unit(70, "feet"),
  4999. default: true
  5000. },
  5001. {
  5002. name: "Lorger",
  5003. height: math.unit(250, "feet")
  5004. },
  5005. {
  5006. name: "Macro",
  5007. height: math.unit(500, "meters")
  5008. },
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Rose Lion" },
  5013. {
  5014. front: {
  5015. height: math.unit(2, "meters"),
  5016. weight: math.unit(86, "kg"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/rose-lion/front.svg"
  5020. }
  5021. },
  5022. bent: {
  5023. height: math.unit(2 / 1.4288, "meters"),
  5024. weight: math.unit(86, "kg"),
  5025. name: "Bent",
  5026. image: {
  5027. source: "./media/characters/rose-lion/bent.svg"
  5028. }
  5029. }
  5030. },
  5031. [
  5032. {
  5033. name: "Mini-Micro",
  5034. height: math.unit(1, "cm")
  5035. },
  5036. {
  5037. name: "Micro",
  5038. height: math.unit(3.5, "inches"),
  5039. default: true
  5040. },
  5041. {
  5042. name: "Normal",
  5043. height: math.unit(6 + 1 / 6, "feet")
  5044. },
  5045. {
  5046. name: "Mini-Macro",
  5047. height: math.unit(9 + 10 / 12, "feet")
  5048. },
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Regal" },
  5053. {
  5054. front: {
  5055. height: math.unit(2, "meters"),
  5056. weight: math.unit(350, "lbs"),
  5057. name: "Front",
  5058. image: {
  5059. source: "./media/characters/regal/front.svg"
  5060. }
  5061. },
  5062. back: {
  5063. height: math.unit(2, "meters"),
  5064. weight: math.unit(350, "lbs"),
  5065. name: "Back",
  5066. image: {
  5067. source: "./media/characters/regal/back.svg"
  5068. }
  5069. },
  5070. },
  5071. [
  5072. {
  5073. name: "Macro",
  5074. height: math.unit(350, "feet"),
  5075. default: true
  5076. }
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Opal" },
  5081. {
  5082. front: {
  5083. height: math.unit(4 + 11 / 12, "feet"),
  5084. weight: math.unit(100, "lbs"),
  5085. name: "Front",
  5086. image: {
  5087. source: "./media/characters/opal/front.svg"
  5088. }
  5089. },
  5090. frontAlt: {
  5091. height: math.unit(4 + 11 / 12, "feet"),
  5092. weight: math.unit(100, "lbs"),
  5093. name: "Front (Alt)",
  5094. image: {
  5095. source: "./media/characters/opal/front-alt.svg"
  5096. }
  5097. },
  5098. },
  5099. [
  5100. {
  5101. name: "Small",
  5102. height: math.unit(4 + 11 / 12, "feet")
  5103. },
  5104. {
  5105. name: "Normal",
  5106. height: math.unit(20, "feet"),
  5107. default: true
  5108. },
  5109. {
  5110. name: "Macro",
  5111. height: math.unit(120, "feet")
  5112. },
  5113. {
  5114. name: "Megamacro",
  5115. height: math.unit(80, "miles")
  5116. },
  5117. {
  5118. name: "True Size",
  5119. height: math.unit(100000, "lightyears")
  5120. },
  5121. ]
  5122. ))
  5123. characterMakers.push(() => makeCharacter(
  5124. { name: "Vector Wuff" },
  5125. {
  5126. front: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(200, "lbs"),
  5129. name: "Front",
  5130. image: {
  5131. source: "./media/characters/vector-wuff/front.svg"
  5132. }
  5133. }
  5134. },
  5135. [
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(2.8, "meters")
  5139. },
  5140. {
  5141. name: "Macro",
  5142. height: math.unit(450, "meters"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Megamacro",
  5147. height: math.unit(15, "kilometers")
  5148. }
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Dannik" },
  5153. {
  5154. front: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(256, "lbs"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/dannik/front.svg"
  5160. }
  5161. }
  5162. },
  5163. [
  5164. {
  5165. name: "Macro",
  5166. height: math.unit(69.57, "meters"),
  5167. default: true
  5168. },
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Azura Saharah" },
  5173. {
  5174. front: {
  5175. height: math.unit(6, "feet"),
  5176. weight: math.unit(120, "lbs"),
  5177. name: "Front",
  5178. image: {
  5179. source: "./media/characters/azura-saharah/front.svg"
  5180. }
  5181. },
  5182. back: {
  5183. height: math.unit(6, "feet"),
  5184. weight: math.unit(120, "lbs"),
  5185. name: "Back",
  5186. image: {
  5187. source: "./media/characters/azura-saharah/back.svg"
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Macro",
  5194. height: math.unit(100, "feet"),
  5195. default: true
  5196. },
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Kennedy" },
  5201. {
  5202. side: {
  5203. height: math.unit(5 + 4 / 12, "feet"),
  5204. weight: math.unit(163, "lbs"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/kennedy/side.svg"
  5208. }
  5209. }
  5210. },
  5211. [
  5212. {
  5213. name: "Standard Doggo",
  5214. height: math.unit(5 + 4 / 12, "feet")
  5215. },
  5216. {
  5217. name: "Big Doggo",
  5218. height: math.unit(25 + 3 / 12, "feet"),
  5219. default: true
  5220. },
  5221. ]
  5222. ))
  5223. characterMakers.push(() => makeCharacter(
  5224. { name: "Odi Lunar" },
  5225. {
  5226. front: {
  5227. height: math.unit(6, "feet"),
  5228. weight: math.unit(90, "lbs"),
  5229. name: "Front",
  5230. image: {
  5231. source: "./media/characters/odi-lunar/front.svg"
  5232. }
  5233. }
  5234. },
  5235. [
  5236. {
  5237. name: "Micro",
  5238. height: math.unit(3, "inches"),
  5239. default: true
  5240. },
  5241. {
  5242. name: "Normal",
  5243. height: math.unit(5.5, "feet")
  5244. }
  5245. ]
  5246. ))
  5247. characterMakers.push(() => makeCharacter(
  5248. { name: "Mandake" },
  5249. {
  5250. back: {
  5251. height: math.unit(6, "feet"),
  5252. weight: math.unit(220, "lbs"),
  5253. name: "Back",
  5254. image: {
  5255. source: "./media/characters/mandake/back.svg"
  5256. }
  5257. }
  5258. },
  5259. [
  5260. {
  5261. name: "Normal",
  5262. height: math.unit(7, "feet"),
  5263. default: true
  5264. },
  5265. {
  5266. name: "Macro",
  5267. height: math.unit(78, "feet")
  5268. },
  5269. {
  5270. name: "Macro+",
  5271. height: math.unit(300, "meters")
  5272. },
  5273. {
  5274. name: "Macro++",
  5275. height: math.unit(2400, "feet")
  5276. },
  5277. {
  5278. name: "Megamacro",
  5279. height: math.unit(5167, "meters")
  5280. },
  5281. {
  5282. name: "Gigamacro",
  5283. height: math.unit(41769, "miles")
  5284. },
  5285. ]
  5286. ))
  5287. characterMakers.push(() => makeCharacter(
  5288. { name: "Yozey" },
  5289. {
  5290. front: {
  5291. height: math.unit(6, "feet"),
  5292. weight: math.unit(120, "lbs"),
  5293. name: "Front",
  5294. image: {
  5295. source: "./media/characters/yozey/front.svg"
  5296. }
  5297. },
  5298. frontAlt: {
  5299. height: math.unit(6, "feet"),
  5300. weight: math.unit(120, "lbs"),
  5301. name: "Front (Alt)",
  5302. image: {
  5303. source: "./media/characters/yozey/front-alt.svg"
  5304. }
  5305. },
  5306. side: {
  5307. height: math.unit(6, "feet"),
  5308. weight: math.unit(120, "lbs"),
  5309. name: "Side",
  5310. image: {
  5311. source: "./media/characters/yozey/side.svg"
  5312. }
  5313. },
  5314. },
  5315. [
  5316. {
  5317. name: "Micro",
  5318. height: math.unit(3, "inches"),
  5319. default: true
  5320. },
  5321. {
  5322. name: "Normal",
  5323. height: math.unit(6, "feet")
  5324. }
  5325. ]
  5326. ))
  5327. characterMakers.push(() => makeCharacter(
  5328. { name: "Valeska Voss" },
  5329. {
  5330. front: {
  5331. height: math.unit(6, "feet"),
  5332. weight: math.unit(103, "lbs"),
  5333. name: "Front",
  5334. image: {
  5335. source: "./media/characters/valeska-voss/front.svg"
  5336. }
  5337. }
  5338. },
  5339. [
  5340. {
  5341. name: "Mini-Sized Sub",
  5342. height: math.unit(3.1, "inches")
  5343. },
  5344. {
  5345. name: "Mid-Sized Sub",
  5346. height: math.unit(6.2, "inches")
  5347. },
  5348. {
  5349. name: "Full-Sized Sub",
  5350. height: math.unit(9.3, "inches")
  5351. },
  5352. {
  5353. name: "Normal",
  5354. height: math.unit(5 + 2 / 12, "foot"),
  5355. default: true
  5356. },
  5357. ]
  5358. ))
  5359. characterMakers.push(() => makeCharacter(
  5360. { name: "Gene Zeta" },
  5361. {
  5362. front: {
  5363. height: math.unit(6, "feet"),
  5364. weight: math.unit(160, "lbs"),
  5365. name: "Front",
  5366. image: {
  5367. source: "./media/characters/gene-zeta/front.svg",
  5368. bottom: 0.03,
  5369. extra: 1
  5370. }
  5371. }
  5372. },
  5373. [
  5374. {
  5375. name: "Normal",
  5376. height: math.unit(6.25, "foot"),
  5377. default: true
  5378. },
  5379. ]
  5380. ))
  5381. characterMakers.push(() => makeCharacter(
  5382. { name: "Razinox" },
  5383. {
  5384. front: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(350, "lbs"),
  5387. name: "Front",
  5388. image: {
  5389. source: "./media/characters/razinox/front.svg",
  5390. extra: 1686 / 1548,
  5391. bottom: 28.2/1868
  5392. }
  5393. },
  5394. back: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(350, "lbs"),
  5397. name: "Back",
  5398. image: {
  5399. source: "./media/characters/razinox/back.svg",
  5400. extra: 1660 / 1590,
  5401. bottom: 15/1665
  5402. }
  5403. },
  5404. },
  5405. [
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(10 + 8 / 12, "foot")
  5409. },
  5410. {
  5411. name: "Minimacro",
  5412. height: math.unit(15, "foot")
  5413. },
  5414. {
  5415. name: "Macro",
  5416. height: math.unit(60, "foot"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "Megamacro",
  5421. height: math.unit(5, "miles")
  5422. },
  5423. {
  5424. name: "Gigamacro",
  5425. height: math.unit(6000, "miles")
  5426. },
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Cobalt" },
  5431. {
  5432. front: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(150, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/cobalt/front.svg"
  5438. }
  5439. }
  5440. },
  5441. [
  5442. {
  5443. name: "Normal",
  5444. height: math.unit(8 + 1 / 12, "foot")
  5445. },
  5446. {
  5447. name: "Macro",
  5448. height: math.unit(111, "foot"),
  5449. default: true
  5450. },
  5451. {
  5452. name: "Supracosmic",
  5453. height: math.unit(1e42, "feet")
  5454. },
  5455. ]
  5456. ))
  5457. characterMakers.push(() => makeCharacter(
  5458. { name: "Amanda" },
  5459. {
  5460. front: {
  5461. height: math.unit(6, "feet"),
  5462. weight: math.unit(140, "lbs"),
  5463. name: "Front",
  5464. image: {
  5465. source: "./media/characters/amanda/front.svg"
  5466. }
  5467. }
  5468. },
  5469. [
  5470. {
  5471. name: "Micro",
  5472. height: math.unit(5, "inches"),
  5473. default: true
  5474. },
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Teal" },
  5479. {
  5480. front: {
  5481. height: math.unit(5.59, "feet"),
  5482. weight: math.unit(250, "lbs"),
  5483. name: "Front",
  5484. image: {
  5485. source: "./media/characters/teal/front.svg"
  5486. }
  5487. },
  5488. frontAlt: {
  5489. height: math.unit(6, "feet"),
  5490. weight: math.unit(250, "lbs"),
  5491. name: "Front (Alt)",
  5492. image: {
  5493. source: "./media/characters/teal/front-alt.svg",
  5494. bottom: 0.04,
  5495. extra: 1
  5496. }
  5497. },
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(12, "feet"),
  5503. default: true
  5504. },
  5505. {
  5506. name: "Macro",
  5507. height: math.unit(300, "feet")
  5508. },
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Ravin Amulet" },
  5513. {
  5514. frontCat: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(180, "lbs"),
  5517. name: "Front (Cat)",
  5518. image: {
  5519. source: "./media/characters/ravin-amulet/front-cat.svg"
  5520. }
  5521. },
  5522. frontCatAlt: {
  5523. height: math.unit(6, "feet"),
  5524. weight: math.unit(180, "lbs"),
  5525. name: "Front (Alt, Cat)",
  5526. image: {
  5527. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5528. }
  5529. },
  5530. frontWerewolf: {
  5531. height: math.unit(6 * 1.2, "feet"),
  5532. weight: math.unit(225, "lbs"),
  5533. name: "Front (Werewolf)",
  5534. image: {
  5535. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5536. }
  5537. },
  5538. backWerewolf: {
  5539. height: math.unit(6 * 1.2, "feet"),
  5540. weight: math.unit(225, "lbs"),
  5541. name: "Back (Werewolf)",
  5542. image: {
  5543. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Nano",
  5550. height: math.unit(1, "micrometer")
  5551. },
  5552. {
  5553. name: "Micro",
  5554. height: math.unit(1, "inch")
  5555. },
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(6, "feet"),
  5559. default: true
  5560. },
  5561. {
  5562. name: "Macro",
  5563. height: math.unit(60, "feet")
  5564. }
  5565. ]
  5566. ))
  5567. characterMakers.push(() => makeCharacter(
  5568. { name: "Fluoresce" },
  5569. {
  5570. front: {
  5571. height: math.unit(6, "feet"),
  5572. weight: math.unit(165, "lbs"),
  5573. name: "Front",
  5574. image: {
  5575. source: "./media/characters/fluoresce/front.svg"
  5576. }
  5577. }
  5578. },
  5579. [
  5580. {
  5581. name: "Micro",
  5582. height: math.unit(6, "cm")
  5583. },
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(5 + 7 / 12, "feet"),
  5587. default: true
  5588. },
  5589. {
  5590. name: "Macro",
  5591. height: math.unit(56, "feet")
  5592. },
  5593. {
  5594. name: "Megamacro",
  5595. height: math.unit(1.9, "miles")
  5596. },
  5597. ]
  5598. ))
  5599. characterMakers.push(() => makeCharacter(
  5600. { name: "Aurora" },
  5601. {
  5602. front: {
  5603. height: math.unit(9 + 6 / 12, "feet"),
  5604. weight: math.unit(523, "lbs"),
  5605. name: "Side",
  5606. image: {
  5607. source: "./media/characters/aurora/side.svg"
  5608. }
  5609. }
  5610. },
  5611. [
  5612. {
  5613. name: "Normal",
  5614. height: math.unit(9 + 6 / 12, "feet")
  5615. },
  5616. {
  5617. name: "Macro",
  5618. height: math.unit(96, "feet"),
  5619. default: true
  5620. },
  5621. {
  5622. name: "Macro+",
  5623. height: math.unit(243, "feet")
  5624. },
  5625. ]
  5626. ))
  5627. characterMakers.push(() => makeCharacter(
  5628. { name: "Ranek" },
  5629. {
  5630. front: {
  5631. height: math.unit(194, "cm"),
  5632. weight: math.unit(90, "kg"),
  5633. name: "Front",
  5634. image: {
  5635. source: "./media/characters/ranek/front.svg"
  5636. }
  5637. },
  5638. side: {
  5639. height: math.unit(194, "cm"),
  5640. weight: math.unit(90, "kg"),
  5641. name: "Side",
  5642. image: {
  5643. source: "./media/characters/ranek/side.svg"
  5644. }
  5645. },
  5646. back: {
  5647. height: math.unit(194, "cm"),
  5648. weight: math.unit(90, "kg"),
  5649. name: "Back",
  5650. image: {
  5651. source: "./media/characters/ranek/back.svg"
  5652. }
  5653. },
  5654. feral: {
  5655. height: math.unit(30, "cm"),
  5656. weight: math.unit(1.6, "lbs"),
  5657. name: "Feral",
  5658. image: {
  5659. source: "./media/characters/ranek/feral.svg"
  5660. }
  5661. },
  5662. },
  5663. [
  5664. {
  5665. name: "Normal",
  5666. height: math.unit(194, "cm"),
  5667. default: true
  5668. },
  5669. {
  5670. name: "Macro",
  5671. height: math.unit(100, "meters")
  5672. },
  5673. ]
  5674. ))
  5675. characterMakers.push(() => makeCharacter(
  5676. { name: "Andrew Cooper" },
  5677. {
  5678. front: {
  5679. height: math.unit(5 + 6 / 12, "feet"),
  5680. weight: math.unit(153, "lbs"),
  5681. name: "Front",
  5682. image: {
  5683. source: "./media/characters/andrew-cooper/front.svg"
  5684. }
  5685. },
  5686. },
  5687. [
  5688. {
  5689. name: "Nano",
  5690. height: math.unit(1, "mm")
  5691. },
  5692. {
  5693. name: "Micro",
  5694. height: math.unit(2, "inches")
  5695. },
  5696. {
  5697. name: "Normal",
  5698. height: math.unit(5 + 6 / 12, "feet"),
  5699. default: true
  5700. }
  5701. ]
  5702. ))
  5703. characterMakers.push(() => makeCharacter(
  5704. { name: "Akane Sato" },
  5705. {
  5706. front: {
  5707. height: math.unit(6, "feet"),
  5708. weight: math.unit(180, "lbs"),
  5709. name: "Front",
  5710. image: {
  5711. source: "./media/characters/akane-sato/front.svg",
  5712. extra: 1219 / 1140
  5713. }
  5714. },
  5715. back: {
  5716. height: math.unit(6, "feet"),
  5717. weight: math.unit(180, "lbs"),
  5718. name: "Back",
  5719. image: {
  5720. source: "./media/characters/akane-sato/back.svg",
  5721. extra: 1219 / 1170
  5722. }
  5723. },
  5724. },
  5725. [
  5726. {
  5727. name: "Normal",
  5728. height: math.unit(2.5, "meters")
  5729. },
  5730. {
  5731. name: "Macro",
  5732. height: math.unit(250, "meters"),
  5733. default: true
  5734. },
  5735. {
  5736. name: "Megamacro",
  5737. height: math.unit(25, "km")
  5738. },
  5739. ]
  5740. ))
  5741. characterMakers.push(() => makeCharacter(
  5742. { name: "Rook" },
  5743. {
  5744. front: {
  5745. height: math.unit(6, "feet"),
  5746. weight: math.unit(65, "kg"),
  5747. name: "Front",
  5748. image: {
  5749. source: "./media/characters/rook/front.svg",
  5750. extra: 960/950
  5751. }
  5752. }
  5753. },
  5754. [
  5755. {
  5756. name: "Normal",
  5757. height: math.unit(8.8, "feet")
  5758. },
  5759. {
  5760. name: "Macro",
  5761. height: math.unit(88, "feet"),
  5762. default: true
  5763. },
  5764. {
  5765. name: "Megamacro",
  5766. height: math.unit(8, "miles")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Prodigy" },
  5772. {
  5773. front: {
  5774. height: math.unit(12 + 2 / 12, "feet"),
  5775. weight: math.unit(808, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/prodigy/front.svg"
  5779. }
  5780. }
  5781. },
  5782. [
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(12 + 2 / 12, "feet"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Macro",
  5790. height: math.unit(143, "feet")
  5791. },
  5792. {
  5793. name: "Macro+",
  5794. height: math.unit(400, "feet")
  5795. },
  5796. ]
  5797. ))
  5798. characterMakers.push(() => makeCharacter(
  5799. { name: "Daniel" },
  5800. {
  5801. front: {
  5802. height: math.unit(6, "feet"),
  5803. weight: math.unit(225, "lbs"),
  5804. name: "Front",
  5805. image: {
  5806. source: "./media/characters/daniel/front.svg"
  5807. }
  5808. },
  5809. leaning: {
  5810. height: math.unit(6, "feet"),
  5811. weight: math.unit(225, "lbs"),
  5812. name: "Leaning",
  5813. image: {
  5814. source: "./media/characters/daniel/leaning.svg"
  5815. }
  5816. },
  5817. },
  5818. [
  5819. {
  5820. name: "Macro",
  5821. height: math.unit(1000, "feet"),
  5822. default: true
  5823. },
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Chiros" },
  5828. {
  5829. front: {
  5830. height: math.unit(6, "feet"),
  5831. weight: math.unit(88, "lbs"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/chiros/front.svg",
  5835. extra: 306 / 226
  5836. }
  5837. },
  5838. side: {
  5839. height: math.unit(6, "feet"),
  5840. weight: math.unit(88, "lbs"),
  5841. name: "Side",
  5842. image: {
  5843. source: "./media/characters/chiros/side.svg",
  5844. extra: 306 / 226
  5845. }
  5846. },
  5847. },
  5848. [
  5849. {
  5850. name: "Normal",
  5851. height: math.unit(6, "cm"),
  5852. default: true
  5853. },
  5854. ]
  5855. ))
  5856. characterMakers.push(() => makeCharacter(
  5857. { name: "Selka" },
  5858. {
  5859. front: {
  5860. height: math.unit(6, "feet"),
  5861. weight: math.unit(100, "lbs"),
  5862. name: "Front",
  5863. image: {
  5864. source: "./media/characters/selka/front.svg",
  5865. extra: 947 / 887
  5866. }
  5867. }
  5868. },
  5869. [
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(5, "cm"),
  5873. default: true
  5874. },
  5875. ]
  5876. ))
  5877. characterMakers.push(() => makeCharacter(
  5878. { name: "Verin" },
  5879. {
  5880. front: {
  5881. height: math.unit(8 + 3 / 12, "feet"),
  5882. weight: math.unit(424, "lbs"),
  5883. name: "Front",
  5884. image: {
  5885. source: "./media/characters/verin/front.svg",
  5886. extra: 1845 / 1550
  5887. }
  5888. },
  5889. frontArmored: {
  5890. height: math.unit(8 + 3 / 12, "feet"),
  5891. weight: math.unit(424, "lbs"),
  5892. name: "Front (Armored)",
  5893. image: {
  5894. source: "./media/characters/verin/front-armor.svg",
  5895. extra: 1845 / 1550,
  5896. bottom: 0.01
  5897. }
  5898. },
  5899. back: {
  5900. height: math.unit(8 + 3 / 12, "feet"),
  5901. weight: math.unit(424, "lbs"),
  5902. name: "Back",
  5903. image: {
  5904. source: "./media/characters/verin/back.svg",
  5905. bottom: 0.1,
  5906. extra: 1
  5907. }
  5908. },
  5909. foot: {
  5910. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5911. name: "Foot",
  5912. image: {
  5913. source: "./media/characters/verin/foot.svg"
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Normal",
  5920. height: math.unit(8 + 3 / 12, "feet")
  5921. },
  5922. {
  5923. name: "Minimacro",
  5924. height: math.unit(21, "feet"),
  5925. default: true
  5926. },
  5927. {
  5928. name: "Macro",
  5929. height: math.unit(626, "feet")
  5930. },
  5931. ]
  5932. ))
  5933. characterMakers.push(() => makeCharacter(
  5934. { name: "Sovrim Terraquian" },
  5935. {
  5936. front: {
  5937. height: math.unit(2.718, "meters"),
  5938. weight: math.unit(150, "lbs"),
  5939. name: "Front",
  5940. image: {
  5941. source: "./media/characters/sovrim-terraquian/front.svg"
  5942. }
  5943. },
  5944. back: {
  5945. height: math.unit(2.718, "meters"),
  5946. weight: math.unit(150, "lbs"),
  5947. name: "Back",
  5948. image: {
  5949. source: "./media/characters/sovrim-terraquian/back.svg"
  5950. }
  5951. }
  5952. },
  5953. [
  5954. {
  5955. name: "Micro",
  5956. height: math.unit(2, "inches")
  5957. },
  5958. {
  5959. name: "Small",
  5960. height: math.unit(1, "meter")
  5961. },
  5962. {
  5963. name: "Normal",
  5964. height: math.unit(Math.E, "meters"),
  5965. default: true
  5966. },
  5967. {
  5968. name: "Macro",
  5969. height: math.unit(20, "meters")
  5970. },
  5971. {
  5972. name: "Macro+",
  5973. height: math.unit(400, "meters")
  5974. },
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Reece Silvermane" },
  5979. {
  5980. front: {
  5981. height: math.unit(7, "feet"),
  5982. weight: math.unit(489, "lbs"),
  5983. name: "Front",
  5984. image: {
  5985. source: "./media/characters/reece-silvermane/front.svg",
  5986. bottom: 0.02,
  5987. extra: 1
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Macro",
  5994. height: math.unit(1.5, "miles"),
  5995. default: true
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Kane" },
  6001. {
  6002. front: {
  6003. height: math.unit(6, "feet"),
  6004. weight: math.unit(78, "kg"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/kane/front.svg",
  6008. extra: 978 / 899
  6009. }
  6010. },
  6011. },
  6012. [
  6013. {
  6014. name: "Normal",
  6015. height: math.unit(2.1, "m"),
  6016. },
  6017. {
  6018. name: "Macro",
  6019. height: math.unit(1, "km"),
  6020. default: true
  6021. },
  6022. ]
  6023. ))
  6024. characterMakers.push(() => makeCharacter(
  6025. { name: "Tegon" },
  6026. {
  6027. front: {
  6028. height: math.unit(6, "feet"),
  6029. weight: math.unit(200, "kg"),
  6030. name: "Front",
  6031. image: {
  6032. source: "./media/characters/tegon/front.svg",
  6033. bottom: 0.01,
  6034. extra: 1
  6035. }
  6036. },
  6037. },
  6038. [
  6039. {
  6040. name: "Micro",
  6041. height: math.unit(1, "inch")
  6042. },
  6043. {
  6044. name: "Normal",
  6045. height: math.unit(6 + 3 / 12, "feet"),
  6046. default: true
  6047. },
  6048. {
  6049. name: "Macro",
  6050. height: math.unit(300, "feet")
  6051. },
  6052. {
  6053. name: "Megamacro",
  6054. height: math.unit(69, "miles")
  6055. },
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Arcturax" },
  6060. {
  6061. side: {
  6062. height: math.unit(6, "feet"),
  6063. weight: math.unit(2304, "lbs"),
  6064. name: "Side",
  6065. image: {
  6066. source: "./media/characters/arcturax/side.svg",
  6067. extra: 790 / 376,
  6068. bottom: 0.01
  6069. }
  6070. },
  6071. },
  6072. [
  6073. {
  6074. name: "Micro",
  6075. height: math.unit(2, "inch")
  6076. },
  6077. {
  6078. name: "Normal",
  6079. height: math.unit(6, "feet")
  6080. },
  6081. {
  6082. name: "Macro",
  6083. height: math.unit(39, "feet"),
  6084. default: true
  6085. },
  6086. {
  6087. name: "Megamacro",
  6088. height: math.unit(7, "miles")
  6089. },
  6090. ]
  6091. ))
  6092. characterMakers.push(() => makeCharacter(
  6093. { name: "Sentri" },
  6094. {
  6095. front: {
  6096. height: math.unit(6, "feet"),
  6097. weight: math.unit(50, "lbs"),
  6098. name: "Front",
  6099. image: {
  6100. source: "./media/characters/sentri/front.svg",
  6101. extra: 1750 / 1570,
  6102. bottom: 0.025
  6103. }
  6104. },
  6105. frontAlt: {
  6106. height: math.unit(6, "feet"),
  6107. weight: math.unit(50, "lbs"),
  6108. name: "Front (Alt)",
  6109. image: {
  6110. source: "./media/characters/sentri/front-alt.svg",
  6111. extra: 1750 / 1570,
  6112. bottom: 0.025
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(15, "feet"),
  6120. default: true
  6121. },
  6122. {
  6123. name: "Macro",
  6124. height: math.unit(2500, "feet")
  6125. }
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Corvin" },
  6130. {
  6131. front: {
  6132. height: math.unit(5 + 8 / 12, "feet"),
  6133. weight: math.unit(130, "lbs"),
  6134. name: "Front",
  6135. image: {
  6136. source: "./media/characters/corvin/front.svg",
  6137. extra: 1803 / 1629
  6138. }
  6139. },
  6140. frontShirt: {
  6141. height: math.unit(5 + 8 / 12, "feet"),
  6142. weight: math.unit(130, "lbs"),
  6143. name: "Front (Shirt)",
  6144. image: {
  6145. source: "./media/characters/corvin/front-shirt.svg",
  6146. extra: 1803 / 1629
  6147. }
  6148. },
  6149. frontPoncho: {
  6150. height: math.unit(5 + 8 / 12, "feet"),
  6151. weight: math.unit(130, "lbs"),
  6152. name: "Front (Poncho)",
  6153. image: {
  6154. source: "./media/characters/corvin/front-poncho.svg",
  6155. extra: 1803 / 1629
  6156. }
  6157. },
  6158. side: {
  6159. height: math.unit(5 + 8 / 12, "feet"),
  6160. weight: math.unit(130, "lbs"),
  6161. name: "Side",
  6162. image: {
  6163. source: "./media/characters/corvin/side.svg",
  6164. extra: 1012 / 945
  6165. }
  6166. },
  6167. back: {
  6168. height: math.unit(5 + 8 / 12, "feet"),
  6169. weight: math.unit(130, "lbs"),
  6170. name: "Back",
  6171. image: {
  6172. source: "./media/characters/corvin/back.svg",
  6173. extra: 1803 / 1629
  6174. }
  6175. },
  6176. },
  6177. [
  6178. {
  6179. name: "Micro",
  6180. height: math.unit(3, "inches")
  6181. },
  6182. {
  6183. name: "Normal",
  6184. height: math.unit(5 + 8 / 12, "feet")
  6185. },
  6186. {
  6187. name: "Macro",
  6188. height: math.unit(300, "feet"),
  6189. default: true
  6190. },
  6191. {
  6192. name: "Megamacro",
  6193. height: math.unit(500, "miles")
  6194. }
  6195. ]
  6196. ))
  6197. characterMakers.push(() => makeCharacter(
  6198. { name: "Q" },
  6199. {
  6200. front: {
  6201. height: math.unit(6, "feet"),
  6202. weight: math.unit(135, "lbs"),
  6203. name: "Front",
  6204. image: {
  6205. source: "./media/characters/q/front.svg",
  6206. extra: 854 / 752,
  6207. bottom: 0.005
  6208. }
  6209. },
  6210. back: {
  6211. height: math.unit(6, "feet"),
  6212. weight: math.unit(130, "lbs"),
  6213. name: "Back",
  6214. image: {
  6215. source: "./media/characters/q/back.svg",
  6216. extra: 854 / 752
  6217. }
  6218. },
  6219. },
  6220. [
  6221. {
  6222. name: "Macro",
  6223. height: math.unit(90, "feet"),
  6224. default: true
  6225. },
  6226. {
  6227. name: "Extra Macro",
  6228. height: math.unit(300, "feet"),
  6229. },
  6230. {
  6231. name: "BIG WALF",
  6232. height: math.unit(750, "feet"),
  6233. },
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Carley" },
  6238. {
  6239. front: {
  6240. height: math.unit(6, "feet"),
  6241. weight: math.unit(150, "lbs"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/carley/front.svg",
  6245. extra: 3927 / 3540,
  6246. bottom: 0.03
  6247. }
  6248. }
  6249. },
  6250. [
  6251. {
  6252. name: "Normal",
  6253. height: math.unit(6 + 3 / 12, "feet")
  6254. },
  6255. {
  6256. name: "Macro",
  6257. height: math.unit(185, "feet"),
  6258. default: true
  6259. },
  6260. {
  6261. name: "Megamacro",
  6262. height: math.unit(8, "miles"),
  6263. },
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Citrine" },
  6268. {
  6269. front: {
  6270. height: math.unit(3, "feet"),
  6271. weight: math.unit(28, "lbs"),
  6272. name: "Front",
  6273. image: {
  6274. source: "./media/characters/citrine/front.svg"
  6275. }
  6276. }
  6277. },
  6278. [
  6279. {
  6280. name: "Normal",
  6281. height: math.unit(3, "feet"),
  6282. default: true
  6283. }
  6284. ]
  6285. ))
  6286. characterMakers.push(() => makeCharacter(
  6287. { name: "Aura Starwind" },
  6288. {
  6289. front: {
  6290. height: math.unit(14, "feet"),
  6291. weight: math.unit(1450, "kg"),
  6292. capacity: math.unit(15, "people"),
  6293. name: "Front",
  6294. image: {
  6295. source: "./media/characters/aura-starwind/front.svg",
  6296. extra: 1455 / 1335
  6297. }
  6298. },
  6299. side: {
  6300. height: math.unit(14, "feet"),
  6301. weight: math.unit(1450, "kg"),
  6302. capacity: math.unit(15, "people"),
  6303. name: "Side",
  6304. image: {
  6305. source: "./media/characters/aura-starwind/side.svg",
  6306. extra: 1654 / 1497
  6307. }
  6308. },
  6309. taur: {
  6310. height: math.unit(18, "feet"),
  6311. weight: math.unit(5500, "kg"),
  6312. capacity: math.unit(50, "people"),
  6313. name: "Taur",
  6314. image: {
  6315. source: "./media/characters/aura-starwind/taur.svg",
  6316. extra: 1760 / 1650
  6317. }
  6318. },
  6319. feral: {
  6320. height: math.unit(46, "feet"),
  6321. weight: math.unit(25000, "kg"),
  6322. capacity: math.unit(120, "people"),
  6323. name: "Feral",
  6324. image: {
  6325. source: "./media/characters/aura-starwind/feral.svg"
  6326. }
  6327. },
  6328. },
  6329. [
  6330. {
  6331. name: "Normal",
  6332. height: math.unit(14, "feet"),
  6333. default: true
  6334. },
  6335. {
  6336. name: "Macro",
  6337. height: math.unit(50, "meters")
  6338. },
  6339. {
  6340. name: "Megamacro",
  6341. height: math.unit(5000, "meters")
  6342. },
  6343. {
  6344. name: "Gigamacro",
  6345. height: math.unit(100000, "kilometers")
  6346. },
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Rivet" },
  6351. {
  6352. front: {
  6353. height: math.unit(2 + 7 / 12, "feet"),
  6354. weight: math.unit(32, "lbs"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/rivet/front.svg",
  6358. extra: 1716 / 1658,
  6359. bottom: 0.03
  6360. }
  6361. },
  6362. foot: {
  6363. height: math.unit(0.551, "feet"),
  6364. name: "Rivet's Foot",
  6365. image: {
  6366. source: "./media/characters/rivet/foot.svg"
  6367. },
  6368. rename: true
  6369. }
  6370. },
  6371. [
  6372. {
  6373. name: "Micro",
  6374. height: math.unit(1.5, "inches"),
  6375. },
  6376. {
  6377. name: "Normal",
  6378. height: math.unit(2 + 7 / 12, "feet"),
  6379. default: true
  6380. },
  6381. {
  6382. name: "Macro",
  6383. height: math.unit(85, "feet")
  6384. },
  6385. {
  6386. name: "Megamacro",
  6387. height: math.unit(2.2, "km")
  6388. }
  6389. ]
  6390. ))
  6391. characterMakers.push(() => makeCharacter(
  6392. { name: "Coffee" },
  6393. {
  6394. front: {
  6395. height: math.unit(5 + 9 / 12, "feet"),
  6396. weight: math.unit(150, "lbs"),
  6397. name: "Front",
  6398. image: {
  6399. source: "./media/characters/coffee/front.svg",
  6400. extra: 3666 / 3032,
  6401. bottom: 0.04
  6402. }
  6403. },
  6404. foot: {
  6405. height: math.unit(1.29, "feet"),
  6406. name: "Foot",
  6407. image: {
  6408. source: "./media/characters/coffee/foot.svg"
  6409. }
  6410. },
  6411. },
  6412. [
  6413. {
  6414. name: "Micro",
  6415. height: math.unit(2, "inches"),
  6416. },
  6417. {
  6418. name: "Normal",
  6419. height: math.unit(5 + 9 / 12, "feet"),
  6420. default: true
  6421. },
  6422. {
  6423. name: "Macro",
  6424. height: math.unit(800, "feet")
  6425. },
  6426. {
  6427. name: "Megamacro",
  6428. height: math.unit(25, "miles")
  6429. }
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Chari-Gal" },
  6434. {
  6435. front: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(200, "lbs"),
  6438. name: "Front",
  6439. image: {
  6440. source: "./media/characters/chari-gal/front.svg",
  6441. extra: 1568 / 1385,
  6442. bottom: 0.047
  6443. }
  6444. },
  6445. gigantamax: {
  6446. height: math.unit(6 * 16, "feet"),
  6447. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  6448. name: "Gigantamax",
  6449. image: {
  6450. source: "./media/characters/chari-gal/gigantamax.svg",
  6451. extra: 1124 / 888,
  6452. bottom: 0.03
  6453. }
  6454. },
  6455. },
  6456. [
  6457. {
  6458. name: "Normal",
  6459. height: math.unit(5 + 7 / 12, "feet")
  6460. },
  6461. {
  6462. name: "Macro",
  6463. height: math.unit(200, "feet"),
  6464. default: true
  6465. }
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Nova" },
  6470. {
  6471. front: {
  6472. height: math.unit(6, "feet"),
  6473. weight: math.unit(150, "lbs"),
  6474. name: "Front",
  6475. image: {
  6476. source: "./media/characters/nova/front.svg",
  6477. extra: 5000 / 4722,
  6478. bottom: 0.02
  6479. }
  6480. }
  6481. },
  6482. [
  6483. {
  6484. name: "Micro-",
  6485. height: math.unit(0.8, "inches")
  6486. },
  6487. {
  6488. name: "Micro",
  6489. height: math.unit(2, "inches"),
  6490. default: true
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Argent" },
  6496. {
  6497. front: {
  6498. height: math.unit(3 + 1 / 12, "feet"),
  6499. weight: math.unit(21.7, "lbs"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/argent/front.svg",
  6503. extra: 1565 / 1416,
  6504. bottom: 0.01
  6505. }
  6506. }
  6507. },
  6508. [
  6509. {
  6510. name: "Micro",
  6511. height: math.unit(2, "inches")
  6512. },
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(3 + 1 / 12, "feet"),
  6516. default: true
  6517. },
  6518. {
  6519. name: "Macro",
  6520. height: math.unit(120, "feet")
  6521. },
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Mira al-Cul" },
  6526. {
  6527. lamp: {
  6528. height: math.unit(7 * 1559 / 989, "feet"),
  6529. name: "Magic Lamp",
  6530. image: {
  6531. source: "./media/characters/mira-al-cul/lamp.svg",
  6532. extra: 1617 / 1559
  6533. }
  6534. },
  6535. front: {
  6536. height: math.unit(7, "feet"),
  6537. name: "Front",
  6538. image: {
  6539. source: "./media/characters/mira-al-cul/front.svg",
  6540. extra: 1044 / 990
  6541. }
  6542. },
  6543. },
  6544. [
  6545. {
  6546. name: "Heavily Restricted",
  6547. height: math.unit(7 * 1559 / 989, "feet")
  6548. },
  6549. {
  6550. name: "Freshly Freed",
  6551. height: math.unit(50 * 1559 / 989, "feet")
  6552. },
  6553. {
  6554. name: "World Encompassing",
  6555. height: math.unit(10000 * 1559 / 989, "miles")
  6556. },
  6557. {
  6558. name: "Galactic",
  6559. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6560. },
  6561. {
  6562. name: "Palmed Universe",
  6563. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6564. default: true
  6565. },
  6566. {
  6567. name: "Multiversal Matriarch",
  6568. height: math.unit(8.87e10, "yottameters")
  6569. },
  6570. {
  6571. name: "Void Mother",
  6572. height: math.unit(3.14e110, "yottaparsecs")
  6573. },
  6574. ]
  6575. ))
  6576. characterMakers.push(() => makeCharacter(
  6577. { name: "Kuro-shi Uchū" },
  6578. {
  6579. front: {
  6580. height: math.unit(17 + 1 / 12, "feet"),
  6581. weight: math.unit(476.2 * 5, "lbs"),
  6582. name: "Front",
  6583. image: {
  6584. source: "./media/characters/kuro-shi-uchū/front.svg",
  6585. extra: 2329 / 1835,
  6586. bottom: 0.02
  6587. }
  6588. },
  6589. },
  6590. [
  6591. {
  6592. name: "Micro",
  6593. height: math.unit(2, "inches")
  6594. },
  6595. {
  6596. name: "Normal",
  6597. height: math.unit(12, "meters")
  6598. },
  6599. {
  6600. name: "Planetary",
  6601. height: math.unit(0.00929, "AU"),
  6602. default: true
  6603. },
  6604. {
  6605. name: "Universal",
  6606. height: math.unit(20, "gigaparsecs")
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Katherine" },
  6612. {
  6613. front: {
  6614. height: math.unit(5 + 2 / 12, "feet"),
  6615. weight: math.unit(120, "lbs"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/katherine/front.svg",
  6619. extra: 2075 / 1969
  6620. }
  6621. },
  6622. dress: {
  6623. height: math.unit(5 + 2 / 12, "feet"),
  6624. weight: math.unit(120, "lbs"),
  6625. name: "Dress",
  6626. image: {
  6627. source: "./media/characters/katherine/dress.svg",
  6628. extra: 2258 / 2064
  6629. }
  6630. },
  6631. },
  6632. [
  6633. {
  6634. name: "Micro",
  6635. height: math.unit(1, "inches"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Normal",
  6640. height: math.unit(5 + 2 / 12, "feet")
  6641. },
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(100, "meters")
  6645. },
  6646. {
  6647. name: "Megamacro",
  6648. height: math.unit(80, "miles")
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Yevis" },
  6654. {
  6655. front: {
  6656. height: math.unit(7 + 8 / 12, "feet"),
  6657. weight: math.unit(250, "lbs"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/yevis/front.svg",
  6661. extra: 1938 / 1755
  6662. }
  6663. }
  6664. },
  6665. [
  6666. {
  6667. name: "Mortal",
  6668. height: math.unit(7 + 8 / 12, "feet")
  6669. },
  6670. {
  6671. name: "Battle",
  6672. height: math.unit(25 + 11 / 12, "feet")
  6673. },
  6674. {
  6675. name: "Wrath",
  6676. height: math.unit(1654 + 11 / 12, "feet")
  6677. },
  6678. {
  6679. name: "Planet Destroyer",
  6680. height: math.unit(12000, "miles")
  6681. },
  6682. {
  6683. name: "Galaxy Conqueror",
  6684. height: math.unit(1.45, "zettameters"),
  6685. default: true
  6686. },
  6687. {
  6688. name: "Universal War",
  6689. height: math.unit(184, "gigaparsecs")
  6690. },
  6691. {
  6692. name: "Eternity War",
  6693. height: math.unit(1.98e55, "yottaparsecs")
  6694. },
  6695. ]
  6696. ))
  6697. characterMakers.push(() => makeCharacter(
  6698. { name: "Xavier" },
  6699. {
  6700. front: {
  6701. height: math.unit(5 + 8 / 12, "feet"),
  6702. weight: math.unit(63, "kg"),
  6703. name: "Front",
  6704. image: {
  6705. source: "./media/characters/xavier/front.svg",
  6706. extra: 944 / 883
  6707. }
  6708. },
  6709. frontStretch: {
  6710. height: math.unit(5 + 8 / 12, "feet"),
  6711. weight: math.unit(63, "kg"),
  6712. name: "Stretching",
  6713. image: {
  6714. source: "./media/characters/xavier/front-stretch.svg",
  6715. extra: 962 / 820
  6716. }
  6717. },
  6718. },
  6719. [
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(5 + 8 / 12, "feet")
  6723. },
  6724. {
  6725. name: "Macro",
  6726. height: math.unit(100, "meters"),
  6727. default: true
  6728. },
  6729. {
  6730. name: "McLargeHuge",
  6731. height: math.unit(10, "miles")
  6732. },
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Joshii" },
  6737. {
  6738. front: {
  6739. height: math.unit(5 + 5 / 12, "feet"),
  6740. weight: math.unit(150, "lb"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/joshii/front.svg"
  6744. }
  6745. },
  6746. foot: {
  6747. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6748. name: "Foot",
  6749. image: {
  6750. source: "./media/characters/joshii/foot.svg"
  6751. }
  6752. },
  6753. },
  6754. [
  6755. {
  6756. name: "Micro",
  6757. height: math.unit(2, "inches")
  6758. },
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(5 + 5 / 12, "feet"),
  6762. default: true
  6763. },
  6764. {
  6765. name: "Macro",
  6766. height: math.unit(785, "feet")
  6767. },
  6768. {
  6769. name: "Megamacro",
  6770. height: math.unit(24.5, "miles")
  6771. },
  6772. ]
  6773. ))
  6774. characterMakers.push(() => makeCharacter(
  6775. { name: "Goddess Elizabeth" },
  6776. {
  6777. front: {
  6778. height: math.unit(6, "feet"),
  6779. weight: math.unit(150, "lb"),
  6780. name: "Front",
  6781. image: {
  6782. source: "./media/characters/goddess-elizabeth/front.svg",
  6783. extra: 1800 / 1525,
  6784. bottom: 0.005
  6785. }
  6786. },
  6787. foot: {
  6788. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6789. name: "Foot",
  6790. image: {
  6791. source: "./media/characters/goddess-elizabeth/foot.svg"
  6792. }
  6793. },
  6794. mouth: {
  6795. height: math.unit(6, "feet"),
  6796. name: "Mouth",
  6797. image: {
  6798. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6799. }
  6800. },
  6801. },
  6802. [
  6803. {
  6804. name: "Micro",
  6805. height: math.unit(12, "feet")
  6806. },
  6807. {
  6808. name: "Normal",
  6809. height: math.unit(80, "miles"),
  6810. default: true
  6811. },
  6812. {
  6813. name: "Macro",
  6814. height: math.unit(15000, "parsecs")
  6815. },
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Kara" },
  6820. {
  6821. front: {
  6822. height: math.unit(5 + 9 / 12, "feet"),
  6823. weight: math.unit(144, "lb"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/kara/front.svg"
  6827. }
  6828. },
  6829. feet: {
  6830. height: math.unit(6 / 6.765, "feet"),
  6831. name: "Kara's Feet",
  6832. rename: true,
  6833. image: {
  6834. source: "./media/characters/kara/feet.svg"
  6835. }
  6836. },
  6837. },
  6838. [
  6839. {
  6840. name: "Normal",
  6841. height: math.unit(5 + 9 / 12, "feet")
  6842. },
  6843. {
  6844. name: "Macro",
  6845. height: math.unit(174, "feet"),
  6846. default: true
  6847. },
  6848. ]
  6849. ))
  6850. characterMakers.push(() => makeCharacter(
  6851. { name: "Tyrone" },
  6852. {
  6853. front: {
  6854. height: math.unit(18, "feet"),
  6855. weight: math.unit(4050, "lb"),
  6856. name: "Front",
  6857. image: {
  6858. source: "./media/characters/tyrone/front.svg",
  6859. extra: 2520 / 2402,
  6860. bottom: 0.025
  6861. }
  6862. },
  6863. },
  6864. [
  6865. {
  6866. name: "Normal",
  6867. height: math.unit(18, "feet"),
  6868. default: true
  6869. },
  6870. {
  6871. name: "Macro",
  6872. height: math.unit(300, "feet")
  6873. },
  6874. ]
  6875. ))
  6876. characterMakers.push(() => makeCharacter(
  6877. { name: "Danny" },
  6878. {
  6879. front: {
  6880. height: math.unit(7 + 8 / 12, "feet"),
  6881. weight: math.unit(120, "lb"),
  6882. name: "Front",
  6883. image: {
  6884. source: "./media/characters/danny/front.svg",
  6885. extra: 1490 / 1350
  6886. }
  6887. },
  6888. back: {
  6889. height: math.unit(7 + 8 / 12, "feet"),
  6890. weight: math.unit(120, "lb"),
  6891. name: "Back",
  6892. image: {
  6893. source: "./media/characters/danny/back.svg",
  6894. extra: 1490 / 1350
  6895. }
  6896. },
  6897. },
  6898. [
  6899. {
  6900. name: "Normal",
  6901. height: math.unit(7 + 8 / 12, "feet"),
  6902. default: true
  6903. },
  6904. ]
  6905. ))
  6906. characterMakers.push(() => makeCharacter(
  6907. { name: "Mallow" },
  6908. {
  6909. front: {
  6910. height: math.unit(3.5, "inches"),
  6911. weight: math.unit(19, "grams"),
  6912. name: "Front",
  6913. image: {
  6914. source: "./media/characters/mallow/front.svg",
  6915. extra: 471 / 431
  6916. }
  6917. },
  6918. back: {
  6919. height: math.unit(3.5, "inches"),
  6920. weight: math.unit(19, "grams"),
  6921. name: "Back",
  6922. image: {
  6923. source: "./media/characters/mallow/back.svg",
  6924. extra: 471 / 431
  6925. }
  6926. },
  6927. },
  6928. [
  6929. {
  6930. name: "Normal",
  6931. height: math.unit(3.5, "inches"),
  6932. default: true
  6933. },
  6934. ]
  6935. ))
  6936. characterMakers.push(() => makeCharacter(
  6937. { name: "Starry Aqua" },
  6938. {
  6939. front: {
  6940. height: math.unit(9, "feet"),
  6941. weight: math.unit(230, "kg"),
  6942. name: "Front",
  6943. image: {
  6944. source: "./media/characters/starry-aqua/front.svg"
  6945. }
  6946. },
  6947. back: {
  6948. height: math.unit(9, "feet"),
  6949. weight: math.unit(230, "kg"),
  6950. name: "Back",
  6951. image: {
  6952. source: "./media/characters/starry-aqua/back.svg"
  6953. }
  6954. },
  6955. hand: {
  6956. height: math.unit(9 * 0.1168, "feet"),
  6957. name: "Hand",
  6958. image: {
  6959. source: "./media/characters/starry-aqua/hand.svg"
  6960. }
  6961. },
  6962. foot: {
  6963. height: math.unit(9 * 0.18, "feet"),
  6964. name: "Foot",
  6965. image: {
  6966. source: "./media/characters/starry-aqua/foot.svg"
  6967. }
  6968. }
  6969. },
  6970. [
  6971. {
  6972. name: "Micro",
  6973. height: math.unit(3, "inches")
  6974. },
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(9, "feet")
  6978. },
  6979. {
  6980. name: "Macro",
  6981. height: math.unit(300, "feet"),
  6982. default: true
  6983. },
  6984. {
  6985. name: "Megamacro",
  6986. height: math.unit(3200, "feet")
  6987. }
  6988. ]
  6989. ))
  6990. characterMakers.push(() => makeCharacter(
  6991. { name: "Luka" },
  6992. {
  6993. front: {
  6994. height: math.unit(6, "feet"),
  6995. weight: math.unit(230, "lb"),
  6996. name: "Front",
  6997. image: {
  6998. source: "./media/characters/luka/front.svg",
  6999. extra: 1,
  7000. bottom: 0.025
  7001. }
  7002. },
  7003. },
  7004. [
  7005. {
  7006. name: "Normal",
  7007. height: math.unit(12 + 8 / 12, "feet"),
  7008. default: true
  7009. },
  7010. {
  7011. name: "Minimacro",
  7012. height: math.unit(20, "feet")
  7013. },
  7014. {
  7015. name: "Macro",
  7016. height: math.unit(250, "feet")
  7017. },
  7018. {
  7019. name: "Megamacro",
  7020. height: math.unit(5, "miles")
  7021. },
  7022. {
  7023. name: "Gigamacro",
  7024. height: math.unit(8000, "miles")
  7025. },
  7026. ]
  7027. ))
  7028. characterMakers.push(() => makeCharacter(
  7029. { name: "Natalie Nightring" },
  7030. {
  7031. front: {
  7032. height: math.unit(6, "feet"),
  7033. weight: math.unit(150, "lb"),
  7034. name: "Front",
  7035. image: {
  7036. source: "./media/characters/natalie-nightring/front.svg",
  7037. extra: 1,
  7038. bottom: 0.06
  7039. }
  7040. },
  7041. },
  7042. [
  7043. {
  7044. name: "Uh Oh",
  7045. height: math.unit(0.1, "mm")
  7046. },
  7047. {
  7048. name: "Small",
  7049. height: math.unit(3, "inches")
  7050. },
  7051. {
  7052. name: "Human Scale",
  7053. height: math.unit(6, "feet")
  7054. },
  7055. {
  7056. name: "Librarian",
  7057. height: math.unit(50, "feet"),
  7058. default: true
  7059. },
  7060. {
  7061. name: "Immense",
  7062. height: math.unit(200, "miles")
  7063. },
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Danni Rosie" },
  7068. {
  7069. front: {
  7070. height: math.unit(6, "feet"),
  7071. weight: math.unit(180, "lbs"),
  7072. name: "Front",
  7073. image: {
  7074. source: "./media/characters/danni-rosie/front.svg",
  7075. extra: 1260 / 1128,
  7076. bottom: 0.022
  7077. }
  7078. },
  7079. },
  7080. [
  7081. {
  7082. name: "Micro",
  7083. height: math.unit(2, "inches"),
  7084. default: true
  7085. },
  7086. ]
  7087. ))
  7088. characterMakers.push(() => makeCharacter(
  7089. { name: "Samantha Kruse" },
  7090. {
  7091. front: {
  7092. height: math.unit(5 + 9 / 12, "feet"),
  7093. weight: math.unit(220, "lb"),
  7094. name: "Front",
  7095. image: {
  7096. source: "./media/characters/samantha-kruse/front.svg",
  7097. extra: (985 / 935),
  7098. bottom: 0.03
  7099. }
  7100. },
  7101. frontUndressed: {
  7102. height: math.unit(5 + 9 / 12, "feet"),
  7103. weight: math.unit(220, "lb"),
  7104. name: "Front (Undressed)",
  7105. image: {
  7106. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7107. extra: (973 / 923),
  7108. bottom: 0.025
  7109. }
  7110. },
  7111. fat: {
  7112. height: math.unit(5 + 9 / 12, "feet"),
  7113. weight: math.unit(900, "lb"),
  7114. name: "Front (Fat)",
  7115. image: {
  7116. source: "./media/characters/samantha-kruse/fat.svg",
  7117. extra: 2688 / 2561
  7118. }
  7119. },
  7120. },
  7121. [
  7122. {
  7123. name: "Normal",
  7124. height: math.unit(5 + 9 / 12, "feet"),
  7125. default: true
  7126. }
  7127. ]
  7128. ))
  7129. characterMakers.push(() => makeCharacter(
  7130. { name: "Amelia Rosie" },
  7131. {
  7132. back: {
  7133. height: math.unit(5 + 4 / 12, "feet"),
  7134. weight: math.unit(4963, "lb"),
  7135. name: "Back",
  7136. image: {
  7137. source: "./media/characters/amelia-rosie/back.svg",
  7138. extra: 1113 / 963,
  7139. bottom: 0.01
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Level 0",
  7146. height: math.unit(5 + 4 / 12, "feet")
  7147. },
  7148. {
  7149. name: "Level 1",
  7150. height: math.unit(164597, "feet"),
  7151. default: true
  7152. },
  7153. {
  7154. name: "Level 2",
  7155. height: math.unit(956243, "miles")
  7156. },
  7157. {
  7158. name: "Level 3",
  7159. height: math.unit(29421709423, "miles")
  7160. },
  7161. {
  7162. name: "Level 4",
  7163. height: math.unit(154, "lightyears")
  7164. },
  7165. {
  7166. name: "Level 5",
  7167. height: math.unit(4738272, "lightyears")
  7168. },
  7169. {
  7170. name: "Level 6",
  7171. height: math.unit(145787152896, "lightyears")
  7172. },
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Rook Kitara" },
  7177. {
  7178. front: {
  7179. height: math.unit(5 + 11 / 12, "feet"),
  7180. weight: math.unit(65, "kg"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/rook-kitara/front.svg",
  7184. extra: 1347 / 1274,
  7185. bottom: 0.005
  7186. }
  7187. },
  7188. },
  7189. [
  7190. {
  7191. name: "Totally Unfair",
  7192. height: math.unit(1.8, "mm")
  7193. },
  7194. {
  7195. name: "Lap Rookie",
  7196. height: math.unit(1.4, "feet")
  7197. },
  7198. {
  7199. name: "Normal",
  7200. height: math.unit(5 + 11 / 12, "feet"),
  7201. default: true
  7202. },
  7203. {
  7204. name: "How Did This Happen",
  7205. height: math.unit(80, "miles")
  7206. }
  7207. ]
  7208. ))
  7209. characterMakers.push(() => makeCharacter(
  7210. { name: "Pisces" },
  7211. {
  7212. front: {
  7213. height: math.unit(7, "feet"),
  7214. weight: math.unit(300, "lb"),
  7215. name: "Front",
  7216. image: {
  7217. source: "./media/characters/pisces/front.svg",
  7218. extra: 2255 / 2115,
  7219. bottom: 0.03
  7220. }
  7221. },
  7222. back: {
  7223. height: math.unit(7, "feet"),
  7224. weight: math.unit(300, "lb"),
  7225. name: "Back",
  7226. image: {
  7227. source: "./media/characters/pisces/back.svg",
  7228. extra: 2146 / 2055,
  7229. bottom: 0.04
  7230. }
  7231. },
  7232. },
  7233. [
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(7, "feet"),
  7237. default: true
  7238. },
  7239. {
  7240. name: "Swimming Pool",
  7241. height: math.unit(12.2, "meters")
  7242. },
  7243. {
  7244. name: "Olympic Swimming Pool",
  7245. height: math.unit(56.3, "meters")
  7246. },
  7247. {
  7248. name: "Lake Superior",
  7249. height: math.unit(93900, "meters")
  7250. },
  7251. {
  7252. name: "Mediterranean Sea",
  7253. height: math.unit(644457, "meters")
  7254. },
  7255. {
  7256. name: "World's Oceans",
  7257. height: math.unit(4567491, "meters")
  7258. },
  7259. ]
  7260. ))
  7261. characterMakers.push(() => makeCharacter(
  7262. { name: "Zelas" },
  7263. {
  7264. front: {
  7265. height: math.unit(2.3, "meters"),
  7266. weight: math.unit(120, "kg"),
  7267. name: "Front",
  7268. image: {
  7269. source: "./media/characters/zelas/front.svg"
  7270. }
  7271. },
  7272. side: {
  7273. height: math.unit(2.3, "meters"),
  7274. weight: math.unit(120, "kg"),
  7275. name: "Side",
  7276. image: {
  7277. source: "./media/characters/zelas/side.svg"
  7278. }
  7279. },
  7280. back: {
  7281. height: math.unit(2.3, "meters"),
  7282. weight: math.unit(120, "kg"),
  7283. name: "Back",
  7284. image: {
  7285. source: "./media/characters/zelas/back.svg"
  7286. }
  7287. },
  7288. foot: {
  7289. height: math.unit(1.116, "feet"),
  7290. name: "Foot",
  7291. image: {
  7292. source: "./media/characters/zelas/foot.svg"
  7293. }
  7294. },
  7295. },
  7296. [
  7297. {
  7298. name: "Normal",
  7299. height: math.unit(2.3, "meters")
  7300. },
  7301. {
  7302. name: "Macro",
  7303. height: math.unit(30, "meters"),
  7304. default: true
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Talbot" },
  7310. {
  7311. front: {
  7312. height: math.unit(1, "inch"),
  7313. weight: math.unit(0.21, "grams"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/talbot/front.svg",
  7317. extra: 594 / 544
  7318. }
  7319. },
  7320. },
  7321. [
  7322. {
  7323. name: "Micro",
  7324. height: math.unit(1, "inch"),
  7325. default: true
  7326. },
  7327. ]
  7328. ))
  7329. characterMakers.push(() => makeCharacter(
  7330. { name: "Fliss" },
  7331. {
  7332. front: {
  7333. height: math.unit(3 + 3 / 12, "feet"),
  7334. weight: math.unit(51.8, "lb"),
  7335. name: "Front",
  7336. image: {
  7337. source: "./media/characters/fliss/front.svg",
  7338. extra: 840 / 640
  7339. }
  7340. },
  7341. },
  7342. [
  7343. {
  7344. name: "Teeny Tiny",
  7345. height: math.unit(1, "mm")
  7346. },
  7347. {
  7348. name: "Small",
  7349. height: math.unit(1, "inch"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Standard Sylveon",
  7354. height: math.unit(3 + 3 / 12, "feet")
  7355. },
  7356. {
  7357. name: "Large Nuisance",
  7358. height: math.unit(33, "feet")
  7359. },
  7360. {
  7361. name: "City Filler",
  7362. height: math.unit(3000, "feet")
  7363. },
  7364. {
  7365. name: "New Horizon",
  7366. height: math.unit(6000, "miles")
  7367. },
  7368. ]
  7369. ))
  7370. characterMakers.push(() => makeCharacter(
  7371. { name: "Fleta" },
  7372. {
  7373. front: {
  7374. height: math.unit(5, "cm"),
  7375. weight: math.unit(1.94, "g"),
  7376. name: "Front",
  7377. image: {
  7378. source: "./media/characters/fleta/front.svg",
  7379. extra: 835 / 803
  7380. }
  7381. },
  7382. back: {
  7383. height: math.unit(5, "cm"),
  7384. weight: math.unit(1.94, "g"),
  7385. name: "Back",
  7386. image: {
  7387. source: "./media/characters/fleta/back.svg",
  7388. extra: 835 / 803
  7389. }
  7390. },
  7391. },
  7392. [
  7393. {
  7394. name: "Micro",
  7395. height: math.unit(5, "cm"),
  7396. default: true
  7397. },
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Dominic" },
  7402. {
  7403. front: {
  7404. height: math.unit(6, "feet"),
  7405. weight: math.unit(225, "lb"),
  7406. name: "Front",
  7407. image: {
  7408. source: "./media/characters/dominic/front.svg",
  7409. extra: 1770 / 1620,
  7410. bottom: 0.025
  7411. }
  7412. },
  7413. back: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(225, "lb"),
  7416. name: "Back",
  7417. image: {
  7418. source: "./media/characters/dominic/back.svg",
  7419. extra: 1745 / 1620,
  7420. bottom: 0.065
  7421. }
  7422. },
  7423. },
  7424. [
  7425. {
  7426. name: "Nano",
  7427. height: math.unit(0.1, "mm")
  7428. },
  7429. {
  7430. name: "Micro-",
  7431. height: math.unit(1, "mm")
  7432. },
  7433. {
  7434. name: "Micro",
  7435. height: math.unit(4, "inches")
  7436. },
  7437. {
  7438. name: "Normal",
  7439. height: math.unit(6 + 4 / 12, "feet"),
  7440. default: true
  7441. },
  7442. {
  7443. name: "Macro",
  7444. height: math.unit(115, "feet")
  7445. },
  7446. {
  7447. name: "Macro+",
  7448. height: math.unit(955, "feet")
  7449. },
  7450. {
  7451. name: "Megamacro",
  7452. height: math.unit(8990, "feet")
  7453. },
  7454. {
  7455. name: "Gigmacro",
  7456. height: math.unit(9310, "miles")
  7457. },
  7458. {
  7459. name: "Teramacro",
  7460. height: math.unit(1567005010, "miles")
  7461. },
  7462. {
  7463. name: "Examacro",
  7464. height: math.unit(1425, "parsecs")
  7465. },
  7466. ]
  7467. ))
  7468. characterMakers.push(() => makeCharacter(
  7469. { name: "Major Colonel" },
  7470. {
  7471. front: {
  7472. height: math.unit(400, "feet"),
  7473. weight: math.unit(44444444, "lb"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/major-colonel/front.svg"
  7477. }
  7478. },
  7479. back: {
  7480. height: math.unit(400, "feet"),
  7481. weight: math.unit(44444444, "lb"),
  7482. name: "Back",
  7483. image: {
  7484. source: "./media/characters/major-colonel/back.svg"
  7485. }
  7486. },
  7487. },
  7488. [
  7489. {
  7490. name: "Macro",
  7491. height: math.unit(400, "feet"),
  7492. default: true
  7493. },
  7494. ]
  7495. ))
  7496. characterMakers.push(() => makeCharacter(
  7497. { name: "Axel Lycan" },
  7498. {
  7499. front: {
  7500. height: math.unit(6, "feet"),
  7501. weight: math.unit(120, "lb"),
  7502. name: "Front",
  7503. image: {
  7504. source: "./media/characters/axel-lycan/front.svg",
  7505. extra: 1,
  7506. bottom: 0.08
  7507. }
  7508. },
  7509. },
  7510. [
  7511. {
  7512. name: "Macro",
  7513. height: math.unit(1, "km"),
  7514. default: true
  7515. },
  7516. ]
  7517. ))
  7518. characterMakers.push(() => makeCharacter(
  7519. { name: "Vanrel (Hyena)" },
  7520. {
  7521. front: {
  7522. height: math.unit(5 + 9 / 12, "feet"),
  7523. weight: math.unit(175, "lb"),
  7524. name: "Front",
  7525. image: {
  7526. source: "./media/characters/vanrel-hyena/front.svg",
  7527. extra: 1086 / 1010,
  7528. bottom: 0.04
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Normal",
  7535. height: math.unit(5 + 9 / 12, "feet"),
  7536. default: true
  7537. },
  7538. ]
  7539. ))
  7540. characterMakers.push(() => makeCharacter(
  7541. { name: "Abbott Absol" },
  7542. {
  7543. front: {
  7544. height: math.unit(6, "feet"),
  7545. weight: math.unit(103, "lb"),
  7546. name: "Front",
  7547. image: {
  7548. source: "./media/characters/abbott-absol/front.svg",
  7549. extra: 2010 / 1842
  7550. }
  7551. },
  7552. },
  7553. [
  7554. {
  7555. name: "Megamicro",
  7556. height: math.unit(0.1, "mm")
  7557. },
  7558. {
  7559. name: "Micro",
  7560. height: math.unit(1, "inch")
  7561. },
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(6, "feet"),
  7565. default: true
  7566. },
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Hector" },
  7571. {
  7572. front: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(264, "lb"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/hector/front.svg",
  7578. extra: 2280 / 2130,
  7579. bottom: 0.07
  7580. }
  7581. },
  7582. },
  7583. [
  7584. {
  7585. name: "Normal",
  7586. height: math.unit(12.25, "foot"),
  7587. default: true
  7588. },
  7589. {
  7590. name: "Macro",
  7591. height: math.unit(160, "feet")
  7592. },
  7593. ]
  7594. ))
  7595. characterMakers.push(() => makeCharacter(
  7596. { name: "Sal" },
  7597. {
  7598. front: {
  7599. height: math.unit(6, "feet"),
  7600. weight: math.unit(150, "lb"),
  7601. name: "Front",
  7602. image: {
  7603. source: "./media/characters/sal/front.svg",
  7604. extra: 1846 / 1699,
  7605. bottom: 0.04
  7606. }
  7607. },
  7608. },
  7609. [
  7610. {
  7611. name: "Megamacro",
  7612. height: math.unit(10, "miles"),
  7613. default: true
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Ranger" },
  7619. {
  7620. front: {
  7621. height: math.unit(3, "meters"),
  7622. weight: math.unit(450, "kg"),
  7623. name: "front",
  7624. image: {
  7625. source: "./media/characters/ranger/front.svg",
  7626. extra: 2401 / 2243,
  7627. bottom: 0.05
  7628. }
  7629. },
  7630. },
  7631. [
  7632. {
  7633. name: "Normal",
  7634. height: math.unit(3, "meters"),
  7635. default: true
  7636. },
  7637. ]
  7638. ))
  7639. characterMakers.push(() => makeCharacter(
  7640. { name: "Theresa" },
  7641. {
  7642. front: {
  7643. height: math.unit(14, "feet"),
  7644. weight: math.unit(800, "kg"),
  7645. name: "Front",
  7646. image: {
  7647. source: "./media/characters/theresa/front.svg",
  7648. extra: 3575 / 3346,
  7649. bottom: 0.03
  7650. }
  7651. },
  7652. },
  7653. [
  7654. {
  7655. name: "Normal",
  7656. height: math.unit(14, "feet"),
  7657. default: true
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Ine" },
  7663. {
  7664. front: {
  7665. height: math.unit(6, "feet"),
  7666. weight: math.unit(3, "kg"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/ine/front.svg",
  7670. extra: 678 / 539,
  7671. bottom: 0.023
  7672. }
  7673. },
  7674. },
  7675. [
  7676. {
  7677. name: "Normal",
  7678. height: math.unit(2.265, "feet"),
  7679. default: true
  7680. },
  7681. ]
  7682. ))
  7683. characterMakers.push(() => makeCharacter(
  7684. { name: "Vial" },
  7685. {
  7686. front: {
  7687. height: math.unit(5, "feet"),
  7688. weight: math.unit(30, "kg"),
  7689. name: "Front",
  7690. image: {
  7691. source: "./media/characters/vial/front.svg",
  7692. extra: 1365 / 1277,
  7693. bottom: 0.04
  7694. }
  7695. },
  7696. },
  7697. [
  7698. {
  7699. name: "Normal",
  7700. height: math.unit(5, "feet"),
  7701. default: true
  7702. },
  7703. ]
  7704. ))
  7705. characterMakers.push(() => makeCharacter(
  7706. { name: "Rovoska" },
  7707. {
  7708. side: {
  7709. height: math.unit(3.4, "meters"),
  7710. weight: math.unit(1000, "lb"),
  7711. name: "Side",
  7712. image: {
  7713. source: "./media/characters/rovoska/side.svg",
  7714. extra: 4403 / 1515
  7715. }
  7716. },
  7717. },
  7718. [
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(3.4, "meters"),
  7722. default: true
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Gunner Rotthbauer" },
  7728. {
  7729. front: {
  7730. height: math.unit(8, "feet"),
  7731. weight: math.unit(315, "lb"),
  7732. name: "Front",
  7733. image: {
  7734. source: "./media/characters/gunner-rotthbauer/front.svg"
  7735. }
  7736. },
  7737. back: {
  7738. height: math.unit(8, "feet"),
  7739. weight: math.unit(315, "lb"),
  7740. name: "Back",
  7741. image: {
  7742. source: "./media/characters/gunner-rotthbauer/back.svg"
  7743. }
  7744. },
  7745. },
  7746. [
  7747. {
  7748. name: "Micro",
  7749. height: math.unit(3.5, "inches")
  7750. },
  7751. {
  7752. name: "Normal",
  7753. height: math.unit(8, "feet"),
  7754. default: true
  7755. },
  7756. {
  7757. name: "Macro",
  7758. height: math.unit(250, "feet")
  7759. },
  7760. {
  7761. name: "Megamacro",
  7762. height: math.unit(1, "AU")
  7763. },
  7764. ]
  7765. ))
  7766. characterMakers.push(() => makeCharacter(
  7767. { name: "Allatia" },
  7768. {
  7769. front: {
  7770. height: math.unit(5 + 5 / 12, "feet"),
  7771. weight: math.unit(140, "lb"),
  7772. name: "Front",
  7773. image: {
  7774. source: "./media/characters/allatia/front.svg",
  7775. extra: 1227 / 1180,
  7776. bottom: 0.027
  7777. }
  7778. },
  7779. },
  7780. [
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(5 + 5 / 12, "feet")
  7784. },
  7785. {
  7786. name: "Macro",
  7787. height: math.unit(250, "feet"),
  7788. default: true
  7789. },
  7790. {
  7791. name: "Megamacro",
  7792. height: math.unit(8, "miles")
  7793. }
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Tene" },
  7798. {
  7799. front: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(120, "lb"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/tene/front.svg",
  7805. extra: 1728 / 1578,
  7806. bottom: 0.022
  7807. }
  7808. },
  7809. stomping: {
  7810. height: math.unit(2.025, "meters"),
  7811. weight: math.unit(120, "lb"),
  7812. name: "Stomping",
  7813. image: {
  7814. source: "./media/characters/tene/stomping.svg",
  7815. extra: 938 / 873,
  7816. bottom: 0.01
  7817. }
  7818. },
  7819. sitting: {
  7820. height: math.unit(1, "meter"),
  7821. weight: math.unit(120, "lb"),
  7822. name: "Sitting",
  7823. image: {
  7824. source: "./media/characters/tene/sitting.svg",
  7825. extra: 437 / 415,
  7826. bottom: 0.1
  7827. }
  7828. },
  7829. feral: {
  7830. height: math.unit(3.9, "feet"),
  7831. weight: math.unit(250, "lb"),
  7832. name: "Feral",
  7833. image: {
  7834. source: "./media/characters/tene/feral.svg",
  7835. extra: 717 / 458,
  7836. bottom: 0.179
  7837. }
  7838. },
  7839. },
  7840. [
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(6, "feet")
  7844. },
  7845. {
  7846. name: "Macro",
  7847. height: math.unit(300, "feet"),
  7848. default: true
  7849. },
  7850. {
  7851. name: "Megamacro",
  7852. height: math.unit(5, "miles")
  7853. },
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Evander" },
  7858. {
  7859. side: {
  7860. height: math.unit(6, "feet"),
  7861. name: "Side",
  7862. image: {
  7863. source: "./media/characters/evander/side.svg",
  7864. extra: 877 / 477
  7865. }
  7866. },
  7867. },
  7868. [
  7869. {
  7870. name: "Normal",
  7871. height: math.unit(0.83, "meters"),
  7872. default: true
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7878. {
  7879. front: {
  7880. height: math.unit(12, "feet"),
  7881. weight: math.unit(1000, "lb"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7885. extra: 1762 / 1611
  7886. }
  7887. },
  7888. back: {
  7889. height: math.unit(12, "feet"),
  7890. weight: math.unit(1000, "lb"),
  7891. name: "Back",
  7892. image: {
  7893. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7894. extra: 1762 / 1611
  7895. }
  7896. },
  7897. },
  7898. [
  7899. {
  7900. name: "Normal",
  7901. height: math.unit(12, "feet"),
  7902. default: true
  7903. },
  7904. {
  7905. name: "Kaiju",
  7906. height: math.unit(150, "feet")
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Zero Alurus" },
  7912. {
  7913. front: {
  7914. height: math.unit(6, "feet"),
  7915. weight: math.unit(150, "lb"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/zero-alurus/front.svg"
  7919. }
  7920. },
  7921. back: {
  7922. height: math.unit(6, "feet"),
  7923. weight: math.unit(150, "lb"),
  7924. name: "Back",
  7925. image: {
  7926. source: "./media/characters/zero-alurus/back.svg"
  7927. }
  7928. },
  7929. },
  7930. [
  7931. {
  7932. name: "Normal",
  7933. height: math.unit(5 + 10 / 12, "feet")
  7934. },
  7935. {
  7936. name: "Macro",
  7937. height: math.unit(60, "feet"),
  7938. default: true
  7939. },
  7940. {
  7941. name: "Macro+",
  7942. height: math.unit(450, "feet")
  7943. },
  7944. ]
  7945. ))
  7946. characterMakers.push(() => makeCharacter(
  7947. { name: "Mega Shi" },
  7948. {
  7949. front: {
  7950. height: math.unit(6, "feet"),
  7951. weight: math.unit(200, "lb"),
  7952. name: "Front",
  7953. image: {
  7954. source: "./media/characters/mega-shi/front.svg",
  7955. extra: 1279 / 1250,
  7956. bottom: 0.02
  7957. }
  7958. },
  7959. back: {
  7960. height: math.unit(6, "feet"),
  7961. weight: math.unit(200, "lb"),
  7962. name: "Back",
  7963. image: {
  7964. source: "./media/characters/mega-shi/back.svg",
  7965. extra: 1279 / 1250,
  7966. bottom: 0.02
  7967. }
  7968. },
  7969. },
  7970. [
  7971. {
  7972. name: "Micro",
  7973. height: math.unit(16 + 6 / 12, "feet")
  7974. },
  7975. {
  7976. name: "Third Dimension",
  7977. height: math.unit(40, "meters")
  7978. },
  7979. {
  7980. name: "Normal",
  7981. height: math.unit(660, "feet"),
  7982. default: true
  7983. },
  7984. {
  7985. name: "Megamacro",
  7986. height: math.unit(10, "miles")
  7987. },
  7988. {
  7989. name: "Planetary Launch",
  7990. height: math.unit(500, "miles")
  7991. },
  7992. {
  7993. name: "Interstellar",
  7994. height: math.unit(1e9, "miles")
  7995. },
  7996. {
  7997. name: "Leaving the Universe",
  7998. height: math.unit(1, "gigaparsec")
  7999. },
  8000. {
  8001. name: "Travelling Universes",
  8002. height: math.unit(30e15, "parsecs")
  8003. },
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Odyssey" },
  8008. {
  8009. front: {
  8010. height: math.unit(6, "feet"),
  8011. weight: math.unit(150, "lb"),
  8012. name: "Front",
  8013. image: {
  8014. source: "./media/characters/odyssey/front.svg",
  8015. extra: 1782 / 1582,
  8016. bottom: 0.01
  8017. }
  8018. },
  8019. side: {
  8020. height: math.unit(5.7, "feet"),
  8021. weight: math.unit(140, "lb"),
  8022. name: "Side",
  8023. image: {
  8024. source: "./media/characters/odyssey/side.svg",
  8025. extra: 6462 / 5700
  8026. }
  8027. },
  8028. },
  8029. [
  8030. {
  8031. name: "Normal",
  8032. height: math.unit(5 + 4 / 12, "feet")
  8033. },
  8034. {
  8035. name: "Macro",
  8036. height: math.unit(1, "km")
  8037. },
  8038. {
  8039. name: "Megamacro",
  8040. height: math.unit(3000, "km")
  8041. },
  8042. {
  8043. name: "Gigamacro",
  8044. height: math.unit(1, "AU"),
  8045. default: true
  8046. },
  8047. {
  8048. name: "Omniversal",
  8049. height: math.unit(100e14, "lightyears")
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Mekuto" },
  8055. {
  8056. front: {
  8057. height: math.unit(6, "feet"),
  8058. weight: math.unit(300, "lb"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/mekuto/front.svg",
  8062. extra: 921 / 832,
  8063. bottom: 0.03
  8064. }
  8065. },
  8066. hand: {
  8067. height: math.unit(6 / 10.24, "feet"),
  8068. name: "Hand",
  8069. image: {
  8070. source: "./media/characters/mekuto/hand.svg"
  8071. }
  8072. },
  8073. foot: {
  8074. height: math.unit(6 / 5.05, "feet"),
  8075. name: "Foot",
  8076. image: {
  8077. source: "./media/characters/mekuto/foot.svg"
  8078. }
  8079. },
  8080. },
  8081. [
  8082. {
  8083. name: "Minimicro",
  8084. height: math.unit(0.2, "inches")
  8085. },
  8086. {
  8087. name: "Micro",
  8088. height: math.unit(1.5, "inches")
  8089. },
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(5 + 11 / 12, "feet"),
  8093. default: true
  8094. },
  8095. {
  8096. name: "Minimacro",
  8097. height: math.unit(17 + 9 / 12, "feet")
  8098. },
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(177.5, "feet")
  8102. },
  8103. {
  8104. name: "Megamacro",
  8105. height: math.unit(152, "miles")
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Dafydd Tomos" },
  8111. {
  8112. front: {
  8113. height: math.unit(6.5, "inches"),
  8114. weight: math.unit(13, "oz"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/dafydd-tomos/front.svg",
  8118. extra: 2990 / 2603,
  8119. bottom: 0.03
  8120. }
  8121. },
  8122. },
  8123. [
  8124. {
  8125. name: "Micro",
  8126. height: math.unit(6.5, "inches"),
  8127. default: true
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Splinter" },
  8133. {
  8134. front: {
  8135. height: math.unit(6, "feet"),
  8136. weight: math.unit(150, "lb"),
  8137. name: "Front",
  8138. image: {
  8139. source: "./media/characters/splinter/front.svg",
  8140. extra: 2990 / 2882,
  8141. bottom: 0.04
  8142. }
  8143. },
  8144. back: {
  8145. height: math.unit(6, "feet"),
  8146. weight: math.unit(150, "lb"),
  8147. name: "Back",
  8148. image: {
  8149. source: "./media/characters/splinter/back.svg",
  8150. extra: 2990 / 2882,
  8151. bottom: 0.04
  8152. }
  8153. },
  8154. },
  8155. [
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(6, "feet")
  8159. },
  8160. {
  8161. name: "Macro",
  8162. height: math.unit(230, "meters"),
  8163. default: true
  8164. },
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "SnowGabumon" },
  8169. {
  8170. front: {
  8171. height: math.unit(4 + 10 / 12, "feet"),
  8172. weight: math.unit(480, "lb"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/snow-gabumon/front.svg",
  8176. extra: 1140 / 963,
  8177. bottom: 0.058
  8178. }
  8179. },
  8180. back: {
  8181. height: math.unit(4 + 10 / 12, "feet"),
  8182. weight: math.unit(480, "lb"),
  8183. name: "Back",
  8184. image: {
  8185. source: "./media/characters/snow-gabumon/back.svg",
  8186. extra: 1115 / 962,
  8187. bottom: 0.041
  8188. }
  8189. },
  8190. frontUndresed: {
  8191. height: math.unit(4 + 10 / 12, "feet"),
  8192. weight: math.unit(480, "lb"),
  8193. name: "Front (Undressed)",
  8194. image: {
  8195. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8196. extra: 1061 / 960,
  8197. bottom: 0.045
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Micro",
  8204. height: math.unit(1, "inch")
  8205. },
  8206. {
  8207. name: "Normal",
  8208. height: math.unit(4 + 10 / 12, "feet"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Macro",
  8213. height: math.unit(200, "feet")
  8214. },
  8215. {
  8216. name: "Megamacro",
  8217. height: math.unit(120, "miles")
  8218. },
  8219. {
  8220. name: "Gigamacro",
  8221. height: math.unit(9800, "miles")
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Moody" },
  8227. {
  8228. front: {
  8229. height: math.unit(1.7, "meters"),
  8230. weight: math.unit(140, "lb"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/moody/front.svg",
  8234. extra: 3226 / 3007,
  8235. bottom: 0.087
  8236. }
  8237. },
  8238. },
  8239. [
  8240. {
  8241. name: "Micro",
  8242. height: math.unit(1, "mm")
  8243. },
  8244. {
  8245. name: "Normal",
  8246. height: math.unit(1.7, "meters"),
  8247. default: true
  8248. },
  8249. {
  8250. name: "Macro",
  8251. height: math.unit(80, "meters")
  8252. },
  8253. {
  8254. name: "Macro+",
  8255. height: math.unit(500, "meters")
  8256. },
  8257. ]
  8258. ))
  8259. characterMakers.push(() => makeCharacter(
  8260. { name: "Zyas" },
  8261. {
  8262. front: {
  8263. height: math.unit(6, "feet"),
  8264. weight: math.unit(150, "lb"),
  8265. name: "Front",
  8266. image: {
  8267. source: "./media/characters/zyas/front.svg",
  8268. extra: 1180 / 1120,
  8269. bottom: 0.045
  8270. }
  8271. },
  8272. },
  8273. [
  8274. {
  8275. name: "Normal",
  8276. height: math.unit(10, "feet"),
  8277. default: true
  8278. },
  8279. {
  8280. name: "Macro",
  8281. height: math.unit(500, "feet")
  8282. },
  8283. {
  8284. name: "Megamacro",
  8285. height: math.unit(5, "miles")
  8286. },
  8287. {
  8288. name: "Teramacro",
  8289. height: math.unit(150000, "miles")
  8290. },
  8291. ]
  8292. ))
  8293. characterMakers.push(() => makeCharacter(
  8294. { name: "Cuon" },
  8295. {
  8296. front: {
  8297. height: math.unit(6, "feet"),
  8298. weight: math.unit(150, "lb"),
  8299. name: "Front",
  8300. image: {
  8301. source: "./media/characters/cuon/front.svg",
  8302. extra: 1390 / 1320,
  8303. bottom: 0.008
  8304. }
  8305. },
  8306. },
  8307. [
  8308. {
  8309. name: "Micro",
  8310. height: math.unit(3, "inches")
  8311. },
  8312. {
  8313. name: "Normal",
  8314. height: math.unit(18 + 9 / 12, "feet"),
  8315. default: true
  8316. },
  8317. {
  8318. name: "Macro",
  8319. height: math.unit(360, "feet")
  8320. },
  8321. {
  8322. name: "Megamacro",
  8323. height: math.unit(360, "miles")
  8324. },
  8325. ]
  8326. ))
  8327. characterMakers.push(() => makeCharacter(
  8328. { name: "Nyanuxk" },
  8329. {
  8330. front: {
  8331. height: math.unit(2.4, "meters"),
  8332. weight: math.unit(70, "kg"),
  8333. name: "Front",
  8334. image: {
  8335. source: "./media/characters/nyanuxk/front.svg",
  8336. extra: 1172 / 1084,
  8337. bottom: 0.065
  8338. }
  8339. },
  8340. side: {
  8341. height: math.unit(2.4, "meters"),
  8342. weight: math.unit(70, "kg"),
  8343. name: "Side",
  8344. image: {
  8345. source: "./media/characters/nyanuxk/side.svg",
  8346. extra: 1190 / 1132,
  8347. bottom: 0.007
  8348. }
  8349. },
  8350. back: {
  8351. height: math.unit(2.4, "meters"),
  8352. weight: math.unit(70, "kg"),
  8353. name: "Back",
  8354. image: {
  8355. source: "./media/characters/nyanuxk/back.svg",
  8356. extra: 1200 / 1141,
  8357. bottom: 0.015
  8358. }
  8359. },
  8360. foot: {
  8361. height: math.unit(0.52, "meters"),
  8362. name: "Foot",
  8363. image: {
  8364. source: "./media/characters/nyanuxk/foot.svg"
  8365. }
  8366. },
  8367. },
  8368. [
  8369. {
  8370. name: "Micro",
  8371. height: math.unit(2, "cm")
  8372. },
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(2.4, "meters"),
  8376. default: true
  8377. },
  8378. {
  8379. name: "Smaller Macro",
  8380. height: math.unit(120, "meters")
  8381. },
  8382. {
  8383. name: "Bigger Macro",
  8384. height: math.unit(1.2, "km")
  8385. },
  8386. {
  8387. name: "Megamacro",
  8388. height: math.unit(15, "kilometers")
  8389. },
  8390. {
  8391. name: "Gigamacro",
  8392. height: math.unit(2000, "km")
  8393. },
  8394. {
  8395. name: "Teramacro",
  8396. height: math.unit(500000, "km")
  8397. },
  8398. ]
  8399. ))
  8400. characterMakers.push(() => makeCharacter(
  8401. { name: "Ailbhe" },
  8402. {
  8403. side: {
  8404. height: math.unit(6, "feet"),
  8405. name: "Side",
  8406. image: {
  8407. source: "./media/characters/ailbhe/side.svg",
  8408. extra: 757 / 464,
  8409. bottom: 0.041
  8410. }
  8411. },
  8412. },
  8413. [
  8414. {
  8415. name: "Normal",
  8416. height: math.unit(1.07, "meters"),
  8417. default: true
  8418. },
  8419. ]
  8420. ))
  8421. characterMakers.push(() => makeCharacter(
  8422. { name: "Zevulfius" },
  8423. {
  8424. front: {
  8425. height: math.unit(6, "feet"),
  8426. weight: math.unit(120, "kg"),
  8427. name: "Front",
  8428. image: {
  8429. source: "./media/characters/zevulfius/front.svg",
  8430. extra: 965 / 903
  8431. }
  8432. },
  8433. side: {
  8434. height: math.unit(6, "feet"),
  8435. weight: math.unit(120, "kg"),
  8436. name: "Side",
  8437. image: {
  8438. source: "./media/characters/zevulfius/side.svg",
  8439. extra: 939 / 900
  8440. }
  8441. },
  8442. back: {
  8443. height: math.unit(6, "feet"),
  8444. weight: math.unit(120, "kg"),
  8445. name: "Back",
  8446. image: {
  8447. source: "./media/characters/zevulfius/back.svg",
  8448. extra: 918 / 854,
  8449. bottom: 0.005
  8450. }
  8451. },
  8452. foot: {
  8453. height: math.unit(6 / 3.72, "feet"),
  8454. name: "Foot",
  8455. image: {
  8456. source: "./media/characters/zevulfius/foot.svg"
  8457. }
  8458. },
  8459. },
  8460. [
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(750, "meters")
  8464. },
  8465. {
  8466. name: "Megamacro",
  8467. height: math.unit(20, "km"),
  8468. default: true
  8469. },
  8470. {
  8471. name: "Gigamacro",
  8472. height: math.unit(2000, "km")
  8473. },
  8474. {
  8475. name: "Teramacro",
  8476. height: math.unit(250000, "km")
  8477. },
  8478. ]
  8479. ))
  8480. characterMakers.push(() => makeCharacter(
  8481. { name: "Rikes" },
  8482. {
  8483. front: {
  8484. height: math.unit(100, "feet"),
  8485. weight: math.unit(350, "kg"),
  8486. name: "Front",
  8487. image: {
  8488. source: "./media/characters/rikes/front.svg",
  8489. extra: 1565 / 1483,
  8490. bottom: 0.017
  8491. }
  8492. },
  8493. },
  8494. [
  8495. {
  8496. name: "Macro",
  8497. height: math.unit(100, "feet"),
  8498. default: true
  8499. },
  8500. ]
  8501. ))
  8502. characterMakers.push(() => makeCharacter(
  8503. { name: "Adam Silver-Mane" },
  8504. {
  8505. anthro: {
  8506. height: math.unit(8, "feet"),
  8507. weight: math.unit(120, "kg"),
  8508. name: "Anthro",
  8509. image: {
  8510. source: "./media/characters/adam-silver-mane/anthro.svg",
  8511. extra: 5743 / 5339,
  8512. bottom: 0.07
  8513. }
  8514. },
  8515. taur: {
  8516. height: math.unit(16, "feet"),
  8517. weight: math.unit(1500, "kg"),
  8518. name: "Taur",
  8519. image: {
  8520. source: "./media/characters/adam-silver-mane/taur.svg",
  8521. extra: 1713 / 1571,
  8522. bottom: 0.01
  8523. }
  8524. },
  8525. },
  8526. [
  8527. {
  8528. name: "Normal",
  8529. height: math.unit(8, "feet")
  8530. },
  8531. {
  8532. name: "Minimacro",
  8533. height: math.unit(80, "feet")
  8534. },
  8535. {
  8536. name: "Macro",
  8537. height: math.unit(800, "feet"),
  8538. default: true
  8539. },
  8540. {
  8541. name: "Megamacro",
  8542. height: math.unit(8000, "feet")
  8543. },
  8544. {
  8545. name: "Gigamacro",
  8546. height: math.unit(800, "miles")
  8547. },
  8548. {
  8549. name: "Teramacro",
  8550. height: math.unit(80000, "miles")
  8551. },
  8552. {
  8553. name: "Celestial",
  8554. height: math.unit(8e6, "miles")
  8555. },
  8556. {
  8557. name: "Star Dragon",
  8558. height: math.unit(800000, "parsecs")
  8559. },
  8560. {
  8561. name: "Godly",
  8562. height: math.unit(800, "teraparsecs")
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "Ky'owin" },
  8568. {
  8569. front: {
  8570. height: math.unit(6, "feet"),
  8571. weight: math.unit(150, "lb"),
  8572. name: "Front",
  8573. image: {
  8574. source: "./media/characters/ky'owin/front.svg",
  8575. extra: 3888 / 3068,
  8576. bottom: 0.015
  8577. }
  8578. },
  8579. },
  8580. [
  8581. {
  8582. name: "Normal",
  8583. height: math.unit(6 + 8 / 12, "feet")
  8584. },
  8585. {
  8586. name: "Large",
  8587. height: math.unit(68, "feet")
  8588. },
  8589. {
  8590. name: "Macro",
  8591. height: math.unit(132, "feet")
  8592. },
  8593. {
  8594. name: "Macro+",
  8595. height: math.unit(340, "feet")
  8596. },
  8597. {
  8598. name: "Macro++",
  8599. height: math.unit(680, "feet"),
  8600. default: true
  8601. },
  8602. {
  8603. name: "Megamacro",
  8604. height: math.unit(1, "mile")
  8605. },
  8606. {
  8607. name: "Megamacro+",
  8608. height: math.unit(10, "miles")
  8609. },
  8610. ]
  8611. ))
  8612. characterMakers.push(() => makeCharacter(
  8613. { name: "Mal" },
  8614. {
  8615. front: {
  8616. height: math.unit(4, "feet"),
  8617. weight: math.unit(50, "lb"),
  8618. name: "Front",
  8619. image: {
  8620. source: "./media/characters/mal/front.svg",
  8621. extra: 785 / 724,
  8622. bottom: 0.07
  8623. }
  8624. },
  8625. },
  8626. [
  8627. {
  8628. name: "Micro",
  8629. height: math.unit(4, "inches")
  8630. },
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(4, "feet"),
  8634. default: true
  8635. },
  8636. {
  8637. name: "Macro",
  8638. height: math.unit(200, "feet")
  8639. },
  8640. ]
  8641. ))
  8642. characterMakers.push(() => makeCharacter(
  8643. { name: "Jordan Deware" },
  8644. {
  8645. front: {
  8646. height: math.unit(6, "feet"),
  8647. weight: math.unit(150, "lb"),
  8648. name: "Front",
  8649. image: {
  8650. source: "./media/characters/jordan-deware/front.svg",
  8651. extra: 1191 / 1012
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Nano",
  8658. height: math.unit(0.01, "mm")
  8659. },
  8660. {
  8661. name: "Minimicro",
  8662. height: math.unit(1, "mm")
  8663. },
  8664. {
  8665. name: "Micro",
  8666. height: math.unit(0.5, "inches")
  8667. },
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(4, "feet"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Minimacro",
  8675. height: math.unit(40, "meters")
  8676. },
  8677. {
  8678. name: "Small Macro",
  8679. height: math.unit(400, "meters")
  8680. },
  8681. {
  8682. name: "Macro",
  8683. height: math.unit(4, "miles")
  8684. },
  8685. {
  8686. name: "Megamacro",
  8687. height: math.unit(40, "miles")
  8688. },
  8689. {
  8690. name: "Megamacro+",
  8691. height: math.unit(400, "miles")
  8692. },
  8693. {
  8694. name: "Gigamacro",
  8695. height: math.unit(400000, "miles")
  8696. },
  8697. ]
  8698. ))
  8699. characterMakers.push(() => makeCharacter(
  8700. { name: "Kimiko" },
  8701. {
  8702. side: {
  8703. height: math.unit(6, "feet"),
  8704. weight: math.unit(150, "lb"),
  8705. name: "Side",
  8706. image: {
  8707. source: "./media/characters/kimiko/side.svg",
  8708. extra: 600 / 358
  8709. }
  8710. },
  8711. },
  8712. [
  8713. {
  8714. name: "Normal",
  8715. height: math.unit(15, "feet"),
  8716. default: true
  8717. },
  8718. {
  8719. name: "Macro",
  8720. height: math.unit(220, "feet")
  8721. },
  8722. {
  8723. name: "Macro+",
  8724. height: math.unit(1450, "feet")
  8725. },
  8726. {
  8727. name: "Megamacro",
  8728. height: math.unit(11500, "feet")
  8729. },
  8730. {
  8731. name: "Gigamacro",
  8732. height: math.unit(9500, "miles")
  8733. },
  8734. {
  8735. name: "Teramacro",
  8736. height: math.unit(2208005005, "miles")
  8737. },
  8738. {
  8739. name: "Examacro",
  8740. height: math.unit(2750, "parsecs")
  8741. },
  8742. {
  8743. name: "Zettamacro",
  8744. height: math.unit(101500, "parsecs")
  8745. },
  8746. ]
  8747. ))
  8748. characterMakers.push(() => makeCharacter(
  8749. { name: "Andrew Sleepy" },
  8750. {
  8751. front: {
  8752. height: math.unit(6, "feet"),
  8753. weight: math.unit(70, "kg"),
  8754. name: "Front",
  8755. image: {
  8756. source: "./media/characters/andrew-sleepy/front.svg"
  8757. }
  8758. },
  8759. side: {
  8760. height: math.unit(6, "feet"),
  8761. weight: math.unit(70, "kg"),
  8762. name: "Side",
  8763. image: {
  8764. source: "./media/characters/andrew-sleepy/side.svg"
  8765. }
  8766. },
  8767. },
  8768. [
  8769. {
  8770. name: "Micro",
  8771. height: math.unit(1, "mm"),
  8772. default: true
  8773. },
  8774. ]
  8775. ))
  8776. characterMakers.push(() => makeCharacter(
  8777. { name: "Judio" },
  8778. {
  8779. front: {
  8780. height: math.unit(6, "feet"),
  8781. weight: math.unit(150, "lb"),
  8782. name: "Front",
  8783. image: {
  8784. source: "./media/characters/judio/front.svg",
  8785. extra: 1258 / 1110
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Normal",
  8792. height: math.unit(5 + 6 / 12, "feet")
  8793. },
  8794. {
  8795. name: "Macro",
  8796. height: math.unit(1000, "feet"),
  8797. default: true
  8798. },
  8799. {
  8800. name: "Megamacro",
  8801. height: math.unit(10, "miles")
  8802. },
  8803. ]
  8804. ))
  8805. characterMakers.push(() => makeCharacter(
  8806. { name: "Nomaxice" },
  8807. {
  8808. front: {
  8809. height: math.unit(6, "feet"),
  8810. weight: math.unit(68, "kg"),
  8811. name: "Front",
  8812. image: {
  8813. source: "./media/characters/nomaxice/front.svg",
  8814. extra: 1498 / 1073,
  8815. bottom: 0.075
  8816. }
  8817. },
  8818. foot: {
  8819. height: math.unit(1.1, "feet"),
  8820. name: "Foot",
  8821. image: {
  8822. source: "./media/characters/nomaxice/foot.svg"
  8823. }
  8824. },
  8825. },
  8826. [
  8827. {
  8828. name: "Micro",
  8829. height: math.unit(8, "cm")
  8830. },
  8831. {
  8832. name: "Norm",
  8833. height: math.unit(1.82, "m")
  8834. },
  8835. {
  8836. name: "Norm+",
  8837. height: math.unit(8.8, "feet")
  8838. },
  8839. {
  8840. name: "Big",
  8841. height: math.unit(8, "meters"),
  8842. default: true
  8843. },
  8844. {
  8845. name: "Macro",
  8846. height: math.unit(18, "meters")
  8847. },
  8848. {
  8849. name: "Macro+",
  8850. height: math.unit(88, "meters")
  8851. },
  8852. ]
  8853. ))
  8854. characterMakers.push(() => makeCharacter(
  8855. { name: "Dydros" },
  8856. {
  8857. front: {
  8858. height: math.unit(12, "feet"),
  8859. weight: math.unit(1.5, "tons"),
  8860. name: "Front",
  8861. image: {
  8862. source: "./media/characters/dydros/front.svg",
  8863. extra: 863 / 800,
  8864. bottom: 0.015
  8865. }
  8866. },
  8867. back: {
  8868. height: math.unit(12, "feet"),
  8869. weight: math.unit(1.5, "tons"),
  8870. name: "Back",
  8871. image: {
  8872. source: "./media/characters/dydros/back.svg",
  8873. extra: 900 / 843,
  8874. bottom: 0.005
  8875. }
  8876. },
  8877. },
  8878. [
  8879. {
  8880. name: "Normal",
  8881. height: math.unit(12, "feet"),
  8882. default: true
  8883. },
  8884. ]
  8885. ))
  8886. characterMakers.push(() => makeCharacter(
  8887. { name: "Riggi" },
  8888. {
  8889. front: {
  8890. height: math.unit(6, "feet"),
  8891. weight: math.unit(100, "kg"),
  8892. name: "Front",
  8893. image: {
  8894. source: "./media/characters/riggi/front.svg",
  8895. extra: 5787 / 5303
  8896. }
  8897. },
  8898. hyper: {
  8899. height: math.unit(6 * 5 / 3, "feet"),
  8900. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8901. name: "Hyper",
  8902. image: {
  8903. source: "./media/characters/riggi/hyper.svg",
  8904. extra: 3595 / 3485
  8905. }
  8906. },
  8907. },
  8908. [
  8909. {
  8910. name: "Small Macro",
  8911. height: math.unit(50, "feet")
  8912. },
  8913. {
  8914. name: "Default",
  8915. height: math.unit(200, "feet"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Loom",
  8920. height: math.unit(10000, "feet")
  8921. },
  8922. {
  8923. name: "Cruising Altitude",
  8924. height: math.unit(30000, "feet")
  8925. },
  8926. {
  8927. name: "Megamacro",
  8928. height: math.unit(100, "miles")
  8929. },
  8930. {
  8931. name: "Continent Sized",
  8932. height: math.unit(2800, "miles")
  8933. },
  8934. {
  8935. name: "Earth Sized",
  8936. height: math.unit(8000, "miles")
  8937. },
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Alexi" },
  8942. {
  8943. front: {
  8944. height: math.unit(6, "feet"),
  8945. weight: math.unit(250, "lb"),
  8946. name: "Front",
  8947. image: {
  8948. source: "./media/characters/alexi/front.svg",
  8949. extra: 3483 / 3291,
  8950. bottom: 0.04
  8951. }
  8952. },
  8953. back: {
  8954. height: math.unit(6, "feet"),
  8955. weight: math.unit(250, "lb"),
  8956. name: "Back",
  8957. image: {
  8958. source: "./media/characters/alexi/back.svg",
  8959. extra: 3533 / 3356,
  8960. bottom: 0.021
  8961. }
  8962. },
  8963. frontTransforming: {
  8964. height: math.unit(8.58, "feet"),
  8965. weight: math.unit(1300, "lb"),
  8966. name: "Transforming",
  8967. image: {
  8968. source: "./media/characters/alexi/front-transforming.svg",
  8969. extra: 437 / 409,
  8970. bottom: 19/458.66
  8971. }
  8972. },
  8973. frontTransformed: {
  8974. height: math.unit(12.5, "feet"),
  8975. weight: math.unit(4000, "lb"),
  8976. name: "Transformed",
  8977. image: {
  8978. source: "./media/characters/alexi/front-transformed.svg",
  8979. extra: 639 / 614,
  8980. bottom: 30.55/671
  8981. }
  8982. },
  8983. },
  8984. [
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(3, "meters"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Minimacro",
  8992. height: math.unit(30, "meters")
  8993. },
  8994. {
  8995. name: "Macro",
  8996. height: math.unit(500, "meters")
  8997. },
  8998. {
  8999. name: "Megamacro",
  9000. height: math.unit(9000, "km")
  9001. },
  9002. {
  9003. name: "Teramacro",
  9004. height: math.unit(384000, "km")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Kayroo" },
  9010. {
  9011. front: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(150, "lb"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/kayroo/front.svg",
  9017. extra: 1153 / 1038,
  9018. bottom: 0.06
  9019. }
  9020. },
  9021. foot: {
  9022. height: math.unit(6, "feet"),
  9023. weight: math.unit(150, "lb"),
  9024. name: "Foot",
  9025. image: {
  9026. source: "./media/characters/kayroo/foot.svg"
  9027. }
  9028. },
  9029. },
  9030. [
  9031. {
  9032. name: "Normal",
  9033. height: math.unit(8, "feet"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Minimacro",
  9038. height: math.unit(250, "feet")
  9039. },
  9040. {
  9041. name: "Macro",
  9042. height: math.unit(2800, "feet")
  9043. },
  9044. {
  9045. name: "Megamacro",
  9046. height: math.unit(5200, "feet")
  9047. },
  9048. {
  9049. name: "Gigamacro",
  9050. height: math.unit(27000, "feet")
  9051. },
  9052. {
  9053. name: "Omega",
  9054. height: math.unit(45000, "feet")
  9055. },
  9056. ]
  9057. ))
  9058. characterMakers.push(() => makeCharacter(
  9059. { name: "Rhys" },
  9060. {
  9061. front: {
  9062. height: math.unit(18, "feet"),
  9063. weight: math.unit(5800, "lb"),
  9064. name: "Front",
  9065. image: {
  9066. source: "./media/characters/rhys/front.svg",
  9067. extra: 3386 / 3090,
  9068. bottom: 0.07
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(18, "feet"),
  9076. default: true
  9077. },
  9078. {
  9079. name: "Working Size",
  9080. height: math.unit(200, "feet")
  9081. },
  9082. {
  9083. name: "Demolition Size",
  9084. height: math.unit(2000, "feet")
  9085. },
  9086. {
  9087. name: "Maximum Licensed Size",
  9088. height: math.unit(5, "miles")
  9089. },
  9090. {
  9091. name: "Maximum Observed Size",
  9092. height: math.unit(10, "yottameters")
  9093. },
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Toto" },
  9098. {
  9099. front: {
  9100. height: math.unit(6, "feet"),
  9101. weight: math.unit(250, "lb"),
  9102. name: "Front",
  9103. image: {
  9104. source: "./media/characters/toto/front.svg",
  9105. extra: 527 / 479,
  9106. bottom: 0.05
  9107. }
  9108. },
  9109. },
  9110. [
  9111. {
  9112. name: "Micro",
  9113. height: math.unit(3, "feet")
  9114. },
  9115. {
  9116. name: "Normal",
  9117. height: math.unit(10, "feet")
  9118. },
  9119. {
  9120. name: "Macro",
  9121. height: math.unit(150, "feet"),
  9122. default: true
  9123. },
  9124. {
  9125. name: "Megamacro",
  9126. height: math.unit(1200, "feet")
  9127. },
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "King" },
  9132. {
  9133. back: {
  9134. height: math.unit(6, "feet"),
  9135. weight: math.unit(150, "lb"),
  9136. name: "Back",
  9137. image: {
  9138. source: "./media/characters/king/back.svg"
  9139. }
  9140. },
  9141. },
  9142. [
  9143. {
  9144. name: "Micro",
  9145. height: math.unit(2, "inches")
  9146. },
  9147. {
  9148. name: "Normal",
  9149. height: math.unit(8, "feet")
  9150. },
  9151. {
  9152. name: "Macro",
  9153. height: math.unit(200, "feet"),
  9154. default: true
  9155. },
  9156. {
  9157. name: "Megamacro",
  9158. height: math.unit(50, "miles")
  9159. },
  9160. ]
  9161. ))
  9162. characterMakers.push(() => makeCharacter(
  9163. { name: "Cordite" },
  9164. {
  9165. anthro: {
  9166. height: math.unit(6 + 5 / 12, "feet"),
  9167. weight: math.unit(280, "lb"),
  9168. name: "Anthro",
  9169. image: {
  9170. source: "./media/characters/cordite/anthro.svg",
  9171. extra: 1986 / 1905,
  9172. bottom: 0.025
  9173. }
  9174. },
  9175. feral: {
  9176. height: math.unit(2, "feet"),
  9177. weight: math.unit(90, "lb"),
  9178. name: "Feral",
  9179. image: {
  9180. source: "./media/characters/cordite/feral.svg",
  9181. extra: 1260 / 755,
  9182. bottom: 0.05
  9183. }
  9184. },
  9185. },
  9186. [
  9187. {
  9188. name: "Normal",
  9189. height: math.unit(6 + 5 / 12, "feet"),
  9190. default: true
  9191. },
  9192. ]
  9193. ))
  9194. characterMakers.push(() => makeCharacter(
  9195. { name: "Pianostrong" },
  9196. {
  9197. front: {
  9198. height: math.unit(6, "feet"),
  9199. weight: math.unit(150, "lb"),
  9200. name: "Front",
  9201. image: {
  9202. source: "./media/characters/pianostrong/front.svg",
  9203. extra: 6577 / 6254,
  9204. bottom: 0.02
  9205. }
  9206. },
  9207. side: {
  9208. height: math.unit(6, "feet"),
  9209. weight: math.unit(150, "lb"),
  9210. name: "Side",
  9211. image: {
  9212. source: "./media/characters/pianostrong/side.svg",
  9213. extra: 6106 / 5730
  9214. }
  9215. },
  9216. back: {
  9217. height: math.unit(6, "feet"),
  9218. weight: math.unit(150, "lb"),
  9219. name: "Back",
  9220. image: {
  9221. source: "./media/characters/pianostrong/back.svg",
  9222. extra: 6085 / 5733,
  9223. bottom: 0.01
  9224. }
  9225. },
  9226. },
  9227. [
  9228. {
  9229. name: "Macro",
  9230. height: math.unit(100, "feet")
  9231. },
  9232. {
  9233. name: "Macro+",
  9234. height: math.unit(300, "feet"),
  9235. default: true
  9236. },
  9237. {
  9238. name: "Macro++",
  9239. height: math.unit(1000, "feet")
  9240. },
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Kona" },
  9245. {
  9246. front: {
  9247. height: math.unit(6, "feet"),
  9248. weight: math.unit(150, "lb"),
  9249. name: "Front",
  9250. image: {
  9251. source: "./media/characters/kona/front.svg",
  9252. extra: 2960 / 2629,
  9253. bottom: 0.005
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Normal",
  9260. height: math.unit(11 + 8 / 12, "feet")
  9261. },
  9262. {
  9263. name: "Macro",
  9264. height: math.unit(850, "feet"),
  9265. default: true
  9266. },
  9267. {
  9268. name: "Macro+",
  9269. height: math.unit(1.5, "km"),
  9270. default: true
  9271. },
  9272. {
  9273. name: "Megamacro",
  9274. height: math.unit(80, "miles")
  9275. },
  9276. {
  9277. name: "Gigamacro",
  9278. height: math.unit(3500, "miles")
  9279. },
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Levi" },
  9284. {
  9285. side: {
  9286. height: math.unit(1.9, "meters"),
  9287. weight: math.unit(326, "kg"),
  9288. name: "Side",
  9289. image: {
  9290. source: "./media/characters/levi/side.svg",
  9291. extra: 1704 / 1334,
  9292. bottom: 0.02
  9293. }
  9294. },
  9295. },
  9296. [
  9297. {
  9298. name: "Normal",
  9299. height: math.unit(1.9, "meters"),
  9300. default: true
  9301. },
  9302. {
  9303. name: "Macro",
  9304. height: math.unit(20, "meters")
  9305. },
  9306. {
  9307. name: "Macro+",
  9308. height: math.unit(200, "meters")
  9309. },
  9310. {
  9311. name: "Megamacro",
  9312. height: math.unit(2, "km")
  9313. },
  9314. {
  9315. name: "Megamacro+",
  9316. height: math.unit(20, "km")
  9317. },
  9318. {
  9319. name: "Gigamacro",
  9320. height: math.unit(2500, "km")
  9321. },
  9322. {
  9323. name: "Gigamacro+",
  9324. height: math.unit(120000, "km")
  9325. },
  9326. {
  9327. name: "Teramacro",
  9328. height: math.unit(7.77e6, "km")
  9329. },
  9330. ]
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "BMC" },
  9334. {
  9335. front: {
  9336. height: math.unit(6 + 4 / 12, "feet"),
  9337. weight: math.unit(188, "lb"),
  9338. name: "Front",
  9339. image: {
  9340. source: "./media/characters/bmc/front.svg",
  9341. extra: 1067 / 1022,
  9342. bottom: 0.047
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Human-sized",
  9349. height: math.unit(6 + 4 / 12, "feet")
  9350. },
  9351. {
  9352. name: "Small",
  9353. height: math.unit(250, "feet")
  9354. },
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(1250, "feet"),
  9358. default: true
  9359. },
  9360. {
  9361. name: "Good Day",
  9362. height: math.unit(88, "miles")
  9363. },
  9364. {
  9365. name: "Largest Measured Size",
  9366. height: math.unit(11.2e6, "lightyears")
  9367. },
  9368. ]
  9369. ))
  9370. characterMakers.push(() => makeCharacter(
  9371. { name: "Sven the Kaiju" },
  9372. {
  9373. front: {
  9374. height: math.unit(20, "feet"),
  9375. weight: math.unit(2016, "kg"),
  9376. name: "Front",
  9377. image: {
  9378. source: "./media/characters/sven-the-kaiju/front.svg",
  9379. extra: 1479 / 1449,
  9380. bottom: 0.05
  9381. }
  9382. },
  9383. },
  9384. [
  9385. {
  9386. name: "Fairy",
  9387. height: math.unit(6, "inches")
  9388. },
  9389. {
  9390. name: "Normal",
  9391. height: math.unit(20, "feet"),
  9392. default: true
  9393. },
  9394. {
  9395. name: "Rampage",
  9396. height: math.unit(200, "feet")
  9397. },
  9398. {
  9399. name: "Archfey Forest Guardian",
  9400. height: math.unit(1, "mile")
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Marik" },
  9406. {
  9407. front: {
  9408. height: math.unit(4, "meters"),
  9409. weight: math.unit(2, "tons"),
  9410. name: "Front",
  9411. image: {
  9412. source: "./media/characters/marik/front.svg",
  9413. extra: 1057 / 1003,
  9414. bottom: 0.08
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(4, "meters"),
  9422. default: true
  9423. },
  9424. {
  9425. name: "Macro",
  9426. height: math.unit(20, "meters")
  9427. },
  9428. {
  9429. name: "Megamacro",
  9430. height: math.unit(50, "km")
  9431. },
  9432. {
  9433. name: "Gigamacro",
  9434. height: math.unit(100, "km")
  9435. },
  9436. {
  9437. name: "Alpha Macro",
  9438. height: math.unit(7.88e7, "yottameters")
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Mel" },
  9444. {
  9445. front: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(110, "lb"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/mel/front.svg",
  9451. extra: 736 / 617,
  9452. bottom: 0.017
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Pico",
  9459. height: math.unit(3, "pm")
  9460. },
  9461. {
  9462. name: "Nano",
  9463. height: math.unit(3, "nm")
  9464. },
  9465. {
  9466. name: "Micro",
  9467. height: math.unit(0.3, "mm"),
  9468. default: true
  9469. },
  9470. {
  9471. name: "Micro+",
  9472. height: math.unit(3, "mm")
  9473. },
  9474. {
  9475. name: "Normal",
  9476. height: math.unit(5 + 10.5 / 12, "feet")
  9477. },
  9478. ]
  9479. ))
  9480. characterMakers.push(() => makeCharacter(
  9481. { name: "Lykonous" },
  9482. {
  9483. kaiju: {
  9484. height: math.unit(1.75, "meters"),
  9485. weight: math.unit(55, "kg"),
  9486. name: "Kaiju",
  9487. image: {
  9488. source: "./media/characters/lykonous/kaiju.svg",
  9489. extra: 1055 / 946,
  9490. bottom: 0.135
  9491. }
  9492. },
  9493. },
  9494. [
  9495. {
  9496. name: "Normal",
  9497. height: math.unit(2.5, "meters"),
  9498. default: true
  9499. },
  9500. {
  9501. name: "Kaiju Dragon",
  9502. height: math.unit(60, "meters")
  9503. },
  9504. {
  9505. name: "Mega Kaiju",
  9506. height: math.unit(120, "km")
  9507. },
  9508. {
  9509. name: "Giga Kaiju",
  9510. height: math.unit(200, "megameters")
  9511. },
  9512. {
  9513. name: "Terra Kaiju",
  9514. height: math.unit(400, "gigameters")
  9515. },
  9516. {
  9517. name: "Kaiju Dragon God",
  9518. height: math.unit(13000, "exaparsecs")
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Blü" },
  9524. {
  9525. front: {
  9526. height: math.unit(6, "feet"),
  9527. weight: math.unit(150, "lb"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/blü/front.svg",
  9531. extra: 1883 / 1564,
  9532. bottom: 0.031
  9533. }
  9534. },
  9535. },
  9536. [
  9537. {
  9538. name: "Normal",
  9539. height: math.unit(13, "feet"),
  9540. default: true
  9541. },
  9542. {
  9543. name: "Big Boi",
  9544. height: math.unit(150, "meters")
  9545. },
  9546. {
  9547. name: "Mini Stomper",
  9548. height: math.unit(300, "meters")
  9549. },
  9550. {
  9551. name: "Macro",
  9552. height: math.unit(1000, "meters")
  9553. },
  9554. {
  9555. name: "Megamacro",
  9556. height: math.unit(11000, "meters")
  9557. },
  9558. {
  9559. name: "Gigamacro",
  9560. height: math.unit(11000, "km")
  9561. },
  9562. {
  9563. name: "Teramacro",
  9564. height: math.unit(420000, "km")
  9565. },
  9566. {
  9567. name: "Examacro",
  9568. height: math.unit(120, "parsecs")
  9569. },
  9570. {
  9571. name: "God Tho",
  9572. height: math.unit(98000000000, "parsecs")
  9573. },
  9574. ]
  9575. ))
  9576. characterMakers.push(() => makeCharacter(
  9577. { name: "Scales" },
  9578. {
  9579. taurFront: {
  9580. height: math.unit(6, "feet"),
  9581. weight: math.unit(200, "lb"),
  9582. name: "Taur (Front)",
  9583. image: {
  9584. source: "./media/characters/scales/taur-front.svg",
  9585. extra: 1,
  9586. bottom: 0.05
  9587. }
  9588. },
  9589. taurBack: {
  9590. height: math.unit(6, "feet"),
  9591. weight: math.unit(200, "lb"),
  9592. name: "Taur (Back)",
  9593. image: {
  9594. source: "./media/characters/scales/taur-back.svg",
  9595. extra: 1,
  9596. bottom: 0.08
  9597. }
  9598. },
  9599. anthro: {
  9600. height: math.unit(6 * 7 / 12, "feet"),
  9601. weight: math.unit(100, "lb"),
  9602. name: "Anthro",
  9603. image: {
  9604. source: "./media/characters/scales/anthro.svg",
  9605. extra: 1,
  9606. bottom: 0.06
  9607. }
  9608. },
  9609. },
  9610. [
  9611. {
  9612. name: "Normal",
  9613. height: math.unit(12, "feet"),
  9614. default: true
  9615. },
  9616. ]
  9617. ))
  9618. characterMakers.push(() => makeCharacter(
  9619. { name: "Koragos" },
  9620. {
  9621. front: {
  9622. height: math.unit(6, "feet"),
  9623. weight: math.unit(150, "lb"),
  9624. name: "Front",
  9625. image: {
  9626. source: "./media/characters/koragos/front.svg",
  9627. extra: 841 / 794,
  9628. bottom: 0.035
  9629. }
  9630. },
  9631. back: {
  9632. height: math.unit(6, "feet"),
  9633. weight: math.unit(150, "lb"),
  9634. name: "Back",
  9635. image: {
  9636. source: "./media/characters/koragos/back.svg",
  9637. extra: 841 / 810,
  9638. bottom: 0.022
  9639. }
  9640. },
  9641. },
  9642. [
  9643. {
  9644. name: "Normal",
  9645. height: math.unit(6 + 11 / 12, "feet"),
  9646. default: true
  9647. },
  9648. {
  9649. name: "Macro",
  9650. height: math.unit(490, "feet")
  9651. },
  9652. {
  9653. name: "Megamacro",
  9654. height: math.unit(10, "miles")
  9655. },
  9656. {
  9657. name: "Gigamacro",
  9658. height: math.unit(50, "miles")
  9659. },
  9660. ]
  9661. ))
  9662. characterMakers.push(() => makeCharacter(
  9663. { name: "Xylrem" },
  9664. {
  9665. front: {
  9666. height: math.unit(6, "feet"),
  9667. weight: math.unit(250, "lb"),
  9668. name: "Front",
  9669. image: {
  9670. source: "./media/characters/xylrem/front.svg",
  9671. extra: 3323 / 3050,
  9672. bottom: 0.065
  9673. }
  9674. },
  9675. },
  9676. [
  9677. {
  9678. name: "Micro",
  9679. height: math.unit(4, "feet")
  9680. },
  9681. {
  9682. name: "Normal",
  9683. height: math.unit(16, "feet"),
  9684. default: true
  9685. },
  9686. {
  9687. name: "Macro",
  9688. height: math.unit(2720, "feet")
  9689. },
  9690. {
  9691. name: "Megamacro",
  9692. height: math.unit(25000, "miles")
  9693. },
  9694. ]
  9695. ))
  9696. characterMakers.push(() => makeCharacter(
  9697. { name: "Ikideru" },
  9698. {
  9699. front: {
  9700. height: math.unit(8, "feet"),
  9701. weight: math.unit(250, "kg"),
  9702. name: "Front",
  9703. image: {
  9704. source: "./media/characters/ikideru/front.svg",
  9705. extra: 930 / 870,
  9706. bottom: 0.087
  9707. }
  9708. },
  9709. back: {
  9710. height: math.unit(8, "feet"),
  9711. weight: math.unit(250, "kg"),
  9712. name: "Back",
  9713. image: {
  9714. source: "./media/characters/ikideru/back.svg",
  9715. extra: 919 / 852,
  9716. bottom: 0.055
  9717. }
  9718. },
  9719. },
  9720. [
  9721. {
  9722. name: "Rare",
  9723. height: math.unit(8, "feet"),
  9724. default: true
  9725. },
  9726. {
  9727. name: "Playful Loom",
  9728. height: math.unit(80, "feet")
  9729. },
  9730. {
  9731. name: "City Leaner",
  9732. height: math.unit(230, "feet")
  9733. },
  9734. {
  9735. name: "Megamacro",
  9736. height: math.unit(2500, "feet")
  9737. },
  9738. {
  9739. name: "Gigamacro",
  9740. height: math.unit(26400, "feet")
  9741. },
  9742. {
  9743. name: "Tectonic Shifter",
  9744. height: math.unit(1.7, "megameters")
  9745. },
  9746. {
  9747. name: "Planet Carer",
  9748. height: math.unit(21, "megameters")
  9749. },
  9750. {
  9751. name: "God",
  9752. height: math.unit(11157.22, "parsecs")
  9753. },
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Neo" },
  9758. {
  9759. front: {
  9760. height: math.unit(6, "feet"),
  9761. weight: math.unit(120, "lb"),
  9762. name: "Front",
  9763. image: {
  9764. source: "./media/characters/neo/front.svg"
  9765. }
  9766. },
  9767. },
  9768. [
  9769. {
  9770. name: "Micro",
  9771. height: math.unit(2, "inches"),
  9772. default: true
  9773. },
  9774. {
  9775. name: "Human Size",
  9776. height: math.unit(5 + 8 / 12, "feet")
  9777. },
  9778. ]
  9779. ))
  9780. characterMakers.push(() => makeCharacter(
  9781. { name: "Chauncey (Chantz)" },
  9782. {
  9783. front: {
  9784. height: math.unit(13 + 10 / 12, "feet"),
  9785. weight: math.unit(5320, "lb"),
  9786. name: "Front",
  9787. image: {
  9788. source: "./media/characters/chauncey-chantz/front.svg",
  9789. extra: 1587 / 1435,
  9790. bottom: 0.02
  9791. }
  9792. },
  9793. },
  9794. [
  9795. {
  9796. name: "Normal",
  9797. height: math.unit(13 + 10 / 12, "feet"),
  9798. default: true
  9799. },
  9800. {
  9801. name: "Macro",
  9802. height: math.unit(45, "feet")
  9803. },
  9804. {
  9805. name: "Megamacro",
  9806. height: math.unit(250, "miles")
  9807. },
  9808. {
  9809. name: "Planetary",
  9810. height: math.unit(10000, "miles")
  9811. },
  9812. {
  9813. name: "Galactic",
  9814. height: math.unit(40000, "parsecs")
  9815. },
  9816. {
  9817. name: "Universal",
  9818. height: math.unit(1, "yottameter")
  9819. },
  9820. ]
  9821. ))
  9822. characterMakers.push(() => makeCharacter(
  9823. { name: "Epifox" },
  9824. {
  9825. front: {
  9826. height: math.unit(6, "feet"),
  9827. weight: math.unit(150, "lb"),
  9828. name: "Front",
  9829. image: {
  9830. source: "./media/characters/epifox/front.svg",
  9831. extra: 1,
  9832. bottom: 0.075
  9833. }
  9834. },
  9835. },
  9836. [
  9837. {
  9838. name: "Micro",
  9839. height: math.unit(6, "inches")
  9840. },
  9841. {
  9842. name: "Normal",
  9843. height: math.unit(12, "feet"),
  9844. default: true
  9845. },
  9846. {
  9847. name: "Macro",
  9848. height: math.unit(3810, "feet")
  9849. },
  9850. {
  9851. name: "Megamacro",
  9852. height: math.unit(500, "miles")
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Colin T." },
  9858. {
  9859. front: {
  9860. height: math.unit(1.8796, "m"),
  9861. weight: math.unit(230, "lb"),
  9862. name: "Front",
  9863. image: {
  9864. source: "./media/characters/colin-t/front.svg",
  9865. extra: 1272 / 1193,
  9866. bottom: 0.07
  9867. }
  9868. },
  9869. },
  9870. [
  9871. {
  9872. name: "Micro",
  9873. height: math.unit(0.571, "meters")
  9874. },
  9875. {
  9876. name: "Normal",
  9877. height: math.unit(1.8796, "meters"),
  9878. default: true
  9879. },
  9880. {
  9881. name: "Tall",
  9882. height: math.unit(4, "meters")
  9883. },
  9884. {
  9885. name: "Macro",
  9886. height: math.unit(67.241, "meters")
  9887. },
  9888. {
  9889. name: "Megamacro",
  9890. height: math.unit(371.856, "meters")
  9891. },
  9892. {
  9893. name: "Planetary",
  9894. height: math.unit(12631.5689, "km")
  9895. },
  9896. ]
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Matvei" },
  9900. {
  9901. front: {
  9902. height: math.unit(1.85, "meters"),
  9903. weight: math.unit(80, "kg"),
  9904. name: "Front",
  9905. image: {
  9906. source: "./media/characters/matvei/front.svg",
  9907. extra: 614 / 594,
  9908. bottom: 0.01
  9909. }
  9910. },
  9911. },
  9912. [
  9913. {
  9914. name: "Normal",
  9915. height: math.unit(1.85, "meters"),
  9916. default: true
  9917. },
  9918. ]
  9919. ))
  9920. characterMakers.push(() => makeCharacter(
  9921. { name: "Quincy" },
  9922. {
  9923. front: {
  9924. height: math.unit(5 + 9 / 12, "feet"),
  9925. weight: math.unit(70, "lb"),
  9926. name: "Front",
  9927. image: {
  9928. source: "./media/characters/quincy/front.svg",
  9929. extra: 3041 / 2751
  9930. }
  9931. },
  9932. back: {
  9933. height: math.unit(5 + 9 / 12, "feet"),
  9934. weight: math.unit(70, "lb"),
  9935. name: "Back",
  9936. image: {
  9937. source: "./media/characters/quincy/back.svg",
  9938. extra: 3041 / 2751
  9939. }
  9940. },
  9941. flying: {
  9942. height: math.unit(5 + 4 / 12, "feet"),
  9943. weight: math.unit(70, "lb"),
  9944. name: "Flying",
  9945. image: {
  9946. source: "./media/characters/quincy/flying.svg",
  9947. extra: 1044 / 930
  9948. }
  9949. },
  9950. },
  9951. [
  9952. {
  9953. name: "Micro",
  9954. height: math.unit(3, "cm")
  9955. },
  9956. {
  9957. name: "Normal",
  9958. height: math.unit(5 + 9 / 12, "feet")
  9959. },
  9960. {
  9961. name: "Macro",
  9962. height: math.unit(200, "meters"),
  9963. default: true
  9964. },
  9965. {
  9966. name: "Megamacro",
  9967. height: math.unit(1000, "meters")
  9968. },
  9969. ]
  9970. ))
  9971. characterMakers.push(() => makeCharacter(
  9972. { name: "Vanrel" },
  9973. {
  9974. front: {
  9975. height: math.unit(4 + 7 / 12, "feet"),
  9976. weight: math.unit(150, "lb"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/vanrel/front.svg",
  9980. extra: 1,
  9981. bottom: 0.02
  9982. }
  9983. },
  9984. elemental: {
  9985. height: math.unit(3, "feet"),
  9986. weight: math.unit(150, "lb"),
  9987. name: "Elemental",
  9988. image: {
  9989. source: "./media/characters/vanrel/elemental.svg",
  9990. extra: 192.3/162.8,
  9991. bottom: 1.79/194.17
  9992. }
  9993. },
  9994. side: {
  9995. height: math.unit(4 + 7 / 12, "feet"),
  9996. weight: math.unit(150, "lb"),
  9997. name: "Side",
  9998. image: {
  9999. source: "./media/characters/vanrel/side.svg",
  10000. extra: 1,
  10001. bottom: 0.025
  10002. }
  10003. },
  10004. tome: {
  10005. height: math.unit(1.35, "feet"),
  10006. weight: math.unit(10, "lb"),
  10007. name: "Vanrel's Tome",
  10008. rename: true,
  10009. image: {
  10010. source: "./media/characters/vanrel/tome.svg"
  10011. }
  10012. },
  10013. beans: {
  10014. height: math.unit(0.89, "feet"),
  10015. name: "Beans",
  10016. image: {
  10017. source: "./media/characters/vanrel/beans.svg"
  10018. }
  10019. },
  10020. },
  10021. [
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(4 + 7 / 12, "feet"),
  10025. default: true
  10026. },
  10027. ]
  10028. ))
  10029. characterMakers.push(() => makeCharacter(
  10030. { name: "Kuiper Vanrel" },
  10031. {
  10032. front: {
  10033. height: math.unit(7 + 5 / 12, "feet"),
  10034. weight: math.unit(150, "lb"),
  10035. name: "Front",
  10036. image: {
  10037. source: "./media/characters/kuiper-vanrel/front.svg",
  10038. extra: 1118 / 1068,
  10039. bottom: 0.09
  10040. }
  10041. },
  10042. foot: {
  10043. height: math.unit(0.55, "meters"),
  10044. name: "Foot",
  10045. image: {
  10046. source: "./media/characters/kuiper-vanrel/foot.svg",
  10047. }
  10048. },
  10049. battle: {
  10050. height: math.unit(6.824, "feet"),
  10051. weight: math.unit(150, "lb"),
  10052. name: "Battle",
  10053. image: {
  10054. source: "./media/characters/kuiper-vanrel/battle.svg",
  10055. extra: 1466/1327,
  10056. bottom: 29/1492.5
  10057. }
  10058. },
  10059. },
  10060. [
  10061. {
  10062. name: "Normal",
  10063. height: math.unit(7 + 5 / 12, "feet"),
  10064. default: true
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Keset Vanrel" },
  10070. {
  10071. front: {
  10072. height: math.unit(8 + 5 / 12, "feet"),
  10073. weight: math.unit(150, "lb"),
  10074. name: "Front",
  10075. image: {
  10076. source: "./media/characters/keset-vanrel/front.svg",
  10077. extra: 1150 / 1084,
  10078. bottom: 0.05
  10079. }
  10080. },
  10081. hand: {
  10082. height: math.unit(0.6, "meters"),
  10083. name: "Hand",
  10084. image: {
  10085. source: "./media/characters/keset-vanrel/hand.svg"
  10086. }
  10087. },
  10088. foot: {
  10089. height: math.unit(0.94978, "meters"),
  10090. name: "Foot",
  10091. image: {
  10092. source: "./media/characters/keset-vanrel/foot.svg"
  10093. }
  10094. },
  10095. battle: {
  10096. height: math.unit(7.408, "feet"),
  10097. weight: math.unit(150, "lb"),
  10098. name: "Battle",
  10099. image: {
  10100. source: "./media/characters/keset-vanrel/battle.svg",
  10101. extra: 1890/1386,
  10102. bottom: 73.28/1970
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Normal",
  10109. height: math.unit(8 + 5 / 12, "feet"),
  10110. default: true
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Neos" },
  10116. {
  10117. front: {
  10118. height: math.unit(6, "feet"),
  10119. weight: math.unit(150, "lb"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/neos/front.svg",
  10123. extra: 1696 / 992,
  10124. bottom: 0.14
  10125. }
  10126. },
  10127. },
  10128. [
  10129. {
  10130. name: "Normal",
  10131. height: math.unit(54, "cm"),
  10132. default: true
  10133. },
  10134. {
  10135. name: "Macro",
  10136. height: math.unit(100, "m")
  10137. },
  10138. {
  10139. name: "Megamacro",
  10140. height: math.unit(10, "km")
  10141. },
  10142. {
  10143. name: "Megamacro+",
  10144. height: math.unit(100, "km")
  10145. },
  10146. {
  10147. name: "Gigamacro",
  10148. height: math.unit(100, "Mm")
  10149. },
  10150. {
  10151. name: "Teramacro",
  10152. height: math.unit(100, "Gm")
  10153. },
  10154. {
  10155. name: "Examacro",
  10156. height: math.unit(100, "Em")
  10157. },
  10158. {
  10159. name: "Godly",
  10160. height: math.unit(10000, "Ym")
  10161. },
  10162. {
  10163. name: "Beyond Godly",
  10164. height: math.unit(10000000, "Ym")
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Sammy Mouse" },
  10170. {
  10171. feminine: {
  10172. height: math.unit(5, "feet"),
  10173. weight: math.unit(100, "lb"),
  10174. name: "Feminine",
  10175. image: {
  10176. source: "./media/characters/sammy-mouse/feminine.svg",
  10177. extra: 2526 / 2425,
  10178. bottom: 0.123
  10179. }
  10180. },
  10181. masculine: {
  10182. height: math.unit(5, "feet"),
  10183. weight: math.unit(100, "lb"),
  10184. name: "Masculine",
  10185. image: {
  10186. source: "./media/characters/sammy-mouse/masculine.svg",
  10187. extra: 2526 / 2425,
  10188. bottom: 0.123
  10189. }
  10190. },
  10191. },
  10192. [
  10193. {
  10194. name: "Micro",
  10195. height: math.unit(5, "inches")
  10196. },
  10197. {
  10198. name: "Normal",
  10199. height: math.unit(5, "feet"),
  10200. default: true
  10201. },
  10202. {
  10203. name: "Macro",
  10204. height: math.unit(60, "feet")
  10205. },
  10206. ]
  10207. ))
  10208. characterMakers.push(() => makeCharacter(
  10209. { name: "Kole" },
  10210. {
  10211. front: {
  10212. height: math.unit(4, "feet"),
  10213. weight: math.unit(50, "lb"),
  10214. name: "Front",
  10215. image: {
  10216. source: "./media/characters/kole/front.svg",
  10217. extra: 1423 / 1303,
  10218. bottom: 0.025
  10219. }
  10220. },
  10221. back: {
  10222. height: math.unit(4, "feet"),
  10223. weight: math.unit(50, "lb"),
  10224. name: "Back",
  10225. image: {
  10226. source: "./media/characters/kole/back.svg",
  10227. extra: 1426 / 1280,
  10228. bottom: 0.02
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Normal",
  10235. height: math.unit(4, "feet"),
  10236. default: true
  10237. },
  10238. ]
  10239. ))
  10240. characterMakers.push(() => makeCharacter(
  10241. { name: "Rufran" },
  10242. {
  10243. front: {
  10244. height: math.unit(2 + 6 / 12, "feet"),
  10245. weight: math.unit(20, "lb"),
  10246. name: "Front",
  10247. image: {
  10248. source: "./media/characters/rufran/front.svg",
  10249. extra: 2041 / 1839,
  10250. bottom: 0.055
  10251. }
  10252. },
  10253. back: {
  10254. height: math.unit(2 + 6 / 12, "feet"),
  10255. weight: math.unit(20, "lb"),
  10256. name: "Back",
  10257. image: {
  10258. source: "./media/characters/rufran/back.svg",
  10259. extra: 2054 / 1839,
  10260. bottom: 0.01
  10261. }
  10262. },
  10263. hand: {
  10264. height: math.unit(0.2166, "meters"),
  10265. name: "Hand",
  10266. image: {
  10267. source: "./media/characters/rufran/hand.svg"
  10268. }
  10269. },
  10270. foot: {
  10271. height: math.unit(0.185, "meters"),
  10272. name: "Foot",
  10273. image: {
  10274. source: "./media/characters/rufran/foot.svg"
  10275. }
  10276. },
  10277. },
  10278. [
  10279. {
  10280. name: "Micro",
  10281. height: math.unit(1, "inch")
  10282. },
  10283. {
  10284. name: "Normal",
  10285. height: math.unit(2 + 6 / 12, "feet"),
  10286. default: true
  10287. },
  10288. {
  10289. name: "Big",
  10290. height: math.unit(60, "feet")
  10291. },
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(325, "feet")
  10295. },
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Chip" },
  10300. {
  10301. front: {
  10302. height: math.unit(0.3, "meters"),
  10303. weight: math.unit(3.5, "kg"),
  10304. name: "Front",
  10305. image: {
  10306. source: "./media/characters/chip/front.svg",
  10307. extra: 748 / 674
  10308. }
  10309. },
  10310. },
  10311. [
  10312. {
  10313. name: "Micro",
  10314. height: math.unit(1, "inch"),
  10315. default: true
  10316. },
  10317. ]
  10318. ))
  10319. characterMakers.push(() => makeCharacter(
  10320. { name: "Torvid" },
  10321. {
  10322. side: {
  10323. height: math.unit(2.3, "meters"),
  10324. weight: math.unit(3500, "lb"),
  10325. name: "Side",
  10326. image: {
  10327. source: "./media/characters/torvid/side.svg",
  10328. extra: 1972 / 722,
  10329. bottom: 0.035
  10330. }
  10331. },
  10332. },
  10333. [
  10334. {
  10335. name: "Normal",
  10336. height: math.unit(2.3, "meters"),
  10337. default: true
  10338. },
  10339. ]
  10340. ))
  10341. characterMakers.push(() => makeCharacter(
  10342. { name: "Susan" },
  10343. {
  10344. front: {
  10345. height: math.unit(2, "meters"),
  10346. weight: math.unit(150.5, "kg"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/susan/front.svg",
  10350. extra: 693 / 635,
  10351. bottom: 0.05
  10352. }
  10353. },
  10354. },
  10355. [
  10356. {
  10357. name: "Megamacro",
  10358. height: math.unit(505, "miles"),
  10359. default: true
  10360. },
  10361. ]
  10362. ))
  10363. characterMakers.push(() => makeCharacter(
  10364. { name: "Raindrops" },
  10365. {
  10366. front: {
  10367. height: math.unit(6, "feet"),
  10368. weight: math.unit(150, "lb"),
  10369. name: "Front",
  10370. image: {
  10371. source: "./media/characters/raindrops/front.svg",
  10372. extra: 2655 / 2461,
  10373. bottom: 0.02
  10374. }
  10375. },
  10376. back: {
  10377. height: math.unit(6, "feet"),
  10378. weight: math.unit(150, "lb"),
  10379. name: "Back",
  10380. image: {
  10381. source: "./media/characters/raindrops/back.svg",
  10382. extra: 2574 / 2400,
  10383. bottom: 0.03
  10384. }
  10385. },
  10386. },
  10387. [
  10388. {
  10389. name: "Micro",
  10390. height: math.unit(6, "inches")
  10391. },
  10392. {
  10393. name: "Normal",
  10394. height: math.unit(6 + 2 / 12, "feet")
  10395. },
  10396. {
  10397. name: "Macro",
  10398. height: math.unit(131, "feet"),
  10399. default: true
  10400. },
  10401. {
  10402. name: "Megamacro",
  10403. height: math.unit(15, "miles")
  10404. },
  10405. {
  10406. name: "Gigamacro",
  10407. height: math.unit(4000, "miles")
  10408. },
  10409. {
  10410. name: "Teramacro",
  10411. height: math.unit(315000, "miles")
  10412. },
  10413. ]
  10414. ))
  10415. characterMakers.push(() => makeCharacter(
  10416. { name: "Tezwa" },
  10417. {
  10418. front: {
  10419. height: math.unit(2.794, "meters"),
  10420. weight: math.unit(325, "kg"),
  10421. name: "Front",
  10422. image: {
  10423. source: "./media/characters/tezwa/front.svg",
  10424. extra: 2083 / 1906,
  10425. bottom: 0.031
  10426. }
  10427. },
  10428. foot: {
  10429. height: math.unit(0.687, "meters"),
  10430. name: "Foot",
  10431. image: {
  10432. source: "./media/characters/tezwa/foot.svg"
  10433. }
  10434. },
  10435. },
  10436. [
  10437. {
  10438. name: "Normal",
  10439. height: math.unit(9 + 2 / 12, "feet"),
  10440. default: true
  10441. },
  10442. ]
  10443. ))
  10444. characterMakers.push(() => makeCharacter(
  10445. { name: "Typhus" },
  10446. {
  10447. front: {
  10448. height: math.unit(58, "feet"),
  10449. weight: math.unit(89000, "lb"),
  10450. name: "Front",
  10451. image: {
  10452. source: "./media/characters/typhus/front.svg",
  10453. extra: 816 / 800,
  10454. bottom: 0.065
  10455. }
  10456. },
  10457. },
  10458. [
  10459. {
  10460. name: "Macro",
  10461. height: math.unit(58, "feet"),
  10462. default: true
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Lyra Von Wulf" },
  10468. {
  10469. front: {
  10470. height: math.unit(12, "feet"),
  10471. weight: math.unit(6, "tonnes"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/lyra-von-wulf/front.svg",
  10475. extra: 1,
  10476. bottom: 0.10
  10477. }
  10478. },
  10479. frontMecha: {
  10480. height: math.unit(12, "feet"),
  10481. weight: math.unit(12, "tonnes"),
  10482. name: "Front (Mecha)",
  10483. image: {
  10484. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10485. extra: 1,
  10486. bottom: 0.042
  10487. }
  10488. },
  10489. maw: {
  10490. height: math.unit(2.2, "feet"),
  10491. name: "Maw",
  10492. image: {
  10493. source: "./media/characters/lyra-von-wulf/maw.svg"
  10494. }
  10495. },
  10496. },
  10497. [
  10498. {
  10499. name: "Normal",
  10500. height: math.unit(12, "feet"),
  10501. default: true
  10502. },
  10503. {
  10504. name: "Classic",
  10505. height: math.unit(50, "feet")
  10506. },
  10507. {
  10508. name: "Macro",
  10509. height: math.unit(500, "feet")
  10510. },
  10511. {
  10512. name: "Megamacro",
  10513. height: math.unit(1, "mile")
  10514. },
  10515. {
  10516. name: "Gigamacro",
  10517. height: math.unit(400, "miles")
  10518. },
  10519. {
  10520. name: "Teramacro",
  10521. height: math.unit(22000, "miles")
  10522. },
  10523. {
  10524. name: "Solarmacro",
  10525. height: math.unit(8600000, "miles")
  10526. },
  10527. {
  10528. name: "Galactic",
  10529. height: math.unit(1057000, "lightyears")
  10530. },
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Dixon" },
  10535. {
  10536. front: {
  10537. height: math.unit(6 + 10 / 12, "feet"),
  10538. weight: math.unit(150, "lb"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/dixon/front.svg",
  10542. extra: 3361 / 3209,
  10543. bottom: 0.01
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Normal",
  10550. height: math.unit(6 + 10 / 12, "feet"),
  10551. default: true
  10552. },
  10553. {
  10554. name: "Big",
  10555. height: math.unit(12, "meters")
  10556. },
  10557. {
  10558. name: "Macro",
  10559. height: math.unit(500, "meters")
  10560. },
  10561. {
  10562. name: "Megamacro",
  10563. height: math.unit(2, "km")
  10564. },
  10565. ]
  10566. ))
  10567. characterMakers.push(() => makeCharacter(
  10568. { name: "Kauko" },
  10569. {
  10570. front: {
  10571. height: math.unit(185, "cm"),
  10572. weight: math.unit(68, "kg"),
  10573. name: "Front",
  10574. image: {
  10575. source: "./media/characters/kauko/front.svg",
  10576. extra: 1455 / 1421,
  10577. bottom: 0.03
  10578. }
  10579. },
  10580. back: {
  10581. height: math.unit(185, "cm"),
  10582. weight: math.unit(68, "kg"),
  10583. name: "Back",
  10584. image: {
  10585. source: "./media/characters/kauko/back.svg",
  10586. extra: 1455 / 1421,
  10587. bottom: 0.004
  10588. }
  10589. },
  10590. },
  10591. [
  10592. {
  10593. name: "Normal",
  10594. height: math.unit(185, "cm"),
  10595. default: true
  10596. },
  10597. ]
  10598. ))
  10599. characterMakers.push(() => makeCharacter(
  10600. { name: "Varg" },
  10601. {
  10602. front: {
  10603. height: math.unit(6, "feet"),
  10604. weight: math.unit(150, "kg"),
  10605. name: "Front",
  10606. image: {
  10607. source: "./media/characters/varg/front.svg",
  10608. extra: 1108 / 1018,
  10609. bottom: 0.0375
  10610. }
  10611. },
  10612. },
  10613. [
  10614. {
  10615. name: "Normal",
  10616. height: math.unit(5, "meters")
  10617. },
  10618. {
  10619. name: "Macro",
  10620. height: math.unit(200, "meters")
  10621. },
  10622. {
  10623. name: "Megamacro",
  10624. height: math.unit(20, "kilometers")
  10625. },
  10626. {
  10627. name: "True Size",
  10628. height: math.unit(211, "km"),
  10629. default: true
  10630. },
  10631. {
  10632. name: "Gigamacro",
  10633. height: math.unit(1000, "km")
  10634. },
  10635. {
  10636. name: "Gigamacro+",
  10637. height: math.unit(8000, "km")
  10638. },
  10639. {
  10640. name: "Teramacro",
  10641. height: math.unit(1000000, "km")
  10642. },
  10643. ]
  10644. ))
  10645. characterMakers.push(() => makeCharacter(
  10646. { name: "Dayza" },
  10647. {
  10648. front: {
  10649. height: math.unit(7 + 7 / 12, "feet"),
  10650. weight: math.unit(267, "lb"),
  10651. name: "Front",
  10652. image: {
  10653. source: "./media/characters/dayza/front.svg",
  10654. extra: 1262 / 1200,
  10655. bottom: 0.035
  10656. }
  10657. },
  10658. side: {
  10659. height: math.unit(7 + 7 / 12, "feet"),
  10660. weight: math.unit(267, "lb"),
  10661. name: "Side",
  10662. image: {
  10663. source: "./media/characters/dayza/side.svg",
  10664. extra: 1295 / 1245,
  10665. bottom: 0.05
  10666. }
  10667. },
  10668. back: {
  10669. height: math.unit(7 + 7 / 12, "feet"),
  10670. weight: math.unit(267, "lb"),
  10671. name: "Back",
  10672. image: {
  10673. source: "./media/characters/dayza/back.svg",
  10674. extra: 1241 / 1170
  10675. }
  10676. },
  10677. },
  10678. [
  10679. {
  10680. name: "Normal",
  10681. height: math.unit(7 + 7 / 12, "feet"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Macro",
  10686. height: math.unit(155, "feet")
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Xanthos" },
  10692. {
  10693. front: {
  10694. height: math.unit(6 + 5 / 12, "feet"),
  10695. weight: math.unit(160, "lb"),
  10696. name: "Front",
  10697. image: {
  10698. source: "./media/characters/xanthos/front.svg",
  10699. extra: 1,
  10700. bottom: 0.04
  10701. }
  10702. },
  10703. back: {
  10704. height: math.unit(6 + 5 / 12, "feet"),
  10705. weight: math.unit(160, "lb"),
  10706. name: "Back",
  10707. image: {
  10708. source: "./media/characters/xanthos/back.svg",
  10709. extra: 1,
  10710. bottom: 0.03
  10711. }
  10712. },
  10713. hand: {
  10714. height: math.unit(0.928, "feet"),
  10715. name: "Hand",
  10716. image: {
  10717. source: "./media/characters/xanthos/hand.svg"
  10718. }
  10719. },
  10720. foot: {
  10721. height: math.unit(1.286, "feet"),
  10722. name: "Foot",
  10723. image: {
  10724. source: "./media/characters/xanthos/foot.svg"
  10725. }
  10726. },
  10727. },
  10728. [
  10729. {
  10730. name: "Normal",
  10731. height: math.unit(6 + 5 / 12, "feet"),
  10732. default: true
  10733. },
  10734. {
  10735. name: "Normal+",
  10736. height: math.unit(6, "meters")
  10737. },
  10738. {
  10739. name: "Macro",
  10740. height: math.unit(40, "feet")
  10741. },
  10742. {
  10743. name: "Macro+",
  10744. height: math.unit(200, "meters")
  10745. },
  10746. {
  10747. name: "Megamacro",
  10748. height: math.unit(20, "km")
  10749. },
  10750. {
  10751. name: "Megamacro+",
  10752. height: math.unit(100, "km")
  10753. },
  10754. ]
  10755. ))
  10756. characterMakers.push(() => makeCharacter(
  10757. { name: "Grynn" },
  10758. {
  10759. front: {
  10760. height: math.unit(6 + 3 / 12, "feet"),
  10761. weight: math.unit(215, "lb"),
  10762. name: "Front",
  10763. image: {
  10764. source: "./media/characters/grynn/front.svg",
  10765. extra: 4627 / 4209,
  10766. bottom: 0.047
  10767. }
  10768. },
  10769. },
  10770. [
  10771. {
  10772. name: "Micro",
  10773. height: math.unit(6, "inches")
  10774. },
  10775. {
  10776. name: "Normal",
  10777. height: math.unit(6 + 3 / 12, "feet"),
  10778. default: true
  10779. },
  10780. {
  10781. name: "Big",
  10782. height: math.unit(104, "feet")
  10783. },
  10784. {
  10785. name: "Macro",
  10786. height: math.unit(944, "feet")
  10787. },
  10788. {
  10789. name: "Macro+",
  10790. height: math.unit(9480, "feet")
  10791. },
  10792. {
  10793. name: "Megamacro",
  10794. height: math.unit(78752, "feet")
  10795. },
  10796. {
  10797. name: "Megamacro+",
  10798. height: math.unit(630128, "feet")
  10799. },
  10800. {
  10801. name: "Megamacro++",
  10802. height: math.unit(3150695, "feet")
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Mocha Aura" },
  10808. {
  10809. front: {
  10810. height: math.unit(7 + 5 / 12, "feet"),
  10811. weight: math.unit(450, "lb"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/mocha-aura/front.svg",
  10815. extra: 1907 / 1817,
  10816. bottom: 0.04
  10817. }
  10818. },
  10819. back: {
  10820. height: math.unit(7 + 5 / 12, "feet"),
  10821. weight: math.unit(450, "lb"),
  10822. name: "Back",
  10823. image: {
  10824. source: "./media/characters/mocha-aura/back.svg",
  10825. extra: 1900 / 1825,
  10826. bottom: 0.045
  10827. }
  10828. },
  10829. },
  10830. [
  10831. {
  10832. name: "Nano",
  10833. height: math.unit(1, "nm")
  10834. },
  10835. {
  10836. name: "Megamicro",
  10837. height: math.unit(1, "mm")
  10838. },
  10839. {
  10840. name: "Micro",
  10841. height: math.unit(3, "inches")
  10842. },
  10843. {
  10844. name: "Normal",
  10845. height: math.unit(7 + 5 / 12, "feet"),
  10846. default: true
  10847. },
  10848. {
  10849. name: "Macro",
  10850. height: math.unit(30, "feet")
  10851. },
  10852. {
  10853. name: "Megamacro",
  10854. height: math.unit(3500, "feet")
  10855. },
  10856. {
  10857. name: "Teramacro",
  10858. height: math.unit(500000, "miles")
  10859. },
  10860. {
  10861. name: "Petamacro",
  10862. height: math.unit(50000000000000000, "parsecs")
  10863. },
  10864. ]
  10865. ))
  10866. characterMakers.push(() => makeCharacter(
  10867. { name: "Ilisha Devya" },
  10868. {
  10869. front: {
  10870. height: math.unit(6, "feet"),
  10871. weight: math.unit(150, "lb"),
  10872. name: "Front",
  10873. image: {
  10874. source: "./media/characters/ilisha-devya/front.svg",
  10875. extra: 1,
  10876. bottom: 0.175
  10877. }
  10878. },
  10879. back: {
  10880. height: math.unit(6, "feet"),
  10881. weight: math.unit(150, "lb"),
  10882. name: "Back",
  10883. image: {
  10884. source: "./media/characters/ilisha-devya/back.svg",
  10885. extra: 1,
  10886. bottom: 0.015
  10887. }
  10888. },
  10889. },
  10890. [
  10891. {
  10892. name: "Macro",
  10893. height: math.unit(500, "feet"),
  10894. default: true
  10895. },
  10896. {
  10897. name: "Megamacro",
  10898. height: math.unit(10, "miles")
  10899. },
  10900. {
  10901. name: "Gigamacro",
  10902. height: math.unit(100000, "miles")
  10903. },
  10904. {
  10905. name: "Examacro",
  10906. height: math.unit(1e9, "lightyears")
  10907. },
  10908. {
  10909. name: "Omniversal",
  10910. height: math.unit(1e33, "lightyears")
  10911. },
  10912. {
  10913. name: "Beyond Infinite",
  10914. height: math.unit(1e100, "lightyears")
  10915. },
  10916. ]
  10917. ))
  10918. characterMakers.push(() => makeCharacter(
  10919. { name: "Mira" },
  10920. {
  10921. Side: {
  10922. height: math.unit(6, "feet"),
  10923. weight: math.unit(150, "lb"),
  10924. name: "Side",
  10925. image: {
  10926. source: "./media/characters/mira/side.svg",
  10927. extra: 900 / 799,
  10928. bottom: 0.02
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Human Size",
  10935. height: math.unit(6, "feet")
  10936. },
  10937. {
  10938. name: "Macro",
  10939. height: math.unit(100, "feet"),
  10940. default: true
  10941. },
  10942. {
  10943. name: "Megamacro",
  10944. height: math.unit(10, "miles")
  10945. },
  10946. {
  10947. name: "Gigamacro",
  10948. height: math.unit(25000, "miles")
  10949. },
  10950. {
  10951. name: "Teramacro",
  10952. height: math.unit(300, "AU")
  10953. },
  10954. {
  10955. name: "Full Size",
  10956. height: math.unit(4.5e10, "lightyears")
  10957. },
  10958. ]
  10959. ))
  10960. characterMakers.push(() => makeCharacter(
  10961. { name: "Holly" },
  10962. {
  10963. front: {
  10964. height: math.unit(6, "feet"),
  10965. weight: math.unit(150, "lb"),
  10966. name: "Front",
  10967. image: {
  10968. source: "./media/characters/holly/front.svg",
  10969. extra: 639 / 606
  10970. }
  10971. },
  10972. back: {
  10973. height: math.unit(6, "feet"),
  10974. weight: math.unit(150, "lb"),
  10975. name: "Back",
  10976. image: {
  10977. source: "./media/characters/holly/back.svg",
  10978. extra: 623 / 598
  10979. }
  10980. },
  10981. frontWorking: {
  10982. height: math.unit(6, "feet"),
  10983. weight: math.unit(150, "lb"),
  10984. name: "Front (Working)",
  10985. image: {
  10986. source: "./media/characters/holly/front-working.svg",
  10987. extra: 607 / 577,
  10988. bottom: 0.048
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Normal",
  10995. height: math.unit(12 + 3 / 12, "feet"),
  10996. default: true
  10997. },
  10998. ]
  10999. ))
  11000. characterMakers.push(() => makeCharacter(
  11001. { name: "Porter" },
  11002. {
  11003. front: {
  11004. height: math.unit(6, "feet"),
  11005. weight: math.unit(150, "lb"),
  11006. name: "Front",
  11007. image: {
  11008. source: "./media/characters/porter/front.svg",
  11009. extra: 1,
  11010. bottom: 0.01
  11011. }
  11012. },
  11013. frontRobes: {
  11014. height: math.unit(6, "feet"),
  11015. weight: math.unit(150, "lb"),
  11016. name: "Front (Robes)",
  11017. image: {
  11018. source: "./media/characters/porter/front-robes.svg",
  11019. extra: 1.01,
  11020. bottom: 0.01
  11021. }
  11022. },
  11023. },
  11024. [
  11025. {
  11026. name: "Normal",
  11027. height: math.unit(11 + 9 / 12, "feet"),
  11028. default: true
  11029. },
  11030. ]
  11031. ))
  11032. characterMakers.push(() => makeCharacter(
  11033. { name: "Lucy" },
  11034. {
  11035. legendary: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(150, "lb"),
  11038. name: "Legendary",
  11039. image: {
  11040. source: "./media/characters/lucy/legendary.svg",
  11041. extra: 1355 / 1100,
  11042. bottom: 0.045
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Legendary",
  11049. height: math.unit(86882 * 2, "miles"),
  11050. default: true
  11051. },
  11052. ]
  11053. ))
  11054. characterMakers.push(() => makeCharacter(
  11055. { name: "Drusilla" },
  11056. {
  11057. front: {
  11058. height: math.unit(6, "feet"),
  11059. weight: math.unit(150, "lb"),
  11060. name: "Front",
  11061. image: {
  11062. source: "./media/characters/drusilla/front.svg",
  11063. extra: 678 / 635,
  11064. bottom: 0.03
  11065. }
  11066. },
  11067. back: {
  11068. height: math.unit(6, "feet"),
  11069. weight: math.unit(150, "lb"),
  11070. name: "Back",
  11071. image: {
  11072. source: "./media/characters/drusilla/back.svg",
  11073. extra: 678 / 635,
  11074. bottom: 0.005
  11075. }
  11076. },
  11077. },
  11078. [
  11079. {
  11080. name: "Macro",
  11081. height: math.unit(100, "feet")
  11082. },
  11083. {
  11084. name: "Canon Height",
  11085. height: math.unit(2000, "feet"),
  11086. default: true
  11087. },
  11088. ]
  11089. ))
  11090. characterMakers.push(() => makeCharacter(
  11091. { name: "Renard Thatch" },
  11092. {
  11093. front: {
  11094. height: math.unit(6, "feet"),
  11095. weight: math.unit(180, "lb"),
  11096. name: "Front",
  11097. image: {
  11098. source: "./media/characters/renard-thatch/front.svg",
  11099. extra: 2411 / 2275,
  11100. bottom: 0.01
  11101. }
  11102. },
  11103. frontPosing: {
  11104. height: math.unit(6, "feet"),
  11105. weight: math.unit(180, "lb"),
  11106. name: "Front (Posing)",
  11107. image: {
  11108. source: "./media/characters/renard-thatch/front-posing.svg",
  11109. extra: 2381 / 2261,
  11110. bottom: 0.01
  11111. }
  11112. },
  11113. back: {
  11114. height: math.unit(6, "feet"),
  11115. weight: math.unit(180, "lb"),
  11116. name: "Back",
  11117. image: {
  11118. source: "./media/characters/renard-thatch/back.svg",
  11119. extra: 2428 / 2288
  11120. }
  11121. },
  11122. },
  11123. [
  11124. {
  11125. name: "Micro",
  11126. height: math.unit(3, "inches")
  11127. },
  11128. {
  11129. name: "Default",
  11130. height: math.unit(6, "feet"),
  11131. default: true
  11132. },
  11133. {
  11134. name: "Macro",
  11135. height: math.unit(75, "feet")
  11136. },
  11137. ]
  11138. ))
  11139. characterMakers.push(() => makeCharacter(
  11140. { name: "Sekvra" },
  11141. {
  11142. front: {
  11143. height: math.unit(1450, "feet"),
  11144. weight: math.unit(1.21e6, "tons"),
  11145. name: "Front",
  11146. image: {
  11147. source: "./media/characters/sekvra/front.svg",
  11148. extra: 1,
  11149. bottom: 0.03
  11150. }
  11151. },
  11152. frontClothed: {
  11153. height: math.unit(1450, "feet"),
  11154. weight: math.unit(1.21e6, "tons"),
  11155. name: "Front (Clothed)",
  11156. image: {
  11157. source: "./media/characters/sekvra/front-clothed.svg",
  11158. extra: 1,
  11159. bottom: 0.03
  11160. }
  11161. },
  11162. side: {
  11163. height: math.unit(1450, "feet"),
  11164. weight: math.unit(1.21e6, "tons"),
  11165. name: "Side",
  11166. image: {
  11167. source: "./media/characters/sekvra/side.svg",
  11168. extra: 1,
  11169. bottom: 0.025
  11170. }
  11171. },
  11172. back: {
  11173. height: math.unit(1450, "feet"),
  11174. weight: math.unit(1.21e6, "tons"),
  11175. name: "Back",
  11176. image: {
  11177. source: "./media/characters/sekvra/back.svg",
  11178. extra: 1,
  11179. bottom: 0.005
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Macro",
  11186. height: math.unit(1450, "feet"),
  11187. default: true
  11188. },
  11189. {
  11190. name: "Megamacro",
  11191. height: math.unit(15000, "feet")
  11192. },
  11193. ]
  11194. ))
  11195. characterMakers.push(() => makeCharacter(
  11196. { name: "Carmine" },
  11197. {
  11198. front: {
  11199. height: math.unit(6, "feet"),
  11200. weight: math.unit(150, "lb"),
  11201. name: "Front",
  11202. image: {
  11203. source: "./media/characters/carmine/front.svg",
  11204. extra: 1,
  11205. bottom: 0.035
  11206. }
  11207. },
  11208. frontArmor: {
  11209. height: math.unit(6, "feet"),
  11210. weight: math.unit(150, "lb"),
  11211. name: "Front (Armor)",
  11212. image: {
  11213. source: "./media/characters/carmine/front-armor.svg",
  11214. extra: 1,
  11215. bottom: 0.035
  11216. }
  11217. },
  11218. },
  11219. [
  11220. {
  11221. name: "Large",
  11222. height: math.unit(1, "mile")
  11223. },
  11224. {
  11225. name: "Huge",
  11226. height: math.unit(40, "miles"),
  11227. default: true
  11228. },
  11229. {
  11230. name: "Colossal",
  11231. height: math.unit(2500, "miles")
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "Elyssia" },
  11237. {
  11238. front: {
  11239. height: math.unit(6, "feet"),
  11240. weight: math.unit(150, "lb"),
  11241. name: "Front",
  11242. image: {
  11243. source: "./media/characters/elyssia/front.svg",
  11244. extra: 2201 / 2035,
  11245. bottom: 0.05
  11246. }
  11247. },
  11248. frontClothed: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(150, "lb"),
  11251. name: "Front (Clothed)",
  11252. image: {
  11253. source: "./media/characters/elyssia/front-clothed.svg",
  11254. extra: 2201 / 2035,
  11255. bottom: 0.05
  11256. }
  11257. },
  11258. back: {
  11259. height: math.unit(6, "feet"),
  11260. weight: math.unit(150, "lb"),
  11261. name: "Back",
  11262. image: {
  11263. source: "./media/characters/elyssia/back.svg",
  11264. extra: 2201 / 2035,
  11265. bottom: 0.013
  11266. }
  11267. },
  11268. },
  11269. [
  11270. {
  11271. name: "Smaller",
  11272. height: math.unit(150, "feet")
  11273. },
  11274. {
  11275. name: "Standard",
  11276. height: math.unit(1400, "feet"),
  11277. default: true
  11278. },
  11279. {
  11280. name: "Distracted",
  11281. height: math.unit(15000, "feet")
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Geno Maxwell" },
  11287. {
  11288. front: {
  11289. height: math.unit(7 + 4 / 12, "feet"),
  11290. weight: math.unit(500, "lb"),
  11291. name: "Front",
  11292. image: {
  11293. source: "./media/characters/geno-maxwell/front.svg",
  11294. extra: 2207 / 2040,
  11295. bottom: 0.015
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Micro",
  11302. height: math.unit(3, "inches")
  11303. },
  11304. {
  11305. name: "Normal",
  11306. height: math.unit(7 + 4 / 12, "feet"),
  11307. default: true
  11308. },
  11309. {
  11310. name: "Macro",
  11311. height: math.unit(220, "feet")
  11312. },
  11313. {
  11314. name: "Megamacro",
  11315. height: math.unit(11, "miles")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Regena Maxwell" },
  11321. {
  11322. front: {
  11323. height: math.unit(7 + 4 / 12, "feet"),
  11324. weight: math.unit(500, "lb"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/regena-maxwell/front.svg",
  11328. extra: 3115 / 2770,
  11329. bottom: 0.02
  11330. }
  11331. },
  11332. },
  11333. [
  11334. {
  11335. name: "Normal",
  11336. height: math.unit(7 + 4 / 12, "feet"),
  11337. default: true
  11338. },
  11339. {
  11340. name: "Macro",
  11341. height: math.unit(220, "feet")
  11342. },
  11343. {
  11344. name: "Megamacro",
  11345. height: math.unit(11, "miles")
  11346. },
  11347. ]
  11348. ))
  11349. characterMakers.push(() => makeCharacter(
  11350. { name: "XGlidingDragonX" },
  11351. {
  11352. front: {
  11353. height: math.unit(6, "feet"),
  11354. weight: math.unit(150, "lb"),
  11355. name: "Front",
  11356. image: {
  11357. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11358. extra: 860 / 690,
  11359. bottom: 0.03
  11360. }
  11361. },
  11362. },
  11363. [
  11364. {
  11365. name: "Normal",
  11366. height: math.unit(1.7, "meters"),
  11367. default: true
  11368. },
  11369. ]
  11370. ))
  11371. characterMakers.push(() => makeCharacter(
  11372. { name: "Quilly" },
  11373. {
  11374. front: {
  11375. height: math.unit(6, "feet"),
  11376. weight: math.unit(150, "lb"),
  11377. name: "Front",
  11378. image: {
  11379. source: "./media/characters/quilly/front.svg",
  11380. extra: 890 / 776
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Gigamacro",
  11387. height: math.unit(404090, "miles"),
  11388. default: true
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Tempest" },
  11394. {
  11395. front: {
  11396. height: math.unit(7 + 8 / 12, "feet"),
  11397. weight: math.unit(350, "lb"),
  11398. name: "Front",
  11399. image: {
  11400. source: "./media/characters/tempest/front.svg",
  11401. extra: 1175 / 1086,
  11402. bottom: 0.02
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Normal",
  11409. height: math.unit(7 + 8 / 12, "feet"),
  11410. default: true
  11411. },
  11412. ]
  11413. ))
  11414. characterMakers.push(() => makeCharacter(
  11415. { name: "Rodger" },
  11416. {
  11417. side: {
  11418. height: math.unit(4 + 5 / 12, "feet"),
  11419. weight: math.unit(80, "lb"),
  11420. name: "Side",
  11421. image: {
  11422. source: "./media/characters/rodger/side.svg",
  11423. extra: 1235 / 1118
  11424. }
  11425. },
  11426. },
  11427. [
  11428. {
  11429. name: "Micro",
  11430. height: math.unit(1, "inch")
  11431. },
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(4 + 5 / 12, "feet"),
  11435. default: true
  11436. },
  11437. {
  11438. name: "Macro",
  11439. height: math.unit(120, "feet")
  11440. },
  11441. ]
  11442. ))
  11443. characterMakers.push(() => makeCharacter(
  11444. { name: "Danyel" },
  11445. {
  11446. front: {
  11447. height: math.unit(6, "feet"),
  11448. weight: math.unit(150, "lb"),
  11449. name: "Front",
  11450. image: {
  11451. source: "./media/characters/danyel/front.svg",
  11452. extra: 1185 / 1123,
  11453. bottom: 0.05
  11454. }
  11455. },
  11456. },
  11457. [
  11458. {
  11459. name: "Shrunken",
  11460. height: math.unit(0.5, "mm")
  11461. },
  11462. {
  11463. name: "Micro",
  11464. height: math.unit(1, "mm"),
  11465. default: true
  11466. },
  11467. {
  11468. name: "Upsized",
  11469. height: math.unit(5 + 5 / 12, "feet")
  11470. },
  11471. ]
  11472. ))
  11473. characterMakers.push(() => makeCharacter(
  11474. { name: "Vivian Bijoux" },
  11475. {
  11476. front: {
  11477. height: math.unit(5 + 6 / 12, "feet"),
  11478. weight: math.unit(200, "lb"),
  11479. name: "Front",
  11480. image: {
  11481. source: "./media/characters/vivian-bijoux/front.svg",
  11482. extra: 1,
  11483. bottom: 0.072
  11484. }
  11485. },
  11486. },
  11487. [
  11488. {
  11489. name: "Normal",
  11490. height: math.unit(5 + 6 / 12, "feet"),
  11491. default: true
  11492. },
  11493. {
  11494. name: "Bad Dream",
  11495. height: math.unit(500, "feet")
  11496. },
  11497. {
  11498. name: "Nightmare",
  11499. height: math.unit(500, "miles")
  11500. },
  11501. ]
  11502. ))
  11503. characterMakers.push(() => makeCharacter(
  11504. { name: "Zeta" },
  11505. {
  11506. front: {
  11507. height: math.unit(6 + 1 / 12, "feet"),
  11508. weight: math.unit(260, "lb"),
  11509. name: "Front",
  11510. image: {
  11511. source: "./media/characters/zeta/front.svg",
  11512. extra: 1968 / 1889,
  11513. bottom: 0.06
  11514. }
  11515. },
  11516. back: {
  11517. height: math.unit(6 + 1 / 12, "feet"),
  11518. weight: math.unit(260, "lb"),
  11519. name: "Back",
  11520. image: {
  11521. source: "./media/characters/zeta/back.svg",
  11522. extra: 1944 / 1858,
  11523. bottom: 0.03
  11524. }
  11525. },
  11526. hand: {
  11527. height: math.unit(1.112, "feet"),
  11528. name: "Hand",
  11529. image: {
  11530. source: "./media/characters/zeta/hand.svg"
  11531. }
  11532. },
  11533. foot: {
  11534. height: math.unit(1.48, "feet"),
  11535. name: "Foot",
  11536. image: {
  11537. source: "./media/characters/zeta/foot.svg"
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Micro",
  11544. height: math.unit(6, "inches")
  11545. },
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(6 + 1 / 12, "feet"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Macro",
  11553. height: math.unit(20, "feet")
  11554. },
  11555. ]
  11556. ))
  11557. characterMakers.push(() => makeCharacter(
  11558. { name: "Jamie Larsen" },
  11559. {
  11560. front: {
  11561. height: math.unit(6, "feet"),
  11562. weight: math.unit(150, "lb"),
  11563. name: "Front",
  11564. image: {
  11565. source: "./media/characters/jamie-larsen/front.svg",
  11566. extra: 962 / 933,
  11567. bottom: 0.02
  11568. }
  11569. },
  11570. back: {
  11571. height: math.unit(6, "feet"),
  11572. weight: math.unit(150, "lb"),
  11573. name: "Back",
  11574. image: {
  11575. source: "./media/characters/jamie-larsen/back.svg",
  11576. extra: 997 / 946
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Macro",
  11583. height: math.unit(28 + 7 / 12, "feet"),
  11584. default: true
  11585. },
  11586. {
  11587. name: "Macro+",
  11588. height: math.unit(180, "feet")
  11589. },
  11590. {
  11591. name: "Megamacro",
  11592. height: math.unit(10, "miles")
  11593. },
  11594. {
  11595. name: "Gigamacro",
  11596. height: math.unit(200000, "miles")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Vance" },
  11602. {
  11603. front: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(120, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/vance/front.svg",
  11609. extra: 1980 / 1890,
  11610. bottom: 0.09
  11611. }
  11612. },
  11613. back: {
  11614. height: math.unit(6, "feet"),
  11615. weight: math.unit(120, "lb"),
  11616. name: "Back",
  11617. image: {
  11618. source: "./media/characters/vance/back.svg",
  11619. extra: 2081 / 1994,
  11620. bottom: 0.014
  11621. }
  11622. },
  11623. hand: {
  11624. height: math.unit(0.88, "feet"),
  11625. name: "Hand",
  11626. image: {
  11627. source: "./media/characters/vance/hand.svg"
  11628. }
  11629. },
  11630. foot: {
  11631. height: math.unit(0.64, "feet"),
  11632. name: "Foot",
  11633. image: {
  11634. source: "./media/characters/vance/foot.svg"
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Small",
  11641. height: math.unit(90, "feet"),
  11642. default: true
  11643. },
  11644. {
  11645. name: "Macro",
  11646. height: math.unit(100, "meters")
  11647. },
  11648. {
  11649. name: "Megamacro",
  11650. height: math.unit(15, "miles")
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Xochitl" },
  11656. {
  11657. front: {
  11658. height: math.unit(6, "feet"),
  11659. weight: math.unit(180, "lb"),
  11660. name: "Front",
  11661. image: {
  11662. source: "./media/characters/xochitl/front.svg",
  11663. extra: 2297 / 2261,
  11664. bottom: 0.065
  11665. }
  11666. },
  11667. back: {
  11668. height: math.unit(6, "feet"),
  11669. weight: math.unit(180, "lb"),
  11670. name: "Back",
  11671. image: {
  11672. source: "./media/characters/xochitl/back.svg",
  11673. extra: 2386 / 2354,
  11674. bottom: 0.01
  11675. }
  11676. },
  11677. foot: {
  11678. height: math.unit(6 / 5 * 1.15, "feet"),
  11679. weight: math.unit(150, "lb"),
  11680. name: "Foot",
  11681. image: {
  11682. source: "./media/characters/xochitl/foot.svg"
  11683. }
  11684. },
  11685. },
  11686. [
  11687. {
  11688. name: "Macro",
  11689. height: math.unit(80, "feet")
  11690. },
  11691. {
  11692. name: "Macro+",
  11693. height: math.unit(400, "feet"),
  11694. default: true
  11695. },
  11696. {
  11697. name: "Gigamacro",
  11698. height: math.unit(80000, "miles")
  11699. },
  11700. {
  11701. name: "Gigamacro+",
  11702. height: math.unit(400000, "miles")
  11703. },
  11704. {
  11705. name: "Teramacro",
  11706. height: math.unit(300, "AU")
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Vincent" },
  11712. {
  11713. front: {
  11714. height: math.unit(6, "feet"),
  11715. weight: math.unit(150, "lb"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/vincent/front.svg",
  11719. extra: 1130 / 1080,
  11720. bottom: 0.055
  11721. }
  11722. },
  11723. beak: {
  11724. height: math.unit(6 * 0.1, "feet"),
  11725. name: "Beak",
  11726. image: {
  11727. source: "./media/characters/vincent/beak.svg"
  11728. }
  11729. },
  11730. hand: {
  11731. height: math.unit(6 * 0.85, "feet"),
  11732. weight: math.unit(150, "lb"),
  11733. name: "Hand",
  11734. image: {
  11735. source: "./media/characters/vincent/hand.svg"
  11736. }
  11737. },
  11738. foot: {
  11739. height: math.unit(6 * 0.19, "feet"),
  11740. weight: math.unit(150, "lb"),
  11741. name: "Foot",
  11742. image: {
  11743. source: "./media/characters/vincent/foot.svg"
  11744. }
  11745. },
  11746. },
  11747. [
  11748. {
  11749. name: "Base",
  11750. height: math.unit(6 + 5 / 12, "feet"),
  11751. default: true
  11752. },
  11753. {
  11754. name: "Macro",
  11755. height: math.unit(300, "feet")
  11756. },
  11757. {
  11758. name: "Megamacro",
  11759. height: math.unit(2, "miles")
  11760. },
  11761. {
  11762. name: "Gigamacro",
  11763. height: math.unit(1000, "miles")
  11764. },
  11765. ]
  11766. ))
  11767. characterMakers.push(() => makeCharacter(
  11768. { name: "Jay" },
  11769. {
  11770. front: {
  11771. height: math.unit(6 + 2 / 12, "feet"),
  11772. weight: math.unit(265, "lb"),
  11773. name: "Front",
  11774. image: {
  11775. source: "./media/characters/jay/front.svg",
  11776. extra: 1510 / 1430,
  11777. bottom: 0.042
  11778. }
  11779. },
  11780. back: {
  11781. height: math.unit(6 + 2 / 12, "feet"),
  11782. weight: math.unit(265, "lb"),
  11783. name: "Back",
  11784. image: {
  11785. source: "./media/characters/jay/back.svg",
  11786. extra: 1510 / 1430,
  11787. bottom: 0.025
  11788. }
  11789. },
  11790. clothed: {
  11791. height: math.unit(6 + 2 / 12, "feet"),
  11792. weight: math.unit(265, "lb"),
  11793. name: "Front (Clothed)",
  11794. image: {
  11795. source: "./media/characters/jay/clothed.svg",
  11796. extra: 744 / 699,
  11797. bottom: 0.043
  11798. }
  11799. },
  11800. head: {
  11801. height: math.unit(1.772, "feet"),
  11802. name: "Head",
  11803. image: {
  11804. source: "./media/characters/jay/head.svg"
  11805. }
  11806. },
  11807. sizeRay: {
  11808. height: math.unit(1.331, "feet"),
  11809. name: "Size Ray",
  11810. image: {
  11811. source: "./media/characters/jay/size-ray.svg"
  11812. }
  11813. },
  11814. },
  11815. [
  11816. {
  11817. name: "Micro",
  11818. height: math.unit(1, "inch")
  11819. },
  11820. {
  11821. name: "Normal",
  11822. height: math.unit(6 + 2 / 12, "feet"),
  11823. default: true
  11824. },
  11825. {
  11826. name: "Macro",
  11827. height: math.unit(1, "mile")
  11828. },
  11829. {
  11830. name: "Megamacro",
  11831. height: math.unit(100, "miles")
  11832. },
  11833. ]
  11834. ))
  11835. characterMakers.push(() => makeCharacter(
  11836. { name: "Coatl" },
  11837. {
  11838. front: {
  11839. height: math.unit(2, "meters"),
  11840. weight: math.unit(500, "kg"),
  11841. name: "Front",
  11842. image: {
  11843. source: "./media/characters/coatl/front.svg",
  11844. extra: 3948 / 3500,
  11845. bottom: 0.082
  11846. }
  11847. },
  11848. },
  11849. [
  11850. {
  11851. name: "Normal",
  11852. height: math.unit(4, "meters")
  11853. },
  11854. {
  11855. name: "Macro",
  11856. height: math.unit(100, "meters"),
  11857. default: true
  11858. },
  11859. {
  11860. name: "Macro+",
  11861. height: math.unit(300, "meters")
  11862. },
  11863. {
  11864. name: "Megamacro",
  11865. height: math.unit(3, "gigameters")
  11866. },
  11867. {
  11868. name: "Megamacro+",
  11869. height: math.unit(300, "terameters")
  11870. },
  11871. {
  11872. name: "Megamacro++",
  11873. height: math.unit(3, "lightyears")
  11874. },
  11875. ]
  11876. ))
  11877. characterMakers.push(() => makeCharacter(
  11878. { name: "Shiroryu" },
  11879. {
  11880. front: {
  11881. height: math.unit(6, "feet"),
  11882. weight: math.unit(50, "kg"),
  11883. name: "front",
  11884. image: {
  11885. source: "./media/characters/shiroryu/front.svg",
  11886. extra: 1990 / 1935
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Mortal Mingling",
  11893. height: math.unit(3, "meters")
  11894. },
  11895. {
  11896. name: "Kaiju-ish",
  11897. height: math.unit(250, "meters")
  11898. },
  11899. {
  11900. name: "Somewhat Godly",
  11901. height: math.unit(400, "km"),
  11902. default: true
  11903. },
  11904. {
  11905. name: "Planetary",
  11906. height: math.unit(300, "megameters")
  11907. },
  11908. {
  11909. name: "Galaxy-dwarfing",
  11910. height: math.unit(450, "kiloparsecs")
  11911. },
  11912. {
  11913. name: "Universe Eater",
  11914. height: math.unit(150, "gigaparsecs")
  11915. },
  11916. {
  11917. name: "Almost Immeasurable",
  11918. height: math.unit(1.3e266, "yottaparsecs")
  11919. },
  11920. ]
  11921. ))
  11922. characterMakers.push(() => makeCharacter(
  11923. { name: "Umeko" },
  11924. {
  11925. front: {
  11926. height: math.unit(6, "feet"),
  11927. weight: math.unit(150, "lb"),
  11928. name: "Front",
  11929. image: {
  11930. source: "./media/characters/umeko/front.svg",
  11931. extra: 1,
  11932. bottom: 0.019
  11933. }
  11934. },
  11935. frontArmored: {
  11936. height: math.unit(6, "feet"),
  11937. weight: math.unit(150, "lb"),
  11938. name: "Front (Armored)",
  11939. image: {
  11940. source: "./media/characters/umeko/front-armored.svg",
  11941. extra: 1,
  11942. bottom: 0.021
  11943. }
  11944. },
  11945. },
  11946. [
  11947. {
  11948. name: "Macro",
  11949. height: math.unit(220, "feet"),
  11950. default: true
  11951. },
  11952. {
  11953. name: "Guardian Dragon",
  11954. height: math.unit(50, "miles")
  11955. },
  11956. {
  11957. name: "Cosmic",
  11958. height: math.unit(800000, "miles")
  11959. },
  11960. ]
  11961. ))
  11962. characterMakers.push(() => makeCharacter(
  11963. { name: "Cassidy" },
  11964. {
  11965. front: {
  11966. height: math.unit(6, "feet"),
  11967. weight: math.unit(150, "lb"),
  11968. name: "Front",
  11969. image: {
  11970. source: "./media/characters/cassidy/front.svg",
  11971. extra: 1,
  11972. bottom: 0.043
  11973. }
  11974. },
  11975. },
  11976. [
  11977. {
  11978. name: "Canon Height",
  11979. height: math.unit(120, "feet"),
  11980. default: true
  11981. },
  11982. {
  11983. name: "Macro+",
  11984. height: math.unit(400, "feet")
  11985. },
  11986. {
  11987. name: "Macro++",
  11988. height: math.unit(4000, "feet")
  11989. },
  11990. {
  11991. name: "Megamacro",
  11992. height: math.unit(3, "miles")
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Isaac" },
  11998. {
  11999. front: {
  12000. height: math.unit(6, "feet"),
  12001. weight: math.unit(150, "lb"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/isaac/front.svg",
  12005. extra: 896 / 815,
  12006. bottom: 0.11
  12007. }
  12008. },
  12009. },
  12010. [
  12011. {
  12012. name: "Human Size",
  12013. height: math.unit(8, "feet"),
  12014. default: true
  12015. },
  12016. {
  12017. name: "Macro",
  12018. height: math.unit(400, "feet")
  12019. },
  12020. {
  12021. name: "Megamacro",
  12022. height: math.unit(50, "miles")
  12023. },
  12024. {
  12025. name: "Canon Height",
  12026. height: math.unit(200, "AU")
  12027. },
  12028. ]
  12029. ))
  12030. characterMakers.push(() => makeCharacter(
  12031. { name: "Sleekit" },
  12032. {
  12033. front: {
  12034. height: math.unit(6, "feet"),
  12035. weight: math.unit(72, "kg"),
  12036. name: "Front",
  12037. image: {
  12038. source: "./media/characters/sleekit/front.svg",
  12039. extra: 4693 / 4487,
  12040. bottom: 0.012
  12041. }
  12042. },
  12043. },
  12044. [
  12045. {
  12046. name: "Minimum Height",
  12047. height: math.unit(10, "meters")
  12048. },
  12049. {
  12050. name: "Smaller",
  12051. height: math.unit(25, "meters")
  12052. },
  12053. {
  12054. name: "Larger",
  12055. height: math.unit(38, "meters"),
  12056. default: true
  12057. },
  12058. {
  12059. name: "Maximum height",
  12060. height: math.unit(100, "meters")
  12061. },
  12062. ]
  12063. ))
  12064. characterMakers.push(() => makeCharacter(
  12065. { name: "Nillia" },
  12066. {
  12067. front: {
  12068. height: math.unit(6, "feet"),
  12069. weight: math.unit(150, "lb"),
  12070. name: "Front",
  12071. image: {
  12072. source: "./media/characters/nillia/front.svg",
  12073. extra: 2195 / 2037,
  12074. bottom: 0.005
  12075. }
  12076. },
  12077. back: {
  12078. height: math.unit(6, "feet"),
  12079. weight: math.unit(150, "lb"),
  12080. name: "Back",
  12081. image: {
  12082. source: "./media/characters/nillia/back.svg",
  12083. extra: 2195 / 2037,
  12084. bottom: 0.005
  12085. }
  12086. },
  12087. },
  12088. [
  12089. {
  12090. name: "Canon Height",
  12091. height: math.unit(489, "feet"),
  12092. default: true
  12093. }
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Mesmyriza" },
  12098. {
  12099. front: {
  12100. height: math.unit(6, "feet"),
  12101. weight: math.unit(150, "lb"),
  12102. name: "Front",
  12103. image: {
  12104. source: "./media/characters/mesmyriza/front.svg",
  12105. extra: 2067 / 1784,
  12106. bottom: 0.035
  12107. }
  12108. },
  12109. foot: {
  12110. height: math.unit(6 / (250 / 35), "feet"),
  12111. name: "Foot",
  12112. image: {
  12113. source: "./media/characters/mesmyriza/foot.svg"
  12114. }
  12115. },
  12116. },
  12117. [
  12118. {
  12119. name: "Macro",
  12120. height: math.unit(457, "meters"),
  12121. default: true
  12122. },
  12123. {
  12124. name: "Megamacro",
  12125. height: math.unit(8, "megameters")
  12126. },
  12127. ]
  12128. ))
  12129. characterMakers.push(() => makeCharacter(
  12130. { name: "Saudade" },
  12131. {
  12132. front: {
  12133. height: math.unit(6, "feet"),
  12134. weight: math.unit(250, "lb"),
  12135. name: "Front",
  12136. image: {
  12137. source: "./media/characters/saudade/front.svg",
  12138. extra: 1172 / 1139,
  12139. bottom: 0.035
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Micro",
  12146. height: math.unit(3, "inches")
  12147. },
  12148. {
  12149. name: "Normal",
  12150. height: math.unit(6, "feet"),
  12151. default: true
  12152. },
  12153. {
  12154. name: "Macro",
  12155. height: math.unit(50, "feet")
  12156. },
  12157. {
  12158. name: "Megamacro",
  12159. height: math.unit(2800, "feet")
  12160. },
  12161. ]
  12162. ))
  12163. characterMakers.push(() => makeCharacter(
  12164. { name: "Keireer" },
  12165. {
  12166. front: {
  12167. height: math.unit(5 + 4 / 12, "feet"),
  12168. weight: math.unit(100, "lb"),
  12169. name: "Front",
  12170. image: {
  12171. source: "./media/characters/keireer/front.svg",
  12172. extra: 716 / 666,
  12173. bottom: 0.05
  12174. }
  12175. },
  12176. },
  12177. [
  12178. {
  12179. name: "Normal",
  12180. height: math.unit(5 + 4 / 12, "feet"),
  12181. default: true
  12182. },
  12183. ]
  12184. ))
  12185. characterMakers.push(() => makeCharacter(
  12186. { name: "Mirja" },
  12187. {
  12188. front: {
  12189. height: math.unit(6, "feet"),
  12190. weight: math.unit(90, "kg"),
  12191. name: "Front",
  12192. image: {
  12193. source: "./media/characters/mirja/front.svg",
  12194. extra: 1789 / 1683,
  12195. bottom: 0.05
  12196. }
  12197. },
  12198. frontDressed: {
  12199. height: math.unit(6, "feet"),
  12200. weight: math.unit(90, "lb"),
  12201. name: "Front (Dressed)",
  12202. image: {
  12203. source: "./media/characters/mirja/front-dressed.svg",
  12204. extra: 1789 / 1683,
  12205. bottom: 0.05
  12206. }
  12207. },
  12208. back: {
  12209. height: math.unit(6, "feet"),
  12210. weight: math.unit(90, "lb"),
  12211. name: "Back",
  12212. image: {
  12213. source: "./media/characters/mirja/back.svg",
  12214. extra: 953 / 917,
  12215. bottom: 0.017
  12216. }
  12217. },
  12218. },
  12219. [
  12220. {
  12221. name: "\"Incognito\"",
  12222. height: math.unit(3, "meters")
  12223. },
  12224. {
  12225. name: "Strolling Size",
  12226. height: math.unit(15, "km")
  12227. },
  12228. {
  12229. name: "Larger Strolling Size",
  12230. height: math.unit(400, "km")
  12231. },
  12232. {
  12233. name: "Preferred Size",
  12234. height: math.unit(5000, "km")
  12235. },
  12236. {
  12237. name: "True Size",
  12238. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12239. default: true
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Nightraver" },
  12245. {
  12246. front: {
  12247. height: math.unit(15, "feet"),
  12248. weight: math.unit(880, "kg"),
  12249. name: "Front",
  12250. image: {
  12251. source: "./media/characters/nightraver/front.svg",
  12252. extra: 2444 / 2160,
  12253. bottom: 0.027
  12254. }
  12255. },
  12256. back: {
  12257. height: math.unit(15, "feet"),
  12258. weight: math.unit(880, "kg"),
  12259. name: "Back",
  12260. image: {
  12261. source: "./media/characters/nightraver/back.svg",
  12262. extra: 2309 / 2180,
  12263. bottom: 0.005
  12264. }
  12265. },
  12266. sole: {
  12267. height: math.unit(2.878, "feet"),
  12268. name: "Sole",
  12269. image: {
  12270. source: "./media/characters/nightraver/sole.svg"
  12271. }
  12272. },
  12273. foot: {
  12274. height: math.unit(2.285, "feet"),
  12275. name: "Foot",
  12276. image: {
  12277. source: "./media/characters/nightraver/foot.svg"
  12278. }
  12279. },
  12280. maw: {
  12281. height: math.unit(2.67, "feet"),
  12282. name: "Maw",
  12283. image: {
  12284. source: "./media/characters/nightraver/maw.svg"
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Micro",
  12291. height: math.unit(1, "cm")
  12292. },
  12293. {
  12294. name: "Normal",
  12295. height: math.unit(15, "feet"),
  12296. default: true
  12297. },
  12298. {
  12299. name: "Macro",
  12300. height: math.unit(300, "feet")
  12301. },
  12302. {
  12303. name: "Megamacro",
  12304. height: math.unit(300, "miles")
  12305. },
  12306. {
  12307. name: "Gigamacro",
  12308. height: math.unit(10000, "miles")
  12309. },
  12310. ]
  12311. ))
  12312. characterMakers.push(() => makeCharacter(
  12313. { name: "Arc" },
  12314. {
  12315. side: {
  12316. height: math.unit(2, "inches"),
  12317. weight: math.unit(5, "grams"),
  12318. name: "Side",
  12319. image: {
  12320. source: "./media/characters/arc/side.svg"
  12321. }
  12322. },
  12323. },
  12324. [
  12325. {
  12326. name: "Micro",
  12327. height: math.unit(2, "inches"),
  12328. default: true
  12329. },
  12330. ]
  12331. ))
  12332. characterMakers.push(() => makeCharacter(
  12333. { name: "Nebula Shahar" },
  12334. {
  12335. front: {
  12336. height: math.unit(1.1938, "meters"),
  12337. weight: math.unit(54, "kg"),
  12338. name: "Front",
  12339. image: {
  12340. source: "./media/characters/nebula-shahar/front.svg",
  12341. extra: 1642 / 1436,
  12342. bottom: 0.06
  12343. }
  12344. },
  12345. },
  12346. [
  12347. {
  12348. name: "Megamicro",
  12349. height: math.unit(0.3, "mm")
  12350. },
  12351. {
  12352. name: "Micro",
  12353. height: math.unit(3, "cm")
  12354. },
  12355. {
  12356. name: "Normal",
  12357. height: math.unit(138, "cm"),
  12358. default: true
  12359. },
  12360. {
  12361. name: "Macro",
  12362. height: math.unit(30, "m")
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Shayla" },
  12368. {
  12369. front: {
  12370. height: math.unit(5.24, "feet"),
  12371. weight: math.unit(150, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/shayla/front.svg",
  12375. extra: 1512 / 1414,
  12376. bottom: 0.01
  12377. }
  12378. },
  12379. back: {
  12380. height: math.unit(5.24, "feet"),
  12381. weight: math.unit(150, "lb"),
  12382. name: "Back",
  12383. image: {
  12384. source: "./media/characters/shayla/back.svg",
  12385. extra: 1512 / 1414
  12386. }
  12387. },
  12388. hand: {
  12389. height: math.unit(0.7781496062992126, "feet"),
  12390. name: "Hand",
  12391. image: {
  12392. source: "./media/characters/shayla/hand.svg"
  12393. }
  12394. },
  12395. foot: {
  12396. height: math.unit(1.4206036745406823, "feet"),
  12397. name: "Foot",
  12398. image: {
  12399. source: "./media/characters/shayla/foot.svg"
  12400. }
  12401. },
  12402. },
  12403. [
  12404. {
  12405. name: "Micro",
  12406. height: math.unit(0.32, "feet")
  12407. },
  12408. {
  12409. name: "Normal",
  12410. height: math.unit(5.24, "feet"),
  12411. default: true
  12412. },
  12413. {
  12414. name: "Macro",
  12415. height: math.unit(492.12, "feet")
  12416. },
  12417. {
  12418. name: "Megamacro",
  12419. height: math.unit(186.41, "miles")
  12420. },
  12421. ]
  12422. ))
  12423. characterMakers.push(() => makeCharacter(
  12424. { name: "Pia Jr." },
  12425. {
  12426. front: {
  12427. height: math.unit(2.2, "m"),
  12428. weight: math.unit(120, "kg"),
  12429. name: "Front",
  12430. image: {
  12431. source: "./media/characters/pia-jr/front.svg",
  12432. extra: 1000 / 970,
  12433. bottom: 0.035
  12434. }
  12435. },
  12436. hand: {
  12437. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12438. name: "Hand",
  12439. image: {
  12440. source: "./media/characters/pia-jr/hand.svg"
  12441. }
  12442. },
  12443. paw: {
  12444. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12445. name: "Paw",
  12446. image: {
  12447. source: "./media/characters/pia-jr/paw.svg"
  12448. }
  12449. },
  12450. },
  12451. [
  12452. {
  12453. name: "Micro",
  12454. height: math.unit(1.2, "cm")
  12455. },
  12456. {
  12457. name: "Normal",
  12458. height: math.unit(2.2, "m"),
  12459. default: true
  12460. },
  12461. {
  12462. name: "Macro",
  12463. height: math.unit(180, "m")
  12464. },
  12465. {
  12466. name: "Megamacro",
  12467. height: math.unit(420, "km")
  12468. },
  12469. ]
  12470. ))
  12471. characterMakers.push(() => makeCharacter(
  12472. { name: "Pia Sr." },
  12473. {
  12474. front: {
  12475. height: math.unit(2, "m"),
  12476. weight: math.unit(115, "kg"),
  12477. name: "Front",
  12478. image: {
  12479. source: "./media/characters/pia-sr/front.svg",
  12480. extra: 760 / 730,
  12481. bottom: 0.015
  12482. }
  12483. },
  12484. back: {
  12485. height: math.unit(2, "m"),
  12486. weight: math.unit(115, "kg"),
  12487. name: "Back",
  12488. image: {
  12489. source: "./media/characters/pia-sr/back.svg",
  12490. extra: 760 / 730,
  12491. bottom: 0.01
  12492. }
  12493. },
  12494. hand: {
  12495. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12496. name: "Hand",
  12497. image: {
  12498. source: "./media/characters/pia-sr/hand.svg"
  12499. }
  12500. },
  12501. foot: {
  12502. height: math.unit(1.83, "feet"),
  12503. name: "Foot",
  12504. image: {
  12505. source: "./media/characters/pia-sr/foot.svg"
  12506. }
  12507. },
  12508. },
  12509. [
  12510. {
  12511. name: "Micro",
  12512. height: math.unit(88, "mm")
  12513. },
  12514. {
  12515. name: "Normal",
  12516. height: math.unit(2, "m"),
  12517. default: true
  12518. },
  12519. {
  12520. name: "Macro",
  12521. height: math.unit(200, "m")
  12522. },
  12523. {
  12524. name: "Megamacro",
  12525. height: math.unit(420, "km")
  12526. },
  12527. ]
  12528. ))
  12529. characterMakers.push(() => makeCharacter(
  12530. { name: "KIBIBYTE" },
  12531. {
  12532. front: {
  12533. height: math.unit(8 + 2 / 12, "feet"),
  12534. weight: math.unit(300, "lb"),
  12535. name: "Front",
  12536. image: {
  12537. source: "./media/characters/kibibyte/front.svg",
  12538. extra: 2221 / 2098,
  12539. bottom: 0.04
  12540. }
  12541. },
  12542. },
  12543. [
  12544. {
  12545. name: "Normal",
  12546. height: math.unit(8 + 2 / 12, "feet"),
  12547. default: true
  12548. },
  12549. {
  12550. name: "Socialable Macro",
  12551. height: math.unit(50, "feet")
  12552. },
  12553. {
  12554. name: "Macro",
  12555. height: math.unit(300, "feet")
  12556. },
  12557. {
  12558. name: "Megamacro",
  12559. height: math.unit(500, "miles")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Felix" },
  12565. {
  12566. front: {
  12567. height: math.unit(6, "feet"),
  12568. weight: math.unit(150, "lb"),
  12569. name: "Front",
  12570. image: {
  12571. source: "./media/characters/felix/front.svg",
  12572. extra: 762 / 722,
  12573. bottom: 0.02
  12574. }
  12575. },
  12576. frontClothed: {
  12577. height: math.unit(6, "feet"),
  12578. weight: math.unit(150, "lb"),
  12579. name: "Front (Clothed)",
  12580. image: {
  12581. source: "./media/characters/felix/front-clothed.svg",
  12582. extra: 762 / 722,
  12583. bottom: 0.02
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Normal",
  12590. height: math.unit(6 + 8 / 12, "feet"),
  12591. default: true
  12592. },
  12593. {
  12594. name: "Macro",
  12595. height: math.unit(2600, "feet")
  12596. },
  12597. {
  12598. name: "Megamacro",
  12599. height: math.unit(450, "miles")
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Tobo" },
  12605. {
  12606. front: {
  12607. height: math.unit(6 + 1 / 12, "feet"),
  12608. weight: math.unit(250, "lb"),
  12609. name: "Front",
  12610. image: {
  12611. source: "./media/characters/tobo/front.svg",
  12612. extra: 608 / 586,
  12613. bottom: 0.023
  12614. }
  12615. },
  12616. back: {
  12617. height: math.unit(6 + 1 / 12, "feet"),
  12618. weight: math.unit(250, "lb"),
  12619. name: "Back",
  12620. image: {
  12621. source: "./media/characters/tobo/back.svg",
  12622. extra: 608 / 586
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Nano",
  12629. height: math.unit(2, "nm")
  12630. },
  12631. {
  12632. name: "Megamicro",
  12633. height: math.unit(0.1, "mm")
  12634. },
  12635. {
  12636. name: "Micro",
  12637. height: math.unit(1, "inch"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Human-sized",
  12642. height: math.unit(6 + 1 / 12, "feet")
  12643. },
  12644. {
  12645. name: "Macro",
  12646. height: math.unit(250, "feet")
  12647. },
  12648. {
  12649. name: "Megamacro",
  12650. height: math.unit(75, "miles")
  12651. },
  12652. {
  12653. name: "Texas-sized",
  12654. height: math.unit(750, "miles")
  12655. },
  12656. {
  12657. name: "Teramacro",
  12658. height: math.unit(50000, "miles")
  12659. },
  12660. ]
  12661. ))
  12662. characterMakers.push(() => makeCharacter(
  12663. { name: "Danny Kapowsky" },
  12664. {
  12665. front: {
  12666. height: math.unit(6, "feet"),
  12667. weight: math.unit(269, "lb"),
  12668. name: "Front",
  12669. image: {
  12670. source: "./media/characters/danny-kapowsky/front.svg",
  12671. extra: 766 / 736,
  12672. bottom: 0.044
  12673. }
  12674. },
  12675. back: {
  12676. height: math.unit(6, "feet"),
  12677. weight: math.unit(269, "lb"),
  12678. name: "Back",
  12679. image: {
  12680. source: "./media/characters/danny-kapowsky/back.svg",
  12681. extra: 797 / 760,
  12682. bottom: 0.025
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Macro",
  12689. height: math.unit(150, "feet"),
  12690. default: true
  12691. },
  12692. {
  12693. name: "Macro+",
  12694. height: math.unit(200, "feet")
  12695. },
  12696. {
  12697. name: "Macro++",
  12698. height: math.unit(300, "feet")
  12699. },
  12700. {
  12701. name: "Macro+++",
  12702. height: math.unit(400, "feet")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Finn" },
  12708. {
  12709. side: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(170, "lb"),
  12712. name: "Side",
  12713. image: {
  12714. source: "./media/characters/finn/side.svg",
  12715. extra: 1953 / 1807,
  12716. bottom: 0.057
  12717. }
  12718. },
  12719. },
  12720. [
  12721. {
  12722. name: "Megamacro",
  12723. height: math.unit(14445, "feet"),
  12724. default: true
  12725. },
  12726. ]
  12727. ))
  12728. characterMakers.push(() => makeCharacter(
  12729. { name: "Roy" },
  12730. {
  12731. front: {
  12732. height: math.unit(5 + 6 / 12, "feet"),
  12733. weight: math.unit(125, "lb"),
  12734. name: "Front",
  12735. image: {
  12736. source: "./media/characters/roy/front.svg",
  12737. extra: 1,
  12738. bottom: 0.11
  12739. }
  12740. },
  12741. },
  12742. [
  12743. {
  12744. name: "Micro",
  12745. height: math.unit(3, "inches"),
  12746. default: true
  12747. },
  12748. {
  12749. name: "Normal",
  12750. height: math.unit(5 + 6 / 12, "feet")
  12751. },
  12752. {
  12753. name: "Lesser Macro",
  12754. height: math.unit(60, "feet")
  12755. },
  12756. {
  12757. name: "Greater Macro",
  12758. height: math.unit(120, "feet")
  12759. },
  12760. ]
  12761. ))
  12762. characterMakers.push(() => makeCharacter(
  12763. { name: "Aevsivs" },
  12764. {
  12765. front: {
  12766. height: math.unit(6, "feet"),
  12767. weight: math.unit(100, "lb"),
  12768. name: "Front",
  12769. image: {
  12770. source: "./media/characters/aevsivs/front.svg",
  12771. extra: 1,
  12772. bottom: 0.03
  12773. }
  12774. },
  12775. back: {
  12776. height: math.unit(6, "feet"),
  12777. weight: math.unit(100, "lb"),
  12778. name: "Back",
  12779. image: {
  12780. source: "./media/characters/aevsivs/back.svg"
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Micro",
  12787. height: math.unit(2, "inches"),
  12788. default: true
  12789. },
  12790. {
  12791. name: "Normal",
  12792. height: math.unit(5, "feet")
  12793. },
  12794. ]
  12795. ))
  12796. characterMakers.push(() => makeCharacter(
  12797. { name: "Hildegard" },
  12798. {
  12799. front: {
  12800. height: math.unit(5 + 7 / 12, "feet"),
  12801. weight: math.unit(159, "lb"),
  12802. name: "Front",
  12803. image: {
  12804. source: "./media/characters/hildegard/front.svg",
  12805. extra: 312 / 286,
  12806. bottom: 0.005
  12807. }
  12808. },
  12809. },
  12810. [
  12811. {
  12812. name: "Normal",
  12813. height: math.unit(5 + 7 / 12, "feet"),
  12814. default: true
  12815. },
  12816. ]
  12817. ))
  12818. characterMakers.push(() => makeCharacter(
  12819. { name: "Bernard & Wilder" },
  12820. {
  12821. bernard: {
  12822. height: math.unit(2 + 7 / 12, "feet"),
  12823. weight: math.unit(66, "lb"),
  12824. name: "Bernard",
  12825. rename: true,
  12826. image: {
  12827. source: "./media/characters/bernard-wilder/bernard.svg",
  12828. extra: 192 / 128,
  12829. bottom: 0.05
  12830. }
  12831. },
  12832. wilder: {
  12833. height: math.unit(5 + 8 / 12, "feet"),
  12834. weight: math.unit(143, "lb"),
  12835. name: "Wilder",
  12836. rename: true,
  12837. image: {
  12838. source: "./media/characters/bernard-wilder/wilder.svg",
  12839. extra: 361 / 312,
  12840. bottom: 0.02
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Normal",
  12847. height: math.unit(2 + 7 / 12, "feet"),
  12848. default: true
  12849. },
  12850. ]
  12851. ))
  12852. characterMakers.push(() => makeCharacter(
  12853. { name: "Hearth" },
  12854. {
  12855. anthro: {
  12856. height: math.unit(6 + 1 / 12, "feet"),
  12857. weight: math.unit(155, "lb"),
  12858. name: "Anthro",
  12859. image: {
  12860. source: "./media/characters/hearth/anthro.svg",
  12861. extra: 260 / 250,
  12862. bottom: 0.02
  12863. }
  12864. },
  12865. feral: {
  12866. height: math.unit(3.78, "feet"),
  12867. weight: math.unit(35, "kg"),
  12868. name: "Feral",
  12869. image: {
  12870. source: "./media/characters/hearth/feral.svg",
  12871. extra: 153 / 135,
  12872. bottom: 0.03
  12873. }
  12874. },
  12875. },
  12876. [
  12877. {
  12878. name: "Normal",
  12879. height: math.unit(6 + 1 / 12, "feet"),
  12880. default: true
  12881. },
  12882. ]
  12883. ))
  12884. characterMakers.push(() => makeCharacter(
  12885. { name: "Ingrid" },
  12886. {
  12887. front: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(182, "lb"),
  12890. name: "Front",
  12891. image: {
  12892. source: "./media/characters/ingrid/front.svg",
  12893. extra: 294 / 268,
  12894. bottom: 0.027
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Normal",
  12901. height: math.unit(6, "feet"),
  12902. default: true
  12903. },
  12904. ]
  12905. ))
  12906. characterMakers.push(() => makeCharacter(
  12907. { name: "Malgam" },
  12908. {
  12909. eevee: {
  12910. height: math.unit(2 + 10 / 12, "feet"),
  12911. weight: math.unit(86, "lb"),
  12912. name: "Malgam",
  12913. image: {
  12914. source: "./media/characters/malgam/eevee.svg",
  12915. extra: 218 / 180,
  12916. bottom: 0.2
  12917. }
  12918. },
  12919. sylveon: {
  12920. height: math.unit(4, "feet"),
  12921. weight: math.unit(101, "lb"),
  12922. name: "Future Malgam",
  12923. rename: true,
  12924. image: {
  12925. source: "./media/characters/malgam/sylveon.svg",
  12926. extra: 371 / 325,
  12927. bottom: 0.015
  12928. }
  12929. },
  12930. gigantamax: {
  12931. height: math.unit(50, "feet"),
  12932. name: "Gigantamax Malgam",
  12933. rename: true,
  12934. image: {
  12935. source: "./media/characters/malgam/gigantamax.svg"
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Normal",
  12942. height: math.unit(2 + 10 / 12, "feet"),
  12943. default: true
  12944. },
  12945. ]
  12946. ))
  12947. characterMakers.push(() => makeCharacter(
  12948. { name: "Fleur" },
  12949. {
  12950. front: {
  12951. height: math.unit(5 + 11 / 12, "feet"),
  12952. weight: math.unit(188, "lb"),
  12953. name: "Front",
  12954. image: {
  12955. source: "./media/characters/fleur/front.svg",
  12956. extra: 309 / 283,
  12957. bottom: 0.007
  12958. }
  12959. },
  12960. },
  12961. [
  12962. {
  12963. name: "Normal",
  12964. height: math.unit(5 + 11 / 12, "feet"),
  12965. default: true
  12966. },
  12967. ]
  12968. ))
  12969. characterMakers.push(() => makeCharacter(
  12970. { name: "Jude" },
  12971. {
  12972. front: {
  12973. height: math.unit(5 + 4 / 12, "feet"),
  12974. weight: math.unit(122, "lb"),
  12975. name: "Front",
  12976. image: {
  12977. source: "./media/characters/jude/front.svg",
  12978. extra: 288 / 273,
  12979. bottom: 0.03
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(5 + 4 / 12, "feet"),
  12987. default: true
  12988. },
  12989. ]
  12990. ))
  12991. characterMakers.push(() => makeCharacter(
  12992. { name: "Seara" },
  12993. {
  12994. front: {
  12995. height: math.unit(5 + 11 / 12, "feet"),
  12996. weight: math.unit(190, "lb"),
  12997. name: "Front",
  12998. image: {
  12999. source: "./media/characters/seara/front.svg",
  13000. extra: 1,
  13001. bottom: 0.05
  13002. }
  13003. },
  13004. },
  13005. [
  13006. {
  13007. name: "Normal",
  13008. height: math.unit(5 + 11 / 12, "feet"),
  13009. default: true
  13010. },
  13011. ]
  13012. ))
  13013. characterMakers.push(() => makeCharacter(
  13014. { name: "Caspian" },
  13015. {
  13016. front: {
  13017. height: math.unit(16 + 5 / 12, "feet"),
  13018. weight: math.unit(524, "lb"),
  13019. name: "Front",
  13020. image: {
  13021. source: "./media/characters/caspian/front.svg",
  13022. extra: 1,
  13023. bottom: 0.04
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Normal",
  13030. height: math.unit(16 + 5 / 12, "feet"),
  13031. default: true
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Mika" },
  13037. {
  13038. front: {
  13039. height: math.unit(5 + 7 / 12, "feet"),
  13040. weight: math.unit(170, "lb"),
  13041. name: "Front",
  13042. image: {
  13043. source: "./media/characters/mika/front.svg",
  13044. extra: 1,
  13045. bottom: 0.016
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Normal",
  13052. height: math.unit(5 + 7 / 12, "feet"),
  13053. default: true
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Sol" },
  13059. {
  13060. front: {
  13061. height: math.unit(6 + 2 / 12, "feet"),
  13062. weight: math.unit(268, "lb"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/sol/front.svg",
  13066. extra: 247 / 231,
  13067. bottom: 0.05
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Normal",
  13074. height: math.unit(6 + 2 / 12, "feet"),
  13075. default: true
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Umiko" },
  13081. {
  13082. buizel: {
  13083. height: math.unit(2 + 5 / 12, "feet"),
  13084. weight: math.unit(87, "lb"),
  13085. name: "Buizel",
  13086. image: {
  13087. source: "./media/characters/umiko/buizel.svg",
  13088. extra: 172 / 157,
  13089. bottom: 0.01
  13090. }
  13091. },
  13092. floatzel: {
  13093. height: math.unit(5 + 9 / 12, "feet"),
  13094. weight: math.unit(250, "lb"),
  13095. name: "Floatzel",
  13096. image: {
  13097. source: "./media/characters/umiko/floatzel.svg",
  13098. extra: 262 / 248
  13099. }
  13100. },
  13101. },
  13102. [
  13103. {
  13104. name: "Normal",
  13105. height: math.unit(2 + 5 / 12, "feet"),
  13106. default: true
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Iliac" },
  13112. {
  13113. front: {
  13114. height: math.unit(6 + 2 / 12, "feet"),
  13115. weight: math.unit(146, "lb"),
  13116. name: "Front",
  13117. image: {
  13118. source: "./media/characters/iliac/front.svg",
  13119. extra: 389 / 365,
  13120. bottom: 0.035
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Normal",
  13127. height: math.unit(6 + 2 / 12, "feet"),
  13128. default: true
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Topaz" },
  13134. {
  13135. front: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(170, "lb"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/topaz/front.svg",
  13141. extra: 317 / 303,
  13142. bottom: 0.055
  13143. }
  13144. },
  13145. },
  13146. [
  13147. {
  13148. name: "Normal",
  13149. height: math.unit(6, "feet"),
  13150. default: true
  13151. },
  13152. ]
  13153. ))
  13154. characterMakers.push(() => makeCharacter(
  13155. { name: "Gabriel" },
  13156. {
  13157. front: {
  13158. height: math.unit(5 + 11 / 12, "feet"),
  13159. weight: math.unit(144, "lb"),
  13160. name: "Front",
  13161. image: {
  13162. source: "./media/characters/gabriel/front.svg",
  13163. extra: 285 / 262,
  13164. bottom: 0.004
  13165. }
  13166. },
  13167. },
  13168. [
  13169. {
  13170. name: "Normal",
  13171. height: math.unit(5 + 11 / 12, "feet"),
  13172. default: true
  13173. },
  13174. ]
  13175. ))
  13176. characterMakers.push(() => makeCharacter(
  13177. { name: "Tempest (Suicune)" },
  13178. {
  13179. side: {
  13180. height: math.unit(6 + 5 / 12, "feet"),
  13181. weight: math.unit(300, "lb"),
  13182. name: "Side",
  13183. image: {
  13184. source: "./media/characters/tempest-suicune/side.svg",
  13185. extra: 195 / 154,
  13186. bottom: 0.04
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(6 + 5 / 12, "feet"),
  13194. default: true
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Vulcan" },
  13200. {
  13201. front: {
  13202. height: math.unit(7 + 2 / 12, "feet"),
  13203. weight: math.unit(322, "lb"),
  13204. name: "Front",
  13205. image: {
  13206. source: "./media/characters/vulcan/front.svg",
  13207. extra: 154 / 147,
  13208. bottom: 0.04
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Normal",
  13215. height: math.unit(7 + 2 / 12, "feet"),
  13216. default: true
  13217. },
  13218. ]
  13219. ))
  13220. characterMakers.push(() => makeCharacter(
  13221. { name: "Gault" },
  13222. {
  13223. front: {
  13224. height: math.unit(5 + 10 / 12, "feet"),
  13225. weight: math.unit(264, "lb"),
  13226. name: "Front",
  13227. image: {
  13228. source: "./media/characters/gault/front.svg",
  13229. extra: 161 / 140,
  13230. bottom: 0.028
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Normal",
  13237. height: math.unit(5 + 10 / 12, "feet"),
  13238. default: true
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Shard" },
  13244. {
  13245. front: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(150, "lb"),
  13248. name: "Front",
  13249. image: {
  13250. source: "./media/characters/shard/front.svg",
  13251. extra: 273 / 238,
  13252. bottom: 0.02
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Normal",
  13259. height: math.unit(3 + 6 / 12, "feet"),
  13260. default: true
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Ashe" },
  13266. {
  13267. front: {
  13268. height: math.unit(5 + 11 / 12, "feet"),
  13269. weight: math.unit(146, "lb"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/ashe/front.svg",
  13273. extra: 400 / 373,
  13274. bottom: 0.01
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Normal",
  13281. height: math.unit(5 + 11 / 12, "feet"),
  13282. default: true
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Beatrix" },
  13288. {
  13289. front: {
  13290. height: math.unit(5 + 5 / 12, "feet"),
  13291. weight: math.unit(135, "lb"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/beatrix/front.svg",
  13295. extra: 392 / 379,
  13296. bottom: 0.01
  13297. }
  13298. },
  13299. },
  13300. [
  13301. {
  13302. name: "Normal",
  13303. height: math.unit(6, "feet"),
  13304. default: true
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Ignatius" },
  13310. {
  13311. front: {
  13312. height: math.unit(6, "feet"),
  13313. weight: math.unit(150, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/ignatius/front.svg",
  13317. extra: 245 / 222,
  13318. bottom: 0.01
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Normal",
  13325. height: math.unit(5 + 5 / 12, "feet"),
  13326. default: true
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Mei Li" },
  13332. {
  13333. front: {
  13334. height: math.unit(6 + 2 / 12, "feet"),
  13335. weight: math.unit(138, "lb"),
  13336. name: "Front",
  13337. image: {
  13338. source: "./media/characters/mei-li/front.svg",
  13339. extra: 237 / 229,
  13340. bottom: 0.03
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Normal",
  13347. height: math.unit(6 + 2 / 12, "feet"),
  13348. default: true
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Puru" },
  13354. {
  13355. front: {
  13356. height: math.unit(2 + 4 / 12, "feet"),
  13357. weight: math.unit(62, "lb"),
  13358. name: "Front",
  13359. image: {
  13360. source: "./media/characters/puru/front.svg",
  13361. extra: 206 / 149,
  13362. bottom: 0.06
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Normal",
  13369. height: math.unit(2 + 4 / 12, "feet"),
  13370. default: true
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Kee" },
  13376. {
  13377. taur: {
  13378. height: math.unit(11, "feet"),
  13379. weight: math.unit(500, "lb"),
  13380. name: "Taur",
  13381. image: {
  13382. source: "./media/characters/kee/taur.svg",
  13383. extra: 1,
  13384. bottom: 0.04
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Normal",
  13391. height: math.unit(11, "feet"),
  13392. default: true
  13393. },
  13394. ]
  13395. ))
  13396. characterMakers.push(() => makeCharacter(
  13397. { name: "Cobalt (Dracha)" },
  13398. {
  13399. anthro: {
  13400. height: math.unit(7, "feet"),
  13401. weight: math.unit(190, "lb"),
  13402. name: "Anthro",
  13403. image: {
  13404. source: "./media/characters/cobalt-dracha/anthro.svg",
  13405. extra: 231 / 225,
  13406. bottom: 0.04
  13407. }
  13408. },
  13409. feral: {
  13410. height: math.unit(9 + 7 / 12, "feet"),
  13411. weight: math.unit(294, "lb"),
  13412. name: "Feral",
  13413. image: {
  13414. source: "./media/characters/cobalt-dracha/feral.svg",
  13415. extra: 692 / 633,
  13416. bottom: 0.05
  13417. }
  13418. },
  13419. },
  13420. [
  13421. {
  13422. name: "Normal",
  13423. height: math.unit(7, "feet"),
  13424. default: true
  13425. },
  13426. ]
  13427. ))
  13428. characterMakers.push(() => makeCharacter(
  13429. { name: "Java" },
  13430. {
  13431. fallen: {
  13432. height: math.unit(11 + 8 / 12, "feet"),
  13433. weight: math.unit(485, "lb"),
  13434. name: "Java (Fallen)",
  13435. rename: true,
  13436. image: {
  13437. source: "./media/characters/java/fallen.svg",
  13438. extra: 226 / 208,
  13439. bottom: 0.005
  13440. }
  13441. },
  13442. godkin: {
  13443. height: math.unit(10 + 6 / 12, "feet"),
  13444. weight: math.unit(328, "lb"),
  13445. name: "Java (Godkin)",
  13446. rename: true,
  13447. image: {
  13448. source: "./media/characters/java/godkin.svg",
  13449. extra: 270 / 262,
  13450. bottom: 0.02
  13451. }
  13452. },
  13453. },
  13454. [
  13455. {
  13456. name: "Normal",
  13457. height: math.unit(11 + 8 / 12, "feet"),
  13458. default: true
  13459. },
  13460. ]
  13461. ))
  13462. characterMakers.push(() => makeCharacter(
  13463. { name: "Skoll" },
  13464. {
  13465. front: {
  13466. height: math.unit(7 + 8 / 12, "feet"),
  13467. weight: math.unit(320, "lb"),
  13468. name: "Front",
  13469. image: {
  13470. source: "./media/characters/skoll/front.svg",
  13471. extra: 232 / 220,
  13472. bottom: 0.02
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Normal",
  13479. height: math.unit(7 + 8 / 12, "feet"),
  13480. default: true
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Purna" },
  13486. {
  13487. front: {
  13488. height: math.unit(5 + 9 / 12, "feet"),
  13489. weight: math.unit(170, "lb"),
  13490. name: "Front",
  13491. image: {
  13492. source: "./media/characters/purna/front.svg",
  13493. extra: 239 / 229,
  13494. bottom: 0.01
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Normal",
  13501. height: math.unit(5 + 9 / 12, "feet"),
  13502. default: true
  13503. },
  13504. ]
  13505. ))
  13506. characterMakers.push(() => makeCharacter(
  13507. { name: "Kuva" },
  13508. {
  13509. front: {
  13510. height: math.unit(5 + 9 / 12, "feet"),
  13511. weight: math.unit(142, "lb"),
  13512. name: "Front",
  13513. image: {
  13514. source: "./media/characters/kuva/front.svg",
  13515. extra: 281 / 271,
  13516. bottom: 0.006
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Normal",
  13523. height: math.unit(5 + 9 / 12, "feet"),
  13524. default: true
  13525. },
  13526. ]
  13527. ))
  13528. characterMakers.push(() => makeCharacter(
  13529. { name: "Embra" },
  13530. {
  13531. anthro: {
  13532. height: math.unit(9 + 2 / 12, "feet"),
  13533. weight: math.unit(270, "lb"),
  13534. name: "Anthro",
  13535. image: {
  13536. source: "./media/characters/embra/anthro.svg",
  13537. extra: 200 / 187,
  13538. bottom: 0.02
  13539. }
  13540. },
  13541. feral: {
  13542. height: math.unit(18 + 8 / 12, "feet"),
  13543. weight: math.unit(576, "lb"),
  13544. name: "Feral",
  13545. image: {
  13546. source: "./media/characters/embra/feral.svg",
  13547. extra: 152 / 137,
  13548. bottom: 0.037
  13549. }
  13550. },
  13551. },
  13552. [
  13553. {
  13554. name: "Normal",
  13555. height: math.unit(9 + 2 / 12, "feet"),
  13556. default: true
  13557. },
  13558. ]
  13559. ))
  13560. characterMakers.push(() => makeCharacter(
  13561. { name: "Grottos" },
  13562. {
  13563. anthro: {
  13564. height: math.unit(10 + 9 / 12, "feet"),
  13565. weight: math.unit(224, "lb"),
  13566. name: "Anthro",
  13567. image: {
  13568. source: "./media/characters/grottos/anthro.svg",
  13569. extra: 350 / 332,
  13570. bottom: 0.045
  13571. }
  13572. },
  13573. feral: {
  13574. height: math.unit(20 + 7 / 12, "feet"),
  13575. weight: math.unit(629, "lb"),
  13576. name: "Feral",
  13577. image: {
  13578. source: "./media/characters/grottos/feral.svg",
  13579. extra: 207 / 190,
  13580. bottom: 0.05
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Normal",
  13587. height: math.unit(10 + 9 / 12, "feet"),
  13588. default: true
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Frifna" },
  13594. {
  13595. anthro: {
  13596. height: math.unit(9 + 6 / 12, "feet"),
  13597. weight: math.unit(298, "lb"),
  13598. name: "Anthro",
  13599. image: {
  13600. source: "./media/characters/frifna/anthro.svg",
  13601. extra: 282 / 269,
  13602. bottom: 0.015
  13603. }
  13604. },
  13605. feral: {
  13606. height: math.unit(16 + 2 / 12, "feet"),
  13607. weight: math.unit(624, "lb"),
  13608. name: "Feral",
  13609. image: {
  13610. source: "./media/characters/frifna/feral.svg"
  13611. }
  13612. },
  13613. },
  13614. [
  13615. {
  13616. name: "Normal",
  13617. height: math.unit(9 + 6 / 12, "feet"),
  13618. default: true
  13619. },
  13620. ]
  13621. ))
  13622. characterMakers.push(() => makeCharacter(
  13623. { name: "Elise" },
  13624. {
  13625. front: {
  13626. height: math.unit(6 + 2 / 12, "feet"),
  13627. weight: math.unit(168, "lb"),
  13628. name: "Front",
  13629. image: {
  13630. source: "./media/characters/elise/front.svg",
  13631. extra: 276 / 271
  13632. }
  13633. },
  13634. },
  13635. [
  13636. {
  13637. name: "Normal",
  13638. height: math.unit(6 + 2 / 12, "feet"),
  13639. default: true
  13640. },
  13641. ]
  13642. ))
  13643. characterMakers.push(() => makeCharacter(
  13644. { name: "Glade" },
  13645. {
  13646. front: {
  13647. height: math.unit(5 + 10 / 12, "feet"),
  13648. weight: math.unit(210, "lb"),
  13649. name: "Front",
  13650. image: {
  13651. source: "./media/characters/glade/front.svg",
  13652. extra: 258 / 247,
  13653. bottom: 0.008
  13654. }
  13655. },
  13656. },
  13657. [
  13658. {
  13659. name: "Normal",
  13660. height: math.unit(5 + 10 / 12, "feet"),
  13661. default: true
  13662. },
  13663. ]
  13664. ))
  13665. characterMakers.push(() => makeCharacter(
  13666. { name: "Rina" },
  13667. {
  13668. front: {
  13669. height: math.unit(5 + 10 / 12, "feet"),
  13670. weight: math.unit(129, "lb"),
  13671. name: "Front",
  13672. image: {
  13673. source: "./media/characters/rina/front.svg",
  13674. extra: 266 / 255,
  13675. bottom: 0.005
  13676. }
  13677. },
  13678. },
  13679. [
  13680. {
  13681. name: "Normal",
  13682. height: math.unit(5 + 10 / 12, "feet"),
  13683. default: true
  13684. },
  13685. ]
  13686. ))
  13687. characterMakers.push(() => makeCharacter(
  13688. { name: "Veronica" },
  13689. {
  13690. front: {
  13691. height: math.unit(6 + 1 / 12, "feet"),
  13692. weight: math.unit(192, "lb"),
  13693. name: "Front",
  13694. image: {
  13695. source: "./media/characters/veronica/front.svg",
  13696. extra: 319 / 309,
  13697. bottom: 0.005
  13698. }
  13699. },
  13700. },
  13701. [
  13702. {
  13703. name: "Normal",
  13704. height: math.unit(6 + 1 / 12, "feet"),
  13705. default: true
  13706. },
  13707. ]
  13708. ))
  13709. characterMakers.push(() => makeCharacter(
  13710. { name: "Braxton" },
  13711. {
  13712. front: {
  13713. height: math.unit(9 + 3 / 12, "feet"),
  13714. weight: math.unit(1100, "lb"),
  13715. name: "Front",
  13716. image: {
  13717. source: "./media/characters/braxton/front.svg",
  13718. extra: 1057 / 984,
  13719. bottom: 0.05
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Normal",
  13726. height: math.unit(9 + 3 / 12, "feet")
  13727. },
  13728. {
  13729. name: "Giant",
  13730. height: math.unit(300, "feet"),
  13731. default: true
  13732. },
  13733. {
  13734. name: "Macro",
  13735. height: math.unit(700, "feet")
  13736. },
  13737. {
  13738. name: "Megamacro",
  13739. height: math.unit(6000, "feet")
  13740. },
  13741. ]
  13742. ))
  13743. characterMakers.push(() => makeCharacter(
  13744. { name: "Blue Feyonics" },
  13745. {
  13746. front: {
  13747. height: math.unit(6 + 7 / 12, "feet"),
  13748. weight: math.unit(150, "lb"),
  13749. name: "Front",
  13750. image: {
  13751. source: "./media/characters/blue-feyonics/front.svg",
  13752. extra: 1403 / 1306,
  13753. bottom: 0.047
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Normal",
  13760. height: math.unit(6 + 7 / 12, "feet"),
  13761. default: true
  13762. },
  13763. ]
  13764. ))
  13765. characterMakers.push(() => makeCharacter(
  13766. { name: "Maxwell" },
  13767. {
  13768. front: {
  13769. height: math.unit(1.8, "meters"),
  13770. weight: math.unit(60, "kg"),
  13771. name: "Front",
  13772. image: {
  13773. source: "./media/characters/maxwell/front.svg",
  13774. extra: 2060 / 1873
  13775. }
  13776. },
  13777. },
  13778. [
  13779. {
  13780. name: "Micro",
  13781. height: math.unit(1, "mm")
  13782. },
  13783. {
  13784. name: "Normal",
  13785. height: math.unit(1.8, "meter"),
  13786. default: true
  13787. },
  13788. {
  13789. name: "Macro",
  13790. height: math.unit(30, "meters")
  13791. },
  13792. {
  13793. name: "Megamacro",
  13794. height: math.unit(10, "km")
  13795. },
  13796. ]
  13797. ))
  13798. characterMakers.push(() => makeCharacter(
  13799. { name: "Jack" },
  13800. {
  13801. front: {
  13802. height: math.unit(6, "feet"),
  13803. weight: math.unit(150, "lb"),
  13804. name: "Front",
  13805. image: {
  13806. source: "./media/characters/jack/front.svg",
  13807. extra: 1754 / 1640,
  13808. bottom: 0.01
  13809. }
  13810. },
  13811. },
  13812. [
  13813. {
  13814. name: "Normal",
  13815. height: math.unit(80000, "feet"),
  13816. default: true
  13817. },
  13818. {
  13819. name: "Max size",
  13820. height: math.unit(10, "lightyears")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Cafat" },
  13826. {
  13827. upright: {
  13828. height: math.unit(7, "feet"),
  13829. weight: math.unit(170, "lb"),
  13830. name: "Upright",
  13831. image: {
  13832. source: "./media/characters/cafat/upright.svg",
  13833. bottom: 0.01
  13834. }
  13835. },
  13836. uprightFull: {
  13837. height: math.unit(7, "feet"),
  13838. weight: math.unit(170, "lb"),
  13839. name: "Upright (Full)",
  13840. image: {
  13841. source: "./media/characters/cafat/upright-full.svg",
  13842. bottom: 0.01
  13843. }
  13844. },
  13845. side: {
  13846. height: math.unit(5, "feet"),
  13847. weight: math.unit(150, "lb"),
  13848. name: "Side",
  13849. image: {
  13850. source: "./media/characters/cafat/side.svg"
  13851. }
  13852. },
  13853. },
  13854. [
  13855. {
  13856. name: "Small",
  13857. height: math.unit(7, "feet"),
  13858. default: true
  13859. },
  13860. {
  13861. name: "Large",
  13862. height: math.unit(15.5, "feet")
  13863. },
  13864. ]
  13865. ))
  13866. characterMakers.push(() => makeCharacter(
  13867. { name: "Verin Raharra" },
  13868. {
  13869. front: {
  13870. height: math.unit(6, "feet"),
  13871. weight: math.unit(150, "lb"),
  13872. name: "Front",
  13873. image: {
  13874. source: "./media/characters/verin-raharra/front.svg",
  13875. extra: 5019 / 4835,
  13876. bottom: 0.023
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "Normal",
  13883. height: math.unit(7 + 5 / 12, "feet"),
  13884. default: true
  13885. },
  13886. {
  13887. name: "Upsized",
  13888. height: math.unit(20, "feet")
  13889. },
  13890. ]
  13891. ))
  13892. characterMakers.push(() => makeCharacter(
  13893. { name: "Nakata" },
  13894. {
  13895. front: {
  13896. height: math.unit(7, "feet"),
  13897. weight: math.unit(230, "lb"),
  13898. name: "Front",
  13899. image: {
  13900. source: "./media/characters/nakata/front.svg",
  13901. extra: 1.005,
  13902. bottom: 0.01
  13903. }
  13904. },
  13905. },
  13906. [
  13907. {
  13908. name: "Normal",
  13909. height: math.unit(7, "feet"),
  13910. default: true
  13911. },
  13912. {
  13913. name: "Big",
  13914. height: math.unit(14, "feet")
  13915. },
  13916. {
  13917. name: "Macro",
  13918. height: math.unit(400, "feet")
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Lily" },
  13924. {
  13925. front: {
  13926. height: math.unit(4.91, "feet"),
  13927. weight: math.unit(100, "lb"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/lily/front.svg",
  13931. extra: 1585 / 1415,
  13932. bottom: 0.02
  13933. }
  13934. },
  13935. },
  13936. [
  13937. {
  13938. name: "Normal",
  13939. height: math.unit(4.91, "feet"),
  13940. default: true
  13941. },
  13942. ]
  13943. ))
  13944. characterMakers.push(() => makeCharacter(
  13945. { name: "Sheila" },
  13946. {
  13947. laying: {
  13948. height: math.unit(4 + 4 / 12, "feet"),
  13949. weight: math.unit(600, "lb"),
  13950. name: "Laying",
  13951. image: {
  13952. source: "./media/characters/sheila/laying.svg",
  13953. extra: 1333 / 1265,
  13954. bottom: 0.16
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Normal",
  13961. height: math.unit(4 + 4 / 12, "feet"),
  13962. default: true
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Sax" },
  13968. {
  13969. front: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(190, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/sax/front.svg",
  13975. extra: 1187 / 973,
  13976. bottom: 0.042
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Micro",
  13983. height: math.unit(4, "inches"),
  13984. default: true
  13985. },
  13986. ]
  13987. ))
  13988. characterMakers.push(() => makeCharacter(
  13989. { name: "Pandora" },
  13990. {
  13991. front: {
  13992. height: math.unit(6, "feet"),
  13993. weight: math.unit(150, "lb"),
  13994. name: "Front",
  13995. image: {
  13996. source: "./media/characters/pandora/front.svg",
  13997. extra: 2720 / 2556,
  13998. bottom: 0.015
  13999. }
  14000. },
  14001. back: {
  14002. height: math.unit(6, "feet"),
  14003. weight: math.unit(150, "lb"),
  14004. name: "Back",
  14005. image: {
  14006. source: "./media/characters/pandora/back.svg",
  14007. extra: 2720 / 2556,
  14008. bottom: 0.01
  14009. }
  14010. },
  14011. beans: {
  14012. height: math.unit(6 / 8, "feet"),
  14013. name: "Beans",
  14014. image: {
  14015. source: "./media/characters/pandora/beans.svg"
  14016. }
  14017. },
  14018. skirt: {
  14019. height: math.unit(6, "feet"),
  14020. weight: math.unit(150, "lb"),
  14021. name: "Skirt",
  14022. image: {
  14023. source: "./media/characters/pandora/skirt.svg",
  14024. extra: 1622 / 1525,
  14025. bottom: 0.015
  14026. }
  14027. },
  14028. hoodie: {
  14029. height: math.unit(6, "feet"),
  14030. weight: math.unit(150, "lb"),
  14031. name: "Hoodie",
  14032. image: {
  14033. source: "./media/characters/pandora/hoodie.svg",
  14034. extra: 1622 / 1525,
  14035. bottom: 0.015
  14036. }
  14037. },
  14038. casual: {
  14039. height: math.unit(6, "feet"),
  14040. weight: math.unit(150, "lb"),
  14041. name: "Casual",
  14042. image: {
  14043. source: "./media/characters/pandora/casual.svg",
  14044. extra: 1622 / 1525,
  14045. bottom: 0.015
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Normal",
  14052. height: math.unit(6, "feet")
  14053. },
  14054. {
  14055. name: "Big Steppy",
  14056. height: math.unit(1, "km"),
  14057. default: true
  14058. },
  14059. ]
  14060. ))
  14061. characterMakers.push(() => makeCharacter(
  14062. { name: "Venio Darcony" },
  14063. {
  14064. side: {
  14065. height: math.unit(10, "feet"),
  14066. weight: math.unit(800, "kg"),
  14067. name: "Side",
  14068. image: {
  14069. source: "./media/characters/venio-darcony/side.svg",
  14070. extra: 1373 / 1003,
  14071. bottom: 0.037
  14072. }
  14073. },
  14074. front: {
  14075. height: math.unit(19, "feet"),
  14076. weight: math.unit(800, "kg"),
  14077. name: "Front",
  14078. image: {
  14079. source: "./media/characters/venio-darcony/front.svg"
  14080. }
  14081. },
  14082. back: {
  14083. height: math.unit(19, "feet"),
  14084. weight: math.unit(800, "kg"),
  14085. name: "Back",
  14086. image: {
  14087. source: "./media/characters/venio-darcony/back.svg"
  14088. }
  14089. },
  14090. sideNsfw: {
  14091. height: math.unit(10, "feet"),
  14092. weight: math.unit(800, "kg"),
  14093. name: "Side (NSFW)",
  14094. image: {
  14095. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14096. extra: 1373 / 1003,
  14097. bottom: 0.037
  14098. }
  14099. },
  14100. frontNsfw: {
  14101. height: math.unit(19, "feet"),
  14102. weight: math.unit(800, "kg"),
  14103. name: "Front (NSFW)",
  14104. image: {
  14105. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14106. }
  14107. },
  14108. backNsfw: {
  14109. height: math.unit(19, "feet"),
  14110. weight: math.unit(800, "kg"),
  14111. name: "Back (NSFW)",
  14112. image: {
  14113. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14114. }
  14115. },
  14116. sideArmored: {
  14117. height: math.unit(10, "feet"),
  14118. weight: math.unit(800, "kg"),
  14119. name: "Side (Armored)",
  14120. image: {
  14121. source: "./media/characters/venio-darcony/side-armored.svg",
  14122. extra: 1373 / 1003,
  14123. bottom: 0.037
  14124. }
  14125. },
  14126. frontArmored: {
  14127. height: math.unit(19, "feet"),
  14128. weight: math.unit(900, "kg"),
  14129. name: "Front (Armored)",
  14130. image: {
  14131. source: "./media/characters/venio-darcony/front-armored.svg"
  14132. }
  14133. },
  14134. backArmored: {
  14135. height: math.unit(19, "feet"),
  14136. weight: math.unit(900, "kg"),
  14137. name: "Back (Armored)",
  14138. image: {
  14139. source: "./media/characters/venio-darcony/back-armored.svg"
  14140. }
  14141. },
  14142. sword: {
  14143. height: math.unit(10, "feet"),
  14144. weight: math.unit(50, "lb"),
  14145. name: "Sword",
  14146. image: {
  14147. source: "./media/characters/venio-darcony/sword.svg"
  14148. }
  14149. },
  14150. },
  14151. [
  14152. {
  14153. name: "Normal",
  14154. height: math.unit(10, "feet")
  14155. },
  14156. {
  14157. name: "Macro",
  14158. height: math.unit(130, "feet"),
  14159. default: true
  14160. },
  14161. {
  14162. name: "Macro+",
  14163. height: math.unit(240, "feet")
  14164. },
  14165. ]
  14166. ))
  14167. characterMakers.push(() => makeCharacter(
  14168. { name: "Veski" },
  14169. {
  14170. front: {
  14171. height: math.unit(6, "feet"),
  14172. weight: math.unit(150, "lb"),
  14173. name: "Front",
  14174. image: {
  14175. source: "./media/characters/veski/front.svg",
  14176. extra: 1299 / 1225,
  14177. bottom: 0.04
  14178. }
  14179. },
  14180. back: {
  14181. height: math.unit(6, "feet"),
  14182. weight: math.unit(150, "lb"),
  14183. name: "Back",
  14184. image: {
  14185. source: "./media/characters/veski/back.svg",
  14186. extra: 1299 / 1225,
  14187. bottom: 0.008
  14188. }
  14189. },
  14190. maw: {
  14191. height: math.unit(1.5 * 1.21, "feet"),
  14192. name: "Maw",
  14193. image: {
  14194. source: "./media/characters/veski/maw.svg"
  14195. }
  14196. },
  14197. },
  14198. [
  14199. {
  14200. name: "Macro",
  14201. height: math.unit(2, "km"),
  14202. default: true
  14203. },
  14204. ]
  14205. ))
  14206. characterMakers.push(() => makeCharacter(
  14207. { name: "Isabelle" },
  14208. {
  14209. front: {
  14210. height: math.unit(5 + 7 / 12, "feet"),
  14211. name: "Front",
  14212. image: {
  14213. source: "./media/characters/isabelle/front.svg",
  14214. extra: 2130 / 1976,
  14215. bottom: 0.05
  14216. }
  14217. },
  14218. },
  14219. [
  14220. {
  14221. name: "Supermicro",
  14222. height: math.unit(10, "micrometers")
  14223. },
  14224. {
  14225. name: "Micro",
  14226. height: math.unit(1, "inch")
  14227. },
  14228. {
  14229. name: "Tiny",
  14230. height: math.unit(5, "inches")
  14231. },
  14232. {
  14233. name: "Standard",
  14234. height: math.unit(5 + 7 / 12, "inches")
  14235. },
  14236. {
  14237. name: "Macro",
  14238. height: math.unit(80, "meters"),
  14239. default: true
  14240. },
  14241. {
  14242. name: "Megamacro",
  14243. height: math.unit(250, "meters")
  14244. },
  14245. {
  14246. name: "Gigamacro",
  14247. height: math.unit(5, "km")
  14248. },
  14249. {
  14250. name: "Cosmic",
  14251. height: math.unit(2.5e6, "miles")
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "Hanzo" },
  14257. {
  14258. front: {
  14259. height: math.unit(6, "feet"),
  14260. weight: math.unit(150, "lb"),
  14261. name: "Front",
  14262. image: {
  14263. source: "./media/characters/hanzo/front.svg",
  14264. extra: 374 / 344,
  14265. bottom: 0.02
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Normal",
  14272. height: math.unit(8, "feet"),
  14273. default: true
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Anna" },
  14279. {
  14280. front: {
  14281. height: math.unit(7, "feet"),
  14282. weight: math.unit(130, "lb"),
  14283. name: "Front",
  14284. image: {
  14285. source: "./media/characters/anna/front.svg",
  14286. extra: 169 / 145,
  14287. bottom: 0.06
  14288. }
  14289. },
  14290. full: {
  14291. height: math.unit(4.96, "feet"),
  14292. weight: math.unit(220, "lb"),
  14293. name: "Full",
  14294. image: {
  14295. source: "./media/characters/anna/full.svg",
  14296. extra: 138 / 114,
  14297. bottom: 0.15
  14298. }
  14299. },
  14300. tongue: {
  14301. height: math.unit(2.53, "feet"),
  14302. name: "Tongue",
  14303. image: {
  14304. source: "./media/characters/anna/tongue.svg"
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Normal",
  14311. height: math.unit(7, "feet"),
  14312. default: true
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Ian Corvid" },
  14318. {
  14319. front: {
  14320. height: math.unit(7, "feet"),
  14321. weight: math.unit(150, "lb"),
  14322. name: "Front",
  14323. image: {
  14324. source: "./media/characters/ian-corvid/front.svg",
  14325. extra: 150 / 142,
  14326. bottom: 0.02
  14327. }
  14328. },
  14329. back: {
  14330. height: math.unit(7, "feet"),
  14331. weight: math.unit(150, "lb"),
  14332. name: "Back",
  14333. image: {
  14334. source: "./media/characters/ian-corvid/back.svg",
  14335. extra: 150 / 143,
  14336. bottom: 0.01
  14337. }
  14338. },
  14339. stomping: {
  14340. height: math.unit(7, "feet"),
  14341. weight: math.unit(150, "lb"),
  14342. name: "Stomping",
  14343. image: {
  14344. source: "./media/characters/ian-corvid/stomping.svg",
  14345. extra: 76 / 72
  14346. }
  14347. },
  14348. sitting: {
  14349. height: math.unit(7 / 1.8, "feet"),
  14350. weight: math.unit(150, "lb"),
  14351. name: "Sitting",
  14352. image: {
  14353. source: "./media/characters/ian-corvid/sitting.svg",
  14354. extra: 1400 / 1269,
  14355. bottom: 0.15
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Tiny Microw",
  14362. height: math.unit(1, "inch")
  14363. },
  14364. {
  14365. name: "Microw",
  14366. height: math.unit(6, "inches")
  14367. },
  14368. {
  14369. name: "Crow",
  14370. height: math.unit(7 + 1 / 12, "feet"),
  14371. default: true
  14372. },
  14373. {
  14374. name: "Macrow",
  14375. height: math.unit(176, "feet")
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Natalie Kellon" },
  14381. {
  14382. front: {
  14383. height: math.unit(5 + 7 / 12, "feet"),
  14384. weight: math.unit(147, "lb"),
  14385. name: "Front",
  14386. image: {
  14387. source: "./media/characters/natalie-kellon/front.svg",
  14388. extra: 1214 / 1141,
  14389. bottom: 0.02
  14390. }
  14391. },
  14392. },
  14393. [
  14394. {
  14395. name: "Micro",
  14396. height: math.unit(1 / 16, "inch")
  14397. },
  14398. {
  14399. name: "Tiny",
  14400. height: math.unit(4, "inches")
  14401. },
  14402. {
  14403. name: "Normal",
  14404. height: math.unit(5 + 7 / 12, "feet"),
  14405. default: true
  14406. },
  14407. {
  14408. name: "Amazon",
  14409. height: math.unit(12, "feet")
  14410. },
  14411. {
  14412. name: "Giantess",
  14413. height: math.unit(160, "meters")
  14414. },
  14415. {
  14416. name: "Titaness",
  14417. height: math.unit(800, "meters")
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Alluria" },
  14423. {
  14424. front: {
  14425. height: math.unit(6, "feet"),
  14426. weight: math.unit(150, "lb"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/alluria/front.svg",
  14430. extra: 806 / 738,
  14431. bottom: 0.01
  14432. }
  14433. },
  14434. side: {
  14435. height: math.unit(6, "feet"),
  14436. weight: math.unit(150, "lb"),
  14437. name: "Side",
  14438. image: {
  14439. source: "./media/characters/alluria/side.svg",
  14440. extra: 800 / 750,
  14441. }
  14442. },
  14443. back: {
  14444. height: math.unit(6, "feet"),
  14445. weight: math.unit(150, "lb"),
  14446. name: "Back",
  14447. image: {
  14448. source: "./media/characters/alluria/back.svg",
  14449. extra: 806 / 738,
  14450. }
  14451. },
  14452. frontMaid: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(150, "lb"),
  14455. name: "Front (Maid)",
  14456. image: {
  14457. source: "./media/characters/alluria/front-maid.svg",
  14458. extra: 806 / 738,
  14459. bottom: 0.01
  14460. }
  14461. },
  14462. sideMaid: {
  14463. height: math.unit(6, "feet"),
  14464. weight: math.unit(150, "lb"),
  14465. name: "Side (Maid)",
  14466. image: {
  14467. source: "./media/characters/alluria/side-maid.svg",
  14468. extra: 800 / 750,
  14469. bottom: 0.005
  14470. }
  14471. },
  14472. backMaid: {
  14473. height: math.unit(6, "feet"),
  14474. weight: math.unit(150, "lb"),
  14475. name: "Back (Maid)",
  14476. image: {
  14477. source: "./media/characters/alluria/back-maid.svg",
  14478. extra: 806 / 738,
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Micro",
  14485. height: math.unit(6, "inches"),
  14486. default: true
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Kyle" },
  14492. {
  14493. front: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(150, "lb"),
  14496. name: "Front",
  14497. image: {
  14498. source: "./media/characters/kyle/front.svg",
  14499. extra: 1069 / 962,
  14500. bottom: 77.228 / 1727.45
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Macro",
  14507. height: math.unit(150, "feet"),
  14508. default: true
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Duncan" },
  14514. {
  14515. front: {
  14516. height: math.unit(6, "feet"),
  14517. weight: math.unit(300, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/duncan/front.svg",
  14521. extra: 1650 / 1482,
  14522. bottom: 0.05
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Macro",
  14529. height: math.unit(100, "feet"),
  14530. default: true
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Memory" },
  14536. {
  14537. front: {
  14538. height: math.unit(5 + 4 / 12, "feet"),
  14539. weight: math.unit(220, "lb"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/memory/front.svg",
  14543. extra: 3641 / 3545,
  14544. bottom: 0.03
  14545. }
  14546. },
  14547. back: {
  14548. height: math.unit(5 + 4 / 12, "feet"),
  14549. weight: math.unit(220, "lb"),
  14550. name: "Back",
  14551. image: {
  14552. source: "./media/characters/memory/back.svg",
  14553. extra: 3641 / 3545,
  14554. bottom: 0.025
  14555. }
  14556. },
  14557. frontSkirt: {
  14558. height: math.unit(5 + 4 / 12, "feet"),
  14559. weight: math.unit(220, "lb"),
  14560. name: "Front (Skirt)",
  14561. image: {
  14562. source: "./media/characters/memory/front-skirt.svg",
  14563. extra: 3641 / 3545,
  14564. bottom: 0.03
  14565. }
  14566. },
  14567. frontDress: {
  14568. height: math.unit(5 + 4 / 12, "feet"),
  14569. weight: math.unit(220, "lb"),
  14570. name: "Front (Dress)",
  14571. image: {
  14572. source: "./media/characters/memory/front-dress.svg",
  14573. extra: 3641 / 3545,
  14574. bottom: 0.03
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Micro",
  14581. height: math.unit(6, "inches"),
  14582. default: true
  14583. },
  14584. {
  14585. name: "Normal",
  14586. height: math.unit(5 + 4 / 12, "feet")
  14587. },
  14588. ]
  14589. ))
  14590. characterMakers.push(() => makeCharacter(
  14591. { name: "Luno" },
  14592. {
  14593. front: {
  14594. height: math.unit(4 + 11 / 12, "feet"),
  14595. weight: math.unit(100, "lb"),
  14596. name: "Front",
  14597. image: {
  14598. source: "./media/characters/luno/front.svg",
  14599. extra: 1535 / 1487,
  14600. bottom: 0.03
  14601. }
  14602. },
  14603. },
  14604. [
  14605. {
  14606. name: "Micro",
  14607. height: math.unit(3, "inches")
  14608. },
  14609. {
  14610. name: "Normal",
  14611. height: math.unit(4 + 11 / 12, "feet"),
  14612. default: true
  14613. },
  14614. {
  14615. name: "Macro",
  14616. height: math.unit(300, "feet")
  14617. },
  14618. {
  14619. name: "Megamacro",
  14620. height: math.unit(700, "miles")
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Jamesy" },
  14626. {
  14627. front: {
  14628. height: math.unit(6 + 2 / 12, "feet"),
  14629. weight: math.unit(170, "lb"),
  14630. name: "Front",
  14631. image: {
  14632. source: "./media/characters/jamesy/front.svg",
  14633. extra: 440 / 382,
  14634. bottom: 0.005
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Micro",
  14641. height: math.unit(3, "inches")
  14642. },
  14643. {
  14644. name: "Normal",
  14645. height: math.unit(6 + 2 / 12, "feet"),
  14646. default: true
  14647. },
  14648. {
  14649. name: "Macro",
  14650. height: math.unit(300, "feet")
  14651. },
  14652. {
  14653. name: "Megamacro",
  14654. height: math.unit(700, "miles")
  14655. },
  14656. ]
  14657. ))
  14658. characterMakers.push(() => makeCharacter(
  14659. { name: "Mark" },
  14660. {
  14661. front: {
  14662. height: math.unit(6, "feet"),
  14663. weight: math.unit(160, "lb"),
  14664. name: "Front",
  14665. image: {
  14666. source: "./media/characters/mark/front.svg",
  14667. extra: 3300 / 3100,
  14668. bottom: 136.42 / 3440.47
  14669. }
  14670. },
  14671. },
  14672. [
  14673. {
  14674. name: "Macro",
  14675. height: math.unit(120, "meters")
  14676. },
  14677. {
  14678. name: "Bigger Macro",
  14679. height: math.unit(350, "meters")
  14680. },
  14681. {
  14682. name: "Megamacro",
  14683. height: math.unit(8, "km"),
  14684. default: true
  14685. },
  14686. {
  14687. name: "Continental",
  14688. height: math.unit(4550, "km")
  14689. },
  14690. {
  14691. name: "Planetary",
  14692. height: math.unit(65000, "km")
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Mac" },
  14698. {
  14699. front: {
  14700. height: math.unit(6, "feet"),
  14701. weight: math.unit(400, "lb"),
  14702. name: "Front",
  14703. image: {
  14704. source: "./media/characters/mac/front.svg",
  14705. extra: 1048 / 987.7,
  14706. bottom: 60 / 1107.6,
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Macro",
  14713. height: math.unit(500, "feet"),
  14714. default: true
  14715. },
  14716. ]
  14717. ))
  14718. characterMakers.push(() => makeCharacter(
  14719. { name: "Bari" },
  14720. {
  14721. front: {
  14722. height: math.unit(5 + 2 / 12, "feet"),
  14723. weight: math.unit(190, "lb"),
  14724. name: "Front",
  14725. image: {
  14726. source: "./media/characters/bari/front.svg",
  14727. extra: 3156 / 2880,
  14728. bottom: 0.03
  14729. }
  14730. },
  14731. back: {
  14732. height: math.unit(5 + 2 / 12, "feet"),
  14733. weight: math.unit(190, "lb"),
  14734. name: "Back",
  14735. image: {
  14736. source: "./media/characters/bari/back.svg",
  14737. extra: 3260 / 2834,
  14738. bottom: 0.025
  14739. }
  14740. },
  14741. frontPlush: {
  14742. height: math.unit(5 + 2 / 12, "feet"),
  14743. weight: math.unit(190, "lb"),
  14744. name: "Front (Plush)",
  14745. image: {
  14746. source: "./media/characters/bari/front-plush.svg",
  14747. extra: 1112 / 1061,
  14748. bottom: 0.002
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Micro",
  14755. height: math.unit(3, "inches")
  14756. },
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(5 + 2 / 12, "feet"),
  14760. default: true
  14761. },
  14762. {
  14763. name: "Macro",
  14764. height: math.unit(20, "feet")
  14765. },
  14766. ]
  14767. ))
  14768. characterMakers.push(() => makeCharacter(
  14769. { name: "Hunter Misha Raven" },
  14770. {
  14771. front: {
  14772. height: math.unit(6 + 1 / 12, "feet"),
  14773. weight: math.unit(275, "lb"),
  14774. name: "Front",
  14775. image: {
  14776. source: "./media/characters/hunter-misha-raven/front.svg"
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Mortal",
  14783. height: math.unit(6 + 1 / 12, "feet")
  14784. },
  14785. {
  14786. name: "Divine",
  14787. height: math.unit(1.12134e34, "parsecs"),
  14788. default: true
  14789. },
  14790. ]
  14791. ))
  14792. characterMakers.push(() => makeCharacter(
  14793. { name: "Max Calore" },
  14794. {
  14795. front: {
  14796. height: math.unit(6 + 3 / 12, "feet"),
  14797. weight: math.unit(220, "lb"),
  14798. name: "Front",
  14799. image: {
  14800. source: "./media/characters/max-calore/front.svg",
  14801. extra: 1700 / 1648,
  14802. bottom: 0.01
  14803. }
  14804. },
  14805. back: {
  14806. height: math.unit(6 + 3 / 12, "feet"),
  14807. weight: math.unit(220, "lb"),
  14808. name: "Back",
  14809. image: {
  14810. source: "./media/characters/max-calore/back.svg",
  14811. extra: 1700 / 1648,
  14812. bottom: 0.01
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Normal",
  14819. height: math.unit(6 + 3 / 12, "feet"),
  14820. default: true
  14821. },
  14822. ]
  14823. ))
  14824. characterMakers.push(() => makeCharacter(
  14825. { name: "Aspen" },
  14826. {
  14827. side: {
  14828. height: math.unit(2 + 8 / 12, "feet"),
  14829. weight: math.unit(99, "lb"),
  14830. name: "Side",
  14831. image: {
  14832. source: "./media/characters/aspen/side.svg",
  14833. extra: 152 / 138,
  14834. bottom: 0.032
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Normal",
  14841. height: math.unit(2 + 8 / 12, "feet"),
  14842. default: true
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Sheila (Feral Wolf)" },
  14848. {
  14849. side: {
  14850. height: math.unit(3 + 2 / 12, "feet"),
  14851. weight: math.unit(224, "lb"),
  14852. name: "Side",
  14853. image: {
  14854. source: "./media/characters/sheila-feral-wolf/side.svg",
  14855. extra: 179 / 166,
  14856. bottom: 0.03
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(3 + 2 / 12, "feet"),
  14864. default: true
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Michelle" },
  14870. {
  14871. side: {
  14872. height: math.unit(1 + 9 / 12, "feet"),
  14873. weight: math.unit(38, "lb"),
  14874. name: "Side",
  14875. image: {
  14876. source: "./media/characters/michelle/side.svg",
  14877. extra: 147 / 136.7,
  14878. bottom: 0.03
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Normal",
  14885. height: math.unit(1 + 9 / 12, "feet"),
  14886. default: true
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Nino" },
  14892. {
  14893. front: {
  14894. height: math.unit(1 + 1 / 12, "feet"),
  14895. weight: math.unit(18, "lb"),
  14896. name: "Front",
  14897. image: {
  14898. source: "./media/characters/nino/front.svg"
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Normal",
  14905. height: math.unit(1 + 1 / 12, "feet"),
  14906. default: true
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Viola" },
  14912. {
  14913. front: {
  14914. height: math.unit(1, "feet"),
  14915. weight: math.unit(16, "lb"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/viola/front.svg"
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Normal",
  14925. height: math.unit(1, "feet"),
  14926. default: true
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Atlas" },
  14932. {
  14933. front: {
  14934. height: math.unit(6 + 5 / 12, "feet"),
  14935. weight: math.unit(580, "lb"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/atlas/front.svg",
  14939. extra: 298.5 / 290,
  14940. bottom: 0.015
  14941. }
  14942. },
  14943. },
  14944. [
  14945. {
  14946. name: "Normal",
  14947. height: math.unit(6 + 5 / 12, "feet"),
  14948. default: true
  14949. },
  14950. ]
  14951. ))
  14952. characterMakers.push(() => makeCharacter(
  14953. { name: "Davy" },
  14954. {
  14955. side: {
  14956. height: math.unit(1 + 10 / 12, "feet"),
  14957. weight: math.unit(25, "lb"),
  14958. name: "Side",
  14959. image: {
  14960. source: "./media/characters/davy/side.svg",
  14961. extra: 200 / 170,
  14962. bottom: 0.01
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Normal",
  14969. height: math.unit(1 + 10 / 12, "feet"),
  14970. default: true
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Fiona" },
  14976. {
  14977. side: {
  14978. height: math.unit(4 + 8 / 12, "feet"),
  14979. weight: math.unit(166, "lb"),
  14980. name: "Side",
  14981. image: {
  14982. source: "./media/characters/fiona/side.svg",
  14983. extra: 232 / 220,
  14984. bottom: 0.03
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Normal",
  14991. height: math.unit(4 + 8 / 12, "feet"),
  14992. default: true
  14993. },
  14994. ]
  14995. ))
  14996. characterMakers.push(() => makeCharacter(
  14997. { name: "Lyla" },
  14998. {
  14999. front: {
  15000. height: math.unit(2, "feet"),
  15001. weight: math.unit(62, "lb"),
  15002. name: "Front",
  15003. image: {
  15004. source: "./media/characters/lyla/front.svg",
  15005. bottom: 0.1
  15006. }
  15007. },
  15008. },
  15009. [
  15010. {
  15011. name: "Normal",
  15012. height: math.unit(2, "feet"),
  15013. default: true
  15014. },
  15015. ]
  15016. ))
  15017. characterMakers.push(() => makeCharacter(
  15018. { name: "Perseus" },
  15019. {
  15020. side: {
  15021. height: math.unit(1.8, "feet"),
  15022. weight: math.unit(44, "lb"),
  15023. name: "Side",
  15024. image: {
  15025. source: "./media/characters/perseus/side.svg",
  15026. bottom: 0.21
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(1.8, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Remus" },
  15040. {
  15041. side: {
  15042. height: math.unit(4 + 2 / 12, "feet"),
  15043. weight: math.unit(20, "lb"),
  15044. name: "Side",
  15045. image: {
  15046. source: "./media/characters/remus/side.svg"
  15047. }
  15048. },
  15049. },
  15050. [
  15051. {
  15052. name: "Normal",
  15053. height: math.unit(4 + 2 / 12, "feet"),
  15054. default: true
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Raf" },
  15060. {
  15061. front: {
  15062. height: math.unit(4 + 11 / 12, "feet"),
  15063. weight: math.unit(114, "lb"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/raf/front.svg",
  15067. bottom: 0.01
  15068. }
  15069. },
  15070. side: {
  15071. height: math.unit(4 + 11 / 12, "feet"),
  15072. weight: math.unit(114, "lb"),
  15073. name: "Side",
  15074. image: {
  15075. source: "./media/characters/raf/side.svg",
  15076. bottom: 0.005
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Micro",
  15083. height: math.unit(2, "inches")
  15084. },
  15085. {
  15086. name: "Normal",
  15087. height: math.unit(4 + 11 / 12, "feet"),
  15088. default: true
  15089. },
  15090. {
  15091. name: "Macro",
  15092. height: math.unit(70, "feet")
  15093. },
  15094. ]
  15095. ))
  15096. characterMakers.push(() => makeCharacter(
  15097. { name: "Liam Einarr" },
  15098. {
  15099. front: {
  15100. height: math.unit(1.5, "meters"),
  15101. weight: math.unit(68, "kg"),
  15102. name: "Front",
  15103. image: {
  15104. source: "./media/characters/liam-einarr/front.svg",
  15105. extra: 2822 / 2666
  15106. }
  15107. },
  15108. back: {
  15109. height: math.unit(1.5, "meters"),
  15110. weight: math.unit(68, "kg"),
  15111. name: "Back",
  15112. image: {
  15113. source: "./media/characters/liam-einarr/back.svg",
  15114. extra: 2822 / 2666,
  15115. bottom: 0.015
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Normal",
  15122. height: math.unit(1.5, "meters"),
  15123. default: true
  15124. },
  15125. {
  15126. name: "Macro",
  15127. height: math.unit(150, "meters")
  15128. },
  15129. {
  15130. name: "Megamacro",
  15131. height: math.unit(35, "km")
  15132. },
  15133. ]
  15134. ))
  15135. characterMakers.push(() => makeCharacter(
  15136. { name: "Linda" },
  15137. {
  15138. front: {
  15139. height: math.unit(6, "feet"),
  15140. weight: math.unit(75, "kg"),
  15141. name: "Front",
  15142. image: {
  15143. source: "./media/characters/linda/front.svg",
  15144. extra: 930 / 874,
  15145. bottom: 0.004
  15146. }
  15147. },
  15148. },
  15149. [
  15150. {
  15151. name: "Normal",
  15152. height: math.unit(6, "feet"),
  15153. default: true
  15154. },
  15155. ]
  15156. ))
  15157. characterMakers.push(() => makeCharacter(
  15158. { name: "Caylex" },
  15159. {
  15160. front: {
  15161. height: math.unit(6 + 8 / 12, "feet"),
  15162. weight: math.unit(220, "lb"),
  15163. name: "Front",
  15164. image: {
  15165. source: "./media/characters/caylex/front.svg",
  15166. extra: 821 / 772,
  15167. bottom: 0.07
  15168. }
  15169. },
  15170. back: {
  15171. height: math.unit(6 + 8 / 12, "feet"),
  15172. weight: math.unit(220, "lb"),
  15173. name: "Back",
  15174. image: {
  15175. source: "./media/characters/caylex/back.svg",
  15176. extra: 821 / 772,
  15177. bottom: 0.022
  15178. }
  15179. },
  15180. hand: {
  15181. height: math.unit(1.25, "feet"),
  15182. name: "Hand",
  15183. image: {
  15184. source: "./media/characters/caylex/hand.svg"
  15185. }
  15186. },
  15187. foot: {
  15188. height: math.unit(1.6, "feet"),
  15189. name: "Foot",
  15190. image: {
  15191. source: "./media/characters/caylex/foot.svg"
  15192. }
  15193. },
  15194. armored: {
  15195. height: math.unit(6 + 8 / 12, "feet"),
  15196. weight: math.unit(250, "lb"),
  15197. name: "Armored",
  15198. image: {
  15199. source: "./media/characters/caylex/armored.svg",
  15200. extra: 1420 / 1310,
  15201. bottom: 0.045
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(6 + 8 / 12, "feet"),
  15209. default: true
  15210. },
  15211. {
  15212. name: "Normal+",
  15213. height: math.unit(12, "feet")
  15214. },
  15215. ]
  15216. ))
  15217. characterMakers.push(() => makeCharacter(
  15218. { name: "Alana" },
  15219. {
  15220. front: {
  15221. height: math.unit(7 + 6 / 12, "feet"),
  15222. weight: math.unit(288, "lb"),
  15223. name: "Front",
  15224. image: {
  15225. source: "./media/characters/alana/front.svg",
  15226. extra: 679 / 653,
  15227. bottom: 22.5 / 701
  15228. }
  15229. },
  15230. },
  15231. [
  15232. {
  15233. name: "Normal",
  15234. height: math.unit(7 + 6 / 12, "feet")
  15235. },
  15236. {
  15237. name: "Large",
  15238. height: math.unit(50, "feet")
  15239. },
  15240. {
  15241. name: "Macro",
  15242. height: math.unit(100, "feet"),
  15243. default: true
  15244. },
  15245. {
  15246. name: "Macro+",
  15247. height: math.unit(200, "feet")
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Hasani" },
  15253. {
  15254. front: {
  15255. height: math.unit(6 + 1 / 12, "feet"),
  15256. weight: math.unit(210, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/hasani/front.svg",
  15260. extra: 244 / 232,
  15261. bottom: 0.01
  15262. }
  15263. },
  15264. back: {
  15265. height: math.unit(6 + 1 / 12, "feet"),
  15266. weight: math.unit(210, "lb"),
  15267. name: "Back",
  15268. image: {
  15269. source: "./media/characters/hasani/back.svg",
  15270. extra: 244 / 232,
  15271. bottom: 0.01
  15272. }
  15273. },
  15274. },
  15275. [
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(6 + 1 / 12, "feet")
  15279. },
  15280. {
  15281. name: "Macro",
  15282. height: math.unit(175, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Nita" },
  15289. {
  15290. front: {
  15291. height: math.unit(1.82, "meters"),
  15292. weight: math.unit(140, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/nita/front.svg",
  15296. extra: 2473 / 2363,
  15297. bottom: 0.01
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(1.82, "m")
  15305. },
  15306. {
  15307. name: "Macro",
  15308. height: math.unit(300, "m")
  15309. },
  15310. {
  15311. name: "Mistake Canon",
  15312. height: math.unit(0.5, "miles"),
  15313. default: true
  15314. },
  15315. {
  15316. name: "Big Mistake",
  15317. height: math.unit(13, "miles")
  15318. },
  15319. {
  15320. name: "Playing God",
  15321. height: math.unit(2450, "miles")
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Shiriko" },
  15327. {
  15328. front: {
  15329. height: math.unit(4, "feet"),
  15330. weight: math.unit(120, "lb"),
  15331. name: "Front",
  15332. image: {
  15333. source: "./media/characters/shiriko/front.svg",
  15334. extra: 195 / 188
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Normal",
  15341. height: math.unit(4, "feet"),
  15342. default: true
  15343. },
  15344. ]
  15345. ))
  15346. characterMakers.push(() => makeCharacter(
  15347. { name: "Deja" },
  15348. {
  15349. front: {
  15350. height: math.unit(6, "feet"),
  15351. name: "front",
  15352. image: {
  15353. source: "./media/characters/deja/front.svg",
  15354. extra: 926 / 840,
  15355. bottom: 0.07
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Planck Length",
  15362. height: math.unit(1.6e-35, "meters")
  15363. },
  15364. {
  15365. name: "Normal",
  15366. height: math.unit(30.48, "meters"),
  15367. default: true
  15368. },
  15369. {
  15370. name: "Universal",
  15371. height: math.unit(8.8e26, "meters")
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Anima" },
  15377. {
  15378. side: {
  15379. height: math.unit(8, "feet"),
  15380. weight: math.unit(6300, "lb"),
  15381. name: "Side",
  15382. image: {
  15383. source: "./media/characters/anima/side.svg",
  15384. bottom: 0.035
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Normal",
  15391. height: math.unit(8, "feet"),
  15392. default: true
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Bianca" },
  15398. {
  15399. front: {
  15400. height: math.unit(8, "feet"),
  15401. weight: math.unit(350, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/bianca/front.svg",
  15405. extra: 234 / 225,
  15406. bottom: 0.03
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Normal",
  15413. height: math.unit(8, "feet"),
  15414. default: true
  15415. },
  15416. ]
  15417. ))
  15418. characterMakers.push(() => makeCharacter(
  15419. { name: "Adinia" },
  15420. {
  15421. front: {
  15422. height: math.unit(6, "feet"),
  15423. weight: math.unit(150, "lb"),
  15424. name: "Front",
  15425. image: {
  15426. source: "./media/characters/adinia/front.svg",
  15427. extra: 1845 / 1672,
  15428. bottom: 0.02
  15429. }
  15430. },
  15431. back: {
  15432. height: math.unit(6, "feet"),
  15433. weight: math.unit(150, "lb"),
  15434. name: "Back",
  15435. image: {
  15436. source: "./media/characters/adinia/back.svg",
  15437. extra: 1845 / 1672,
  15438. bottom: 0.002
  15439. }
  15440. },
  15441. },
  15442. [
  15443. {
  15444. name: "Normal",
  15445. height: math.unit(11 + 5 / 12, "feet"),
  15446. default: true
  15447. },
  15448. ]
  15449. ))
  15450. characterMakers.push(() => makeCharacter(
  15451. { name: "Lykasa" },
  15452. {
  15453. front: {
  15454. height: math.unit(3, "meters"),
  15455. weight: math.unit(200, "kg"),
  15456. name: "Front",
  15457. image: {
  15458. source: "./media/characters/lykasa/front.svg",
  15459. extra: 1076 / 976,
  15460. bottom: 0.06
  15461. }
  15462. },
  15463. },
  15464. [
  15465. {
  15466. name: "Normal",
  15467. height: math.unit(3, "meters")
  15468. },
  15469. {
  15470. name: "Kaiju",
  15471. height: math.unit(120, "meters"),
  15472. default: true
  15473. },
  15474. {
  15475. name: "Mega Kaiju",
  15476. height: math.unit(240, "km")
  15477. },
  15478. {
  15479. name: "Giga Kaiju",
  15480. height: math.unit(400, "megameters")
  15481. },
  15482. {
  15483. name: "Tera Kaiju",
  15484. height: math.unit(800, "gigameters")
  15485. },
  15486. {
  15487. name: "Kaiju Dragon Goddess",
  15488. height: math.unit(26, "zettaparsecs")
  15489. },
  15490. ]
  15491. ))
  15492. characterMakers.push(() => makeCharacter(
  15493. { name: "Malfaren" },
  15494. {
  15495. side: {
  15496. height: math.unit(283 / 124 * 6, "feet"),
  15497. weight: math.unit(35000, "lb"),
  15498. name: "Side",
  15499. image: {
  15500. source: "./media/characters/malfaren/side.svg",
  15501. extra: 2500 / 1010,
  15502. bottom: 0.01
  15503. }
  15504. },
  15505. front: {
  15506. height: math.unit(22.36, "feet"),
  15507. weight: math.unit(35000, "lb"),
  15508. name: "Front",
  15509. image: {
  15510. source: "./media/characters/malfaren/front.svg",
  15511. extra: 1631 / 1476,
  15512. bottom: 0.01
  15513. }
  15514. },
  15515. maw: {
  15516. height: math.unit(6.9, "feet"),
  15517. name: "Maw",
  15518. image: {
  15519. source: "./media/characters/malfaren/maw.svg"
  15520. }
  15521. },
  15522. },
  15523. [
  15524. {
  15525. name: "Big",
  15526. height: math.unit(283 / 162 * 6, "feet"),
  15527. },
  15528. {
  15529. name: "Bigger",
  15530. height: math.unit(283 / 124 * 6, "feet")
  15531. },
  15532. {
  15533. name: "Massive",
  15534. height: math.unit(283 / 92 * 6, "feet"),
  15535. default: true
  15536. },
  15537. {
  15538. name: "👀💦",
  15539. height: math.unit(283 / 73 * 6, "feet"),
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Kernel" },
  15545. {
  15546. front: {
  15547. height: math.unit(1.7, "m"),
  15548. weight: math.unit(70, "kg"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/kernel/front.svg",
  15552. extra: 222 / 210,
  15553. bottom: 0.007
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Nano",
  15560. height: math.unit(17, "micrometers")
  15561. },
  15562. {
  15563. name: "Micro",
  15564. height: math.unit(1.7, "mm")
  15565. },
  15566. {
  15567. name: "Small",
  15568. height: math.unit(1.7, "cm")
  15569. },
  15570. {
  15571. name: "Normal",
  15572. height: math.unit(1.7, "m"),
  15573. default: true
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Jayne Folest" },
  15579. {
  15580. front: {
  15581. height: math.unit(1.75, "meters"),
  15582. weight: math.unit(65, "kg"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/jayne-folest/front.svg",
  15586. extra: 2115 / 2007,
  15587. bottom: 0.02
  15588. }
  15589. },
  15590. back: {
  15591. height: math.unit(1.75, "meters"),
  15592. weight: math.unit(65, "kg"),
  15593. name: "Back",
  15594. image: {
  15595. source: "./media/characters/jayne-folest/back.svg",
  15596. extra: 2115 / 2007,
  15597. bottom: 0.005
  15598. }
  15599. },
  15600. frontClothed: {
  15601. height: math.unit(1.75, "meters"),
  15602. weight: math.unit(65, "kg"),
  15603. name: "Front (Clothed)",
  15604. image: {
  15605. source: "./media/characters/jayne-folest/front-clothed.svg",
  15606. extra: 2115 / 2007,
  15607. bottom: 0.035
  15608. }
  15609. },
  15610. hand: {
  15611. height: math.unit(1 / 1.260, "feet"),
  15612. name: "Hand",
  15613. image: {
  15614. source: "./media/characters/jayne-folest/hand.svg"
  15615. }
  15616. },
  15617. foot: {
  15618. height: math.unit(1 / 0.918, "feet"),
  15619. name: "Foot",
  15620. image: {
  15621. source: "./media/characters/jayne-folest/foot.svg"
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Micro",
  15628. height: math.unit(4, "cm")
  15629. },
  15630. {
  15631. name: "Normal",
  15632. height: math.unit(1.75, "meters")
  15633. },
  15634. {
  15635. name: "Macro",
  15636. height: math.unit(47.5, "meters"),
  15637. default: true
  15638. },
  15639. ]
  15640. ))
  15641. characterMakers.push(() => makeCharacter(
  15642. { name: "Algier" },
  15643. {
  15644. front: {
  15645. height: math.unit(180, "cm"),
  15646. weight: math.unit(70, "kg"),
  15647. name: "Front",
  15648. image: {
  15649. source: "./media/characters/algier/front.svg",
  15650. extra: 596 / 572,
  15651. bottom: 0.04
  15652. }
  15653. },
  15654. back: {
  15655. height: math.unit(180, "cm"),
  15656. weight: math.unit(70, "kg"),
  15657. name: "Back",
  15658. image: {
  15659. source: "./media/characters/algier/back.svg",
  15660. extra: 596 / 572,
  15661. bottom: 0.025
  15662. }
  15663. },
  15664. frontdressed: {
  15665. height: math.unit(180, "cm"),
  15666. weight: math.unit(150, "kg"),
  15667. name: "Front-dressed",
  15668. image: {
  15669. source: "./media/characters/algier/front-dressed.svg",
  15670. extra: 596 / 572,
  15671. bottom: 0.038
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Micro",
  15678. height: math.unit(5, "cm")
  15679. },
  15680. {
  15681. name: "Normal",
  15682. height: math.unit(180, "cm"),
  15683. default: true
  15684. },
  15685. {
  15686. name: "Macro",
  15687. height: math.unit(64, "m")
  15688. },
  15689. ]
  15690. ))
  15691. characterMakers.push(() => makeCharacter(
  15692. { name: "Pretzel" },
  15693. {
  15694. upright: {
  15695. height: math.unit(7, "feet"),
  15696. weight: math.unit(300, "lb"),
  15697. name: "Upright",
  15698. image: {
  15699. source: "./media/characters/pretzel/upright.svg",
  15700. extra: 534 / 522,
  15701. bottom: 0.065
  15702. }
  15703. },
  15704. sprawling: {
  15705. height: math.unit(3.75, "feet"),
  15706. weight: math.unit(300, "lb"),
  15707. name: "Sprawling",
  15708. image: {
  15709. source: "./media/characters/pretzel/sprawling.svg",
  15710. extra: 314 / 281,
  15711. bottom: 0.1
  15712. }
  15713. },
  15714. tongue: {
  15715. height: math.unit(2, "feet"),
  15716. name: "Tongue",
  15717. image: {
  15718. source: "./media/characters/pretzel/tongue.svg"
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(7, "feet"),
  15726. default: true
  15727. },
  15728. {
  15729. name: "Oversized",
  15730. height: math.unit(15, "feet")
  15731. },
  15732. {
  15733. name: "Huge",
  15734. height: math.unit(30, "feet")
  15735. },
  15736. {
  15737. name: "Macro",
  15738. height: math.unit(250, "feet")
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Roxi" },
  15744. {
  15745. sideFront: {
  15746. height: math.unit(5 + 2 / 12, "feet"),
  15747. weight: math.unit(120, "lb"),
  15748. name: "Front Side",
  15749. image: {
  15750. source: "./media/characters/roxi/side-front.svg",
  15751. extra: 2924 / 2717,
  15752. bottom: 0.08
  15753. }
  15754. },
  15755. sideBack: {
  15756. height: math.unit(5 + 2 / 12, "feet"),
  15757. weight: math.unit(120, "lb"),
  15758. name: "Back Side",
  15759. image: {
  15760. source: "./media/characters/roxi/side-back.svg",
  15761. extra: 2904 / 2693,
  15762. bottom: 0.06
  15763. }
  15764. },
  15765. front: {
  15766. height: math.unit(5 + 2 / 12, "feet"),
  15767. weight: math.unit(120, "lb"),
  15768. name: "Front",
  15769. image: {
  15770. source: "./media/characters/roxi/front.svg",
  15771. extra: 2028 / 1907,
  15772. bottom: 0.01
  15773. }
  15774. },
  15775. frontAlt: {
  15776. height: math.unit(5 + 2 / 12, "feet"),
  15777. weight: math.unit(120, "lb"),
  15778. name: "Front (Alt)",
  15779. image: {
  15780. source: "./media/characters/roxi/front-alt.svg",
  15781. extra: 1828 / 1798,
  15782. bottom: 0.01
  15783. }
  15784. },
  15785. sitting: {
  15786. height: math.unit(2.8, "feet"),
  15787. weight: math.unit(120, "lb"),
  15788. name: "Sitting",
  15789. image: {
  15790. source: "./media/characters/roxi/sitting.svg",
  15791. extra: 2660 / 2462,
  15792. bottom: 0.1
  15793. }
  15794. },
  15795. },
  15796. [
  15797. {
  15798. name: "Normal",
  15799. height: math.unit(5 + 2 / 12, "feet"),
  15800. default: true
  15801. },
  15802. ]
  15803. ))
  15804. characterMakers.push(() => makeCharacter(
  15805. { name: "Shadow" },
  15806. {
  15807. side: {
  15808. height: math.unit(55, "feet"),
  15809. weight: math.unit(153, "tons"),
  15810. name: "Side",
  15811. image: {
  15812. source: "./media/characters/shadow/side.svg",
  15813. extra: 701 / 628,
  15814. bottom: 0.02
  15815. }
  15816. },
  15817. flying: {
  15818. height: math.unit(145, "feet"),
  15819. weight: math.unit(153, "tons"),
  15820. name: "Flying",
  15821. image: {
  15822. source: "./media/characters/shadow/flying.svg"
  15823. }
  15824. },
  15825. },
  15826. [
  15827. {
  15828. name: "Normal",
  15829. height: math.unit(55, "feet"),
  15830. default: true
  15831. },
  15832. ]
  15833. ))
  15834. characterMakers.push(() => makeCharacter(
  15835. { name: "Marcie" },
  15836. {
  15837. front: {
  15838. height: math.unit(6, "feet"),
  15839. weight: math.unit(200, "lb"),
  15840. name: "Front",
  15841. image: {
  15842. source: "./media/characters/marcie/front.svg",
  15843. extra: 960 / 876,
  15844. bottom: 58 / 1017.87
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Macro",
  15851. height: math.unit(1, "mile"),
  15852. default: true
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Kachina" },
  15858. {
  15859. front: {
  15860. height: math.unit(7, "feet"),
  15861. weight: math.unit(200, "lb"),
  15862. name: "Front",
  15863. image: {
  15864. source: "./media/characters/kachina/front.svg",
  15865. extra: 1290.68 / 1119,
  15866. bottom: 36.5 / 1327.18
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Normal",
  15873. height: math.unit(7, "feet"),
  15874. default: true
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Kash" },
  15880. {
  15881. looking: {
  15882. height: math.unit(2, "meters"),
  15883. weight: math.unit(300, "kg"),
  15884. name: "Looking",
  15885. image: {
  15886. source: "./media/characters/kash/looking.svg",
  15887. extra: 474 / 344,
  15888. bottom: 0.03
  15889. }
  15890. },
  15891. side: {
  15892. height: math.unit(2, "meters"),
  15893. weight: math.unit(300, "kg"),
  15894. name: "Side",
  15895. image: {
  15896. source: "./media/characters/kash/side.svg",
  15897. extra: 302 / 251,
  15898. bottom: 0.03
  15899. }
  15900. },
  15901. front: {
  15902. height: math.unit(2, "meters"),
  15903. weight: math.unit(300, "kg"),
  15904. name: "Front",
  15905. image: {
  15906. source: "./media/characters/kash/front.svg",
  15907. extra: 495 / 360,
  15908. bottom: 0.015
  15909. }
  15910. },
  15911. },
  15912. [
  15913. {
  15914. name: "Normal",
  15915. height: math.unit(2, "meters"),
  15916. default: true
  15917. },
  15918. {
  15919. name: "Big",
  15920. height: math.unit(3, "meters")
  15921. },
  15922. {
  15923. name: "Large",
  15924. height: math.unit(5, "meters")
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Lalim" },
  15930. {
  15931. feeding: {
  15932. height: math.unit(6.7, "feet"),
  15933. weight: math.unit(350, "lb"),
  15934. name: "Feeding",
  15935. image: {
  15936. source: "./media/characters/lalim/feeding.svg",
  15937. }
  15938. },
  15939. },
  15940. [
  15941. {
  15942. name: "Normal",
  15943. height: math.unit(6.7, "feet"),
  15944. default: true
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "De'Vout" },
  15950. {
  15951. front: {
  15952. height: math.unit(9.5, "feet"),
  15953. weight: math.unit(600, "lb"),
  15954. name: "Front",
  15955. image: {
  15956. source: "./media/characters/de'vout/front.svg",
  15957. extra: 1443 / 1328,
  15958. bottom: 0.025
  15959. }
  15960. },
  15961. back: {
  15962. height: math.unit(9.5, "feet"),
  15963. weight: math.unit(600, "lb"),
  15964. name: "Back",
  15965. image: {
  15966. source: "./media/characters/de'vout/back.svg",
  15967. extra: 1443 / 1328
  15968. }
  15969. },
  15970. frontDressed: {
  15971. height: math.unit(9.5, "feet"),
  15972. weight: math.unit(600, "lb"),
  15973. name: "Front (Dressed",
  15974. image: {
  15975. source: "./media/characters/de'vout/front-dressed.svg",
  15976. extra: 1443 / 1328,
  15977. bottom: 0.025
  15978. }
  15979. },
  15980. backDressed: {
  15981. height: math.unit(9.5, "feet"),
  15982. weight: math.unit(600, "lb"),
  15983. name: "Back (Dressed",
  15984. image: {
  15985. source: "./media/characters/de'vout/back-dressed.svg",
  15986. extra: 1443 / 1328
  15987. }
  15988. },
  15989. },
  15990. [
  15991. {
  15992. name: "Normal",
  15993. height: math.unit(9.5, "feet"),
  15994. default: true
  15995. },
  15996. ]
  15997. ))
  15998. characterMakers.push(() => makeCharacter(
  15999. { name: "Talana" },
  16000. {
  16001. front: {
  16002. height: math.unit(8, "feet"),
  16003. weight: math.unit(225, "lb"),
  16004. name: "Front",
  16005. image: {
  16006. source: "./media/characters/talana/front.svg",
  16007. extra: 1410 / 1300,
  16008. bottom: 0.015
  16009. }
  16010. },
  16011. frontDressed: {
  16012. height: math.unit(8, "feet"),
  16013. weight: math.unit(225, "lb"),
  16014. name: "Front (Dressed",
  16015. image: {
  16016. source: "./media/characters/talana/front-dressed.svg",
  16017. extra: 1410 / 1300,
  16018. bottom: 0.015
  16019. }
  16020. },
  16021. },
  16022. [
  16023. {
  16024. name: "Normal",
  16025. height: math.unit(8, "feet"),
  16026. default: true
  16027. },
  16028. ]
  16029. ))
  16030. characterMakers.push(() => makeCharacter(
  16031. { name: "Xeauvok" },
  16032. {
  16033. side: {
  16034. height: math.unit(7.2, "feet"),
  16035. weight: math.unit(150, "lb"),
  16036. name: "Side",
  16037. image: {
  16038. source: "./media/characters/xeauvok/side.svg",
  16039. extra: 1975 / 1523,
  16040. bottom: 0.07
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Normal",
  16047. height: math.unit(7.2, "feet"),
  16048. default: true
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Zara" },
  16054. {
  16055. side: {
  16056. height: math.unit(10, "feet"),
  16057. weight: math.unit(900, "kg"),
  16058. name: "Side",
  16059. image: {
  16060. source: "./media/characters/zara/side.svg",
  16061. extra: 504 / 498
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(10, "feet"),
  16069. default: true
  16070. },
  16071. ]
  16072. ))
  16073. characterMakers.push(() => makeCharacter(
  16074. { name: "Richard (Dragon)" },
  16075. {
  16076. side: {
  16077. height: math.unit(6, "feet"),
  16078. weight: math.unit(150, "lb"),
  16079. name: "Side",
  16080. image: {
  16081. source: "./media/characters/richard-dragon/side.svg",
  16082. extra: 845 / 340,
  16083. bottom: 0.017
  16084. }
  16085. },
  16086. maw: {
  16087. height: math.unit(2.97, "feet"),
  16088. name: "Maw",
  16089. image: {
  16090. source: "./media/characters/richard-dragon/maw.svg"
  16091. }
  16092. },
  16093. },
  16094. [
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Richard (Smeargle)" },
  16099. {
  16100. front: {
  16101. height: math.unit(4, "feet"),
  16102. weight: math.unit(100, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/richard-smeargle/front.svg",
  16106. extra: 2952 / 2820,
  16107. bottom: 0.028
  16108. }
  16109. },
  16110. },
  16111. [
  16112. {
  16113. name: "Normal",
  16114. height: math.unit(4, "feet"),
  16115. default: true
  16116. },
  16117. {
  16118. name: "Dynamax",
  16119. height: math.unit(20, "meters")
  16120. },
  16121. ]
  16122. ))
  16123. characterMakers.push(() => makeCharacter(
  16124. { name: "Klay" },
  16125. {
  16126. front: {
  16127. height: math.unit(6, "feet"),
  16128. weight: math.unit(110, "lb"),
  16129. name: "Front",
  16130. image: {
  16131. source: "./media/characters/klay/front.svg",
  16132. extra: 962 / 883,
  16133. bottom: 0.04
  16134. }
  16135. },
  16136. back: {
  16137. height: math.unit(6, "feet"),
  16138. weight: math.unit(110, "lb"),
  16139. name: "Back",
  16140. image: {
  16141. source: "./media/characters/klay/back.svg",
  16142. extra: 962 / 883
  16143. }
  16144. },
  16145. beans: {
  16146. height: math.unit(1.15, "feet"),
  16147. name: "Beans",
  16148. image: {
  16149. source: "./media/characters/klay/beans.svg"
  16150. }
  16151. },
  16152. },
  16153. [
  16154. {
  16155. name: "Micro",
  16156. height: math.unit(6, "inches")
  16157. },
  16158. {
  16159. name: "Mini",
  16160. height: math.unit(3, "feet")
  16161. },
  16162. {
  16163. name: "Normal",
  16164. height: math.unit(6, "feet"),
  16165. default: true
  16166. },
  16167. {
  16168. name: "Big",
  16169. height: math.unit(25, "feet")
  16170. },
  16171. {
  16172. name: "Macro",
  16173. height: math.unit(100, "feet")
  16174. },
  16175. {
  16176. name: "Megamacro",
  16177. height: math.unit(400, "feet")
  16178. },
  16179. ]
  16180. ))
  16181. characterMakers.push(() => makeCharacter(
  16182. { name: "Marcus" },
  16183. {
  16184. front: {
  16185. height: math.unit(6, "feet"),
  16186. weight: math.unit(160, "lb"),
  16187. name: "Front",
  16188. image: {
  16189. source: "./media/characters/marcus/front.svg",
  16190. extra: 734 / 676,
  16191. bottom: 0.03
  16192. }
  16193. },
  16194. },
  16195. [
  16196. {
  16197. name: "Little",
  16198. height: math.unit(6, "feet")
  16199. },
  16200. {
  16201. name: "Normal",
  16202. height: math.unit(110, "feet"),
  16203. default: true
  16204. },
  16205. {
  16206. name: "Macro",
  16207. height: math.unit(250, "feet")
  16208. },
  16209. {
  16210. name: "Megamacro",
  16211. height: math.unit(1000, "feet")
  16212. },
  16213. ]
  16214. ))
  16215. characterMakers.push(() => makeCharacter(
  16216. { name: "Claude DelRoute" },
  16217. {
  16218. front: {
  16219. height: math.unit(7, "feet"),
  16220. weight: math.unit(275, "lb"),
  16221. name: "Front",
  16222. image: {
  16223. source: "./media/characters/claude-delroute/front.svg",
  16224. extra: 230 / 214,
  16225. bottom: 0.007
  16226. }
  16227. },
  16228. side: {
  16229. height: math.unit(7, "feet"),
  16230. weight: math.unit(275, "lb"),
  16231. name: "Side",
  16232. image: {
  16233. source: "./media/characters/claude-delroute/side.svg",
  16234. extra: 222 / 214,
  16235. bottom: 0.01
  16236. }
  16237. },
  16238. back: {
  16239. height: math.unit(7, "feet"),
  16240. weight: math.unit(275, "lb"),
  16241. name: "Back",
  16242. image: {
  16243. source: "./media/characters/claude-delroute/back.svg",
  16244. extra: 230 / 214,
  16245. bottom: 0.015
  16246. }
  16247. },
  16248. maw: {
  16249. height: math.unit(0.6407, "meters"),
  16250. name: "Maw",
  16251. image: {
  16252. source: "./media/characters/claude-delroute/maw.svg"
  16253. }
  16254. },
  16255. },
  16256. [
  16257. {
  16258. name: "Normal",
  16259. height: math.unit(7, "feet"),
  16260. default: true
  16261. },
  16262. {
  16263. name: "Lorge",
  16264. height: math.unit(20, "feet")
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Dragonien" },
  16270. {
  16271. front: {
  16272. height: math.unit(8 + 4 / 12, "feet"),
  16273. weight: math.unit(600, "lb"),
  16274. name: "Front",
  16275. image: {
  16276. source: "./media/characters/dragonien/front.svg",
  16277. extra: 100 / 94,
  16278. bottom: 3.3 / 103.3445
  16279. }
  16280. },
  16281. back: {
  16282. height: math.unit(8 + 4 / 12, "feet"),
  16283. weight: math.unit(600, "lb"),
  16284. name: "Back",
  16285. image: {
  16286. source: "./media/characters/dragonien/back.svg",
  16287. extra: 776 / 746,
  16288. bottom: 6.4 / 782.0616
  16289. }
  16290. },
  16291. foot: {
  16292. height: math.unit(1.54, "feet"),
  16293. name: "Foot",
  16294. image: {
  16295. source: "./media/characters/dragonien/foot.svg",
  16296. }
  16297. },
  16298. },
  16299. [
  16300. {
  16301. name: "Normal",
  16302. height: math.unit(8 + 4 / 12, "feet"),
  16303. default: true
  16304. },
  16305. {
  16306. name: "Macro",
  16307. height: math.unit(200, "feet")
  16308. },
  16309. {
  16310. name: "Megamacro",
  16311. height: math.unit(1, "mile")
  16312. },
  16313. {
  16314. name: "Gigamacro",
  16315. height: math.unit(1000, "miles")
  16316. },
  16317. ]
  16318. ))
  16319. characterMakers.push(() => makeCharacter(
  16320. { name: "Desta" },
  16321. {
  16322. front: {
  16323. height: math.unit(5 + 2 / 12, "feet"),
  16324. weight: math.unit(110, "lb"),
  16325. name: "Front",
  16326. image: {
  16327. source: "./media/characters/desta/front.svg",
  16328. extra: 1482 / 1417
  16329. }
  16330. },
  16331. side: {
  16332. height: math.unit(5 + 2 / 12, "feet"),
  16333. weight: math.unit(110, "lb"),
  16334. name: "Side",
  16335. image: {
  16336. source: "./media/characters/desta/side.svg",
  16337. extra: 2579 / 2491,
  16338. bottom: 0.053
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Micro",
  16345. height: math.unit(6, "inches")
  16346. },
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(5 + 2 / 12, "feet"),
  16350. default: true
  16351. },
  16352. {
  16353. name: "Macro",
  16354. height: math.unit(62, "feet")
  16355. },
  16356. {
  16357. name: "Megamacro",
  16358. height: math.unit(1800, "feet")
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Storm Alystar" },
  16364. {
  16365. front: {
  16366. height: math.unit(10, "feet"),
  16367. weight: math.unit(700, "lb"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/storm-alystar/front.svg",
  16371. extra: 2112 / 1898,
  16372. bottom: 0.034
  16373. }
  16374. },
  16375. },
  16376. [
  16377. {
  16378. name: "Micro",
  16379. height: math.unit(3.5, "inches")
  16380. },
  16381. {
  16382. name: "Normal",
  16383. height: math.unit(10, "feet"),
  16384. default: true
  16385. },
  16386. {
  16387. name: "Macro",
  16388. height: math.unit(400, "feet")
  16389. },
  16390. {
  16391. name: "Deific",
  16392. height: math.unit(60, "miles")
  16393. },
  16394. ]
  16395. ))
  16396. characterMakers.push(() => makeCharacter(
  16397. { name: "Ilia" },
  16398. {
  16399. front: {
  16400. height: math.unit(2.35, "meters"),
  16401. weight: math.unit(119, "kg"),
  16402. name: "Front",
  16403. image: {
  16404. source: "./media/characters/ilia/front.svg",
  16405. extra: 1285 / 1255,
  16406. bottom: 0.06
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Normal",
  16413. height: math.unit(2.35, "meters")
  16414. },
  16415. {
  16416. name: "Macro",
  16417. height: math.unit(140, "meters"),
  16418. default: true
  16419. },
  16420. {
  16421. name: "Megamacro",
  16422. height: math.unit(100, "miles")
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "KingDead" },
  16428. {
  16429. front: {
  16430. height: math.unit(6 + 5 / 12, "feet"),
  16431. weight: math.unit(190, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/kingdead/front.svg",
  16435. extra: 1228 / 1177
  16436. }
  16437. },
  16438. },
  16439. [
  16440. {
  16441. name: "Micro",
  16442. height: math.unit(7, "inches")
  16443. },
  16444. {
  16445. name: "Normal",
  16446. height: math.unit(6 + 5 / 12, "feet")
  16447. },
  16448. {
  16449. name: "Macro",
  16450. height: math.unit(150, "feet"),
  16451. default: true
  16452. },
  16453. {
  16454. name: "Megamacro",
  16455. height: math.unit(200, "miles")
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Kyrehx" },
  16461. {
  16462. front: {
  16463. height: math.unit(8, "feet"),
  16464. weight: math.unit(600, "lb"),
  16465. name: "Front",
  16466. image: {
  16467. source: "./media/characters/kyrehx/front.svg",
  16468. extra: 1195 / 1095,
  16469. bottom: 0.034
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Micro",
  16476. height: math.unit(2, "inches")
  16477. },
  16478. {
  16479. name: "Normal",
  16480. height: math.unit(8, "feet"),
  16481. default: true
  16482. },
  16483. {
  16484. name: "Macro",
  16485. height: math.unit(255, "feet")
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Xang" },
  16491. {
  16492. front: {
  16493. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16494. weight: math.unit(184, "lb"),
  16495. name: "Front",
  16496. image: {
  16497. source: "./media/characters/xang/front.svg",
  16498. extra: 845 / 755
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16506. default: true
  16507. },
  16508. {
  16509. name: "Macro",
  16510. height: math.unit(0.935 * 146, "feet")
  16511. },
  16512. {
  16513. name: "Megamacro",
  16514. height: math.unit(0.935 * 3, "miles")
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Doc Weardno" },
  16520. {
  16521. frontDressed: {
  16522. height: math.unit(5 + 7 / 12, "feet"),
  16523. weight: math.unit(140, "lb"),
  16524. name: "Front (Dressed)",
  16525. image: {
  16526. source: "./media/characters/doc-weardno/front-dressed.svg",
  16527. extra: 263 / 234
  16528. }
  16529. },
  16530. backDressed: {
  16531. height: math.unit(5 + 7 / 12, "feet"),
  16532. weight: math.unit(140, "lb"),
  16533. name: "Back (Dressed)",
  16534. image: {
  16535. source: "./media/characters/doc-weardno/back-dressed.svg",
  16536. extra: 266 / 238
  16537. }
  16538. },
  16539. front: {
  16540. height: math.unit(5 + 7 / 12, "feet"),
  16541. weight: math.unit(140, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/doc-weardno/front.svg",
  16545. extra: 254 / 233
  16546. }
  16547. },
  16548. },
  16549. [
  16550. {
  16551. name: "Micro",
  16552. height: math.unit(3, "inches")
  16553. },
  16554. {
  16555. name: "Normal",
  16556. height: math.unit(5 + 7 / 12, "feet"),
  16557. default: true
  16558. },
  16559. {
  16560. name: "Macro",
  16561. height: math.unit(25, "feet")
  16562. },
  16563. {
  16564. name: "Megamacro",
  16565. height: math.unit(2, "miles")
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Seth Whilst" },
  16571. {
  16572. front: {
  16573. height: math.unit(6 + 2 / 12, "feet"),
  16574. weight: math.unit(153, "lb"),
  16575. name: "Front",
  16576. image: {
  16577. source: "./media/characters/seth-whilst/front.svg",
  16578. bottom: 0.07
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Micro",
  16585. height: math.unit(5, "inches")
  16586. },
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(6 + 2 / 12, "feet"),
  16590. default: true
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Pocket Jabari" },
  16596. {
  16597. front: {
  16598. height: math.unit(3, "inches"),
  16599. weight: math.unit(8, "grams"),
  16600. name: "Front",
  16601. image: {
  16602. source: "./media/characters/pocket-jabari/front.svg",
  16603. extra: 1024 / 974,
  16604. bottom: 0.039
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Minimicro",
  16611. height: math.unit(8, "mm")
  16612. },
  16613. {
  16614. name: "Micro",
  16615. height: math.unit(3, "inches"),
  16616. default: true
  16617. },
  16618. {
  16619. name: "Normal",
  16620. height: math.unit(3, "feet")
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Sapphy" },
  16626. {
  16627. front: {
  16628. height: math.unit(15, "feet"),
  16629. weight: math.unit(3280, "lb"),
  16630. name: "Front",
  16631. image: {
  16632. source: "./media/characters/sapphy/front.svg",
  16633. extra: 671 / 577,
  16634. bottom: 0.085
  16635. }
  16636. },
  16637. back: {
  16638. height: math.unit(15, "feet"),
  16639. weight: math.unit(3280, "lb"),
  16640. name: "Back",
  16641. image: {
  16642. source: "./media/characters/sapphy/back.svg",
  16643. extra: 631 / 607,
  16644. bottom: 0.045
  16645. }
  16646. },
  16647. },
  16648. [
  16649. {
  16650. name: "Normal",
  16651. height: math.unit(15, "feet")
  16652. },
  16653. {
  16654. name: "Casual Macro",
  16655. height: math.unit(120, "feet")
  16656. },
  16657. {
  16658. name: "Macro",
  16659. height: math.unit(2150, "feet"),
  16660. default: true
  16661. },
  16662. {
  16663. name: "Megamacro",
  16664. height: math.unit(8, "miles")
  16665. },
  16666. {
  16667. name: "Galaxy Mom",
  16668. height: math.unit(6, "megalightyears")
  16669. },
  16670. ]
  16671. ))
  16672. characterMakers.push(() => makeCharacter(
  16673. { name: "Kiro" },
  16674. {
  16675. front: {
  16676. height: math.unit(6, "feet"),
  16677. weight: math.unit(170, "lb"),
  16678. name: "Front",
  16679. image: {
  16680. source: "./media/characters/kiro/front.svg",
  16681. extra: 1064 / 1012,
  16682. bottom: 0.052
  16683. }
  16684. },
  16685. },
  16686. [
  16687. {
  16688. name: "Micro",
  16689. height: math.unit(6, "inches")
  16690. },
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(6, "feet"),
  16694. default: true
  16695. },
  16696. {
  16697. name: "Macro",
  16698. height: math.unit(72, "feet")
  16699. },
  16700. ]
  16701. ))
  16702. characterMakers.push(() => makeCharacter(
  16703. { name: "Irishfox" },
  16704. {
  16705. front: {
  16706. height: math.unit(5 + 9 / 12, "feet"),
  16707. weight: math.unit(175, "lb"),
  16708. name: "Front",
  16709. image: {
  16710. source: "./media/characters/irishfox/front.svg",
  16711. extra: 1912 / 1680,
  16712. bottom: 0.02
  16713. }
  16714. },
  16715. },
  16716. [
  16717. {
  16718. name: "Nano",
  16719. height: math.unit(1, "mm")
  16720. },
  16721. {
  16722. name: "Micro",
  16723. height: math.unit(2, "inches")
  16724. },
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(5 + 9 / 12, "feet"),
  16728. default: true
  16729. },
  16730. {
  16731. name: "Macro",
  16732. height: math.unit(45, "feet")
  16733. },
  16734. ]
  16735. ))
  16736. characterMakers.push(() => makeCharacter(
  16737. { name: "Aronai Sieyes" },
  16738. {
  16739. front: {
  16740. height: math.unit(6 + 1 / 12, "feet"),
  16741. weight: math.unit(150, "lb"),
  16742. name: "Front",
  16743. image: {
  16744. source: "./media/characters/aronai-sieyes/front.svg",
  16745. extra: 1556 / 1480,
  16746. bottom: 0.015
  16747. }
  16748. },
  16749. side: {
  16750. height: math.unit(6 + 1 / 12, "feet"),
  16751. weight: math.unit(150, "lb"),
  16752. name: "Side",
  16753. image: {
  16754. source: "./media/characters/aronai-sieyes/side.svg",
  16755. extra: 1433 / 1390,
  16756. bottom: 0.0393
  16757. }
  16758. },
  16759. back: {
  16760. height: math.unit(6 + 1 / 12, "feet"),
  16761. weight: math.unit(150, "lb"),
  16762. name: "Back",
  16763. image: {
  16764. source: "./media/characters/aronai-sieyes/back.svg",
  16765. extra: 1544 / 1494,
  16766. bottom: 0.02
  16767. }
  16768. },
  16769. frontClothed: {
  16770. height: math.unit(6 + 1 / 12, "feet"),
  16771. weight: math.unit(150, "lb"),
  16772. name: "Front (Clothed)",
  16773. image: {
  16774. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16775. extra: 1582 / 1527
  16776. }
  16777. },
  16778. feral: {
  16779. height: math.unit(18, "feet"),
  16780. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16781. name: "Feral",
  16782. image: {
  16783. source: "./media/characters/aronai-sieyes/feral.svg",
  16784. extra: 1530 / 1240,
  16785. bottom: 0.035
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Micro",
  16792. height: math.unit(2, "inches")
  16793. },
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(6 + 1 / 12, "feet"),
  16797. default: true
  16798. }
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Xuna" },
  16803. {
  16804. front: {
  16805. height: math.unit(12, "feet"),
  16806. weight: math.unit(410, "kg"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/xuna/front.svg",
  16810. extra: 2184 / 1980
  16811. }
  16812. },
  16813. side: {
  16814. height: math.unit(12, "feet"),
  16815. weight: math.unit(410, "kg"),
  16816. name: "Side",
  16817. image: {
  16818. source: "./media/characters/xuna/side.svg",
  16819. extra: 2184 / 1980
  16820. }
  16821. },
  16822. back: {
  16823. height: math.unit(12, "feet"),
  16824. weight: math.unit(410, "kg"),
  16825. name: "Back",
  16826. image: {
  16827. source: "./media/characters/xuna/back.svg",
  16828. extra: 2184 / 1980
  16829. }
  16830. },
  16831. },
  16832. [
  16833. {
  16834. name: "Nano glow",
  16835. height: math.unit(10, "nm")
  16836. },
  16837. {
  16838. name: "Micro floof",
  16839. height: math.unit(0.3, "m")
  16840. },
  16841. {
  16842. name: "Huggable softy boi",
  16843. height: math.unit(3.6576, "m"),
  16844. default: true
  16845. },
  16846. {
  16847. name: "Admirable floof",
  16848. height: math.unit(80, "meters")
  16849. },
  16850. {
  16851. name: "Gentle macro",
  16852. height: math.unit(300, "meters")
  16853. },
  16854. {
  16855. name: "Very careful floof",
  16856. height: math.unit(3200, "meters")
  16857. },
  16858. {
  16859. name: "The mega floof",
  16860. height: math.unit(36000, "meters")
  16861. },
  16862. {
  16863. name: "Giga-fur-Wicker",
  16864. height: math.unit(4800000, "meters")
  16865. },
  16866. {
  16867. name: "Licky world",
  16868. height: math.unit(20000000, "meters")
  16869. },
  16870. {
  16871. name: "Floofy cyan sun",
  16872. height: math.unit(1500000000, "meters")
  16873. },
  16874. {
  16875. name: "Milky Wicker",
  16876. height: math.unit(1000000000000000000000, "meters")
  16877. },
  16878. {
  16879. name: "The observing Wicker",
  16880. height: math.unit(999999999999999999999999999, "meters")
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Arokha Sieyes" },
  16886. {
  16887. front: {
  16888. height: math.unit(5 + 9 / 12, "feet"),
  16889. weight: math.unit(150, "lb"),
  16890. name: "Front",
  16891. image: {
  16892. source: "./media/characters/arokha-sieyes/front.svg",
  16893. extra: 1425 / 1284,
  16894. bottom: 0.05
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Normal",
  16901. height: math.unit(5 + 9 / 12, "feet")
  16902. },
  16903. {
  16904. name: "Macro",
  16905. height: math.unit(30, "meters"),
  16906. default: true
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Arokh Sieyes" },
  16912. {
  16913. front: {
  16914. height: math.unit(6, "feet"),
  16915. weight: math.unit(180, "lb"),
  16916. name: "Front",
  16917. image: {
  16918. source: "./media/characters/arokh-sieyes/front.svg",
  16919. extra: 1830 / 1769,
  16920. bottom: 0.01
  16921. }
  16922. },
  16923. },
  16924. [
  16925. {
  16926. name: "Normal",
  16927. height: math.unit(6, "feet")
  16928. },
  16929. {
  16930. name: "Macro",
  16931. height: math.unit(30, "meters"),
  16932. default: true
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Goldeneye" },
  16938. {
  16939. side: {
  16940. height: math.unit(13 + 1 / 12, "feet"),
  16941. weight: math.unit(8.5, "tonnes"),
  16942. name: "Side",
  16943. image: {
  16944. source: "./media/characters/goldeneye/side.svg",
  16945. extra: 1182 / 778,
  16946. bottom: 0.067
  16947. }
  16948. },
  16949. paw: {
  16950. height: math.unit(3.4, "feet"),
  16951. name: "Paw",
  16952. image: {
  16953. source: "./media/characters/goldeneye/paw.svg"
  16954. }
  16955. },
  16956. },
  16957. [
  16958. {
  16959. name: "Normal",
  16960. height: math.unit(13 + 1 / 12, "feet"),
  16961. default: true
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Leonardo Lycheborne" },
  16967. {
  16968. front: {
  16969. height: math.unit(6 + 1 / 12, "feet"),
  16970. weight: math.unit(210, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/leonardo-lycheborne/front.svg",
  16974. extra: 390 / 365,
  16975. bottom: 0.032
  16976. }
  16977. },
  16978. side: {
  16979. height: math.unit(6 + 1 / 12, "feet"),
  16980. weight: math.unit(210, "lb"),
  16981. name: "Side",
  16982. image: {
  16983. source: "./media/characters/leonardo-lycheborne/side.svg",
  16984. extra: 390 / 365,
  16985. bottom: 0.005
  16986. }
  16987. },
  16988. back: {
  16989. height: math.unit(6 + 1 / 12, "feet"),
  16990. weight: math.unit(210, "lb"),
  16991. name: "Back",
  16992. image: {
  16993. source: "./media/characters/leonardo-lycheborne/back.svg",
  16994. extra: 392 / 366,
  16995. bottom: 0.01
  16996. }
  16997. },
  16998. hand: {
  16999. height: math.unit(1.08, "feet"),
  17000. name: "Hand",
  17001. image: {
  17002. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17003. }
  17004. },
  17005. foot: {
  17006. height: math.unit(1.32, "feet"),
  17007. name: "Foot",
  17008. image: {
  17009. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17010. }
  17011. },
  17012. were: {
  17013. height: math.unit(20, "feet"),
  17014. weight: math.unit(7800, "lb"),
  17015. name: "Were",
  17016. image: {
  17017. source: "./media/characters/leonardo-lycheborne/were.svg",
  17018. extra: 308 / 294,
  17019. bottom: 0.048
  17020. }
  17021. },
  17022. feral: {
  17023. height: math.unit(7.5, "feet"),
  17024. weight: math.unit(600, "lb"),
  17025. name: "Feral",
  17026. image: {
  17027. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17028. extra: 210 / 186,
  17029. bottom: 0.108
  17030. }
  17031. },
  17032. taur: {
  17033. height: math.unit(11, "feet"),
  17034. weight: math.unit(3300, "lb"),
  17035. name: "Taur",
  17036. image: {
  17037. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17038. extra: 320 / 303,
  17039. bottom: 0.025
  17040. }
  17041. },
  17042. barghest: {
  17043. height: math.unit(11, "feet"),
  17044. weight: math.unit(1300, "lb"),
  17045. name: "Barghest",
  17046. image: {
  17047. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17048. extra: 323 / 302,
  17049. bottom: 0.027
  17050. }
  17051. },
  17052. dick: {
  17053. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17054. name: "Dick",
  17055. image: {
  17056. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17057. }
  17058. },
  17059. dickWere: {
  17060. height: math.unit((20) / 3.8, "feet"),
  17061. name: "Dick (Were)",
  17062. image: {
  17063. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(6 + 1 / 12, "feet"),
  17071. default: true
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Jet" },
  17077. {
  17078. front: {
  17079. height: math.unit(10, "feet"),
  17080. weight: math.unit(350, "lb"),
  17081. name: "Front",
  17082. image: {
  17083. source: "./media/characters/jet/front.svg",
  17084. extra: 2050 / 1980,
  17085. bottom: 0.013
  17086. }
  17087. },
  17088. back: {
  17089. height: math.unit(10, "feet"),
  17090. weight: math.unit(350, "lb"),
  17091. name: "Back",
  17092. image: {
  17093. source: "./media/characters/jet/back.svg",
  17094. extra: 2050 / 1980,
  17095. bottom: 0.013
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Micro",
  17102. height: math.unit(6, "inches")
  17103. },
  17104. {
  17105. name: "Normal",
  17106. height: math.unit(10, "feet"),
  17107. default: true
  17108. },
  17109. {
  17110. name: "Macro",
  17111. height: math.unit(100, "feet")
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Tanarath" },
  17117. {
  17118. front: {
  17119. height: math.unit(15, "feet"),
  17120. weight: math.unit(2800, "lb"),
  17121. name: "Front",
  17122. image: {
  17123. source: "./media/characters/tanarath/front.svg",
  17124. extra: 2392 / 2220,
  17125. bottom: 0.03
  17126. }
  17127. },
  17128. back: {
  17129. height: math.unit(15, "feet"),
  17130. weight: math.unit(2800, "lb"),
  17131. name: "Back",
  17132. image: {
  17133. source: "./media/characters/tanarath/back.svg",
  17134. extra: 2392 / 2220,
  17135. bottom: 0.03
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(15, "feet"),
  17143. default: true
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Patty CattyBatty" },
  17149. {
  17150. front: {
  17151. height: math.unit(7 + 1 / 12, "feet"),
  17152. weight: math.unit(175, "lb"),
  17153. name: "Front",
  17154. image: {
  17155. source: "./media/characters/patty-cattybatty/front.svg",
  17156. extra: 908 / 874,
  17157. bottom: 0.025
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Micro",
  17164. height: math.unit(1, "inch")
  17165. },
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(7 + 1 / 12, "feet")
  17169. },
  17170. {
  17171. name: "Mini Macro",
  17172. height: math.unit(155, "feet")
  17173. },
  17174. {
  17175. name: "Macro",
  17176. height: math.unit(1077, "feet")
  17177. },
  17178. {
  17179. name: "Mega Macro",
  17180. height: math.unit(47650, "feet"),
  17181. default: true
  17182. },
  17183. {
  17184. name: "Giga Macro",
  17185. height: math.unit(440, "miles")
  17186. },
  17187. {
  17188. name: "Tera Macro",
  17189. height: math.unit(8700, "miles")
  17190. },
  17191. {
  17192. name: "Planetary Macro",
  17193. height: math.unit(32700, "miles")
  17194. },
  17195. {
  17196. name: "Solar Macro",
  17197. height: math.unit(550000, "miles")
  17198. },
  17199. {
  17200. name: "Celestial Macro",
  17201. height: math.unit(2.5, "AU")
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Cappu" },
  17207. {
  17208. front: {
  17209. height: math.unit(4 + 5 / 12, "feet"),
  17210. weight: math.unit(90, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/cappu/front.svg",
  17214. extra: 1247 / 1152,
  17215. bottom: 0.012
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(4 + 5 / 12, "feet"),
  17223. default: true
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Sebi" },
  17229. {
  17230. frontDressed: {
  17231. height: math.unit(70, "cm"),
  17232. weight: math.unit(6, "kg"),
  17233. name: "Front (Dressed)",
  17234. image: {
  17235. source: "./media/characters/sebi/front-dressed.svg",
  17236. extra: 713.5 / 686.5,
  17237. bottom: 0.003
  17238. }
  17239. },
  17240. front: {
  17241. height: math.unit(70, "cm"),
  17242. weight: math.unit(5, "kg"),
  17243. name: "Front",
  17244. image: {
  17245. source: "./media/characters/sebi/front.svg",
  17246. extra: 713.5 / 686.5,
  17247. bottom: 0.003
  17248. }
  17249. }
  17250. },
  17251. [
  17252. {
  17253. name: "Normal",
  17254. height: math.unit(70, "cm"),
  17255. default: true
  17256. },
  17257. {
  17258. name: "Macro",
  17259. height: math.unit(8, "meters")
  17260. },
  17261. ]
  17262. ))
  17263. characterMakers.push(() => makeCharacter(
  17264. { name: "Typhek" },
  17265. {
  17266. front: {
  17267. height: math.unit(6, "feet"),
  17268. weight: math.unit(150, "lb"),
  17269. name: "Front",
  17270. image: {
  17271. source: "./media/characters/typhek/front.svg",
  17272. extra: 1948 / 1929,
  17273. bottom: 0.025
  17274. }
  17275. },
  17276. side: {
  17277. height: math.unit(6, "feet"),
  17278. weight: math.unit(150, "lb"),
  17279. name: "Side",
  17280. image: {
  17281. source: "./media/characters/typhek/side.svg",
  17282. extra: 2034 / 2010,
  17283. bottom: 0.003
  17284. }
  17285. },
  17286. back: {
  17287. height: math.unit(6, "feet"),
  17288. weight: math.unit(150, "lb"),
  17289. name: "Back",
  17290. image: {
  17291. source: "./media/characters/typhek/back.svg",
  17292. extra: 2005 / 1978,
  17293. bottom: 0.004
  17294. }
  17295. },
  17296. palm: {
  17297. height: math.unit(1.2, "feet"),
  17298. name: "Palm",
  17299. image: {
  17300. source: "./media/characters/typhek/palm.svg"
  17301. }
  17302. },
  17303. fist: {
  17304. height: math.unit(1.1, "feet"),
  17305. name: "Fist",
  17306. image: {
  17307. source: "./media/characters/typhek/fist.svg"
  17308. }
  17309. },
  17310. foot: {
  17311. height: math.unit(1.57, "feet"),
  17312. name: "Foot",
  17313. image: {
  17314. source: "./media/characters/typhek/foot.svg"
  17315. }
  17316. },
  17317. sole: {
  17318. height: math.unit(2.05, "feet"),
  17319. name: "Sole",
  17320. image: {
  17321. source: "./media/characters/typhek/sole.svg"
  17322. }
  17323. },
  17324. },
  17325. [
  17326. {
  17327. name: "Macro",
  17328. height: math.unit(40, "stories"),
  17329. default: true
  17330. },
  17331. {
  17332. name: "Megamacro",
  17333. height: math.unit(1, "mile")
  17334. },
  17335. {
  17336. name: "Gigamacro",
  17337. height: math.unit(4000, "solarradii")
  17338. },
  17339. {
  17340. name: "Universal",
  17341. height: math.unit(1.1, "universes")
  17342. }
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Kassy" },
  17347. {
  17348. side: {
  17349. height: math.unit(5 + 7 / 12, "feet"),
  17350. weight: math.unit(150, "lb"),
  17351. name: "Side",
  17352. image: {
  17353. source: "./media/characters/kassy/side.svg",
  17354. extra: 1280 / 1225,
  17355. bottom: 0.002
  17356. }
  17357. },
  17358. front: {
  17359. height: math.unit(5 + 7 / 12, "feet"),
  17360. weight: math.unit(150, "lb"),
  17361. name: "Front",
  17362. image: {
  17363. source: "./media/characters/kassy/front.svg",
  17364. extra: 1280 / 1225,
  17365. bottom: 0.025
  17366. }
  17367. },
  17368. back: {
  17369. height: math.unit(5 + 7 / 12, "feet"),
  17370. weight: math.unit(150, "lb"),
  17371. name: "Back",
  17372. image: {
  17373. source: "./media/characters/kassy/back.svg",
  17374. extra: 1280 / 1225,
  17375. bottom: 0.002
  17376. }
  17377. },
  17378. foot: {
  17379. height: math.unit(1.266, "feet"),
  17380. name: "Foot",
  17381. image: {
  17382. source: "./media/characters/kassy/foot.svg"
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(5 + 7 / 12, "feet")
  17390. },
  17391. {
  17392. name: "Macro",
  17393. height: math.unit(137, "feet"),
  17394. default: true
  17395. },
  17396. {
  17397. name: "Megamacro",
  17398. height: math.unit(1, "mile")
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Neil" },
  17404. {
  17405. front: {
  17406. height: math.unit(6 + 1 / 12, "feet"),
  17407. weight: math.unit(200, "lb"),
  17408. name: "Front",
  17409. image: {
  17410. source: "./media/characters/neil/front.svg",
  17411. extra: 1326 / 1250,
  17412. bottom: 0.023
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(6 + 1 / 12, "feet"),
  17420. default: true
  17421. },
  17422. {
  17423. name: "Macro",
  17424. height: math.unit(200, "feet")
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Atticus" },
  17430. {
  17431. front: {
  17432. height: math.unit(5 + 9 / 12, "feet"),
  17433. weight: math.unit(190, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/atticus/front.svg",
  17437. extra: 2934 / 2785,
  17438. bottom: 0.025
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(5 + 9 / 12, "feet"),
  17446. default: true
  17447. },
  17448. {
  17449. name: "Macro",
  17450. height: math.unit(180, "feet")
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Milo" },
  17456. {
  17457. side: {
  17458. height: math.unit(9, "feet"),
  17459. weight: math.unit(650, "lb"),
  17460. name: "Side",
  17461. image: {
  17462. source: "./media/characters/milo/side.svg",
  17463. extra: 2644 / 2310,
  17464. bottom: 0.032
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Normal",
  17471. height: math.unit(9, "feet"),
  17472. default: true
  17473. },
  17474. {
  17475. name: "Macro",
  17476. height: math.unit(300, "feet")
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "Ijzer" },
  17482. {
  17483. side: {
  17484. height: math.unit(8, "meters"),
  17485. weight: math.unit(90000, "kg"),
  17486. name: "Side",
  17487. image: {
  17488. source: "./media/characters/ijzer/side.svg",
  17489. extra: 2756 / 1600,
  17490. bottom: 0.01
  17491. }
  17492. },
  17493. },
  17494. [
  17495. {
  17496. name: "Small",
  17497. height: math.unit(3, "meters")
  17498. },
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(8, "meters"),
  17502. default: true
  17503. },
  17504. {
  17505. name: "Normal+",
  17506. height: math.unit(10, "meters")
  17507. },
  17508. {
  17509. name: "Bigger",
  17510. height: math.unit(24, "meters")
  17511. },
  17512. {
  17513. name: "Huge",
  17514. height: math.unit(80, "meters")
  17515. },
  17516. ]
  17517. ))
  17518. characterMakers.push(() => makeCharacter(
  17519. { name: "Luca Cervicum" },
  17520. {
  17521. front: {
  17522. height: math.unit(6 + 2 / 12, "feet"),
  17523. weight: math.unit(153, "lb"),
  17524. name: "Front",
  17525. image: {
  17526. source: "./media/characters/luca-cervicum/front.svg",
  17527. extra: 370 / 327,
  17528. bottom: 0.015
  17529. }
  17530. },
  17531. back: {
  17532. height: math.unit(6 + 2 / 12, "feet"),
  17533. weight: math.unit(153, "lb"),
  17534. name: "Back",
  17535. image: {
  17536. source: "./media/characters/luca-cervicum/back.svg",
  17537. extra: 367 / 333,
  17538. bottom: 0.005
  17539. }
  17540. },
  17541. frontGear: {
  17542. height: math.unit(6 + 2 / 12, "feet"),
  17543. weight: math.unit(173, "lb"),
  17544. name: "Front (Gear)",
  17545. image: {
  17546. source: "./media/characters/luca-cervicum/front-gear.svg",
  17547. extra: 377 / 333,
  17548. bottom: 0.006
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(6 + 2 / 12, "feet"),
  17556. default: true
  17557. },
  17558. ]
  17559. ))
  17560. characterMakers.push(() => makeCharacter(
  17561. { name: "Oliver" },
  17562. {
  17563. front: {
  17564. height: math.unit(6 + 1 / 12, "feet"),
  17565. weight: math.unit(304, "lb"),
  17566. name: "Front",
  17567. image: {
  17568. source: "./media/characters/oliver/front.svg",
  17569. extra: 157 / 143,
  17570. bottom: 0.08
  17571. }
  17572. },
  17573. },
  17574. [
  17575. {
  17576. name: "Normal",
  17577. height: math.unit(6 + 1 / 12, "feet"),
  17578. default: true
  17579. },
  17580. ]
  17581. ))
  17582. characterMakers.push(() => makeCharacter(
  17583. { name: "Shane" },
  17584. {
  17585. front: {
  17586. height: math.unit(5 + 7 / 12, "feet"),
  17587. weight: math.unit(140, "lb"),
  17588. name: "Front",
  17589. image: {
  17590. source: "./media/characters/shane/front.svg",
  17591. extra: 304 / 289,
  17592. bottom: 0.005
  17593. }
  17594. },
  17595. },
  17596. [
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(5 + 7 / 12, "feet"),
  17600. default: true
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Shin" },
  17606. {
  17607. front: {
  17608. height: math.unit(5 + 9 / 12, "feet"),
  17609. weight: math.unit(178, "lb"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/shin/front.svg",
  17613. extra: 159 / 151,
  17614. bottom: 0.015
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Normal",
  17621. height: math.unit(5 + 9 / 12, "feet"),
  17622. default: true
  17623. },
  17624. ]
  17625. ))
  17626. characterMakers.push(() => makeCharacter(
  17627. { name: "Xerxes" },
  17628. {
  17629. front: {
  17630. height: math.unit(5 + 10 / 12, "feet"),
  17631. weight: math.unit(168, "lb"),
  17632. name: "Front",
  17633. image: {
  17634. source: "./media/characters/xerxes/front.svg",
  17635. extra: 282 / 260,
  17636. bottom: 0.045
  17637. }
  17638. },
  17639. },
  17640. [
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(5 + 10 / 12, "feet"),
  17644. default: true
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Chaska" },
  17650. {
  17651. front: {
  17652. height: math.unit(6 + 7 / 12, "feet"),
  17653. weight: math.unit(208, "lb"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/chaska/front.svg",
  17657. extra: 332 / 319,
  17658. bottom: 0.015
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(6 + 7 / 12, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Enuk" },
  17672. {
  17673. front: {
  17674. height: math.unit(5 + 8 / 12, "feet"),
  17675. weight: math.unit(208, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/enuk/front.svg",
  17679. extra: 437 / 406,
  17680. bottom: 0.02
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(5 + 8 / 12, "feet"),
  17688. default: true
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Bruun" },
  17694. {
  17695. front: {
  17696. height: math.unit(5 + 10 / 12, "feet"),
  17697. weight: math.unit(252, "lb"),
  17698. name: "Front",
  17699. image: {
  17700. source: "./media/characters/bruun/front.svg",
  17701. extra: 197 / 187,
  17702. bottom: 0.012
  17703. }
  17704. },
  17705. },
  17706. [
  17707. {
  17708. name: "Normal",
  17709. height: math.unit(5 + 10 / 12, "feet"),
  17710. default: true
  17711. },
  17712. ]
  17713. ))
  17714. characterMakers.push(() => makeCharacter(
  17715. { name: "Alexeev" },
  17716. {
  17717. front: {
  17718. height: math.unit(6 + 10 / 12, "feet"),
  17719. weight: math.unit(255, "lb"),
  17720. name: "Front",
  17721. image: {
  17722. source: "./media/characters/alexeev/front.svg",
  17723. extra: 213 / 200,
  17724. bottom: 0.05
  17725. }
  17726. },
  17727. },
  17728. [
  17729. {
  17730. name: "Normal",
  17731. height: math.unit(6 + 10 / 12, "feet"),
  17732. default: true
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Evelyn" },
  17738. {
  17739. front: {
  17740. height: math.unit(2 + 8 / 12, "feet"),
  17741. weight: math.unit(22, "lb"),
  17742. name: "Front",
  17743. image: {
  17744. source: "./media/characters/evelyn/front.svg",
  17745. extra: 208 / 180
  17746. }
  17747. },
  17748. },
  17749. [
  17750. {
  17751. name: "Normal",
  17752. height: math.unit(2 + 8 / 12, "feet"),
  17753. default: true
  17754. },
  17755. ]
  17756. ))
  17757. characterMakers.push(() => makeCharacter(
  17758. { name: "Inca" },
  17759. {
  17760. front: {
  17761. height: math.unit(5 + 9 / 12, "feet"),
  17762. weight: math.unit(139, "lb"),
  17763. name: "Front",
  17764. image: {
  17765. source: "./media/characters/inca/front.svg",
  17766. extra: 294 / 291,
  17767. bottom: 0.03
  17768. }
  17769. },
  17770. },
  17771. [
  17772. {
  17773. name: "Normal",
  17774. height: math.unit(5 + 9 / 12, "feet"),
  17775. default: true
  17776. },
  17777. ]
  17778. ))
  17779. characterMakers.push(() => makeCharacter(
  17780. { name: "Magdalene" },
  17781. {
  17782. front: {
  17783. height: math.unit(5 + 1 / 12, "feet"),
  17784. weight: math.unit(84, "lb"),
  17785. name: "Front",
  17786. image: {
  17787. source: "./media/characters/magdalene/front.svg",
  17788. extra: 293 / 273
  17789. }
  17790. },
  17791. },
  17792. [
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(5 + 1 / 12, "feet"),
  17796. default: true
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Mera" },
  17802. {
  17803. front: {
  17804. height: math.unit(6 + 3 / 12, "feet"),
  17805. weight: math.unit(185, "lb"),
  17806. name: "Front",
  17807. image: {
  17808. source: "./media/characters/mera/front.svg",
  17809. extra: 291 / 277,
  17810. bottom: 0.03
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(6 + 3 / 12, "feet"),
  17818. default: true
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Ceres" },
  17824. {
  17825. front: {
  17826. height: math.unit(6 + 7 / 12, "feet"),
  17827. weight: math.unit(160, "lb"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/ceres/front.svg",
  17831. extra: 1023 / 950,
  17832. bottom: 0.027
  17833. }
  17834. },
  17835. back: {
  17836. height: math.unit(6 + 7 / 12, "feet"),
  17837. weight: math.unit(160, "lb"),
  17838. name: "Back",
  17839. image: {
  17840. source: "./media/characters/ceres/back.svg",
  17841. extra: 1023 / 950
  17842. }
  17843. },
  17844. },
  17845. [
  17846. {
  17847. name: "Normal",
  17848. height: math.unit(6 + 7 / 12, "feet"),
  17849. default: true
  17850. },
  17851. ]
  17852. ))
  17853. characterMakers.push(() => makeCharacter(
  17854. { name: "Kris" },
  17855. {
  17856. front: {
  17857. height: math.unit(5 + 10 / 12, "feet"),
  17858. weight: math.unit(150, "lb"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/kris/front.svg",
  17862. extra: 885 / 803,
  17863. bottom: 0.03
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Normal",
  17870. height: math.unit(5 + 10 / 12, "feet"),
  17871. default: true
  17872. },
  17873. ]
  17874. ))
  17875. characterMakers.push(() => makeCharacter(
  17876. { name: "Taluthus" },
  17877. {
  17878. front: {
  17879. height: math.unit(7, "feet"),
  17880. weight: math.unit(120, "kg"),
  17881. name: "Front",
  17882. image: {
  17883. source: "./media/characters/taluthus/front.svg",
  17884. extra: 903 / 833,
  17885. bottom: 0.015
  17886. }
  17887. },
  17888. },
  17889. [
  17890. {
  17891. name: "Normal",
  17892. height: math.unit(7, "feet"),
  17893. default: true
  17894. },
  17895. {
  17896. name: "Macro",
  17897. height: math.unit(300, "feet")
  17898. },
  17899. ]
  17900. ))
  17901. characterMakers.push(() => makeCharacter(
  17902. { name: "Dawn" },
  17903. {
  17904. front: {
  17905. height: math.unit(5 + 9 / 12, "feet"),
  17906. weight: math.unit(145, "lb"),
  17907. name: "Front",
  17908. image: {
  17909. source: "./media/characters/dawn/front.svg",
  17910. extra: 2094 / 2016,
  17911. bottom: 0.025
  17912. }
  17913. },
  17914. back: {
  17915. height: math.unit(5 + 9 / 12, "feet"),
  17916. weight: math.unit(160, "lb"),
  17917. name: "Back",
  17918. image: {
  17919. source: "./media/characters/dawn/back.svg",
  17920. extra: 2112 / 2080,
  17921. bottom: 0.005
  17922. }
  17923. },
  17924. },
  17925. [
  17926. {
  17927. name: "Normal",
  17928. height: math.unit(6 + 7 / 12, "feet"),
  17929. default: true
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Arador" },
  17935. {
  17936. anthro: {
  17937. height: math.unit(8 + 3 / 12, "feet"),
  17938. weight: math.unit(450, "lb"),
  17939. name: "Anthro",
  17940. image: {
  17941. source: "./media/characters/arador/anthro.svg",
  17942. extra: 1835 / 1718,
  17943. bottom: 0.025
  17944. }
  17945. },
  17946. feral: {
  17947. height: math.unit(4, "feet"),
  17948. weight: math.unit(200, "lb"),
  17949. name: "Feral",
  17950. image: {
  17951. source: "./media/characters/arador/feral.svg",
  17952. extra: 1683 / 1514,
  17953. bottom: 0.07
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Normal",
  17960. height: math.unit(8 + 3 / 12, "feet")
  17961. },
  17962. {
  17963. name: "Macro",
  17964. height: math.unit(82.5, "feet"),
  17965. default: true
  17966. },
  17967. ]
  17968. ))
  17969. characterMakers.push(() => makeCharacter(
  17970. { name: "Dharsi" },
  17971. {
  17972. front: {
  17973. height: math.unit(5 + 10 / 12, "feet"),
  17974. weight: math.unit(125, "lb"),
  17975. name: "Front",
  17976. image: {
  17977. source: "./media/characters/dharsi/front.svg",
  17978. extra: 716 / 630,
  17979. bottom: 0.035
  17980. }
  17981. },
  17982. },
  17983. [
  17984. {
  17985. name: "Nano",
  17986. height: math.unit(100, "nm")
  17987. },
  17988. {
  17989. name: "Micro",
  17990. height: math.unit(2, "inches")
  17991. },
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(5 + 10 / 12, "feet"),
  17995. default: true
  17996. },
  17997. {
  17998. name: "Macro",
  17999. height: math.unit(1000, "feet")
  18000. },
  18001. {
  18002. name: "Megamacro",
  18003. height: math.unit(10, "miles")
  18004. },
  18005. {
  18006. name: "Gigamacro",
  18007. height: math.unit(3000, "miles")
  18008. },
  18009. {
  18010. name: "Teramacro",
  18011. height: math.unit(500000, "miles")
  18012. },
  18013. {
  18014. name: "Teramacro+",
  18015. height: math.unit(30, "galaxies")
  18016. },
  18017. ]
  18018. ))
  18019. characterMakers.push(() => makeCharacter(
  18020. { name: "Deathy" },
  18021. {
  18022. front: {
  18023. height: math.unit(6, "feet"),
  18024. weight: math.unit(150, "lb"),
  18025. name: "Front",
  18026. image: {
  18027. source: "./media/characters/deathy/front.svg",
  18028. extra: 1552 / 1463,
  18029. bottom: 0.025
  18030. }
  18031. },
  18032. side: {
  18033. height: math.unit(6, "feet"),
  18034. weight: math.unit(150, "lb"),
  18035. name: "Side",
  18036. image: {
  18037. source: "./media/characters/deathy/side.svg",
  18038. extra: 1604 / 1455,
  18039. bottom: 0.025
  18040. }
  18041. },
  18042. back: {
  18043. height: math.unit(6, "feet"),
  18044. weight: math.unit(150, "lb"),
  18045. name: "Back",
  18046. image: {
  18047. source: "./media/characters/deathy/back.svg",
  18048. extra: 1580 / 1463,
  18049. bottom: 0.005
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Micro",
  18056. height: math.unit(5, "millimeters")
  18057. },
  18058. {
  18059. name: "Normal",
  18060. height: math.unit(6 + 5 / 12, "feet"),
  18061. default: true
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Juniper" },
  18067. {
  18068. front: {
  18069. height: math.unit(16, "feet"),
  18070. weight: math.unit(4000, "lb"),
  18071. name: "Front",
  18072. image: {
  18073. source: "./media/characters/juniper/front.svg",
  18074. bottom: 0.04
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(16, "feet"),
  18082. default: true
  18083. },
  18084. ]
  18085. ))
  18086. characterMakers.push(() => makeCharacter(
  18087. { name: "Hipster" },
  18088. {
  18089. front: {
  18090. height: math.unit(6, "feet"),
  18091. weight: math.unit(150, "lb"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/hipster/front.svg",
  18095. extra: 1312 / 1209,
  18096. bottom: 0.025
  18097. }
  18098. },
  18099. back: {
  18100. height: math.unit(6, "feet"),
  18101. weight: math.unit(150, "lb"),
  18102. name: "Back",
  18103. image: {
  18104. source: "./media/characters/hipster/back.svg",
  18105. extra: 1281 / 1196,
  18106. bottom: 0.01
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Micro",
  18113. height: math.unit(1, "mm")
  18114. },
  18115. {
  18116. name: "Normal",
  18117. height: math.unit(4, "inches"),
  18118. default: true
  18119. },
  18120. {
  18121. name: "Macro",
  18122. height: math.unit(500, "feet")
  18123. },
  18124. {
  18125. name: "Megamacro",
  18126. height: math.unit(1000, "miles")
  18127. },
  18128. ]
  18129. ))
  18130. characterMakers.push(() => makeCharacter(
  18131. { name: "Tendirmuldr" },
  18132. {
  18133. front: {
  18134. height: math.unit(6, "feet"),
  18135. weight: math.unit(150, "lb"),
  18136. name: "Front",
  18137. image: {
  18138. source: "./media/characters/tendirmuldr/front.svg",
  18139. extra: 1878 / 1772,
  18140. bottom: 0.015
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Megamacro",
  18147. height: math.unit(1500, "miles"),
  18148. default: true
  18149. },
  18150. ]
  18151. ))
  18152. characterMakers.push(() => makeCharacter(
  18153. { name: "Mort" },
  18154. {
  18155. front: {
  18156. height: math.unit(14, "feet"),
  18157. weight: math.unit(12000, "lb"),
  18158. name: "Front",
  18159. image: {
  18160. source: "./media/characters/mort/front.svg",
  18161. extra: 365 / 318,
  18162. bottom: 0.01
  18163. }
  18164. },
  18165. side: {
  18166. height: math.unit(14, "feet"),
  18167. weight: math.unit(12000, "lb"),
  18168. name: "Side",
  18169. image: {
  18170. source: "./media/characters/mort/side.svg",
  18171. extra: 365 / 318,
  18172. bottom: 0.052
  18173. },
  18174. default: true
  18175. },
  18176. back: {
  18177. height: math.unit(14, "feet"),
  18178. weight: math.unit(12000, "lb"),
  18179. name: "Back",
  18180. image: {
  18181. source: "./media/characters/mort/back.svg",
  18182. extra: 371 / 332,
  18183. bottom: 0.18
  18184. }
  18185. },
  18186. },
  18187. [
  18188. {
  18189. name: "Normal",
  18190. height: math.unit(14, "feet"),
  18191. default: true
  18192. },
  18193. ]
  18194. ))
  18195. characterMakers.push(() => makeCharacter(
  18196. { name: "Lycoa" },
  18197. {
  18198. front: {
  18199. height: math.unit(8, "feet"),
  18200. weight: math.unit(1, "ton"),
  18201. name: "Front",
  18202. image: {
  18203. source: "./media/characters/lycoa/front.svg",
  18204. extra: 1875 / 1789,
  18205. bottom: 0.022
  18206. }
  18207. },
  18208. back: {
  18209. height: math.unit(8, "feet"),
  18210. weight: math.unit(1, "ton"),
  18211. name: "Back",
  18212. image: {
  18213. source: "./media/characters/lycoa/back.svg",
  18214. extra: 1835 / 1781,
  18215. bottom: 0.03
  18216. }
  18217. },
  18218. },
  18219. [
  18220. {
  18221. name: "Normal",
  18222. height: math.unit(8, "feet"),
  18223. default: true
  18224. },
  18225. {
  18226. name: "Macro",
  18227. height: math.unit(30, "feet")
  18228. },
  18229. ]
  18230. ))
  18231. characterMakers.push(() => makeCharacter(
  18232. { name: "Naldara" },
  18233. {
  18234. front: {
  18235. height: math.unit(4 + 2 / 12, "feet"),
  18236. weight: math.unit(70, "lb"),
  18237. name: "Front",
  18238. image: {
  18239. source: "./media/characters/naldara/front.svg",
  18240. extra: 841 / 720,
  18241. bottom: 0.04
  18242. }
  18243. },
  18244. },
  18245. [
  18246. {
  18247. name: "Normal",
  18248. height: math.unit(4 + 2 / 12, "feet"),
  18249. default: true
  18250. },
  18251. ]
  18252. ))
  18253. characterMakers.push(() => makeCharacter(
  18254. { name: "Briar" },
  18255. {
  18256. front: {
  18257. height: math.unit(13 + 7 / 12, "feet"),
  18258. weight: math.unit(1500, "lb"),
  18259. name: "Front",
  18260. image: {
  18261. source: "./media/characters/briar/front.svg",
  18262. extra: 626 / 596,
  18263. bottom: 0.08
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Normal",
  18270. height: math.unit(13 + 7 / 12, "feet"),
  18271. default: true
  18272. },
  18273. ]
  18274. ))
  18275. characterMakers.push(() => makeCharacter(
  18276. { name: "Vanguard" },
  18277. {
  18278. side: {
  18279. height: math.unit(10, "feet"),
  18280. weight: math.unit(500, "lb"),
  18281. name: "Side",
  18282. image: {
  18283. source: "./media/characters/vanguard/side.svg",
  18284. extra: 502 / 425,
  18285. bottom: 0.087
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Normal",
  18292. height: math.unit(10, "feet"),
  18293. default: true
  18294. },
  18295. ]
  18296. ))
  18297. characterMakers.push(() => makeCharacter(
  18298. { name: "Artemis" },
  18299. {
  18300. front: {
  18301. height: math.unit(7.5, "feet"),
  18302. weight: math.unit(2, "lb"),
  18303. name: "Front",
  18304. image: {
  18305. source: "./media/characters/artemis/front.svg",
  18306. extra: 1192 / 1075,
  18307. bottom: 0.07
  18308. }
  18309. },
  18310. },
  18311. [
  18312. {
  18313. name: "Normal",
  18314. height: math.unit(7.5, "feet"),
  18315. default: true
  18316. },
  18317. {
  18318. name: "Enlarged",
  18319. height: math.unit(12, "feet")
  18320. },
  18321. ]
  18322. ))
  18323. characterMakers.push(() => makeCharacter(
  18324. { name: "Kira" },
  18325. {
  18326. front: {
  18327. height: math.unit(5 + 3 / 12, "feet"),
  18328. weight: math.unit(160, "lb"),
  18329. name: "Front",
  18330. image: {
  18331. source: "./media/characters/kira/front.svg",
  18332. extra: 906 / 786,
  18333. bottom: 0.01
  18334. }
  18335. },
  18336. back: {
  18337. height: math.unit(5 + 3 / 12, "feet"),
  18338. weight: math.unit(160, "lb"),
  18339. name: "Back",
  18340. image: {
  18341. source: "./media/characters/kira/back.svg",
  18342. extra: 882 / 757,
  18343. bottom: 0.005
  18344. }
  18345. },
  18346. frontDressed: {
  18347. height: math.unit(5 + 3 / 12, "feet"),
  18348. weight: math.unit(160, "lb"),
  18349. name: "Front (Dressed)",
  18350. image: {
  18351. source: "./media/characters/kira/front-dressed.svg",
  18352. extra: 906 / 786,
  18353. bottom: 0.01
  18354. }
  18355. },
  18356. beans: {
  18357. height: math.unit(0.92, "feet"),
  18358. name: "Beans",
  18359. image: {
  18360. source: "./media/characters/kira/beans.svg"
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(5 + 3 / 12, "feet"),
  18368. default: true
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Scramble" },
  18374. {
  18375. front: {
  18376. height: math.unit(5 + 4 / 12, "feet"),
  18377. weight: math.unit(145, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/scramble/front.svg",
  18381. extra: 763 / 727,
  18382. bottom: 0.05
  18383. }
  18384. },
  18385. back: {
  18386. height: math.unit(5 + 4 / 12, "feet"),
  18387. weight: math.unit(145, "lb"),
  18388. name: "Back",
  18389. image: {
  18390. source: "./media/characters/scramble/back.svg",
  18391. extra: 826 / 737,
  18392. bottom: 0.002
  18393. }
  18394. },
  18395. },
  18396. [
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(5 + 4 / 12, "feet"),
  18400. default: true
  18401. },
  18402. ]
  18403. ))
  18404. characterMakers.push(() => makeCharacter(
  18405. { name: "Biscuit" },
  18406. {
  18407. side: {
  18408. height: math.unit(6 + 2 / 12, "feet"),
  18409. weight: math.unit(190, "lb"),
  18410. name: "Side",
  18411. image: {
  18412. source: "./media/characters/biscuit/side.svg",
  18413. extra: 858 / 791,
  18414. bottom: 0.044
  18415. }
  18416. },
  18417. },
  18418. [
  18419. {
  18420. name: "Normal",
  18421. height: math.unit(6 + 2 / 12, "feet"),
  18422. default: true
  18423. },
  18424. ]
  18425. ))
  18426. characterMakers.push(() => makeCharacter(
  18427. { name: "Poffin" },
  18428. {
  18429. front: {
  18430. height: math.unit(5 + 2 / 12, "feet"),
  18431. weight: math.unit(120, "lb"),
  18432. name: "Front",
  18433. image: {
  18434. source: "./media/characters/poffin/front.svg",
  18435. extra: 786 / 680,
  18436. bottom: 0.005
  18437. }
  18438. },
  18439. },
  18440. [
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(5 + 2 / 12, "feet"),
  18444. default: true
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Dhari" },
  18450. {
  18451. front: {
  18452. height: math.unit(6 + 3 / 12, "feet"),
  18453. weight: math.unit(519, "lb"),
  18454. name: "Front",
  18455. image: {
  18456. source: "./media/characters/dhari/front.svg",
  18457. extra: 1048 / 946,
  18458. bottom: 0.015
  18459. }
  18460. },
  18461. back: {
  18462. height: math.unit(6 + 3 / 12, "feet"),
  18463. weight: math.unit(519, "lb"),
  18464. name: "Back",
  18465. image: {
  18466. source: "./media/characters/dhari/back.svg",
  18467. extra: 1048 / 931,
  18468. bottom: 0.005
  18469. }
  18470. },
  18471. frontDressed: {
  18472. height: math.unit(6 + 3 / 12, "feet"),
  18473. weight: math.unit(519, "lb"),
  18474. name: "Front (Dressed)",
  18475. image: {
  18476. source: "./media/characters/dhari/front-dressed.svg",
  18477. extra: 1713 / 1546,
  18478. bottom: 0.02
  18479. }
  18480. },
  18481. backDressed: {
  18482. height: math.unit(6 + 3 / 12, "feet"),
  18483. weight: math.unit(519, "lb"),
  18484. name: "Back (Dressed)",
  18485. image: {
  18486. source: "./media/characters/dhari/back-dressed.svg",
  18487. extra: 1699 / 1537,
  18488. bottom: 0.01
  18489. }
  18490. },
  18491. maw: {
  18492. height: math.unit(0.95, "feet"),
  18493. name: "Maw",
  18494. image: {
  18495. source: "./media/characters/dhari/maw.svg"
  18496. }
  18497. },
  18498. wereFront: {
  18499. height: math.unit(12 + 8 / 12, "feet"),
  18500. weight: math.unit(4000, "lb"),
  18501. name: "Front (Were)",
  18502. image: {
  18503. source: "./media/characters/dhari/were-front.svg",
  18504. extra: 1065 / 969,
  18505. bottom: 0.015
  18506. }
  18507. },
  18508. wereBack: {
  18509. height: math.unit(12 + 8 / 12, "feet"),
  18510. weight: math.unit(4000, "lb"),
  18511. name: "Back (Were)",
  18512. image: {
  18513. source: "./media/characters/dhari/were-back.svg",
  18514. extra: 1065 / 969,
  18515. bottom: 0.012
  18516. }
  18517. },
  18518. wereMaw: {
  18519. height: math.unit(0.625, "meters"),
  18520. name: "Maw (Were)",
  18521. image: {
  18522. source: "./media/characters/dhari/were-maw.svg"
  18523. }
  18524. },
  18525. },
  18526. [
  18527. {
  18528. name: "Normal",
  18529. height: math.unit(6 + 3 / 12, "feet"),
  18530. default: true
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Rena Dyne" },
  18536. {
  18537. anthro: {
  18538. height: math.unit(5 + 7 / 12, "feet"),
  18539. weight: math.unit(175, "lb"),
  18540. name: "Anthro",
  18541. image: {
  18542. source: "./media/characters/rena-dyne/anthro.svg",
  18543. extra: 1849 / 1785,
  18544. bottom: 0.005
  18545. }
  18546. },
  18547. taur: {
  18548. height: math.unit(15 + 6 / 12, "feet"),
  18549. weight: math.unit(8000, "lb"),
  18550. name: "Taur",
  18551. image: {
  18552. source: "./media/characters/rena-dyne/taur.svg",
  18553. extra: 2315 / 2234,
  18554. bottom: 0.033
  18555. }
  18556. },
  18557. },
  18558. [
  18559. {
  18560. name: "Normal",
  18561. height: math.unit(5 + 7 / 12, "feet"),
  18562. default: true
  18563. },
  18564. ]
  18565. ))
  18566. characterMakers.push(() => makeCharacter(
  18567. { name: "Weremeep" },
  18568. {
  18569. front: {
  18570. height: math.unit(8, "feet"),
  18571. weight: math.unit(600, "lb"),
  18572. name: "Front",
  18573. image: {
  18574. source: "./media/characters/weremeep/front.svg",
  18575. extra: 967 / 862,
  18576. bottom: 0.01
  18577. }
  18578. },
  18579. },
  18580. [
  18581. {
  18582. name: "Normal",
  18583. height: math.unit(8, "feet"),
  18584. default: true
  18585. },
  18586. {
  18587. name: "Lorg",
  18588. height: math.unit(12, "feet")
  18589. },
  18590. {
  18591. name: "Oh Lawd She Comin'",
  18592. height: math.unit(20, "feet")
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Reza" },
  18598. {
  18599. front: {
  18600. height: math.unit(4, "feet"),
  18601. weight: math.unit(90, "lb"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/reza/front.svg",
  18605. extra: 1183 / 1111,
  18606. bottom: 0.017
  18607. }
  18608. },
  18609. back: {
  18610. height: math.unit(4, "feet"),
  18611. weight: math.unit(90, "lb"),
  18612. name: "Back",
  18613. image: {
  18614. source: "./media/characters/reza/back.svg",
  18615. extra: 1183 / 1111,
  18616. bottom: 0.01
  18617. }
  18618. },
  18619. drake: {
  18620. height: math.unit(30, "feet"),
  18621. weight: math.unit(246960, "lb"),
  18622. name: "Drake",
  18623. image: {
  18624. source: "./media/characters/reza/drake.svg",
  18625. extra: 2350/2024,
  18626. bottom: 60.7/2403
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Normal",
  18633. height: math.unit(4, "feet"),
  18634. default: true
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "Athea" },
  18640. {
  18641. side: {
  18642. height: math.unit(15, "feet"),
  18643. weight: math.unit(14, "tons"),
  18644. name: "Side",
  18645. image: {
  18646. source: "./media/characters/athea/side.svg",
  18647. extra: 960 / 540,
  18648. bottom: 0.003
  18649. }
  18650. },
  18651. sitting: {
  18652. height: math.unit(6 * 2.85, "feet"),
  18653. weight: math.unit(14, "tons"),
  18654. name: "Sitting",
  18655. image: {
  18656. source: "./media/characters/athea/sitting.svg",
  18657. extra: 621 / 581,
  18658. bottom: 0.075
  18659. }
  18660. },
  18661. maw: {
  18662. height: math.unit(7.59498031496063, "feet"),
  18663. name: "Maw",
  18664. image: {
  18665. source: "./media/characters/athea/maw.svg"
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Lap Cat",
  18672. height: math.unit(2.5, "feet")
  18673. },
  18674. {
  18675. name: "Minimacro",
  18676. height: math.unit(15, "feet"),
  18677. default: true
  18678. },
  18679. {
  18680. name: "Macro",
  18681. height: math.unit(120, "feet")
  18682. },
  18683. {
  18684. name: "Macro+",
  18685. height: math.unit(640, "feet")
  18686. },
  18687. {
  18688. name: "Colossus",
  18689. height: math.unit(2.2, "miles")
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Seroko" },
  18695. {
  18696. front: {
  18697. height: math.unit(8 + 8 / 12, "feet"),
  18698. weight: math.unit(130, "kg"),
  18699. name: "Front",
  18700. image: {
  18701. source: "./media/characters/seroko/front.svg",
  18702. extra: 1385 / 1280,
  18703. bottom: 0.025
  18704. }
  18705. },
  18706. back: {
  18707. height: math.unit(8 + 8 / 12, "feet"),
  18708. weight: math.unit(130, "kg"),
  18709. name: "Back",
  18710. image: {
  18711. source: "./media/characters/seroko/back.svg",
  18712. extra: 1369 / 1238,
  18713. bottom: 0.018
  18714. }
  18715. },
  18716. frontDressed: {
  18717. height: math.unit(8 + 8 / 12, "feet"),
  18718. weight: math.unit(130, "kg"),
  18719. name: "Front (Dressed)",
  18720. image: {
  18721. source: "./media/characters/seroko/front-dressed.svg",
  18722. extra: 1366 / 1275,
  18723. bottom: 0.03
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(8 + 8 / 12, "feet"),
  18731. default: true
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Quatzi" },
  18737. {
  18738. front: {
  18739. height: math.unit(5.5, "feet"),
  18740. weight: math.unit(160, "lb"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/quatzi/front.svg",
  18744. extra: 2346 / 2242,
  18745. bottom: 0.015
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(5.5, "feet"),
  18753. default: true
  18754. },
  18755. {
  18756. name: "Big",
  18757. height: math.unit(7.7, "feet")
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Sen" },
  18763. {
  18764. front: {
  18765. height: math.unit(5 + 11 / 12, "feet"),
  18766. weight: math.unit(180, "lb"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/sen/front.svg",
  18770. extra: 1321 / 1254,
  18771. bottom: 0.015
  18772. }
  18773. },
  18774. side: {
  18775. height: math.unit(5 + 11 / 12, "feet"),
  18776. weight: math.unit(180, "lb"),
  18777. name: "Side",
  18778. image: {
  18779. source: "./media/characters/sen/side.svg",
  18780. extra: 1321 / 1254,
  18781. bottom: 0.007
  18782. }
  18783. },
  18784. back: {
  18785. height: math.unit(5 + 11 / 12, "feet"),
  18786. weight: math.unit(180, "lb"),
  18787. name: "Back",
  18788. image: {
  18789. source: "./media/characters/sen/back.svg",
  18790. extra: 1321 / 1254
  18791. }
  18792. },
  18793. },
  18794. [
  18795. {
  18796. name: "Normal",
  18797. height: math.unit(5 + 11 / 12, "feet"),
  18798. default: true
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Fruity" },
  18804. {
  18805. front: {
  18806. height: math.unit(166.6, "cm"),
  18807. weight: math.unit(66.6, "kg"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/fruity/front.svg",
  18811. extra: 1510 / 1386,
  18812. bottom: 0.04
  18813. }
  18814. },
  18815. back: {
  18816. height: math.unit(166.6, "cm"),
  18817. weight: math.unit(66.6, "lb"),
  18818. name: "Back",
  18819. image: {
  18820. source: "./media/characters/fruity/back.svg",
  18821. extra: 1563 / 1435,
  18822. bottom: 0.005
  18823. }
  18824. },
  18825. },
  18826. [
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(166.6, "cm"),
  18830. default: true
  18831. },
  18832. {
  18833. name: "Demonic",
  18834. height: math.unit(166.6, "feet")
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Zost" },
  18840. {
  18841. side: {
  18842. height: math.unit(10, "feet"),
  18843. weight: math.unit(500, "lb"),
  18844. name: "Side",
  18845. image: {
  18846. source: "./media/characters/zost/side.svg",
  18847. extra: 966 / 880,
  18848. bottom: 0.075
  18849. }
  18850. },
  18851. mawFront: {
  18852. height: math.unit(1.08, "meters"),
  18853. name: "Maw (Front)",
  18854. image: {
  18855. source: "./media/characters/zost/maw-front.svg"
  18856. }
  18857. },
  18858. mawSide: {
  18859. height: math.unit(2.66, "feet"),
  18860. name: "Maw (Side)",
  18861. image: {
  18862. source: "./media/characters/zost/maw-side.svg"
  18863. }
  18864. },
  18865. },
  18866. [
  18867. {
  18868. name: "Normal",
  18869. height: math.unit(10, "feet"),
  18870. default: true
  18871. },
  18872. ]
  18873. ))
  18874. characterMakers.push(() => makeCharacter(
  18875. { name: "Luci" },
  18876. {
  18877. front: {
  18878. height: math.unit(5 + 4 / 12, "feet"),
  18879. weight: math.unit(120, "lb"),
  18880. name: "Front",
  18881. image: {
  18882. source: "./media/characters/luci/front.svg",
  18883. extra: 1985 / 1884,
  18884. bottom: 0.04
  18885. }
  18886. },
  18887. back: {
  18888. height: math.unit(5 + 4 / 12, "feet"),
  18889. weight: math.unit(120, "lb"),
  18890. name: "Back",
  18891. image: {
  18892. source: "./media/characters/luci/back.svg",
  18893. extra: 1892 / 1791,
  18894. bottom: 0.002
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(5 + 4 / 12, "feet"),
  18902. default: true
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "2th" },
  18908. {
  18909. front: {
  18910. height: math.unit(1500, "feet"),
  18911. weight: math.unit(3.8e6, "tons"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/2th/front.svg",
  18915. extra: 3489 / 3350,
  18916. bottom: 0.1
  18917. }
  18918. },
  18919. foot: {
  18920. height: math.unit(461, "feet"),
  18921. name: "Foot",
  18922. image: {
  18923. source: "./media/characters/2th/foot.svg"
  18924. }
  18925. },
  18926. },
  18927. [
  18928. {
  18929. name: "\"Micro\"",
  18930. height: math.unit(15 + 7 / 12, "feet")
  18931. },
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(1500, "feet"),
  18935. default: true
  18936. },
  18937. {
  18938. name: "Macro",
  18939. height: math.unit(5000, "feet")
  18940. },
  18941. {
  18942. name: "Megamacro",
  18943. height: math.unit(15, "miles")
  18944. },
  18945. {
  18946. name: "Gigamacro",
  18947. height: math.unit(4000, "miles")
  18948. },
  18949. {
  18950. name: "Galactic",
  18951. height: math.unit(50, "AU")
  18952. },
  18953. ]
  18954. ))
  18955. characterMakers.push(() => makeCharacter(
  18956. { name: "Amethyst" },
  18957. {
  18958. front: {
  18959. height: math.unit(5 + 6 / 12, "feet"),
  18960. weight: math.unit(220, "lb"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/amethyst/front.svg",
  18964. extra: 2078 / 2040,
  18965. bottom: 0.045
  18966. }
  18967. },
  18968. back: {
  18969. height: math.unit(5 + 6 / 12, "feet"),
  18970. weight: math.unit(220, "lb"),
  18971. name: "Back",
  18972. image: {
  18973. source: "./media/characters/amethyst/back.svg",
  18974. extra: 2021 / 1989,
  18975. bottom: 0.02
  18976. }
  18977. },
  18978. },
  18979. [
  18980. {
  18981. name: "Normal",
  18982. height: math.unit(5 + 6 / 12, "feet"),
  18983. default: true
  18984. },
  18985. ]
  18986. ))
  18987. characterMakers.push(() => makeCharacter(
  18988. { name: "Yumi Akiyama" },
  18989. {
  18990. front: {
  18991. height: math.unit(4 + 11 / 12, "feet"),
  18992. weight: math.unit(120, "lb"),
  18993. name: "Front",
  18994. image: {
  18995. source: "./media/characters/yumi-akiyama/front.svg",
  18996. extra: 1327 / 1235,
  18997. bottom: 0.02
  18998. }
  18999. },
  19000. back: {
  19001. height: math.unit(4 + 11 / 12, "feet"),
  19002. weight: math.unit(120, "lb"),
  19003. name: "Back",
  19004. image: {
  19005. source: "./media/characters/yumi-akiyama/back.svg",
  19006. extra: 1287 / 1245,
  19007. bottom: 0.002
  19008. }
  19009. },
  19010. },
  19011. [
  19012. {
  19013. name: "Galactic",
  19014. height: math.unit(50, "galaxies"),
  19015. default: true
  19016. },
  19017. {
  19018. name: "Universal",
  19019. height: math.unit(100, "universes")
  19020. },
  19021. ]
  19022. ))
  19023. characterMakers.push(() => makeCharacter(
  19024. { name: "Rifter Yrmori" },
  19025. {
  19026. front: {
  19027. height: math.unit(8, "feet"),
  19028. weight: math.unit(500, "lb"),
  19029. name: "Front",
  19030. image: {
  19031. source: "./media/characters/rifter-yrmori/front.svg",
  19032. extra: 1180 / 1125,
  19033. bottom: 0.02
  19034. }
  19035. },
  19036. back: {
  19037. height: math.unit(8, "feet"),
  19038. weight: math.unit(500, "lb"),
  19039. name: "Back",
  19040. image: {
  19041. source: "./media/characters/rifter-yrmori/back.svg",
  19042. extra: 1190 / 1145,
  19043. bottom: 0.001
  19044. }
  19045. },
  19046. wings: {
  19047. height: math.unit(7.75, "feet"),
  19048. weight: math.unit(500, "lb"),
  19049. name: "Wings",
  19050. image: {
  19051. source: "./media/characters/rifter-yrmori/wings.svg",
  19052. extra: 1357 / 1285
  19053. }
  19054. },
  19055. maw: {
  19056. height: math.unit(0.8, "feet"),
  19057. name: "Maw",
  19058. image: {
  19059. source: "./media/characters/rifter-yrmori/maw.svg"
  19060. }
  19061. },
  19062. },
  19063. [
  19064. {
  19065. name: "Normal",
  19066. height: math.unit(8, "feet"),
  19067. default: true
  19068. },
  19069. {
  19070. name: "Macro",
  19071. height: math.unit(42, "meters")
  19072. },
  19073. ]
  19074. ))
  19075. characterMakers.push(() => makeCharacter(
  19076. { name: "Tahajin" },
  19077. {
  19078. were: {
  19079. height: math.unit(25 + 6 / 12, "feet"),
  19080. weight: math.unit(10000, "lb"),
  19081. name: "Were",
  19082. image: {
  19083. source: "./media/characters/tahajin/were.svg",
  19084. extra: 801 / 770,
  19085. bottom: 0.042
  19086. }
  19087. },
  19088. aquatic: {
  19089. height: math.unit(6 + 4 / 12, "feet"),
  19090. weight: math.unit(160, "lb"),
  19091. name: "Aquatic",
  19092. image: {
  19093. source: "./media/characters/tahajin/aquatic.svg",
  19094. extra: 572 / 542,
  19095. bottom: 0.04
  19096. }
  19097. },
  19098. chow: {
  19099. height: math.unit(8 + 11 / 12, "feet"),
  19100. weight: math.unit(450, "lb"),
  19101. name: "Chow",
  19102. image: {
  19103. source: "./media/characters/tahajin/chow.svg",
  19104. extra: 660 / 640,
  19105. bottom: 0.015
  19106. }
  19107. },
  19108. demiNaga: {
  19109. height: math.unit(6 + 8 / 12, "feet"),
  19110. weight: math.unit(300, "lb"),
  19111. name: "Demi Naga",
  19112. image: {
  19113. source: "./media/characters/tahajin/demi-naga.svg",
  19114. extra: 643 / 615,
  19115. bottom: 0.1
  19116. }
  19117. },
  19118. data: {
  19119. height: math.unit(5, "inches"),
  19120. weight: math.unit(0.1, "lb"),
  19121. name: "Data",
  19122. image: {
  19123. source: "./media/characters/tahajin/data.svg"
  19124. }
  19125. },
  19126. fluu: {
  19127. height: math.unit(5 + 7 / 12, "feet"),
  19128. weight: math.unit(140, "lb"),
  19129. name: "Fluu",
  19130. image: {
  19131. source: "./media/characters/tahajin/fluu.svg",
  19132. extra: 628 / 592,
  19133. bottom: 0.02
  19134. }
  19135. },
  19136. starWarrior: {
  19137. height: math.unit(4 + 5 / 12, "feet"),
  19138. weight: math.unit(50, "lb"),
  19139. name: "Star Warrior",
  19140. image: {
  19141. source: "./media/characters/tahajin/star-warrior.svg"
  19142. }
  19143. },
  19144. },
  19145. [
  19146. {
  19147. name: "Normal",
  19148. height: math.unit(25 + 6 / 12, "feet"),
  19149. default: true
  19150. },
  19151. ]
  19152. ))
  19153. characterMakers.push(() => makeCharacter(
  19154. { name: "Gabira" },
  19155. {
  19156. front: {
  19157. height: math.unit(8, "feet"),
  19158. weight: math.unit(350, "lb"),
  19159. name: "Front",
  19160. image: {
  19161. source: "./media/characters/gabira/front.svg",
  19162. extra: 608 / 580,
  19163. bottom: 0.03
  19164. }
  19165. },
  19166. back: {
  19167. height: math.unit(8, "feet"),
  19168. weight: math.unit(350, "lb"),
  19169. name: "Back",
  19170. image: {
  19171. source: "./media/characters/gabira/back.svg",
  19172. extra: 608 / 580,
  19173. bottom: 0.03
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(8, "feet"),
  19181. default: true
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Sasha Katraine" },
  19187. {
  19188. front: {
  19189. height: math.unit(5 + 3 / 12, "feet"),
  19190. weight: math.unit(137, "lb"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/sasha-katraine/front.svg",
  19194. bottom: 0.045
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Micro",
  19201. height: math.unit(5, "inches")
  19202. },
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(5 + 3 / 12, "feet"),
  19206. default: true
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Der" },
  19212. {
  19213. side: {
  19214. height: math.unit(4, "inches"),
  19215. weight: math.unit(200, "grams"),
  19216. name: "Side",
  19217. image: {
  19218. source: "./media/characters/der/side.svg",
  19219. extra: 719 / 400,
  19220. bottom: 30.6 / 749.9187
  19221. }
  19222. },
  19223. },
  19224. [
  19225. {
  19226. name: "Micro",
  19227. height: math.unit(4, "inches"),
  19228. default: true
  19229. },
  19230. ]
  19231. ))
  19232. characterMakers.push(() => makeCharacter(
  19233. { name: "Fixerdragon" },
  19234. {
  19235. side: {
  19236. height: math.unit(30, "meters"),
  19237. weight: math.unit(700, "tonnes"),
  19238. name: "Side",
  19239. image: {
  19240. source: "./media/characters/fixerdragon/side.svg",
  19241. extra: (1293.0514 - 116.03) / 1106.86,
  19242. bottom: 116.03 / 1293.0514
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Planck",
  19249. height: math.unit(1.6e-35, "meters")
  19250. },
  19251. {
  19252. name: "Micro",
  19253. height: math.unit(0.4, "meters")
  19254. },
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(30, "meters"),
  19258. default: true
  19259. },
  19260. {
  19261. name: "Megamacro",
  19262. height: math.unit(1.2, "megameters")
  19263. },
  19264. {
  19265. name: "Teramacro",
  19266. height: math.unit(130, "terameters")
  19267. },
  19268. {
  19269. name: "Yottamacro",
  19270. height: math.unit(6200, "yottameters")
  19271. },
  19272. ]
  19273. ));
  19274. characterMakers.push(() => makeCharacter(
  19275. { name: "Kite" },
  19276. {
  19277. front: {
  19278. height: math.unit(8, "feet"),
  19279. weight: math.unit(250, "lb"),
  19280. name: "Front",
  19281. image: {
  19282. source: "./media/characters/kite/front.svg",
  19283. extra: 2796 / 2659,
  19284. bottom: 0.002
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(8, "feet"),
  19292. default: true
  19293. },
  19294. {
  19295. name: "Macro",
  19296. height: math.unit(360, "feet")
  19297. },
  19298. {
  19299. name: "Megamacro",
  19300. height: math.unit(1500, "feet")
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Poojawa Vynar" },
  19306. {
  19307. front: {
  19308. height: math.unit(5 + 10 / 12, "feet"),
  19309. weight: math.unit(150, "lb"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/poojawa-vynar/front.svg",
  19313. extra: (1506.1547 - 55) / 1356.6,
  19314. bottom: 55 / 1506.1547
  19315. }
  19316. },
  19317. frontTailless: {
  19318. height: math.unit(5 + 10 / 12, "feet"),
  19319. weight: math.unit(150, "lb"),
  19320. name: "Front (Tailless)",
  19321. image: {
  19322. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  19323. extra: (1506.1547 - 55) / 1356.6,
  19324. bottom: 55 / 1506.1547
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Normal",
  19331. height: math.unit(5 + 10 / 12, "feet"),
  19332. default: true
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Violette" },
  19338. {
  19339. front: {
  19340. height: math.unit(293, "meters"),
  19341. weight: math.unit(70400, "tons"),
  19342. name: "Front",
  19343. image: {
  19344. source: "./media/characters/violette/front.svg",
  19345. extra: 1227 / 1180,
  19346. bottom: 0.005
  19347. }
  19348. },
  19349. back: {
  19350. height: math.unit(293, "meters"),
  19351. weight: math.unit(70400, "tons"),
  19352. name: "Back",
  19353. image: {
  19354. source: "./media/characters/violette/back.svg",
  19355. extra: 1227 / 1180,
  19356. bottom: 0.005
  19357. }
  19358. },
  19359. },
  19360. [
  19361. {
  19362. name: "Macro",
  19363. height: math.unit(293, "meters"),
  19364. default: true
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Alessandra" },
  19370. {
  19371. front: {
  19372. height: math.unit(1050, "feet"),
  19373. weight: math.unit(200000, "tons"),
  19374. name: "Front",
  19375. image: {
  19376. source: "./media/characters/alessandra/front.svg",
  19377. extra: 960 / 912,
  19378. bottom: 0.06
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Macro",
  19385. height: math.unit(1050, "feet")
  19386. },
  19387. {
  19388. name: "Macro+",
  19389. height: math.unit(900, "meters"),
  19390. default: true
  19391. },
  19392. ]
  19393. ))
  19394. characterMakers.push(() => makeCharacter(
  19395. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  19396. {
  19397. front: {
  19398. height: math.unit(5, "feet"),
  19399. weight: math.unit(187, "lb"),
  19400. name: "Front",
  19401. image: {
  19402. source: "./media/characters/person/front.svg",
  19403. extra: 3087 / 2945,
  19404. bottom: 91 / 3181
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Micro",
  19411. height: math.unit(3, "inches")
  19412. },
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(5, "feet"),
  19416. default: true
  19417. },
  19418. {
  19419. name: "Macro",
  19420. height: math.unit(90, "feet")
  19421. },
  19422. {
  19423. name: "Max Size",
  19424. height: math.unit(280, "feet")
  19425. },
  19426. ]
  19427. ))
  19428. characterMakers.push(() => makeCharacter(
  19429. { name: "Ty" },
  19430. {
  19431. front: {
  19432. height: math.unit(4.5, "meters"),
  19433. weight: math.unit(3200, "lb"),
  19434. name: "Front",
  19435. image: {
  19436. source: "./media/characters/ty/front.svg",
  19437. extra: 1038 / 960,
  19438. bottom: 31.156 / 1068
  19439. }
  19440. },
  19441. back: {
  19442. height: math.unit(4.5, "meters"),
  19443. weight: math.unit(3200, "lb"),
  19444. name: "Back",
  19445. image: {
  19446. source: "./media/characters/ty/back.svg",
  19447. extra: 1044 / 966,
  19448. bottom: 7.48 / 1049
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(4.5, "meters"),
  19456. default: true
  19457. },
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Rocky" },
  19462. {
  19463. front: {
  19464. height: math.unit(5 + 4 / 12, "feet"),
  19465. weight: math.unit(115, "lb"),
  19466. name: "Front",
  19467. image: {
  19468. source: "./media/characters/rocky/front.svg",
  19469. extra: 1012 / 975,
  19470. bottom: 54 / 1066
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Normal",
  19477. height: math.unit(5 + 4 / 12, "feet"),
  19478. default: true
  19479. },
  19480. ]
  19481. ))
  19482. characterMakers.push(() => makeCharacter(
  19483. { name: "Ruin" },
  19484. {
  19485. upright: {
  19486. height: math.unit(6, "meters"),
  19487. weight: math.unit(4000, "kg"),
  19488. name: "Upright",
  19489. image: {
  19490. source: "./media/characters/ruin/upright.svg",
  19491. extra: 668 / 661,
  19492. bottom: 42 / 799.8396
  19493. }
  19494. },
  19495. },
  19496. [
  19497. {
  19498. name: "Normal",
  19499. height: math.unit(6, "meters"),
  19500. default: true
  19501. },
  19502. ]
  19503. ))
  19504. characterMakers.push(() => makeCharacter(
  19505. { name: "Robin" },
  19506. {
  19507. front: {
  19508. height: math.unit(5, "feet"),
  19509. weight: math.unit(106, "lb"),
  19510. name: "Front",
  19511. image: {
  19512. source: "./media/characters/robin/front.svg",
  19513. extra: 862 / 799,
  19514. bottom: 42.4 / 914.8856
  19515. }
  19516. },
  19517. },
  19518. [
  19519. {
  19520. name: "Normal",
  19521. height: math.unit(5, "feet"),
  19522. default: true
  19523. },
  19524. ]
  19525. ))
  19526. characterMakers.push(() => makeCharacter(
  19527. { name: "Saian" },
  19528. {
  19529. side: {
  19530. height: math.unit(3, "feet"),
  19531. weight: math.unit(225, "lb"),
  19532. name: "Side",
  19533. image: {
  19534. source: "./media/characters/saian/side.svg",
  19535. extra: 566 / 356,
  19536. bottom: 79.7 / 643
  19537. }
  19538. },
  19539. maw: {
  19540. height: math.unit(2.85, "feet"),
  19541. name: "Maw",
  19542. image: {
  19543. source: "./media/characters/saian/maw.svg"
  19544. }
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(3, "feet"),
  19551. default: true
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "Equus Silvermane" },
  19557. {
  19558. side: {
  19559. height: math.unit(8, "feet"),
  19560. weight: math.unit(300, "lb"),
  19561. name: "Side",
  19562. image: {
  19563. source: "./media/characters/equus-silvermane/side.svg",
  19564. extra: 2176 / 2050,
  19565. bottom: 65.7 / 2245
  19566. }
  19567. },
  19568. front: {
  19569. height: math.unit(8, "feet"),
  19570. weight: math.unit(300, "lb"),
  19571. name: "Front",
  19572. image: {
  19573. source: "./media/characters/equus-silvermane/front.svg",
  19574. extra: 4633 / 4400,
  19575. bottom: 71.3 / 4706.915
  19576. }
  19577. },
  19578. sideStepping: {
  19579. height: math.unit(8, "feet"),
  19580. weight: math.unit(300, "lb"),
  19581. name: "Side (Stepping)",
  19582. image: {
  19583. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19584. extra: 1968 / 1860,
  19585. bottom: 16.4 / 1989
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(8, "feet")
  19593. },
  19594. {
  19595. name: "Minimacro",
  19596. height: math.unit(75, "feet"),
  19597. default: true
  19598. },
  19599. {
  19600. name: "Macro",
  19601. height: math.unit(150, "feet")
  19602. },
  19603. {
  19604. name: "Macro+",
  19605. height: math.unit(1000, "feet")
  19606. },
  19607. {
  19608. name: "Megamacro",
  19609. height: math.unit(1, "mile")
  19610. },
  19611. ]
  19612. ))
  19613. characterMakers.push(() => makeCharacter(
  19614. { name: "Windar" },
  19615. {
  19616. side: {
  19617. height: math.unit(20, "feet"),
  19618. weight: math.unit(30000, "kg"),
  19619. name: "Side",
  19620. image: {
  19621. source: "./media/characters/windar/side.svg",
  19622. extra: 1491 / 1248,
  19623. bottom: 82.56 / 1568
  19624. }
  19625. },
  19626. },
  19627. [
  19628. {
  19629. name: "Normal",
  19630. height: math.unit(20, "feet"),
  19631. default: true
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Melody" },
  19637. {
  19638. side: {
  19639. height: math.unit(15.66, "feet"),
  19640. weight: math.unit(150, "lb"),
  19641. name: "Side",
  19642. image: {
  19643. source: "./media/characters/melody/side.svg",
  19644. extra: 1097 / 944,
  19645. bottom: 11.8 / 1109
  19646. }
  19647. },
  19648. sideOutfit: {
  19649. height: math.unit(15.66, "feet"),
  19650. weight: math.unit(150, "lb"),
  19651. name: "Side (Outfit)",
  19652. image: {
  19653. source: "./media/characters/melody/side-outfit.svg",
  19654. extra: 1097 / 944,
  19655. bottom: 11.8 / 1109
  19656. }
  19657. },
  19658. },
  19659. [
  19660. {
  19661. name: "Normal",
  19662. height: math.unit(15.66, "feet"),
  19663. default: true
  19664. },
  19665. ]
  19666. ))
  19667. characterMakers.push(() => makeCharacter(
  19668. { name: "Windera" },
  19669. {
  19670. front: {
  19671. height: math.unit(8, "feet"),
  19672. weight: math.unit(325, "lb"),
  19673. name: "Front",
  19674. image: {
  19675. source: "./media/characters/windera/front.svg",
  19676. extra: 3180 / 2845,
  19677. bottom: 178 / 3365
  19678. }
  19679. },
  19680. },
  19681. [
  19682. {
  19683. name: "Normal",
  19684. height: math.unit(8, "feet"),
  19685. default: true
  19686. },
  19687. ]
  19688. ))
  19689. characterMakers.push(() => makeCharacter(
  19690. { name: "Sonear" },
  19691. {
  19692. front: {
  19693. height: math.unit(28.75, "feet"),
  19694. weight: math.unit(2000, "kg"),
  19695. name: "Front",
  19696. image: {
  19697. source: "./media/characters/sonear/front.svg",
  19698. extra: 1041.1 / 964.9,
  19699. bottom: 53.7 / 1096.6
  19700. }
  19701. },
  19702. },
  19703. [
  19704. {
  19705. name: "Normal",
  19706. height: math.unit(28.75, "feet"),
  19707. default: true
  19708. },
  19709. ]
  19710. ))
  19711. characterMakers.push(() => makeCharacter(
  19712. { name: "Kanara" },
  19713. {
  19714. side: {
  19715. height: math.unit(25.5, "feet"),
  19716. weight: math.unit(23000, "kg"),
  19717. name: "Side",
  19718. image: {
  19719. source: "./media/characters/kanara/side.svg"
  19720. }
  19721. },
  19722. },
  19723. [
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(25.5, "feet"),
  19727. default: true
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Ereus" },
  19733. {
  19734. side: {
  19735. height: math.unit(10, "feet"),
  19736. weight: math.unit(1000, "kg"),
  19737. name: "Side",
  19738. image: {
  19739. source: "./media/characters/ereus/side.svg",
  19740. extra: 1157 / 959,
  19741. bottom: 153 / 1312.5
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(10, "feet"),
  19749. default: true
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "E-ter" },
  19755. {
  19756. side: {
  19757. height: math.unit(4.5, "feet"),
  19758. weight: math.unit(500, "lb"),
  19759. name: "Side",
  19760. image: {
  19761. source: "./media/characters/e-ter/side.svg",
  19762. extra: 1550 / 1248,
  19763. bottom: 146 / 1694
  19764. }
  19765. },
  19766. },
  19767. [
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(4.5, "feet"),
  19771. default: true
  19772. },
  19773. ]
  19774. ))
  19775. characterMakers.push(() => makeCharacter(
  19776. { name: "Yamie" },
  19777. {
  19778. side: {
  19779. height: math.unit(9.7, "feet"),
  19780. weight: math.unit(4000, "kg"),
  19781. name: "Side",
  19782. image: {
  19783. source: "./media/characters/yamie/side.svg"
  19784. }
  19785. },
  19786. },
  19787. [
  19788. {
  19789. name: "Normal",
  19790. height: math.unit(9.7, "feet"),
  19791. default: true
  19792. },
  19793. ]
  19794. ))
  19795. characterMakers.push(() => makeCharacter(
  19796. { name: "Anders" },
  19797. {
  19798. front: {
  19799. height: math.unit(50, "feet"),
  19800. weight: math.unit(50000, "kg"),
  19801. name: "Front",
  19802. image: {
  19803. source: "./media/characters/anders/front.svg",
  19804. extra: 570 / 539,
  19805. bottom: 14.7 / 586.7
  19806. }
  19807. },
  19808. },
  19809. [
  19810. {
  19811. name: "Large",
  19812. height: math.unit(50, "feet")
  19813. },
  19814. {
  19815. name: "Macro",
  19816. height: math.unit(2000, "feet"),
  19817. default: true
  19818. },
  19819. {
  19820. name: "Megamacro",
  19821. height: math.unit(12, "miles")
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Reban" },
  19827. {
  19828. front: {
  19829. height: math.unit(7 + 2 / 12, "feet"),
  19830. weight: math.unit(300, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/reban/front.svg",
  19834. extra: 516 / 487,
  19835. bottom: 42.82 / 558.356
  19836. }
  19837. },
  19838. dick: {
  19839. height: math.unit(7 / 5, "feet"),
  19840. name: "Dick",
  19841. image: {
  19842. source: "./media/characters/reban/dick.svg"
  19843. }
  19844. },
  19845. },
  19846. [
  19847. {
  19848. name: "Natural Height",
  19849. height: math.unit(7 + 2 / 12, "feet")
  19850. },
  19851. {
  19852. name: "Macro",
  19853. height: math.unit(500, "feet"),
  19854. default: true
  19855. },
  19856. {
  19857. name: "Canon Height",
  19858. height: math.unit(50, "AU")
  19859. },
  19860. ]
  19861. ))
  19862. characterMakers.push(() => makeCharacter(
  19863. { name: "Terrance Keayes" },
  19864. {
  19865. front: {
  19866. height: math.unit(6, "feet"),
  19867. weight: math.unit(150, "lb"),
  19868. name: "Front",
  19869. image: {
  19870. source: "./media/characters/terrance-keayes/front.svg",
  19871. extra: 1.005,
  19872. bottom: 151 / 1615
  19873. }
  19874. },
  19875. side: {
  19876. height: math.unit(6, "feet"),
  19877. weight: math.unit(150, "lb"),
  19878. name: "Side",
  19879. image: {
  19880. source: "./media/characters/terrance-keayes/side.svg",
  19881. extra: 1.005,
  19882. bottom: 129.4 / 1544
  19883. }
  19884. },
  19885. back: {
  19886. height: math.unit(6, "feet"),
  19887. weight: math.unit(150, "lb"),
  19888. name: "Back",
  19889. image: {
  19890. source: "./media/characters/terrance-keayes/back.svg",
  19891. extra: 1.005,
  19892. bottom: 58.4 / 1557.3
  19893. }
  19894. },
  19895. dick: {
  19896. height: math.unit(6 * 0.208, "feet"),
  19897. name: "Dick",
  19898. image: {
  19899. source: "./media/characters/terrance-keayes/dick.svg"
  19900. }
  19901. },
  19902. },
  19903. [
  19904. {
  19905. name: "Canon Height",
  19906. height: math.unit(35, "miles"),
  19907. default: true
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "Ofelia" },
  19913. {
  19914. front: {
  19915. height: math.unit(6, "feet"),
  19916. weight: math.unit(150, "lb"),
  19917. name: "Front",
  19918. image: {
  19919. source: "./media/characters/ofelia/front.svg",
  19920. extra: 546 / 541,
  19921. bottom: 39 / 583
  19922. }
  19923. },
  19924. back: {
  19925. height: math.unit(6, "feet"),
  19926. weight: math.unit(150, "lb"),
  19927. name: "Back",
  19928. image: {
  19929. source: "./media/characters/ofelia/back.svg",
  19930. extra: 564 / 559.5,
  19931. bottom: 8.69 / 573.02
  19932. }
  19933. },
  19934. maw: {
  19935. height: math.unit(1, "feet"),
  19936. name: "Maw",
  19937. image: {
  19938. source: "./media/characters/ofelia/maw.svg"
  19939. }
  19940. },
  19941. foot: {
  19942. height: math.unit(1.949, "feet"),
  19943. name: "Foot",
  19944. image: {
  19945. source: "./media/characters/ofelia/foot.svg"
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Canon Height",
  19952. height: math.unit(2000, "miles"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Samuel" },
  19959. {
  19960. front: {
  19961. height: math.unit(6, "feet"),
  19962. weight: math.unit(150, "lb"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/samuel/front.svg",
  19966. extra: 265 / 258,
  19967. bottom: 2 / 266.1566
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Macro",
  19974. height: math.unit(100, "feet"),
  19975. default: true
  19976. },
  19977. {
  19978. name: "Full Size",
  19979. height: math.unit(1000, "miles")
  19980. },
  19981. ]
  19982. ))
  19983. characterMakers.push(() => makeCharacter(
  19984. { name: "Beishir Kiel" },
  19985. {
  19986. front: {
  19987. height: math.unit(6, "feet"),
  19988. weight: math.unit(300, "lb"),
  19989. name: "Front",
  19990. image: {
  19991. source: "./media/characters/beishir-kiel/front.svg",
  19992. extra: 569 / 547,
  19993. bottom: 41.9 / 609
  19994. }
  19995. },
  19996. maw: {
  19997. height: math.unit(6 * 0.202, "feet"),
  19998. name: "Maw",
  19999. image: {
  20000. source: "./media/characters/beishir-kiel/maw.svg"
  20001. }
  20002. },
  20003. },
  20004. [
  20005. {
  20006. name: "Macro",
  20007. height: math.unit(300, "feet"),
  20008. default: true
  20009. },
  20010. ]
  20011. ))
  20012. characterMakers.push(() => makeCharacter(
  20013. { name: "Logan Grey" },
  20014. {
  20015. front: {
  20016. height: math.unit(5 + 8 / 12, "feet"),
  20017. weight: math.unit(120, "lb"),
  20018. name: "Front",
  20019. image: {
  20020. source: "./media/characters/logan-grey/front.svg",
  20021. extra: 2539 / 2393,
  20022. bottom: 97.6 / 2636.37
  20023. }
  20024. },
  20025. frontAlt: {
  20026. height: math.unit(5 + 8 / 12, "feet"),
  20027. weight: math.unit(120, "lb"),
  20028. name: "Front (Alt)",
  20029. image: {
  20030. source: "./media/characters/logan-grey/front-alt.svg",
  20031. extra: 958 / 893,
  20032. bottom: 15 / 970.768
  20033. }
  20034. },
  20035. back: {
  20036. height: math.unit(5 + 8 / 12, "feet"),
  20037. weight: math.unit(120, "lb"),
  20038. name: "Back",
  20039. image: {
  20040. source: "./media/characters/logan-grey/back.svg",
  20041. extra: 958 / 893,
  20042. bottom: 2.1881 / 970.9788
  20043. }
  20044. },
  20045. dick: {
  20046. height: math.unit(1.437, "feet"),
  20047. name: "Dick",
  20048. image: {
  20049. source: "./media/characters/logan-grey/dick.svg"
  20050. }
  20051. },
  20052. },
  20053. [
  20054. {
  20055. name: "Normal",
  20056. height: math.unit(5 + 8 / 12, "feet")
  20057. },
  20058. {
  20059. name: "The 500 Foot Femboy",
  20060. height: math.unit(500, "feet"),
  20061. default: true
  20062. },
  20063. {
  20064. name: "Megmacro",
  20065. height: math.unit(20, "miles")
  20066. },
  20067. ]
  20068. ))
  20069. characterMakers.push(() => makeCharacter(
  20070. { name: "Draganta" },
  20071. {
  20072. front: {
  20073. height: math.unit(8 + 2 / 12, "feet"),
  20074. weight: math.unit(275, "lb"),
  20075. name: "Front",
  20076. image: {
  20077. source: "./media/characters/draganta/front.svg",
  20078. extra: 1177 / 1135,
  20079. bottom: 33.46 / 1212.1
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(8 + 6 / 12, "feet"),
  20087. default: true
  20088. },
  20089. {
  20090. name: "Macro",
  20091. height: math.unit(150, "feet")
  20092. },
  20093. {
  20094. name: "Megamacro",
  20095. height: math.unit(1000, "miles")
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20101. {
  20102. front: {
  20103. height: math.unit(1.72, "m"),
  20104. weight: math.unit(80, "lb"),
  20105. name: "Front",
  20106. image: {
  20107. source: "./media/characters/voski/front.svg",
  20108. extra: 2076.22 / 2022.4,
  20109. bottom: 102.7 / 2177.3866
  20110. }
  20111. },
  20112. frontNsfw: {
  20113. height: math.unit(1.72, "m"),
  20114. weight: math.unit(80, "lb"),
  20115. name: "Front (NSFW)",
  20116. image: {
  20117. source: "./media/characters/voski/front-nsfw.svg",
  20118. extra: 2076.22 / 2022.4,
  20119. bottom: 102.7 / 2177.3866
  20120. }
  20121. },
  20122. back: {
  20123. height: math.unit(1.72, "m"),
  20124. weight: math.unit(80, "lb"),
  20125. name: "Back",
  20126. image: {
  20127. source: "./media/characters/voski/back.svg",
  20128. extra: 2104 / 2051,
  20129. bottom: 10.45 / 2113.63
  20130. }
  20131. },
  20132. },
  20133. [
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(1.72, "m")
  20137. },
  20138. {
  20139. name: "Macro",
  20140. height: math.unit(55, "m"),
  20141. default: true
  20142. },
  20143. {
  20144. name: "Macro+",
  20145. height: math.unit(300, "m")
  20146. },
  20147. {
  20148. name: "Macro++",
  20149. height: math.unit(700, "m")
  20150. },
  20151. {
  20152. name: "Macro+++",
  20153. height: math.unit(4500, "m")
  20154. },
  20155. {
  20156. name: "Macro++++",
  20157. height: math.unit(45, "km")
  20158. },
  20159. {
  20160. name: "Macro+++++",
  20161. height: math.unit(1220, "km")
  20162. },
  20163. ]
  20164. ))
  20165. characterMakers.push(() => makeCharacter(
  20166. { name: "Icowom Lee" },
  20167. {
  20168. front: {
  20169. height: math.unit(2.3, "m"),
  20170. weight: math.unit(304, "kg"),
  20171. name: "Front",
  20172. image: {
  20173. source: "./media/characters/icowom-lee/front.svg",
  20174. extra: 3076 / 2933,
  20175. bottom: 51.4 / 3125.1889
  20176. }
  20177. },
  20178. },
  20179. [
  20180. {
  20181. name: "Normal",
  20182. height: math.unit(2.3, "meters"),
  20183. default: true
  20184. },
  20185. {
  20186. name: "Macro",
  20187. height: math.unit(94, "meters"),
  20188. default: true
  20189. },
  20190. ]
  20191. ))
  20192. characterMakers.push(() => makeCharacter(
  20193. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  20194. {
  20195. front: {
  20196. height: math.unit(22, "meters"),
  20197. weight: math.unit(21000, "kg"),
  20198. name: "Front",
  20199. image: {
  20200. source: "./media/characters/shock-diamond/front.svg",
  20201. extra: 2204 / 2053,
  20202. bottom: 65 / 2239.47
  20203. }
  20204. },
  20205. frontNude: {
  20206. height: math.unit(22, "meters"),
  20207. weight: math.unit(21000, "kg"),
  20208. name: "Front (Nude)",
  20209. image: {
  20210. source: "./media/characters/shock-diamond/front-nude.svg",
  20211. extra: 2514 / 2285,
  20212. bottom: 13 / 2527.56
  20213. }
  20214. },
  20215. },
  20216. [
  20217. {
  20218. name: "Normal",
  20219. height: math.unit(3, "meters")
  20220. },
  20221. {
  20222. name: "Macro",
  20223. height: math.unit(22, "meters"),
  20224. default: true
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Rory" },
  20230. {
  20231. front: {
  20232. height: math.unit(5 + 4 / 12, "feet"),
  20233. weight: math.unit(120, "lb"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/rory/front.svg",
  20237. extra: 589 / 556,
  20238. bottom: 45.7 / 635.76
  20239. }
  20240. },
  20241. frontNude: {
  20242. height: math.unit(5 + 4 / 12, "feet"),
  20243. weight: math.unit(120, "lb"),
  20244. name: "Front (Nude)",
  20245. image: {
  20246. source: "./media/characters/rory/front-nude.svg",
  20247. extra: 589 / 556,
  20248. bottom: 45.7 / 635.76
  20249. }
  20250. },
  20251. side: {
  20252. height: math.unit(5 + 4 / 12, "feet"),
  20253. weight: math.unit(120, "lb"),
  20254. name: "Side",
  20255. image: {
  20256. source: "./media/characters/rory/side.svg",
  20257. extra: 597 / 564,
  20258. bottom: 55 / 653
  20259. }
  20260. },
  20261. back: {
  20262. height: math.unit(5 + 4 / 12, "feet"),
  20263. weight: math.unit(120, "lb"),
  20264. name: "Back",
  20265. image: {
  20266. source: "./media/characters/rory/back.svg",
  20267. extra: 620 / 585,
  20268. bottom: 8.86 / 630.43
  20269. }
  20270. },
  20271. dick: {
  20272. height: math.unit(0.86, "feet"),
  20273. name: "Dick",
  20274. image: {
  20275. source: "./media/characters/rory/dick.svg"
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "Normal",
  20282. height: math.unit(5 + 4 / 12, "feet"),
  20283. default: true
  20284. },
  20285. {
  20286. name: "Macro",
  20287. height: math.unit(100, "feet")
  20288. },
  20289. {
  20290. name: "Macro+",
  20291. height: math.unit(140, "feet")
  20292. },
  20293. {
  20294. name: "Macro++",
  20295. height: math.unit(300, "feet")
  20296. },
  20297. ]
  20298. ))
  20299. characterMakers.push(() => makeCharacter(
  20300. { name: "Sprisk" },
  20301. {
  20302. front: {
  20303. height: math.unit(5 + 9 / 12, "feet"),
  20304. weight: math.unit(190, "lb"),
  20305. name: "Front",
  20306. image: {
  20307. source: "./media/characters/sprisk/front.svg",
  20308. extra: 1225 / 1180,
  20309. bottom: 42.7 / 1266.4
  20310. }
  20311. },
  20312. frontNsfw: {
  20313. height: math.unit(5 + 9 / 12, "feet"),
  20314. weight: math.unit(190, "lb"),
  20315. name: "Front (NSFW)",
  20316. image: {
  20317. source: "./media/characters/sprisk/front-nsfw.svg",
  20318. extra: 1225 / 1180,
  20319. bottom: 42.7 / 1266.4
  20320. }
  20321. },
  20322. back: {
  20323. height: math.unit(5 + 9 / 12, "feet"),
  20324. weight: math.unit(190, "lb"),
  20325. name: "Back",
  20326. image: {
  20327. source: "./media/characters/sprisk/back.svg",
  20328. extra: 1247 / 1200,
  20329. bottom: 5.6 / 1253.04
  20330. }
  20331. },
  20332. },
  20333. [
  20334. {
  20335. name: "Tiny",
  20336. height: math.unit(2, "inches")
  20337. },
  20338. {
  20339. name: "Normal",
  20340. height: math.unit(5 + 9 / 12, "feet"),
  20341. default: true
  20342. },
  20343. {
  20344. name: "Mini Macro",
  20345. height: math.unit(18, "feet")
  20346. },
  20347. {
  20348. name: "Macro",
  20349. height: math.unit(100, "feet")
  20350. },
  20351. {
  20352. name: "MACRO",
  20353. height: math.unit(50, "miles")
  20354. },
  20355. {
  20356. name: "M A C R O",
  20357. height: math.unit(300, "miles")
  20358. },
  20359. ]
  20360. ))
  20361. characterMakers.push(() => makeCharacter(
  20362. { name: "Bunsen" },
  20363. {
  20364. side: {
  20365. height: math.unit(15.6, "meters"),
  20366. weight: math.unit(700000, "kg"),
  20367. name: "Side",
  20368. image: {
  20369. source: "./media/characters/bunsen/side.svg",
  20370. extra: 1644 / 358
  20371. }
  20372. },
  20373. foot: {
  20374. height: math.unit(1.611 * 1644 / 358, "meter"),
  20375. name: "Foot",
  20376. image: {
  20377. source: "./media/characters/bunsen/foot.svg"
  20378. }
  20379. },
  20380. },
  20381. [
  20382. {
  20383. name: "Small",
  20384. height: math.unit(10, "feet")
  20385. },
  20386. {
  20387. name: "Normal",
  20388. height: math.unit(15.6, "meters"),
  20389. default: true
  20390. },
  20391. ]
  20392. ))
  20393. characterMakers.push(() => makeCharacter(
  20394. { name: "Sesh" },
  20395. {
  20396. front: {
  20397. height: math.unit(4 + 11 / 12, "feet"),
  20398. weight: math.unit(140, "lb"),
  20399. name: "Front",
  20400. image: {
  20401. source: "./media/characters/sesh/front.svg",
  20402. extra: 3420 / 3231,
  20403. bottom: 72 / 3949.5
  20404. }
  20405. },
  20406. },
  20407. [
  20408. {
  20409. name: "Normal",
  20410. height: math.unit(4 + 11 / 12, "feet")
  20411. },
  20412. {
  20413. name: "Grown",
  20414. height: math.unit(15, "feet"),
  20415. default: true
  20416. },
  20417. {
  20418. name: "Macro",
  20419. height: math.unit(1500, "feet")
  20420. },
  20421. {
  20422. name: "Megamacro",
  20423. height: math.unit(30, "miles")
  20424. },
  20425. {
  20426. name: "Continental",
  20427. height: math.unit(3000, "miles")
  20428. },
  20429. {
  20430. name: "Gravity Mass",
  20431. height: math.unit(300000, "miles")
  20432. },
  20433. {
  20434. name: "Planet Buster",
  20435. height: math.unit(30000000, "miles")
  20436. },
  20437. {
  20438. name: "Big",
  20439. height: math.unit(3000000000, "miles")
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Pepper" },
  20445. {
  20446. front: {
  20447. height: math.unit(9, "feet"),
  20448. weight: math.unit(350, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/pepper/front.svg",
  20452. extra: 1448/1312,
  20453. bottom: 9.4/1457.88
  20454. }
  20455. },
  20456. back: {
  20457. height: math.unit(9, "feet"),
  20458. weight: math.unit(350, "lb"),
  20459. name: "Back",
  20460. image: {
  20461. source: "./media/characters/pepper/back.svg",
  20462. extra: 1423/1300,
  20463. bottom: 4.6/1429
  20464. }
  20465. },
  20466. maw: {
  20467. height: math.unit(0.932, "feet"),
  20468. name: "Maw",
  20469. image: {
  20470. source: "./media/characters/pepper/maw.svg"
  20471. }
  20472. },
  20473. },
  20474. [
  20475. {
  20476. name: "Normal",
  20477. height: math.unit(9, "feet"),
  20478. default: true
  20479. },
  20480. ]
  20481. ))
  20482. characterMakers.push(() => makeCharacter(
  20483. { name: "Maelstrom" },
  20484. {
  20485. front: {
  20486. height: math.unit(6, "feet"),
  20487. weight: math.unit(150, "lb"),
  20488. name: "Front",
  20489. image: {
  20490. source: "./media/characters/maelstrom/front.svg",
  20491. extra: 2100/1883,
  20492. bottom: 94/2196.7
  20493. }
  20494. },
  20495. },
  20496. [
  20497. {
  20498. name: "Less Kaiju",
  20499. height: math.unit(200, "feet")
  20500. },
  20501. {
  20502. name: "Kaiju",
  20503. height: math.unit(400, "feet"),
  20504. default: true
  20505. },
  20506. {
  20507. name: "Kaiju-er",
  20508. height: math.unit(600, "feet")
  20509. },
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "Lexir" },
  20514. {
  20515. front: {
  20516. height: math.unit(6 + 5/12, "feet"),
  20517. weight: math.unit(180, "lb"),
  20518. name: "Front",
  20519. image: {
  20520. source: "./media/characters/lexir/front.svg",
  20521. extra: 180/172,
  20522. bottom: 12/192
  20523. }
  20524. },
  20525. back: {
  20526. height: math.unit(6 + 5/12, "feet"),
  20527. weight: math.unit(180, "lb"),
  20528. name: "Back",
  20529. image: {
  20530. source: "./media/characters/lexir/back.svg",
  20531. extra: 183.84/175.5,
  20532. bottom: 3.1/187
  20533. }
  20534. },
  20535. },
  20536. [
  20537. {
  20538. name: "Very Smal",
  20539. height: math.unit(1, "nm")
  20540. },
  20541. {
  20542. name: "Normal",
  20543. height: math.unit(6 + 5/12, "feet"),
  20544. default: true
  20545. },
  20546. {
  20547. name: "Macro",
  20548. height: math.unit(1, "mile")
  20549. },
  20550. {
  20551. name: "Megamacro",
  20552. height: math.unit(50, "miles")
  20553. },
  20554. ]
  20555. ))
  20556. characterMakers.push(() => makeCharacter(
  20557. { name: "Maksio" },
  20558. {
  20559. front: {
  20560. height: math.unit(1.5, "meters"),
  20561. weight: math.unit(100, "lb"),
  20562. name: "Front",
  20563. image: {
  20564. source: "./media/characters/maksio/front.svg",
  20565. extra: 1549/1531,
  20566. bottom: 123.7/1674.5429
  20567. }
  20568. },
  20569. back: {
  20570. height: math.unit(1.5, "meters"),
  20571. weight: math.unit(100, "lb"),
  20572. name: "Back",
  20573. image: {
  20574. source: "./media/characters/maksio/back.svg",
  20575. extra: 1541/1509,
  20576. bottom: 97/1639
  20577. }
  20578. },
  20579. hand: {
  20580. height: math.unit(0.621, "feet"),
  20581. name: "Hand",
  20582. image: {
  20583. source: "./media/characters/maksio/hand.svg"
  20584. }
  20585. },
  20586. foot: {
  20587. height: math.unit(1.611, "feet"),
  20588. name: "Foot",
  20589. image: {
  20590. source: "./media/characters/maksio/foot.svg"
  20591. }
  20592. },
  20593. },
  20594. [
  20595. {
  20596. name: "Shrunken",
  20597. height: math.unit(10, "cm")
  20598. },
  20599. {
  20600. name: "Normal",
  20601. height: math.unit(150, "cm"),
  20602. default: true
  20603. },
  20604. ]
  20605. ))
  20606. characterMakers.push(() => makeCharacter(
  20607. { name: "Erza Bear" },
  20608. {
  20609. front: {
  20610. height: math.unit(100, "feet"),
  20611. name: "Front",
  20612. image: {
  20613. source: "./media/characters/erza-bear/front.svg",
  20614. extra: 2449/2390,
  20615. bottom: 46/2494
  20616. }
  20617. },
  20618. back: {
  20619. height: math.unit(100, "feet"),
  20620. name: "Back",
  20621. image: {
  20622. source: "./media/characters/erza-bear/back.svg",
  20623. extra: 2489/2430,
  20624. bottom: 85.4/2480
  20625. }
  20626. },
  20627. tail: {
  20628. height: math.unit(42, "feet"),
  20629. name: "Tail",
  20630. image: {
  20631. source: "./media/characters/erza-bear/tail.svg"
  20632. }
  20633. },
  20634. tongue: {
  20635. height: math.unit(8, "feet"),
  20636. name: "Tongue",
  20637. image: {
  20638. source: "./media/characters/erza-bear/tongue.svg"
  20639. }
  20640. },
  20641. dick: {
  20642. height: math.unit(10.5, "feet"),
  20643. name: "Dick",
  20644. image: {
  20645. source: "./media/characters/erza-bear/dick.svg"
  20646. }
  20647. },
  20648. dickVertical: {
  20649. height: math.unit(16.9, "feet"),
  20650. name: "Dick (Vertical)",
  20651. image: {
  20652. source: "./media/characters/erza-bear/dick-vertical.svg"
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "Macro",
  20659. height: math.unit(100, "feet"),
  20660. default: true
  20661. },
  20662. ]
  20663. ))
  20664. characterMakers.push(() => makeCharacter(
  20665. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  20666. {
  20667. front: {
  20668. height: math.unit(172, "cm"),
  20669. weight: math.unit(73, "kg"),
  20670. name: "Front",
  20671. image: {
  20672. source: "./media/characters/violet-flor/front.svg",
  20673. extra: 1530/1442,
  20674. bottom: 61.9/1588.8
  20675. }
  20676. },
  20677. back: {
  20678. height: math.unit(180, "cm"),
  20679. weight: math.unit(73, "kg"),
  20680. name: "Back",
  20681. image: {
  20682. source: "./media/characters/violet-flor/back.svg",
  20683. extra: 1692/1630,
  20684. bottom: 20/1712
  20685. }
  20686. },
  20687. },
  20688. [
  20689. {
  20690. name: "Normal",
  20691. height: math.unit(172, "cm"),
  20692. default: true
  20693. },
  20694. ]
  20695. ))
  20696. characterMakers.push(() => makeCharacter(
  20697. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  20698. {
  20699. front: {
  20700. height: math.unit(6, "feet"),
  20701. weight: math.unit(220, "lb"),
  20702. name: "Front",
  20703. image: {
  20704. source: "./media/characters/lynn-rhea/front.svg",
  20705. extra: 310/273
  20706. }
  20707. },
  20708. back: {
  20709. height: math.unit(6, "feet"),
  20710. weight: math.unit(220, "lb"),
  20711. name: "Back",
  20712. image: {
  20713. source: "./media/characters/lynn-rhea/back.svg",
  20714. extra: 310/273
  20715. }
  20716. },
  20717. dicks: {
  20718. height: math.unit(0.9, "feet"),
  20719. name: "Dicks",
  20720. image: {
  20721. source: "./media/characters/lynn-rhea/dicks.svg"
  20722. }
  20723. },
  20724. slit: {
  20725. height: math.unit(0.4, "feet"),
  20726. name: "Slit",
  20727. image: {
  20728. source: "./media/characters/lynn-rhea/slit.svg"
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Micro",
  20735. height: math.unit(1, "inch")
  20736. },
  20737. {
  20738. name: "Macro",
  20739. height: math.unit(60, "feet"),
  20740. default: true
  20741. },
  20742. {
  20743. name: "Megamacro",
  20744. height: math.unit(2, "miles")
  20745. },
  20746. {
  20747. name: "Gigamacro",
  20748. height: math.unit(3, "earths")
  20749. },
  20750. {
  20751. name: "Galactic",
  20752. height: math.unit(0.8, "galaxies")
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Valathos" },
  20758. {
  20759. front: {
  20760. height: math.unit(1600, "feet"),
  20761. weight: math.unit(85758785169, "kg"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/valathos/front.svg",
  20765. extra: 1451/1339
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Macro",
  20772. height: math.unit(1600, "feet"),
  20773. default: true
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Azula" },
  20779. {
  20780. front: {
  20781. height: math.unit(7 + 5/12, "feet"),
  20782. weight: math.unit(300, "lb"),
  20783. name: "Front",
  20784. image: {
  20785. source: "./media/characters/azula/front.svg",
  20786. extra: 3208/2880,
  20787. bottom: 80.2/3277
  20788. }
  20789. },
  20790. back: {
  20791. height: math.unit(7 + 5/12, "feet"),
  20792. weight: math.unit(300, "lb"),
  20793. name: "Back",
  20794. image: {
  20795. source: "./media/characters/azula/back.svg",
  20796. extra: 3169/2822,
  20797. bottom: 150.6/3321
  20798. }
  20799. },
  20800. },
  20801. [
  20802. {
  20803. name: "Normal",
  20804. height: math.unit(7 + 5/12, "feet"),
  20805. default: true
  20806. },
  20807. {
  20808. name: "Big",
  20809. height: math.unit(20, "feet")
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Rupert" },
  20815. {
  20816. front: {
  20817. height: math.unit(5 + 1/12, "feet"),
  20818. weight: math.unit(110, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/rupert/front.svg",
  20822. extra: 1549/1495,
  20823. bottom: 54.2/1604.4
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(5 + 1/12, "feet"),
  20831. default: true
  20832. },
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Sheera Castellar" },
  20837. {
  20838. front: {
  20839. height: math.unit(8 + 4/12, "feet"),
  20840. weight: math.unit(350, "lb"),
  20841. name: "Front",
  20842. image: {
  20843. source: "./media/characters/sheera-castellar/front.svg",
  20844. extra: 1957/1894,
  20845. bottom: 26.97/1975.017
  20846. }
  20847. },
  20848. side: {
  20849. height: math.unit(8 + 4/12, "feet"),
  20850. weight: math.unit(350, "lb"),
  20851. name: "Side",
  20852. image: {
  20853. source: "./media/characters/sheera-castellar/side.svg",
  20854. extra: 1957/1894
  20855. }
  20856. },
  20857. back: {
  20858. height: math.unit(8 + 4/12, "feet"),
  20859. weight: math.unit(350, "lb"),
  20860. name: "Back",
  20861. image: {
  20862. source: "./media/characters/sheera-castellar/back.svg",
  20863. extra: 1957/1894
  20864. }
  20865. },
  20866. angled: {
  20867. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20868. weight: math.unit(350, "lb"),
  20869. name: "Angled",
  20870. image: {
  20871. source: "./media/characters/sheera-castellar/angled.svg",
  20872. extra: 1807/1707,
  20873. bottom: 68/1875
  20874. }
  20875. },
  20876. genitals: {
  20877. height: math.unit(2.2, "feet"),
  20878. name: "Genitals",
  20879. image: {
  20880. source: "./media/characters/sheera-castellar/genitals.svg"
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(8 + 4/12, "feet")
  20888. },
  20889. {
  20890. name: "Macro",
  20891. height: math.unit(150, "feet"),
  20892. default: true
  20893. },
  20894. {
  20895. name: "Macro+",
  20896. height: math.unit(800, "feet")
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(6, "feet"),
  20905. weight: math.unit(150, "lb"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/jaipur/front.svg",
  20909. extra: 3860/3731,
  20910. bottom: 287/4140
  20911. }
  20912. },
  20913. back: {
  20914. height: math.unit(6, "feet"),
  20915. weight: math.unit(150, "lb"),
  20916. name: "Back",
  20917. image: {
  20918. source: "./media/characters/jaipur/back.svg",
  20919. extra: 4060/3930,
  20920. bottom: 151/4200
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(1.85, "meters"),
  20928. default: true
  20929. },
  20930. {
  20931. name: "Macro",
  20932. height: math.unit(150, "meters")
  20933. },
  20934. {
  20935. name: "Macro+",
  20936. height: math.unit(0.5, "miles")
  20937. },
  20938. {
  20939. name: "Macro++",
  20940. height: math.unit(2.5, "miles")
  20941. },
  20942. {
  20943. name: "Macro+++",
  20944. height: math.unit(12, "miles")
  20945. },
  20946. {
  20947. name: "Macro++++",
  20948. height: math.unit(120, "miles")
  20949. },
  20950. {
  20951. name: "Macro+++++",
  20952. height: math.unit(1200, "miles")
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "Sheila (Wolf)" },
  20958. {
  20959. front: {
  20960. height: math.unit(6, "feet"),
  20961. weight: math.unit(150, "lb"),
  20962. name: "Front",
  20963. image: {
  20964. source: "./media/characters/sheila-wolf/front.svg",
  20965. extra: 1931/1808,
  20966. bottom: 29.5/1960
  20967. }
  20968. },
  20969. dick: {
  20970. height: math.unit(1.464, "feet"),
  20971. name: "Dick",
  20972. image: {
  20973. source: "./media/characters/sheila-wolf/dick.svg"
  20974. }
  20975. },
  20976. muzzle: {
  20977. height: math.unit(0.513, "feet"),
  20978. name: "Muzzle",
  20979. image: {
  20980. source: "./media/characters/sheila-wolf/muzzle.svg"
  20981. }
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Macro",
  20987. height: math.unit(70, "feet"),
  20988. default: true
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(32, "meters"),
  20997. weight: math.unit(300000, "kg"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/almor/front.svg",
  21001. extra: 1408/1322,
  21002. bottom: 94.6/1506.5
  21003. }
  21004. },
  21005. },
  21006. [
  21007. {
  21008. name: "Macro",
  21009. height: math.unit(32, "meters"),
  21010. default: true
  21011. },
  21012. ]
  21013. ))
  21014. characterMakers.push(() => makeCharacter(
  21015. { name: "Silver" },
  21016. {
  21017. front: {
  21018. height: math.unit(7, "feet"),
  21019. weight: math.unit(200, "lb"),
  21020. name: "Front",
  21021. image: {
  21022. source: "./media/characters/silver/front.svg",
  21023. extra: 472.1/450.5,
  21024. bottom: 26.5/499.424
  21025. }
  21026. },
  21027. },
  21028. [
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(7, "feet"),
  21032. default: true
  21033. },
  21034. {
  21035. name: "Macro",
  21036. height: math.unit(800, "feet")
  21037. },
  21038. {
  21039. name: "Megamacro",
  21040. height: math.unit(250, "miles")
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Pliskin" },
  21046. {
  21047. front: {
  21048. height: math.unit(6, "feet"),
  21049. weight: math.unit(150, "lb"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/pliskin/front.svg",
  21053. extra: 1469/1359,
  21054. bottom: 70/1540
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Micro",
  21061. height: math.unit(3, "inches")
  21062. },
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(5 + 11/12, "feet"),
  21066. default: true
  21067. },
  21068. {
  21069. name: "Macro",
  21070. height: math.unit(120, "feet")
  21071. },
  21072. ]
  21073. ))
  21074. characterMakers.push(() => makeCharacter(
  21075. { name: "Sammy" },
  21076. {
  21077. front: {
  21078. height: math.unit(6, "feet"),
  21079. weight: math.unit(150, "lb"),
  21080. name: "Front",
  21081. image: {
  21082. source: "./media/characters/sammy/front.svg",
  21083. extra: 1193/1089,
  21084. bottom: 30.5/1226
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Macro",
  21091. height: math.unit(1700, "feet"),
  21092. default: true
  21093. },
  21094. {
  21095. name: "Examacro",
  21096. height: math.unit(2.5e9, "lightyears")
  21097. },
  21098. ]
  21099. ))
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21102. {
  21103. front: {
  21104. height: math.unit(21, "meters"),
  21105. weight: math.unit(12, "tonnes"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/kuru/front.svg",
  21109. extra: 4301/3785,
  21110. bottom: 371.3/4691
  21111. }
  21112. },
  21113. },
  21114. [
  21115. {
  21116. name: "Macro",
  21117. height: math.unit(21, "meters"),
  21118. default: true
  21119. },
  21120. ]
  21121. ))
  21122. characterMakers.push(() => makeCharacter(
  21123. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  21124. {
  21125. front: {
  21126. height: math.unit(23, "meters"),
  21127. weight: math.unit(12.2, "tonnes"),
  21128. name: "Front",
  21129. image: {
  21130. source: "./media/characters/rakka/front.svg",
  21131. extra: 4670/4169,
  21132. bottom: 301/4968.7
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Macro",
  21139. height: math.unit(23, "meters"),
  21140. default: true
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Rhys (Feline)" },
  21146. {
  21147. front: {
  21148. height: math.unit(6, "feet"),
  21149. weight: math.unit(150, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/rhys-feline/front.svg",
  21153. extra: 2488/2308,
  21154. bottom: 35.67/2519.19
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Really Small",
  21161. height: math.unit(1, "nm")
  21162. },
  21163. {
  21164. name: "Micro",
  21165. height: math.unit(4, "inches")
  21166. },
  21167. {
  21168. name: "Normal",
  21169. height: math.unit(4 + 10/12, "feet"),
  21170. default: true
  21171. },
  21172. {
  21173. name: "Macro",
  21174. height: math.unit(100, "feet")
  21175. },
  21176. {
  21177. name: "Megamacto",
  21178. height: math.unit(50, "miles")
  21179. },
  21180. ]
  21181. ))
  21182. characterMakers.push(() => makeCharacter(
  21183. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  21184. {
  21185. side: {
  21186. height: math.unit(30, "feet"),
  21187. weight: math.unit(35000, "kg"),
  21188. name: "Side",
  21189. image: {
  21190. source: "./media/characters/alydar/side.svg",
  21191. extra: 234/222,
  21192. bottom: 6.5/241
  21193. }
  21194. },
  21195. front: {
  21196. height: math.unit(30, "feet"),
  21197. weight: math.unit(35000, "kg"),
  21198. name: "Front",
  21199. image: {
  21200. source: "./media/characters/alydar/front.svg",
  21201. extra: 223.37/210.2,
  21202. bottom: 22.3/246.76
  21203. }
  21204. },
  21205. top: {
  21206. height: math.unit(64.54, "feet"),
  21207. weight: math.unit(35000, "kg"),
  21208. name: "Top",
  21209. image: {
  21210. source: "./media/characters/alydar/top.svg"
  21211. }
  21212. },
  21213. anthro: {
  21214. height: math.unit(30, "feet"),
  21215. weight: math.unit(9000, "kg"),
  21216. name: "Anthro",
  21217. image: {
  21218. source: "./media/characters/alydar/anthro.svg",
  21219. extra: 432/421,
  21220. bottom: 7.18/440
  21221. }
  21222. },
  21223. maw: {
  21224. height: math.unit(11.693, "feet"),
  21225. name: "Maw",
  21226. image: {
  21227. source: "./media/characters/alydar/maw.svg"
  21228. }
  21229. },
  21230. head: {
  21231. height: math.unit(11.693, "feet"),
  21232. name: "Head",
  21233. image: {
  21234. source: "./media/characters/alydar/head.svg"
  21235. }
  21236. },
  21237. headAlt: {
  21238. height: math.unit(12.861, "feet"),
  21239. name: "Head (Alt)",
  21240. image: {
  21241. source: "./media/characters/alydar/head-alt.svg"
  21242. }
  21243. },
  21244. wing: {
  21245. height: math.unit(20.712, "feet"),
  21246. name: "Wing",
  21247. image: {
  21248. source: "./media/characters/alydar/wing.svg"
  21249. }
  21250. },
  21251. wingFeather: {
  21252. height: math.unit(9.662, "feet"),
  21253. name: "Wing Feather",
  21254. image: {
  21255. source: "./media/characters/alydar/wing-feather.svg"
  21256. }
  21257. },
  21258. countourFeather: {
  21259. height: math.unit(4.154, "feet"),
  21260. name: "Contour Feather",
  21261. image: {
  21262. source: "./media/characters/alydar/contour-feather.svg"
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Diplomatic",
  21269. height: math.unit(13, "feet"),
  21270. default: true
  21271. },
  21272. {
  21273. name: "Small",
  21274. height: math.unit(30, "feet")
  21275. },
  21276. {
  21277. name: "Normal",
  21278. height: math.unit(95, "feet"),
  21279. default: true
  21280. },
  21281. {
  21282. name: "Large",
  21283. height: math.unit(285, "feet")
  21284. },
  21285. {
  21286. name: "Incomprehensible",
  21287. height: math.unit(450, "megameters")
  21288. },
  21289. ]
  21290. ))
  21291. characterMakers.push(() => makeCharacter(
  21292. { name: "Selicia" },
  21293. {
  21294. side: {
  21295. height: math.unit(11, "feet"),
  21296. weight: math.unit(1750, "kg"),
  21297. name: "Side",
  21298. image: {
  21299. source: "./media/characters/selicia/side.svg",
  21300. extra: 440/396,
  21301. bottom: 24.8/465.979
  21302. }
  21303. },
  21304. maw: {
  21305. height: math.unit(4.665, "feet"),
  21306. name: "Maw",
  21307. image: {
  21308. source: "./media/characters/selicia/maw.svg"
  21309. }
  21310. },
  21311. },
  21312. [
  21313. {
  21314. name: "Normal",
  21315. height: math.unit(11, "feet"),
  21316. default: true
  21317. },
  21318. ]
  21319. ))
  21320. characterMakers.push(() => makeCharacter(
  21321. { name: "Layla" },
  21322. {
  21323. side: {
  21324. height: math.unit(2 + 6 /12, "feet"),
  21325. weight: math.unit(30, "lb"),
  21326. name: "Side",
  21327. image: {
  21328. source: "./media/characters/layla/side.svg",
  21329. extra: 244/188,
  21330. bottom: 18.2/262.1
  21331. }
  21332. },
  21333. back: {
  21334. height: math.unit(2 + 6 /12, "feet"),
  21335. weight: math.unit(30, "lb"),
  21336. name: "Back",
  21337. image: {
  21338. source: "./media/characters/layla/back.svg",
  21339. extra: 308/241.5,
  21340. bottom: 8.9/316.8
  21341. }
  21342. },
  21343. cumming: {
  21344. height: math.unit(2 + 6 /12, "feet"),
  21345. weight: math.unit(30, "lb"),
  21346. name: "Cumming",
  21347. image: {
  21348. source: "./media/characters/layla/cumming.svg",
  21349. extra: 342/279,
  21350. bottom: 595/938
  21351. }
  21352. },
  21353. dickFlaccid: {
  21354. height: math.unit(2.595, "feet"),
  21355. name: "Flaccid Genitals",
  21356. image: {
  21357. source: "./media/characters/layla/dick-flaccid.svg"
  21358. }
  21359. },
  21360. dickErect: {
  21361. height: math.unit(2.359, "feet"),
  21362. name: "Erect Genitals",
  21363. image: {
  21364. source: "./media/characters/layla/dick-erect.svg"
  21365. }
  21366. },
  21367. },
  21368. [
  21369. {
  21370. name: "Micro",
  21371. height: math.unit(1, "inch")
  21372. },
  21373. {
  21374. name: "Small",
  21375. height: math.unit(1, "foot")
  21376. },
  21377. {
  21378. name: "Normal",
  21379. height: math.unit(2 + 6/12, "feet"),
  21380. default: true
  21381. },
  21382. {
  21383. name: "Macro",
  21384. height: math.unit(200, "feet")
  21385. },
  21386. {
  21387. name: "Megamacro",
  21388. height: math.unit(1000, "miles")
  21389. },
  21390. {
  21391. name: "Planetary",
  21392. height: math.unit(8000, "miles")
  21393. },
  21394. {
  21395. name: "True Layla",
  21396. height: math.unit(200000*7, "multiverses")
  21397. },
  21398. ]
  21399. ))
  21400. characterMakers.push(() => makeCharacter(
  21401. { name: "Knox" },
  21402. {
  21403. back: {
  21404. height: math.unit(10.5, "feet"),
  21405. weight: math.unit(800, "lb"),
  21406. name: "Back",
  21407. image: {
  21408. source: "./media/characters/knox/back.svg",
  21409. extra: 1486/1089,
  21410. bottom: 107/1601.4
  21411. }
  21412. },
  21413. side: {
  21414. height: math.unit(10.5, "feet"),
  21415. weight: math.unit(800, "lb"),
  21416. name: "Side",
  21417. image: {
  21418. source: "./media/characters/knox/side.svg",
  21419. extra: 244/218,
  21420. bottom: 14/260
  21421. }
  21422. },
  21423. },
  21424. [
  21425. {
  21426. name: "Compact",
  21427. height: math.unit(10.5, "feet"),
  21428. default: true
  21429. },
  21430. {
  21431. name: "Dynamax",
  21432. height: math.unit(210, "feet")
  21433. },
  21434. {
  21435. name: "Full Macro",
  21436. height: math.unit(850, "feet")
  21437. },
  21438. ]
  21439. ))
  21440. characterMakers.push(() => makeCharacter(
  21441. { name: "Shin (Pikachu)" },
  21442. {
  21443. front: {
  21444. height: math.unit(6, "feet"),
  21445. weight: math.unit(152, "lb"),
  21446. name: "Front",
  21447. image: {
  21448. source: "./media/characters/shin-pikachu/front.svg",
  21449. extra: 1574/1480,
  21450. bottom: 53.3/1626
  21451. }
  21452. },
  21453. hand: {
  21454. height: math.unit(1.055, "feet"),
  21455. name: "Hand",
  21456. image: {
  21457. source: "./media/characters/shin-pikachu/hand.svg"
  21458. }
  21459. },
  21460. foot: {
  21461. height: math.unit(1.1, "feet"),
  21462. name: "Foot",
  21463. image: {
  21464. source: "./media/characters/shin-pikachu/foot.svg"
  21465. }
  21466. },
  21467. collar: {
  21468. height: math.unit(0.386, "feet"),
  21469. name: "Collar",
  21470. image: {
  21471. source: "./media/characters/shin-pikachu/collar.svg"
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Smallest",
  21478. height: math.unit(0.5, "inches")
  21479. },
  21480. {
  21481. name: "Micro",
  21482. height: math.unit(6, "inches")
  21483. },
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(6, "feet"),
  21487. default: true
  21488. },
  21489. {
  21490. name: "Macro",
  21491. height: math.unit(150, "feet")
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Kayda" },
  21497. {
  21498. front: {
  21499. height: math.unit(28, "feet"),
  21500. weight: math.unit(10500, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/kayda/front.svg",
  21504. extra: 1536/1428,
  21505. bottom: 68.7/1603
  21506. }
  21507. },
  21508. back: {
  21509. height: math.unit(28, "feet"),
  21510. weight: math.unit(10500, "lb"),
  21511. name: "Back",
  21512. image: {
  21513. source: "./media/characters/kayda/back.svg",
  21514. extra: 1557/1464,
  21515. bottom: 39.5/1597.49
  21516. }
  21517. },
  21518. dick: {
  21519. height: math.unit(3.858, "feet"),
  21520. name: "Dick",
  21521. image: {
  21522. source: "./media/characters/kayda/dick.svg"
  21523. }
  21524. },
  21525. },
  21526. [
  21527. {
  21528. name: "Macro",
  21529. height: math.unit(28, "feet"),
  21530. default: true
  21531. },
  21532. ]
  21533. ))
  21534. characterMakers.push(() => makeCharacter(
  21535. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  21536. {
  21537. front: {
  21538. height: math.unit(10 + 11/12, "feet"),
  21539. weight: math.unit(1400, "lb"),
  21540. name: "Front",
  21541. image: {
  21542. source: "./media/characters/brian/front.svg",
  21543. extra: 737/692,
  21544. bottom: 55.4/785
  21545. }
  21546. },
  21547. },
  21548. [
  21549. {
  21550. name: "Normal",
  21551. height: math.unit(10 + 11/12, "feet"),
  21552. default: true
  21553. },
  21554. ]
  21555. ))
  21556. characterMakers.push(() => makeCharacter(
  21557. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  21558. {
  21559. front: {
  21560. height: math.unit(5 + 8/12, "feet"),
  21561. weight: math.unit(140, "lb"),
  21562. name: "Front",
  21563. image: {
  21564. source: "./media/characters/khemri/front.svg",
  21565. extra: 4780/4059,
  21566. bottom: 80.1/4859.25
  21567. }
  21568. },
  21569. },
  21570. [
  21571. {
  21572. name: "Micro",
  21573. height: math.unit(6, "inches")
  21574. },
  21575. {
  21576. name: "Normal",
  21577. height: math.unit(5 + 8/12, "feet"),
  21578. default: true
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Felix Braveheart" },
  21584. {
  21585. front: {
  21586. height: math.unit(13, "feet"),
  21587. weight: math.unit(1700, "lb"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/felix-braveheart/front.svg",
  21591. extra: 1222/1157,
  21592. bottom: 53.2/1280
  21593. }
  21594. },
  21595. back: {
  21596. height: math.unit(13, "feet"),
  21597. weight: math.unit(1700, "lb"),
  21598. name: "Back",
  21599. image: {
  21600. source: "./media/characters/felix-braveheart/back.svg",
  21601. extra: 1277/1203,
  21602. bottom: 50.2/1327
  21603. }
  21604. },
  21605. feral: {
  21606. height: math.unit(6, "feet"),
  21607. weight: math.unit(400, "lb"),
  21608. name: "Feral",
  21609. image: {
  21610. source: "./media/characters/felix-braveheart/feral.svg",
  21611. extra: 682/625,
  21612. bottom: 6.9/688
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(13, "feet"),
  21620. default: true
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Shadow Blade" },
  21626. {
  21627. side: {
  21628. height: math.unit(5 + 11/12, "feet"),
  21629. weight: math.unit(1400, "lb"),
  21630. name: "Side",
  21631. image: {
  21632. source: "./media/characters/shadow-blade/side.svg",
  21633. extra: 1726/1267,
  21634. bottom: 58.4/1785
  21635. }
  21636. },
  21637. },
  21638. [
  21639. {
  21640. name: "Normal",
  21641. height: math.unit(5 + 11/12, "feet"),
  21642. default: true
  21643. },
  21644. ]
  21645. ))
  21646. characterMakers.push(() => makeCharacter(
  21647. { name: "Karla Halldor" },
  21648. {
  21649. front: {
  21650. height: math.unit(1 + 6/12, "feet"),
  21651. weight: math.unit(25, "lb"),
  21652. name: "Front",
  21653. image: {
  21654. source: "./media/characters/karla-halldor/front.svg",
  21655. extra: 1459/1383,
  21656. bottom: 12/1472
  21657. }
  21658. },
  21659. },
  21660. [
  21661. {
  21662. name: "Normal",
  21663. height: math.unit(1 + 6/12, "feet"),
  21664. default: true
  21665. },
  21666. ]
  21667. ))
  21668. characterMakers.push(() => makeCharacter(
  21669. { name: "Ariam" },
  21670. {
  21671. front: {
  21672. height: math.unit(6 + 2/12, "feet"),
  21673. weight: math.unit(160, "lb"),
  21674. name: "Front",
  21675. image: {
  21676. source: "./media/characters/ariam/front.svg",
  21677. extra: 714/617,
  21678. bottom: 23.4/737,
  21679. }
  21680. },
  21681. squatting: {
  21682. height: math.unit(4.1, "feet"),
  21683. weight: math.unit(160, "lb"),
  21684. name: "Squatting",
  21685. image: {
  21686. source: "./media/characters/ariam/squatting.svg",
  21687. extra: 2617/2112,
  21688. bottom: 61.2/2681,
  21689. }
  21690. },
  21691. },
  21692. [
  21693. {
  21694. name: "Normal",
  21695. height: math.unit(6 + 2/12, "feet"),
  21696. default: true
  21697. },
  21698. {
  21699. name: "Normal+",
  21700. height: math.unit(4, "meters")
  21701. },
  21702. {
  21703. name: "Macro",
  21704. height: math.unit(50, "meters")
  21705. },
  21706. {
  21707. name: "Macro+",
  21708. height: math.unit(100, "meters")
  21709. },
  21710. {
  21711. name: "Megamacro",
  21712. height: math.unit(20, "km")
  21713. },
  21714. ]
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Qodri Class-of-'Fortwelve-Six" },
  21718. {
  21719. front: {
  21720. height: math.unit(1.67, "meters"),
  21721. weight: math.unit(140, "lb"),
  21722. name: "Front",
  21723. image: {
  21724. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21725. extra: 438/410,
  21726. bottom: 0.75/439
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Shrunken",
  21733. height: math.unit(7.6, "cm")
  21734. },
  21735. {
  21736. name: "Human Scale",
  21737. height: math.unit(1.67, "meters")
  21738. },
  21739. {
  21740. name: "Wolxi Scale",
  21741. height: math.unit(36.7, "meters"),
  21742. default: true
  21743. },
  21744. ]
  21745. ))
  21746. characterMakers.push(() => makeCharacter(
  21747. { name: "Izue Two-Mothers" },
  21748. {
  21749. front: {
  21750. height: math.unit(1.73, "meters"),
  21751. weight: math.unit(240, "lb"),
  21752. name: "Front",
  21753. image: {
  21754. source: "./media/characters/izue-two-mothers/front.svg",
  21755. extra: 469/437,
  21756. bottom: 1.24/470.6
  21757. }
  21758. },
  21759. },
  21760. [
  21761. {
  21762. name: "Shrunken",
  21763. height: math.unit(7.86, "cm")
  21764. },
  21765. {
  21766. name: "Human Scale",
  21767. height: math.unit(1.73, "meters")
  21768. },
  21769. {
  21770. name: "Wolxi Scale",
  21771. height: math.unit(38, "meters"),
  21772. default: true
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Teeku Love-Shack" },
  21778. {
  21779. front: {
  21780. height: math.unit(1.55, "meters"),
  21781. weight: math.unit(120, "lb"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/teeku-love-shack/front.svg",
  21785. extra: 387/362,
  21786. bottom: 1.51/388
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Shrunken",
  21793. height: math.unit(7, "cm")
  21794. },
  21795. {
  21796. name: "Human Scale",
  21797. height: math.unit(1.55, "meters")
  21798. },
  21799. {
  21800. name: "Wolxi Scale",
  21801. height: math.unit(34.1, "meters"),
  21802. default: true
  21803. },
  21804. ]
  21805. ))
  21806. characterMakers.push(() => makeCharacter(
  21807. { name: "Dejma the Red" },
  21808. {
  21809. front: {
  21810. height: math.unit(1.83, "meters"),
  21811. weight: math.unit(135, "lb"),
  21812. name: "Front",
  21813. image: {
  21814. source: "./media/characters/dejma-the-red/front.svg",
  21815. extra: 480/458,
  21816. bottom: 1.8/482
  21817. }
  21818. },
  21819. },
  21820. [
  21821. {
  21822. name: "Shrunken",
  21823. height: math.unit(8.3, "cm")
  21824. },
  21825. {
  21826. name: "Human Scale",
  21827. height: math.unit(1.83, "meters")
  21828. },
  21829. {
  21830. name: "Wolxi Scale",
  21831. height: math.unit(40, "meters"),
  21832. default: true
  21833. },
  21834. ]
  21835. ))
  21836. characterMakers.push(() => makeCharacter(
  21837. { name: "Aki" },
  21838. {
  21839. front: {
  21840. height: math.unit(1.78, "meters"),
  21841. weight: math.unit(65, "kg"),
  21842. name: "Front",
  21843. image: {
  21844. source: "./media/characters/aki/front.svg",
  21845. extra: 452/415
  21846. }
  21847. },
  21848. frontNsfw: {
  21849. height: math.unit(1.78, "meters"),
  21850. weight: math.unit(65, "kg"),
  21851. name: "Front (NSFW)",
  21852. image: {
  21853. source: "./media/characters/aki/front-nsfw.svg",
  21854. extra: 452/415
  21855. }
  21856. },
  21857. back: {
  21858. height: math.unit(1.78, "meters"),
  21859. weight: math.unit(65, "kg"),
  21860. name: "Back",
  21861. image: {
  21862. source: "./media/characters/aki/back.svg",
  21863. extra: 452/415
  21864. }
  21865. },
  21866. rump: {
  21867. height: math.unit(2.05, "feet"),
  21868. name: "Rump",
  21869. image: {
  21870. source: "./media/characters/aki/rump.svg"
  21871. }
  21872. },
  21873. dick: {
  21874. height: math.unit(0.95, "feet"),
  21875. name: "Dick",
  21876. image: {
  21877. source: "./media/characters/aki/dick.svg"
  21878. }
  21879. },
  21880. },
  21881. [
  21882. {
  21883. name: "Micro",
  21884. height: math.unit(15, "cm")
  21885. },
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(178, "cm"),
  21889. default: true
  21890. },
  21891. {
  21892. name: "Macro",
  21893. height: math.unit(214, "m")
  21894. },
  21895. {
  21896. name: "Macro+",
  21897. height: math.unit(534, "m")
  21898. },
  21899. ]
  21900. ))
  21901. characterMakers.push(() => makeCharacter(
  21902. { name: "Ari" },
  21903. {
  21904. front: {
  21905. height: math.unit(5 + 5/12, "feet"),
  21906. weight: math.unit(120, "lb"),
  21907. name: "Front",
  21908. image: {
  21909. source: "./media/characters/ari/front.svg",
  21910. extra: 714.5/682,
  21911. bottom: 8/722.5
  21912. }
  21913. },
  21914. },
  21915. [
  21916. {
  21917. name: "Normal",
  21918. height: math.unit(5 + 5/12, "feet")
  21919. },
  21920. {
  21921. name: "Macro",
  21922. height: math.unit(100, "feet"),
  21923. default: true
  21924. },
  21925. {
  21926. name: "Megamacro",
  21927. height: math.unit(100, "miles")
  21928. },
  21929. {
  21930. name: "Gigamacro",
  21931. height: math.unit(80000, "miles")
  21932. },
  21933. ]
  21934. ))
  21935. characterMakers.push(() => makeCharacter(
  21936. { name: "Bolt" },
  21937. {
  21938. side: {
  21939. height: math.unit(9, "feet"),
  21940. weight: math.unit(400, "kg"),
  21941. name: "Side",
  21942. image: {
  21943. source: "./media/characters/bolt/side.svg",
  21944. extra: 1126/896,
  21945. bottom: 60/1187.3,
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Micro",
  21952. height: math.unit(5, "inches")
  21953. },
  21954. {
  21955. name: "Normal",
  21956. height: math.unit(9, "feet"),
  21957. default: true
  21958. },
  21959. {
  21960. name: "Macro",
  21961. height: math.unit(700, "feet")
  21962. },
  21963. {
  21964. name: "Max Size",
  21965. height: math.unit(1.52e22, "yottameters")
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  21971. {
  21972. front: {
  21973. height: math.unit(4.53, "meters"),
  21974. weight: math.unit(3, "tons"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/draekon-sylviar/front.svg",
  21978. extra: 1228/1068,
  21979. bottom: 41/1270
  21980. }
  21981. },
  21982. tail: {
  21983. height: math.unit(1.772, "meter"),
  21984. name: "Tail",
  21985. image: {
  21986. source: "./media/characters/draekon-sylviar/tail.svg"
  21987. }
  21988. },
  21989. head: {
  21990. height: math.unit(1.331, "meter"),
  21991. name: "Head",
  21992. image: {
  21993. source: "./media/characters/draekon-sylviar/head.svg"
  21994. }
  21995. },
  21996. hand: {
  21997. height: math.unit(0.564, "meter"),
  21998. name: "Hand",
  21999. image: {
  22000. source: "./media/characters/draekon-sylviar/hand.svg"
  22001. }
  22002. },
  22003. foot: {
  22004. height: math.unit(0.621, "meter"),
  22005. name: "Foot",
  22006. image: {
  22007. source: "./media/characters/draekon-sylviar/foot.svg",
  22008. bottom: 32/324
  22009. }
  22010. },
  22011. dick: {
  22012. height: math.unit(61, "cm"),
  22013. name: "Dick",
  22014. image: {
  22015. source: "./media/characters/draekon-sylviar/dick.svg"
  22016. }
  22017. },
  22018. dickseparated: {
  22019. height: math.unit(61, "cm"),
  22020. name: "Dick-separated",
  22021. image: {
  22022. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22023. }
  22024. },
  22025. },
  22026. [
  22027. {
  22028. name: "Small",
  22029. height: math.unit(4.53/2, "meters"),
  22030. default: true
  22031. },
  22032. {
  22033. name: "Normal",
  22034. height: math.unit(4.53, "meters"),
  22035. default: true
  22036. },
  22037. {
  22038. name: "Large",
  22039. height: math.unit(4.53*2, "meters"),
  22040. },
  22041. ]
  22042. ))
  22043. characterMakers.push(() => makeCharacter(
  22044. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22045. {
  22046. front: {
  22047. height: math.unit(6 + 2/12, "feet"),
  22048. weight: math.unit(180, "lb"),
  22049. name: "Front",
  22050. image: {
  22051. source: "./media/characters/brawler/front.svg",
  22052. extra: 3301/3027,
  22053. bottom: 138/3439
  22054. }
  22055. },
  22056. },
  22057. [
  22058. {
  22059. name: "Normal",
  22060. height: math.unit(6 + 2/12, "feet"),
  22061. default: true
  22062. },
  22063. ]
  22064. ))
  22065. characterMakers.push(() => makeCharacter(
  22066. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22067. {
  22068. front: {
  22069. height: math.unit(11, "feet"),
  22070. weight: math.unit(1000, "lb"),
  22071. name: "Front",
  22072. image: {
  22073. source: "./media/characters/alex/front.svg",
  22074. bottom: 44.5/620
  22075. }
  22076. },
  22077. },
  22078. [
  22079. {
  22080. name: "Micro",
  22081. height: math.unit(5, "inches")
  22082. },
  22083. {
  22084. name: "Normal",
  22085. height: math.unit(11, "feet"),
  22086. default: true
  22087. },
  22088. {
  22089. name: "Macro",
  22090. height: math.unit(9.5e9, "feet")
  22091. },
  22092. {
  22093. name: "Max Size",
  22094. height: math.unit(1.4e283, "yottameters")
  22095. },
  22096. ]
  22097. ))
  22098. characterMakers.push(() => makeCharacter(
  22099. { name: "Zenari" },
  22100. {
  22101. female: {
  22102. height: math.unit(29.9, "m"),
  22103. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  22104. name: "Female",
  22105. image: {
  22106. source: "./media/characters/zenari/female.svg",
  22107. extra: 3281.6/3217,
  22108. bottom: 72.2/3353
  22109. }
  22110. },
  22111. male: {
  22112. height: math.unit(27.7, "m"),
  22113. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  22114. name: "Male",
  22115. image: {
  22116. source: "./media/characters/zenari/male.svg",
  22117. extra: 3008/2991,
  22118. bottom: 54.6/3069
  22119. }
  22120. },
  22121. },
  22122. [
  22123. {
  22124. name: "Macro",
  22125. height: math.unit(29.7, "meters"),
  22126. default: true
  22127. },
  22128. ]
  22129. ))
  22130. characterMakers.push(() => makeCharacter(
  22131. { name: "Mactarian" },
  22132. {
  22133. female: {
  22134. height: math.unit(23.8, "m"),
  22135. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22136. name: "Female",
  22137. image: {
  22138. source: "./media/characters/mactarian/female.svg",
  22139. extra: 2662/2569,
  22140. bottom: 73/2736
  22141. }
  22142. },
  22143. male: {
  22144. height: math.unit(23.8, "m"),
  22145. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22146. name: "Male",
  22147. image: {
  22148. source: "./media/characters/mactarian/male.svg",
  22149. extra: 2673/2600,
  22150. bottom: 76/2750
  22151. }
  22152. },
  22153. },
  22154. [
  22155. {
  22156. name: "Macro",
  22157. height: math.unit(23.8, "meters"),
  22158. default: true
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Umok" },
  22164. {
  22165. female: {
  22166. height: math.unit(19.3, "m"),
  22167. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  22168. name: "Female",
  22169. image: {
  22170. source: "./media/characters/umok/female.svg",
  22171. extra: 2186/2078,
  22172. bottom: 87/2277
  22173. }
  22174. },
  22175. male: {
  22176. height: math.unit(19.5, "m"),
  22177. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  22178. name: "Male",
  22179. image: {
  22180. source: "./media/characters/umok/male.svg",
  22181. extra: 2233/2140,
  22182. bottom: 24.4/2258
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Macro",
  22189. height: math.unit(19.3, "meters"),
  22190. default: true
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Joraxian" },
  22196. {
  22197. female: {
  22198. height: math.unit(26.15, "m"),
  22199. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  22200. name: "Female",
  22201. image: {
  22202. source: "./media/characters/joraxian/female.svg",
  22203. extra: 2943/2831,
  22204. bottom: 27/2972
  22205. }
  22206. },
  22207. male: {
  22208. height: math.unit(25.4, "m"),
  22209. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  22210. name: "Male",
  22211. image: {
  22212. source: "./media/characters/joraxian/male.svg",
  22213. extra: 2835/2741,
  22214. bottom: 27/2862
  22215. }
  22216. },
  22217. },
  22218. [
  22219. {
  22220. name: "Macro",
  22221. height: math.unit(26.15, "meters"),
  22222. default: true
  22223. },
  22224. ]
  22225. ))
  22226. characterMakers.push(() => makeCharacter(
  22227. { name: "Sthara" },
  22228. {
  22229. female: {
  22230. height: math.unit(21.6, "m"),
  22231. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  22232. name: "Female",
  22233. image: {
  22234. source: "./media/characters/sthara/female.svg",
  22235. extra: 2516/2347,
  22236. bottom: 21.5/2537
  22237. }
  22238. },
  22239. male: {
  22240. height: math.unit(24, "m"),
  22241. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  22242. name: "Male",
  22243. image: {
  22244. source: "./media/characters/sthara/male.svg",
  22245. extra: 2732/2607,
  22246. bottom: 23/2732
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Macro",
  22253. height: math.unit(21.6, "meters"),
  22254. default: true
  22255. },
  22256. ]
  22257. ))
  22258. characterMakers.push(() => makeCharacter(
  22259. { name: "Luka Bryzant" },
  22260. {
  22261. front: {
  22262. height: math.unit(6 + 4/12, "feet"),
  22263. weight: math.unit(175, "lb"),
  22264. name: "Front",
  22265. image: {
  22266. source: "./media/characters/luka-bryzant/front.svg",
  22267. extra: 311/289,
  22268. bottom: 4/315
  22269. }
  22270. },
  22271. back: {
  22272. height: math.unit(6 + 4/12, "feet"),
  22273. weight: math.unit(175, "lb"),
  22274. name: "Back",
  22275. image: {
  22276. source: "./media/characters/luka-bryzant/back.svg",
  22277. extra: 311/289,
  22278. bottom: 3.8/313.7
  22279. }
  22280. },
  22281. },
  22282. [
  22283. {
  22284. name: "Micro",
  22285. height: math.unit(10, "inches")
  22286. },
  22287. {
  22288. name: "Normal",
  22289. height: math.unit(6 + 4/12, "feet"),
  22290. default: true
  22291. },
  22292. {
  22293. name: "Large",
  22294. height: math.unit(12, "feet")
  22295. },
  22296. ]
  22297. ))
  22298. characterMakers.push(() => makeCharacter(
  22299. { name: "Aman Aquila" },
  22300. {
  22301. front: {
  22302. height: math.unit(5 + 7/12, "feet"),
  22303. weight: math.unit(185, "lb"),
  22304. name: "Front",
  22305. image: {
  22306. source: "./media/characters/aman-aquila/front.svg",
  22307. extra: 1013/976,
  22308. bottom: 45.6/1057
  22309. }
  22310. },
  22311. side: {
  22312. height: math.unit(5 + 7/12, "feet"),
  22313. weight: math.unit(185, "lb"),
  22314. name: "Side",
  22315. image: {
  22316. source: "./media/characters/aman-aquila/side.svg",
  22317. extra: 1054/1011,
  22318. bottom: 15/1070
  22319. }
  22320. },
  22321. back: {
  22322. height: math.unit(5 + 7/12, "feet"),
  22323. weight: math.unit(185, "lb"),
  22324. name: "Back",
  22325. image: {
  22326. source: "./media/characters/aman-aquila/back.svg",
  22327. extra: 1026/970,
  22328. bottom: 12/1039
  22329. }
  22330. },
  22331. head: {
  22332. height: math.unit(1.211, "feet"),
  22333. name: "Head",
  22334. image: {
  22335. source: "./media/characters/aman-aquila/head.svg",
  22336. }
  22337. },
  22338. },
  22339. [
  22340. {
  22341. name: "Minimicro",
  22342. height: math.unit(0.057, "inches")
  22343. },
  22344. {
  22345. name: "Micro",
  22346. height: math.unit(7, "inches")
  22347. },
  22348. {
  22349. name: "Mini",
  22350. height: math.unit(3 + 7/12, "feet")
  22351. },
  22352. {
  22353. name: "Normal",
  22354. height: math.unit(5 + 7/12, "feet"),
  22355. default: true
  22356. },
  22357. {
  22358. name: "Macro",
  22359. height: math.unit(157 + 7/12, "feet")
  22360. },
  22361. {
  22362. name: "Megamacro",
  22363. height: math.unit(1557 + 7/12, "feet")
  22364. },
  22365. {
  22366. name: "Gigamacro",
  22367. height: math.unit(15557 + 7/12, "feet")
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  22373. {
  22374. front: {
  22375. height: math.unit(3 + 2/12, "inches"),
  22376. weight: math.unit(0.3, "ounces"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/hiphae/front.svg",
  22380. extra: 1931/1683,
  22381. bottom: 24/1955
  22382. }
  22383. },
  22384. },
  22385. [
  22386. {
  22387. name: "Normal",
  22388. height: math.unit(3 + 1/2, "inches"),
  22389. default: true
  22390. },
  22391. ]
  22392. ))
  22393. characterMakers.push(() => makeCharacter(
  22394. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  22395. {
  22396. front: {
  22397. height: math.unit(5 + 10/12, "feet"),
  22398. weight: math.unit(165, "lb"),
  22399. name: "Front",
  22400. image: {
  22401. source: "./media/characters/nicky/front.svg",
  22402. extra: 3144/2886,
  22403. bottom: 45.6/3192
  22404. }
  22405. },
  22406. back: {
  22407. height: math.unit(5 + 10/12, "feet"),
  22408. weight: math.unit(165, "lb"),
  22409. name: "Back",
  22410. image: {
  22411. source: "./media/characters/nicky/back.svg",
  22412. extra: 3055/2804,
  22413. bottom: 28.4/3087
  22414. }
  22415. },
  22416. frontclothed: {
  22417. height: math.unit(5 + 10/12, "feet"),
  22418. weight: math.unit(165, "lb"),
  22419. name: "Front-clothed",
  22420. image: {
  22421. source: "./media/characters/nicky/front-clothed.svg",
  22422. extra: 3184.9/2926.9,
  22423. bottom: 86.5/3239.9
  22424. }
  22425. },
  22426. foot: {
  22427. height: math.unit(1.16, "feet"),
  22428. name: "Foot",
  22429. image: {
  22430. source: "./media/characters/nicky/foot.svg"
  22431. }
  22432. },
  22433. feet: {
  22434. height: math.unit(1.34, "feet"),
  22435. name: "Feet",
  22436. image: {
  22437. source: "./media/characters/nicky/feet.svg"
  22438. }
  22439. },
  22440. maw: {
  22441. height: math.unit(0.9, "feet"),
  22442. name: "Maw",
  22443. image: {
  22444. source: "./media/characters/nicky/maw.svg"
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "Normal",
  22451. height: math.unit(5 + 10/12, "feet"),
  22452. default: true
  22453. },
  22454. {
  22455. name: "Macro",
  22456. height: math.unit(60, "feet")
  22457. },
  22458. {
  22459. name: "Megamacro",
  22460. height: math.unit(1, "mile")
  22461. },
  22462. ]
  22463. ))
  22464. characterMakers.push(() => makeCharacter(
  22465. { name: "Blair" },
  22466. {
  22467. side: {
  22468. height: math.unit(10, "feet"),
  22469. weight: math.unit(600, "lb"),
  22470. name: "Side",
  22471. image: {
  22472. source: "./media/characters/blair/side.svg",
  22473. bottom: 16.6/475,
  22474. extra: 458/431
  22475. }
  22476. },
  22477. },
  22478. [
  22479. {
  22480. name: "Micro",
  22481. height: math.unit(8, "inches")
  22482. },
  22483. {
  22484. name: "Normal",
  22485. height: math.unit(10, "feet"),
  22486. default: true
  22487. },
  22488. {
  22489. name: "Macro",
  22490. height: math.unit(180, "feet")
  22491. },
  22492. ]
  22493. ))
  22494. characterMakers.push(() => makeCharacter(
  22495. { name: "Fisher" },
  22496. {
  22497. front: {
  22498. height: math.unit(5 + 4/12, "feet"),
  22499. weight: math.unit(125, "lb"),
  22500. name: "Front",
  22501. image: {
  22502. source: "./media/characters/fisher/front.svg",
  22503. extra: 444/390,
  22504. bottom: 2/444.8
  22505. }
  22506. },
  22507. },
  22508. [
  22509. {
  22510. name: "Micro",
  22511. height: math.unit(4, "inches")
  22512. },
  22513. {
  22514. name: "Normal",
  22515. height: math.unit(5 + 4/12, "feet"),
  22516. default: true
  22517. },
  22518. {
  22519. name: "Macro",
  22520. height: math.unit(100, "feet")
  22521. },
  22522. ]
  22523. ))
  22524. characterMakers.push(() => makeCharacter(
  22525. { name: "Gliss" },
  22526. {
  22527. front: {
  22528. height: math.unit(6.71, "feet"),
  22529. weight: math.unit(200, "lb"),
  22530. capacity: math.unit(1000000, "people"),
  22531. name: "Front",
  22532. image: {
  22533. source: "./media/characters/gliss/front.svg",
  22534. extra: 2347/2231,
  22535. bottom: 113/2462
  22536. }
  22537. },
  22538. hammerspaceSize: {
  22539. height: math.unit(6.71*717, "feet"),
  22540. weight: math.unit(200, "lb"),
  22541. capacity: math.unit(1000000, "people"),
  22542. name: "Hammerspace Size",
  22543. image: {
  22544. source: "./media/characters/gliss/front.svg",
  22545. extra: 2347/2231,
  22546. bottom: 113/2462
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Normal",
  22553. height: math.unit(6.71, "feet"),
  22554. default: true
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Dune Anderson" },
  22560. {
  22561. side: {
  22562. height: math.unit(1.44, "m"),
  22563. weight: math.unit(80, "kg"),
  22564. name: "Side",
  22565. image: {
  22566. source: "./media/characters/dune-anderson/side.svg",
  22567. bottom: 49/1426
  22568. }
  22569. },
  22570. },
  22571. [
  22572. {
  22573. name: "Wolf-sized",
  22574. height: math.unit(1.44, "meters")
  22575. },
  22576. {
  22577. name: "Normal",
  22578. height: math.unit(5.05, "meters"),
  22579. default: true
  22580. },
  22581. {
  22582. name: "Big",
  22583. height: math.unit(14.4, "meters")
  22584. },
  22585. {
  22586. name: "Huge",
  22587. height: math.unit(144, "meters")
  22588. },
  22589. ]
  22590. ))
  22591. characterMakers.push(() => makeCharacter(
  22592. { name: "Hind" },
  22593. {
  22594. front: {
  22595. height: math.unit(7, "feet"),
  22596. weight: math.unit(425, "lb"),
  22597. name: "Front",
  22598. image: {
  22599. source: "./media/characters/hind/front.svg",
  22600. extra: 2091/1860,
  22601. bottom: 129/2220
  22602. }
  22603. },
  22604. back: {
  22605. height: math.unit(7, "feet"),
  22606. weight: math.unit(425, "lb"),
  22607. name: "Back",
  22608. image: {
  22609. source: "./media/characters/hind/back.svg",
  22610. extra: 2091/1860,
  22611. bottom: 24.6/2309
  22612. }
  22613. },
  22614. tail: {
  22615. height: math.unit(2.8, "feet"),
  22616. name: "Tail",
  22617. image: {
  22618. source: "./media/characters/hind/tail.svg"
  22619. }
  22620. },
  22621. head: {
  22622. height: math.unit(2.55, "feet"),
  22623. name: "Head",
  22624. image: {
  22625. source: "./media/characters/hind/head.svg"
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "XS",
  22632. height: math.unit(0.7, "feet")
  22633. },
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(7, "feet"),
  22637. default: true
  22638. },
  22639. {
  22640. name: "XL",
  22641. height: math.unit(70, "feet")
  22642. },
  22643. ]
  22644. ))
  22645. characterMakers.push(() => makeCharacter(
  22646. { name: "Dylan (Skaven)" },
  22647. {
  22648. front: {
  22649. height: math.unit(6, "feet"),
  22650. weight: math.unit(150, "lb"),
  22651. name: "Front",
  22652. image: {
  22653. source: "./media/characters/dylan-skaven/front.svg",
  22654. extra: 2318/2063,
  22655. bottom: 93.4/2410
  22656. }
  22657. },
  22658. },
  22659. [
  22660. {
  22661. name: "Nano",
  22662. height: math.unit(1, "mm")
  22663. },
  22664. {
  22665. name: "Micro",
  22666. height: math.unit(1, "cm")
  22667. },
  22668. {
  22669. name: "Normal",
  22670. height: math.unit(2.1, "meters"),
  22671. default: true
  22672. },
  22673. ]
  22674. ))
  22675. characterMakers.push(() => makeCharacter(
  22676. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  22677. {
  22678. front: {
  22679. height: math.unit(7 + 5/12, "feet"),
  22680. weight: math.unit(357, "lb"),
  22681. name: "Front",
  22682. image: {
  22683. source: "./media/characters/solex-draconov/front.svg",
  22684. extra: 1993/1865,
  22685. bottom: 117/2111
  22686. }
  22687. },
  22688. },
  22689. [
  22690. {
  22691. name: "Natural Height",
  22692. height: math.unit(7 + 5/12, "feet"),
  22693. default: true
  22694. },
  22695. {
  22696. name: "Macro",
  22697. height: math.unit(350, "feet")
  22698. },
  22699. {
  22700. name: "Macro+",
  22701. height: math.unit(1000, "feet")
  22702. },
  22703. {
  22704. name: "Megamacro",
  22705. height: math.unit(20, "km")
  22706. },
  22707. {
  22708. name: "Megamacro+",
  22709. height: math.unit(1000, "km")
  22710. },
  22711. {
  22712. name: "Gigamacro",
  22713. height: math.unit(2.5, "Gm")
  22714. },
  22715. {
  22716. name: "Teramacro",
  22717. height: math.unit(15, "Tm")
  22718. },
  22719. {
  22720. name: "Galactic",
  22721. height: math.unit(30, "Zm")
  22722. },
  22723. {
  22724. name: "Universal",
  22725. height: math.unit(21000, "Ym")
  22726. },
  22727. {
  22728. name: "Omniversal",
  22729. height: math.unit(9.861e50, "Ym")
  22730. },
  22731. {
  22732. name: "Existential",
  22733. height: math.unit(1e300, "meters")
  22734. },
  22735. ]
  22736. ))
  22737. characterMakers.push(() => makeCharacter(
  22738. { name: "Mandarax" },
  22739. {
  22740. side: {
  22741. height: math.unit(25, "feet"),
  22742. weight: math.unit(90000, "lb"),
  22743. name: "Side",
  22744. image: {
  22745. source: "./media/characters/mandarax/side.svg",
  22746. extra: 614/332,
  22747. bottom: 55/630
  22748. }
  22749. },
  22750. head: {
  22751. height: math.unit(11.4, "feet"),
  22752. name: "Head",
  22753. image: {
  22754. source: "./media/characters/mandarax/head.svg"
  22755. }
  22756. },
  22757. belly: {
  22758. height: math.unit(33, "feet"),
  22759. name: "Belly",
  22760. capacity: math.unit(500, "people"),
  22761. image: {
  22762. source: "./media/characters/mandarax/belly.svg"
  22763. }
  22764. },
  22765. dick: {
  22766. height: math.unit(8.46, "feet"),
  22767. name: "Dick",
  22768. image: {
  22769. source: "./media/characters/mandarax/dick.svg"
  22770. }
  22771. },
  22772. top: {
  22773. height: math.unit(28, "meters"),
  22774. name: "Top",
  22775. image: {
  22776. source: "./media/characters/mandarax/top.svg"
  22777. }
  22778. },
  22779. },
  22780. [
  22781. {
  22782. name: "Normal",
  22783. height: math.unit(25, "feet"),
  22784. default: true
  22785. },
  22786. ]
  22787. ))
  22788. characterMakers.push(() => makeCharacter(
  22789. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  22790. {
  22791. front: {
  22792. height: math.unit(5, "feet"),
  22793. weight: math.unit(90, "lb"),
  22794. name: "Front",
  22795. image: {
  22796. source: "./media/characters/pixil/front.svg",
  22797. extra: 2000/1618,
  22798. bottom: 12.3/2011
  22799. }
  22800. },
  22801. },
  22802. [
  22803. {
  22804. name: "Normal",
  22805. height: math.unit(5, "feet"),
  22806. default: true
  22807. },
  22808. {
  22809. name: "Megamacro",
  22810. height: math.unit(10, "miles"),
  22811. },
  22812. ]
  22813. ))
  22814. characterMakers.push(() => makeCharacter(
  22815. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  22816. {
  22817. front: {
  22818. height: math.unit(7 + 2/12, "feet"),
  22819. weight: math.unit(200, "lb"),
  22820. name: "Front",
  22821. image: {
  22822. source: "./media/characters/angel/front.svg",
  22823. extra: 1830/1737,
  22824. bottom: 22.6/1854,
  22825. }
  22826. },
  22827. },
  22828. [
  22829. {
  22830. name: "Normal",
  22831. height: math.unit(7 + 2/12, "feet")
  22832. },
  22833. {
  22834. name: "Macro",
  22835. height: math.unit(1000, "feet")
  22836. },
  22837. {
  22838. name: "Megamacro",
  22839. height: math.unit(2, "miles")
  22840. },
  22841. {
  22842. name: "Gigamacro",
  22843. height: math.unit(20, "earths")
  22844. },
  22845. ]
  22846. ))
  22847. //characters
  22848. function makeCharacters() {
  22849. const results = [];
  22850. characterMakers.forEach(character => {
  22851. results.push(character());
  22852. });
  22853. return results;
  22854. }