less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23639 lines
568 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. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. }
  500. function getSpeciesInfo(speciesList) {
  501. let result = new Set();
  502. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  503. result.add(entry)
  504. });
  505. return Array.from(result);
  506. };
  507. function getSpeciesInfoHelper(species) {
  508. if (!speciesData[species]) {
  509. console.warn(species + " doesn't exist");
  510. return [];
  511. }
  512. if (speciesData[species].parents) {
  513. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  514. } else {
  515. return [species];
  516. }
  517. }
  518. characterMakers.push(() => makeCharacter(
  519. {
  520. name: "Fen",
  521. species: ["crux"],
  522. description: {
  523. title: "Bio",
  524. text: "Very furry. Sheds on everything."
  525. },
  526. tags: [
  527. "anthro"
  528. ]
  529. },
  530. {
  531. back: {
  532. height: math.unit(2.2428, "meter"),
  533. weight: math.unit(124.738, "kg"),
  534. name: "Back",
  535. image: {
  536. source: "./media/characters/fen/back.svg",
  537. extra: 1025 / 935,
  538. bottom: 0.01
  539. },
  540. info: {
  541. description: {
  542. mode: "append",
  543. text: "\n\nHe is not currently looking at you."
  544. }
  545. }
  546. },
  547. full: {
  548. height: math.unit(1.34, "meter"),
  549. weight: math.unit(225, "kg"),
  550. name: "Full",
  551. image: {
  552. source: "./media/characters/fen/full.svg"
  553. },
  554. info: {
  555. description: {
  556. mode: "append",
  557. text: "\n\nMunch."
  558. }
  559. }
  560. },
  561. kneeling: {
  562. height: math.unit(5.4, "feet"),
  563. weight: math.unit(124.738, "kg"),
  564. name: "Kneeling",
  565. image: {
  566. source: "./media/characters/fen/kneeling.svg",
  567. extra: 563 / 507
  568. }
  569. },
  570. goo: {
  571. height: math.unit(2.8, "feet"),
  572. weight: math.unit(125, "kg"),
  573. capacity: math.unit(1, "people"),
  574. name: "Goo",
  575. image: {
  576. source: "./media/characters/fen/goo.svg",
  577. bottom: 116/613
  578. }
  579. },
  580. lounging: {
  581. height: math.unit(6.5, "feet"),
  582. weight: math.unit(125, "kg"),
  583. name: "Lounging",
  584. image: {
  585. source: "./media/characters/fen/lounging.svg"
  586. }
  587. },
  588. },
  589. [
  590. {
  591. name: "Normal",
  592. height: math.unit(2.2428, "meter")
  593. },
  594. {
  595. name: "Big",
  596. height: math.unit(12, "feet")
  597. },
  598. {
  599. name: "Minimacro",
  600. height: math.unit(40, "feet"),
  601. default: true,
  602. info: {
  603. description: {
  604. mode: "append",
  605. text: "\n\nTOO DAMN BIG"
  606. }
  607. }
  608. },
  609. {
  610. name: "Macro",
  611. height: math.unit(100, "feet"),
  612. info: {
  613. description: {
  614. mode: "append",
  615. text: "\n\nTOO DAMN BIG"
  616. }
  617. }
  618. },
  619. {
  620. name: "Macro+",
  621. height: math.unit(300, "feet")
  622. },
  623. {
  624. name: "Megamacro",
  625. height: math.unit(2, "miles")
  626. }
  627. ]
  628. ))
  629. characterMakers.push(() => makeCharacter(
  630. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  631. {
  632. front: {
  633. height: math.unit(183, "cm"),
  634. weight: math.unit(80, "kg"),
  635. name: "Front",
  636. image: {
  637. source: "./media/characters/sofia-fluttertail/front.svg",
  638. bottom: 0.01,
  639. extra: 2154 / 2081
  640. }
  641. },
  642. frontAlt: {
  643. height: math.unit(183, "cm"),
  644. weight: math.unit(80, "kg"),
  645. name: "Front (alt)",
  646. image: {
  647. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  648. }
  649. },
  650. back: {
  651. height: math.unit(183, "cm"),
  652. weight: math.unit(80, "kg"),
  653. name: "Back",
  654. image: {
  655. source: "./media/characters/sofia-fluttertail/back.svg"
  656. }
  657. },
  658. kneeling: {
  659. height: math.unit(125, "cm"),
  660. weight: math.unit(80, "kg"),
  661. name: "Kneeling",
  662. image: {
  663. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  664. extra: 1033/977,
  665. bottom: 23.7/1057
  666. }
  667. },
  668. maw: {
  669. height: math.unit(183 / 5, "cm"),
  670. name: "Maw",
  671. image: {
  672. source: "./media/characters/sofia-fluttertail/maw.svg"
  673. }
  674. },
  675. mawcloseup: {
  676. height: math.unit(183 / 5 * 0.41, "cm"),
  677. name: "Maw (Closeup)",
  678. image: {
  679. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  680. }
  681. },
  682. },
  683. [
  684. {
  685. name: "Normal",
  686. height: math.unit(1.83, "meter")
  687. },
  688. {
  689. name: "Size Thief",
  690. height: math.unit(18, "feet")
  691. },
  692. {
  693. name: "50 Foot Collie",
  694. height: math.unit(50, "feet")
  695. },
  696. {
  697. name: "Macro",
  698. height: math.unit(96, "feet"),
  699. default: true
  700. },
  701. {
  702. name: "Megamerger",
  703. height: math.unit(650, "feet")
  704. },
  705. ]
  706. ))
  707. characterMakers.push(() => makeCharacter(
  708. { name: "March", species: ["dragon"], tags: ["anthro"] },
  709. {
  710. front: {
  711. height: math.unit(7, "feet"),
  712. weight: math.unit(100, "kg"),
  713. name: "Front",
  714. image: {
  715. source: "./media/characters/march/front.svg",
  716. extra: 1,
  717. bottom: 0.015
  718. }
  719. },
  720. foot: {
  721. height: math.unit(0.9, "feet"),
  722. name: "Foot",
  723. image: {
  724. source: "./media/characters/march/foot.svg"
  725. }
  726. },
  727. },
  728. [
  729. {
  730. name: "Normal",
  731. height: math.unit(7.9, "feet")
  732. },
  733. {
  734. name: "Macro",
  735. height: math.unit(220, "meters")
  736. },
  737. {
  738. name: "Megamacro",
  739. height: math.unit(2.98, "km"),
  740. default: true
  741. },
  742. {
  743. name: "Gigamacro",
  744. height: math.unit(15963, "km")
  745. },
  746. {
  747. name: "Teramacro",
  748. height: math.unit(2980000000, "km")
  749. },
  750. {
  751. name: "Examacro",
  752. height: math.unit(250, "parsecs")
  753. },
  754. ]
  755. ))
  756. characterMakers.push(() => makeCharacter(
  757. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  758. {
  759. front: {
  760. height: math.unit(6, "feet"),
  761. weight: math.unit(60, "kg"),
  762. name: "Front",
  763. image: {
  764. source: "./media/characters/noir/front.svg",
  765. extra: 1,
  766. bottom: 0.032
  767. }
  768. },
  769. },
  770. [
  771. {
  772. name: "Normal",
  773. height: math.unit(6.6, "feet")
  774. },
  775. {
  776. name: "Macro",
  777. height: math.unit(500, "feet")
  778. },
  779. {
  780. name: "Megamacro",
  781. height: math.unit(2.5, "km"),
  782. default: true
  783. },
  784. {
  785. name: "Gigamacro",
  786. height: math.unit(22500, "km")
  787. },
  788. {
  789. name: "Teramacro",
  790. height: math.unit(2500000000, "km")
  791. },
  792. {
  793. name: "Examacro",
  794. height: math.unit(200, "parsecs")
  795. },
  796. ]
  797. ))
  798. characterMakers.push(() => makeCharacter(
  799. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  800. {
  801. front: {
  802. height: math.unit(7, "feet"),
  803. weight: math.unit(100, "kg"),
  804. name: "Front",
  805. image: {
  806. source: "./media/characters/okuri/front.svg",
  807. extra: 1,
  808. bottom: 0.037
  809. }
  810. },
  811. back: {
  812. height: math.unit(7, "feet"),
  813. weight: math.unit(100, "kg"),
  814. name: "Back",
  815. image: {
  816. source: "./media/characters/okuri/back.svg",
  817. extra: 1,
  818. bottom: 0.007
  819. }
  820. },
  821. },
  822. [
  823. {
  824. name: "Megamacro",
  825. height: math.unit(100, "miles"),
  826. default: true
  827. },
  828. ]
  829. ))
  830. characterMakers.push(() => makeCharacter(
  831. { name: "Manny", species: ["pokemon"], tags: ["anthro"] },
  832. {
  833. front: {
  834. height: math.unit(7, "feet"),
  835. weight: math.unit(100, "kg"),
  836. name: "Front",
  837. image: {
  838. source: "./media/characters/manny/front.svg",
  839. extra: 1,
  840. bottom: 0.06
  841. }
  842. },
  843. back: {
  844. height: math.unit(7, "feet"),
  845. weight: math.unit(100, "kg"),
  846. name: "Back",
  847. image: {
  848. source: "./media/characters/manny/back.svg",
  849. extra: 1,
  850. bottom: 0.014
  851. }
  852. },
  853. },
  854. [
  855. {
  856. name: "Normal",
  857. height: math.unit(7, "feet"),
  858. },
  859. {
  860. name: "Macro",
  861. height: math.unit(78, "feet"),
  862. default: true
  863. },
  864. {
  865. name: "Macro+",
  866. height: math.unit(300, "meters")
  867. },
  868. {
  869. name: "Macro++",
  870. height: math.unit(2400, "meters")
  871. },
  872. {
  873. name: "Megamacro",
  874. height: math.unit(5167, "meters")
  875. },
  876. {
  877. name: "Gigamacro",
  878. height: math.unit(41769, "miles")
  879. },
  880. ]
  881. ))
  882. characterMakers.push(() => makeCharacter(
  883. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  884. {
  885. front: {
  886. height: math.unit(7, "feet"),
  887. weight: math.unit(100, "kg"),
  888. name: "Front",
  889. image: {
  890. source: "./media/characters/adake/front-1.svg"
  891. }
  892. },
  893. frontAlt: {
  894. height: math.unit(7, "feet"),
  895. weight: math.unit(100, "kg"),
  896. name: "Front (Alt)",
  897. image: {
  898. source: "./media/characters/adake/front-2.svg",
  899. extra: 1,
  900. bottom: 0.01
  901. }
  902. },
  903. back: {
  904. height: math.unit(7, "feet"),
  905. weight: math.unit(100, "kg"),
  906. name: "Back",
  907. image: {
  908. source: "./media/characters/adake/back.svg",
  909. }
  910. },
  911. kneel: {
  912. height: math.unit(5.385, "feet"),
  913. weight: math.unit(100, "kg"),
  914. name: "Kneeling",
  915. image: {
  916. source: "./media/characters/adake/kneel.svg",
  917. bottom: 0.052
  918. }
  919. },
  920. },
  921. [
  922. {
  923. name: "Normal",
  924. height: math.unit(7, "feet"),
  925. },
  926. {
  927. name: "Macro",
  928. height: math.unit(78, "feet"),
  929. default: true
  930. },
  931. {
  932. name: "Macro+",
  933. height: math.unit(300, "meters")
  934. },
  935. {
  936. name: "Macro++",
  937. height: math.unit(2400, "meters")
  938. },
  939. {
  940. name: "Megamacro",
  941. height: math.unit(5167, "meters")
  942. },
  943. {
  944. name: "Gigamacro",
  945. height: math.unit(41769, "miles")
  946. },
  947. ]
  948. ))
  949. characterMakers.push(() => makeCharacter(
  950. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  951. {
  952. front: {
  953. height: math.unit(1.65, "meters"),
  954. weight: math.unit(50, "kg"),
  955. name: "Front",
  956. image: {
  957. source: "./media/characters/elijah/front.svg",
  958. extra: 858/830,
  959. bottom: 95.5/953.8559
  960. }
  961. },
  962. back: {
  963. height: math.unit(1.65, "meters"),
  964. weight: math.unit(50, "kg"),
  965. name: "Back",
  966. image: {
  967. source: "./media/characters/elijah/back.svg",
  968. extra: 895/850,
  969. bottom: 5.3/897.956
  970. }
  971. },
  972. frontNsfw: {
  973. height: math.unit(1.65, "meters"),
  974. weight: math.unit(50, "kg"),
  975. name: "Front (NSFW)",
  976. image: {
  977. source: "./media/characters/elijah/front-nsfw.svg",
  978. extra: 858/830,
  979. bottom: 95.5/953.8559
  980. }
  981. },
  982. backNsfw: {
  983. height: math.unit(1.65, "meters"),
  984. weight: math.unit(50, "kg"),
  985. name: "Back (NSFW)",
  986. image: {
  987. source: "./media/characters/elijah/back-nsfw.svg",
  988. extra: 895/850,
  989. bottom: 5.3/897.956
  990. }
  991. },
  992. dick: {
  993. height: math.unit(1, "feet"),
  994. name: "Dick",
  995. image: {
  996. source: "./media/characters/elijah/dick.svg"
  997. }
  998. },
  999. beakOpen: {
  1000. height: math.unit(1.25, "feet"),
  1001. name: "Beak (Open)",
  1002. image: {
  1003. source: "./media/characters/elijah/beak-open.svg"
  1004. }
  1005. },
  1006. beakShut: {
  1007. height: math.unit(1.25, "feet"),
  1008. name: "Beak (Shut)",
  1009. image: {
  1010. source: "./media/characters/elijah/beak-shut.svg"
  1011. }
  1012. },
  1013. footFlexing: {
  1014. height: math.unit(1.61, "feet"),
  1015. name: "Foot (Flexing)",
  1016. image: {
  1017. source: "./media/characters/elijah/foot-flexing.svg"
  1018. }
  1019. },
  1020. footStepping: {
  1021. height: math.unit(1.44, "feet"),
  1022. name: "Foot (Stepping)",
  1023. image: {
  1024. source: "./media/characters/elijah/foot-stepping.svg"
  1025. }
  1026. },
  1027. plantigradeLeg: {
  1028. height: math.unit(2.34, "feet"),
  1029. name: "Plantigrade Leg",
  1030. image: {
  1031. source: "./media/characters/elijah/plantigrade-leg.svg"
  1032. }
  1033. },
  1034. plantigradeFootLeft: {
  1035. height: math.unit(0.9, "feet"),
  1036. name: "Plantigrade Foot (Left)",
  1037. image: {
  1038. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1039. }
  1040. },
  1041. plantigradeFootRight: {
  1042. height: math.unit(0.9, "feet"),
  1043. name: "Plantigrade Foot (Right)",
  1044. image: {
  1045. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1046. }
  1047. },
  1048. },
  1049. [
  1050. {
  1051. name: "Normal",
  1052. height: math.unit(1.65, "meters")
  1053. },
  1054. {
  1055. name: "Macro",
  1056. height: math.unit(55, "meters"),
  1057. default: true
  1058. },
  1059. {
  1060. name: "Macro+",
  1061. height: math.unit(105, "meters")
  1062. },
  1063. ]
  1064. ))
  1065. characterMakers.push(() => makeCharacter(
  1066. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1067. {
  1068. front: {
  1069. height: math.unit(11, "feet"),
  1070. weight: math.unit(80, "kg"),
  1071. name: "Front",
  1072. image: {
  1073. source: "./media/characters/rai/front.svg",
  1074. extra: 1,
  1075. bottom: 0.03
  1076. }
  1077. },
  1078. side: {
  1079. height: math.unit(11, "feet"),
  1080. weight: math.unit(80, "kg"),
  1081. name: "Side",
  1082. image: {
  1083. source: "./media/characters/rai/side.svg"
  1084. }
  1085. },
  1086. back: {
  1087. height: math.unit(11, "feet"),
  1088. weight: math.unit(80, "lb"),
  1089. name: "Back",
  1090. image: {
  1091. source: "./media/characters/rai/back.svg",
  1092. extra: 1,
  1093. bottom: 0.01
  1094. }
  1095. },
  1096. feral: {
  1097. height: math.unit(11, "feet"),
  1098. weight: math.unit(800, "lb"),
  1099. name: "Feral",
  1100. image: {
  1101. source: "./media/characters/rai/feral.svg",
  1102. extra: 1050 / 659,
  1103. bottom: 0.07
  1104. }
  1105. },
  1106. dragon: {
  1107. height: math.unit(23, "feet"),
  1108. weight: math.unit(50000, "lb"),
  1109. name: "Dragon",
  1110. image: {
  1111. source: "./media/characters/rai/dragon.svg",
  1112. extra: 2498/2030,
  1113. bottom: 85.2/2584
  1114. }
  1115. },
  1116. maw: {
  1117. height: math.unit(6 / 3.81416, "feet"),
  1118. name: "Maw",
  1119. image: {
  1120. source: "./media/characters/rai/maw.svg"
  1121. }
  1122. },
  1123. },
  1124. [
  1125. {
  1126. name: "Normal",
  1127. height: math.unit(11, "feet")
  1128. },
  1129. {
  1130. name: "Macro",
  1131. height: math.unit(302, "feet"),
  1132. default: true
  1133. },
  1134. ]
  1135. ))
  1136. characterMakers.push(() => makeCharacter(
  1137. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1138. {
  1139. frontDressed: {
  1140. height: math.unit(216, "feet"),
  1141. weight: math.unit(7000000, "lb"),
  1142. name: "Front (Dressed)",
  1143. image: {
  1144. source: "./media/characters/jazzy/front-dressed.svg",
  1145. extra: 2738/2651,
  1146. bottom: 41.8/2786
  1147. }
  1148. },
  1149. backDressed: {
  1150. height: math.unit(216, "feet"),
  1151. weight: math.unit(7000000, "lb"),
  1152. name: "Back (Dressed)",
  1153. image: {
  1154. source: "./media/characters/jazzy/back-dressed.svg",
  1155. extra: 2775/2673,
  1156. bottom: 36.8/2817
  1157. }
  1158. },
  1159. front: {
  1160. height: math.unit(216, "feet"),
  1161. weight: math.unit(7000000, "lb"),
  1162. name: "Front",
  1163. image: {
  1164. source: "./media/characters/jazzy/front.svg",
  1165. extra: 2738/2651,
  1166. bottom: 41.8/2786
  1167. }
  1168. },
  1169. back: {
  1170. height: math.unit(216, "feet"),
  1171. weight: math.unit(7000000, "lb"),
  1172. name: "Back",
  1173. image: {
  1174. source: "./media/characters/jazzy/back.svg",
  1175. extra: 2775/2673,
  1176. bottom: 36.8/2817
  1177. }
  1178. },
  1179. maw: {
  1180. height: math.unit(20, "feet"),
  1181. name: "Maw",
  1182. image: {
  1183. source: "./media/characters/jazzy/maw.svg"
  1184. }
  1185. },
  1186. paws: {
  1187. height: math.unit(27.5, "feet"),
  1188. name: "Paws",
  1189. image: {
  1190. source: "./media/characters/jazzy/paws.svg"
  1191. }
  1192. },
  1193. eye: {
  1194. height: math.unit(4.4, "feet"),
  1195. name: "Eye",
  1196. image: {
  1197. source: "./media/characters/jazzy/eye.svg"
  1198. }
  1199. },
  1200. droneOffense: {
  1201. height: math.unit(9.5, "inches"),
  1202. name: "Drone (Offense)",
  1203. image: {
  1204. source: "./media/characters/jazzy/drone-offense.svg"
  1205. }
  1206. },
  1207. droneRecon: {
  1208. height: math.unit(9.5, "inches"),
  1209. name: "Drone (Recon)",
  1210. image: {
  1211. source: "./media/characters/jazzy/drone-recon.svg"
  1212. }
  1213. },
  1214. droneDefense: {
  1215. height: math.unit(9.5, "inches"),
  1216. name: "Drone (Defense)",
  1217. image: {
  1218. source: "./media/characters/jazzy/drone-defense.svg"
  1219. }
  1220. },
  1221. },
  1222. [
  1223. {
  1224. name: "Macro",
  1225. height: math.unit(216, "feet"),
  1226. default: true
  1227. },
  1228. ]
  1229. ))
  1230. characterMakers.push(() => makeCharacter(
  1231. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1232. {
  1233. front: {
  1234. height: math.unit(7, "feet"),
  1235. weight: math.unit(80, "kg"),
  1236. name: "Front",
  1237. image: {
  1238. source: "./media/characters/flamm/front.svg",
  1239. extra: 1794 / 1677,
  1240. bottom: 31.7 / 1828.5
  1241. }
  1242. },
  1243. },
  1244. [
  1245. {
  1246. name: "Normal",
  1247. height: math.unit(9.5, "feet")
  1248. },
  1249. {
  1250. name: "Macro",
  1251. height: math.unit(200, "feet"),
  1252. default: true
  1253. },
  1254. ]
  1255. ))
  1256. characterMakers.push(() => makeCharacter(
  1257. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1258. {
  1259. front: {
  1260. height: math.unit(7, "feet"),
  1261. weight: math.unit(80, "kg"),
  1262. name: "Front",
  1263. image: {
  1264. source: "./media/characters/zephiro/front.svg",
  1265. extra: 2309 / 2162,
  1266. bottom: 0.069
  1267. }
  1268. },
  1269. side: {
  1270. height: math.unit(7, "feet"),
  1271. weight: math.unit(80, "kg"),
  1272. name: "Side",
  1273. image: {
  1274. source: "./media/characters/zephiro/side.svg",
  1275. extra: 2403 / 2279,
  1276. bottom: 0.015
  1277. }
  1278. },
  1279. back: {
  1280. height: math.unit(7, "feet"),
  1281. weight: math.unit(80, "kg"),
  1282. name: "Back",
  1283. image: {
  1284. source: "./media/characters/zephiro/back.svg",
  1285. extra: 2373 / 2244,
  1286. bottom: 0.013
  1287. }
  1288. },
  1289. },
  1290. [
  1291. {
  1292. name: "Micro",
  1293. height: math.unit(3, "inches")
  1294. },
  1295. {
  1296. name: "Normal",
  1297. height: math.unit(5 + 3 / 12, "feet"),
  1298. default: true
  1299. },
  1300. {
  1301. name: "Macro",
  1302. height: math.unit(118, "feet")
  1303. },
  1304. ]
  1305. ))
  1306. characterMakers.push(() => makeCharacter(
  1307. { name: "Fory", species: ["weasel"], tags: ["anthro"] },
  1308. {
  1309. front: {
  1310. height: math.unit(5, "feet"),
  1311. weight: math.unit(90, "kg"),
  1312. name: "Front",
  1313. image: {
  1314. source: "./media/characters/fory/front.svg",
  1315. extra: 2862 / 2674,
  1316. bottom: 180 / 3043.8
  1317. }
  1318. },
  1319. back: {
  1320. height: math.unit(5, "feet"),
  1321. weight: math.unit(90, "kg"),
  1322. name: "Back",
  1323. image: {
  1324. source: "./media/characters/fory/back.svg",
  1325. extra: 2962 / 2791,
  1326. bottom: 106 / 3071.8
  1327. }
  1328. },
  1329. foot: {
  1330. height: math.unit(2.14, "feet"),
  1331. name: "Foot",
  1332. image: {
  1333. source: "./media/characters/fory/foot.svg"
  1334. }
  1335. },
  1336. },
  1337. [
  1338. {
  1339. name: "Normal",
  1340. height: math.unit(5, "feet")
  1341. },
  1342. {
  1343. name: "Macro",
  1344. height: math.unit(50, "feet"),
  1345. default: true
  1346. },
  1347. {
  1348. name: "Megamacro",
  1349. height: math.unit(10, "miles")
  1350. },
  1351. {
  1352. name: "Gigamacro",
  1353. height: math.unit(5, "earths")
  1354. },
  1355. ]
  1356. ))
  1357. characterMakers.push(() => makeCharacter(
  1358. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  1359. {
  1360. front: {
  1361. height: math.unit(7, "feet"),
  1362. weight: math.unit(90, "kg"),
  1363. name: "Front",
  1364. image: {
  1365. source: "./media/characters/kurrikage/front.svg",
  1366. extra: 1,
  1367. bottom: 0.035
  1368. }
  1369. },
  1370. back: {
  1371. height: math.unit(7, "feet"),
  1372. weight: math.unit(90, "lb"),
  1373. name: "Back",
  1374. image: {
  1375. source: "./media/characters/kurrikage/back.svg"
  1376. }
  1377. },
  1378. paw: {
  1379. height: math.unit(1.5, "feet"),
  1380. name: "Paw",
  1381. image: {
  1382. source: "./media/characters/kurrikage/paw.svg"
  1383. }
  1384. },
  1385. staff: {
  1386. height: math.unit(6.7, "feet"),
  1387. name: "Staff",
  1388. image: {
  1389. source: "./media/characters/kurrikage/staff.svg"
  1390. }
  1391. },
  1392. peek: {
  1393. height: math.unit(1.05, "feet"),
  1394. name: "Peeking",
  1395. image: {
  1396. source: "./media/characters/kurrikage/peek.svg",
  1397. bottom: 0.08
  1398. }
  1399. },
  1400. },
  1401. [
  1402. {
  1403. name: "Normal",
  1404. height: math.unit(12, "feet"),
  1405. default: true
  1406. },
  1407. {
  1408. name: "Big",
  1409. height: math.unit(20, "feet")
  1410. },
  1411. {
  1412. name: "Macro",
  1413. height: math.unit(500, "feet")
  1414. },
  1415. {
  1416. name: "Megamacro",
  1417. height: math.unit(20, "miles")
  1418. },
  1419. ]
  1420. ))
  1421. characterMakers.push(() => makeCharacter(
  1422. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  1423. {
  1424. front: {
  1425. height: math.unit(6, "feet"),
  1426. weight: math.unit(75, "kg"),
  1427. name: "Front",
  1428. image: {
  1429. source: "./media/characters/shingo/front.svg",
  1430. extra: 3511 / 3338,
  1431. bottom: 0.005
  1432. }
  1433. },
  1434. },
  1435. [
  1436. {
  1437. name: "Micro",
  1438. height: math.unit(4, "inches")
  1439. },
  1440. {
  1441. name: "Normal",
  1442. height: math.unit(6, "feet"),
  1443. default: true
  1444. },
  1445. {
  1446. name: "Macro",
  1447. height: math.unit(108, "feet")
  1448. }
  1449. ]
  1450. ))
  1451. characterMakers.push(() => makeCharacter(
  1452. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  1453. {
  1454. side: {
  1455. height: math.unit(6, "feet"),
  1456. weight: math.unit(75, "kg"),
  1457. name: "Side",
  1458. image: {
  1459. source: "./media/characters/aigey/side.svg"
  1460. }
  1461. },
  1462. },
  1463. [
  1464. {
  1465. name: "Macro",
  1466. height: math.unit(200, "feet"),
  1467. default: true
  1468. },
  1469. {
  1470. name: "Megamacro",
  1471. height: math.unit(100, "miles")
  1472. },
  1473. ]
  1474. )
  1475. )
  1476. characterMakers.push(() => makeCharacter(
  1477. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  1478. {
  1479. front: {
  1480. height: math.unit(5 + 5 / 12, "feet"),
  1481. weight: math.unit(75, "kg"),
  1482. name: "Front",
  1483. image: {
  1484. source: "./media/characters/natasha/front.svg",
  1485. extra: 859/824,
  1486. bottom: 23/879.6
  1487. }
  1488. },
  1489. frontNsfw: {
  1490. height: math.unit(5 + 5 / 12, "feet"),
  1491. weight: math.unit(75, "kg"),
  1492. name: "Front (NSFW)",
  1493. image: {
  1494. source: "./media/characters/natasha/front-nsfw.svg",
  1495. extra: 859/824,
  1496. bottom: 23/879.6
  1497. }
  1498. },
  1499. frontErect: {
  1500. height: math.unit(5 + 5 / 12, "feet"),
  1501. weight: math.unit(75, "kg"),
  1502. name: "Front (Erect)",
  1503. image: {
  1504. source: "./media/characters/natasha/front-erect.svg",
  1505. extra: 859/824,
  1506. bottom: 23/879.6
  1507. }
  1508. },
  1509. back: {
  1510. height: math.unit(5 + 5 / 12, "feet"),
  1511. weight: math.unit(75, "kg"),
  1512. name: "Back",
  1513. image: {
  1514. source: "./media/characters/natasha/back.svg",
  1515. extra: 887.9/852.6,
  1516. bottom: 9.7/896.4
  1517. }
  1518. },
  1519. backAlt: {
  1520. height: math.unit(5 + 5 / 12, "feet"),
  1521. weight: math.unit(75, "kg"),
  1522. name: "Back (Alt)",
  1523. image: {
  1524. source: "./media/characters/natasha/back-alt.svg",
  1525. extra: 1236.7/1192,
  1526. bottom: 22.3/1258.2
  1527. }
  1528. },
  1529. dick: {
  1530. height: math.unit(1.772, "feet"),
  1531. name: "Dick",
  1532. image: {
  1533. source: "./media/characters/natasha/dick.svg"
  1534. }
  1535. },
  1536. },
  1537. [
  1538. {
  1539. name: "Normal",
  1540. height: math.unit(5 + 5 / 12, "feet")
  1541. },
  1542. {
  1543. name: "Large",
  1544. height: math.unit(12, "feet")
  1545. },
  1546. {
  1547. name: "Macro",
  1548. height: math.unit(100, "feet"),
  1549. default: true
  1550. },
  1551. {
  1552. name: "Macro+",
  1553. height: math.unit(260, "feet")
  1554. },
  1555. {
  1556. name: "Macro++",
  1557. height: math.unit(1, "mile")
  1558. },
  1559. ]
  1560. ))
  1561. characterMakers.push(() => makeCharacter(
  1562. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  1563. {
  1564. front: {
  1565. height: math.unit(6, "feet"),
  1566. weight: math.unit(75, "kg"),
  1567. name: "Front",
  1568. image: {
  1569. source: "./media/characters/malik/front.svg"
  1570. }
  1571. },
  1572. side: {
  1573. height: math.unit(6, "feet"),
  1574. weight: math.unit(75, "kg"),
  1575. name: "Side",
  1576. image: {
  1577. source: "./media/characters/malik/side.svg",
  1578. extra: 1.1539
  1579. }
  1580. },
  1581. back: {
  1582. height: math.unit(6, "feet"),
  1583. weight: math.unit(75, "kg"),
  1584. name: "Back",
  1585. image: {
  1586. source: "./media/characters/malik/back.svg"
  1587. }
  1588. },
  1589. },
  1590. [
  1591. {
  1592. name: "Macro",
  1593. height: math.unit(156, "feet"),
  1594. default: true
  1595. },
  1596. {
  1597. name: "Macro+",
  1598. height: math.unit(1188, "feet")
  1599. },
  1600. ]
  1601. ))
  1602. characterMakers.push(() => makeCharacter(
  1603. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  1604. {
  1605. front: {
  1606. height: math.unit(6, "feet"),
  1607. weight: math.unit(75, "kg"),
  1608. name: "Front",
  1609. image: {
  1610. source: "./media/characters/sefer/front.svg"
  1611. }
  1612. },
  1613. back: {
  1614. height: math.unit(6, "feet"),
  1615. weight: math.unit(75, "kg"),
  1616. name: "Back",
  1617. image: {
  1618. source: "./media/characters/sefer/back.svg"
  1619. }
  1620. },
  1621. },
  1622. [
  1623. {
  1624. name: "Normal",
  1625. height: math.unit(6, "feet"),
  1626. default: true
  1627. },
  1628. ]
  1629. ))
  1630. characterMakers.push(() => makeCharacter(
  1631. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  1632. {
  1633. body: {
  1634. height: math.unit(2.2428, "meter"),
  1635. weight: math.unit(124.738, "kg"),
  1636. name: "Body",
  1637. image: {
  1638. extra: 1225 / 1050,
  1639. source: "./media/characters/north/front.svg"
  1640. }
  1641. }
  1642. },
  1643. [
  1644. {
  1645. name: "Micro",
  1646. height: math.unit(4, "inches")
  1647. },
  1648. {
  1649. name: "Macro",
  1650. height: math.unit(63, "meters")
  1651. },
  1652. {
  1653. name: "Megamacro",
  1654. height: math.unit(101, "miles"),
  1655. default: true
  1656. }
  1657. ]
  1658. ))
  1659. characterMakers.push(() => makeCharacter(
  1660. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  1661. {
  1662. angled: {
  1663. height: math.unit(4, "meter"),
  1664. weight: math.unit(150, "kg"),
  1665. name: "Angled",
  1666. image: {
  1667. source: "./media/characters/talan/angled-sfw.svg",
  1668. bottom: 29 / 3734
  1669. }
  1670. },
  1671. angledNsfw: {
  1672. height: math.unit(4, "meter"),
  1673. weight: math.unit(150, "kg"),
  1674. name: "Angled (NSFW)",
  1675. image: {
  1676. source: "./media/characters/talan/angled-nsfw.svg",
  1677. bottom: 29 / 3734
  1678. }
  1679. },
  1680. frontNsfw: {
  1681. height: math.unit(4, "meter"),
  1682. weight: math.unit(150, "kg"),
  1683. name: "Front (NSFW)",
  1684. image: {
  1685. source: "./media/characters/talan/front-nsfw.svg",
  1686. bottom: 29 / 3734
  1687. }
  1688. },
  1689. sideNsfw: {
  1690. height: math.unit(4, "meter"),
  1691. weight: math.unit(150, "kg"),
  1692. name: "Side (NSFW)",
  1693. image: {
  1694. source: "./media/characters/talan/side-nsfw.svg",
  1695. bottom: 29 / 3734
  1696. }
  1697. },
  1698. back: {
  1699. height: math.unit(4, "meter"),
  1700. weight: math.unit(150, "kg"),
  1701. name: "Back",
  1702. image: {
  1703. source: "./media/characters/talan/back.svg"
  1704. }
  1705. },
  1706. dickBottom: {
  1707. height: math.unit(0.621, "meter"),
  1708. name: "Dick (Bottom)",
  1709. image: {
  1710. source: "./media/characters/talan/dick-bottom.svg"
  1711. }
  1712. },
  1713. dickTop: {
  1714. height: math.unit(0.621, "meter"),
  1715. name: "Dick (Top)",
  1716. image: {
  1717. source: "./media/characters/talan/dick-top.svg"
  1718. }
  1719. },
  1720. dickSide: {
  1721. height: math.unit(0.305, "meter"),
  1722. name: "Dick (Side)",
  1723. image: {
  1724. source: "./media/characters/talan/dick-side.svg"
  1725. }
  1726. },
  1727. dickFront: {
  1728. height: math.unit(0.305, "meter"),
  1729. name: "Dick (Front)",
  1730. image: {
  1731. source: "./media/characters/talan/dick-front.svg"
  1732. }
  1733. },
  1734. },
  1735. [
  1736. {
  1737. name: "Normal",
  1738. height: math.unit(4, "meters")
  1739. },
  1740. {
  1741. name: "Macro",
  1742. height: math.unit(100, "meters")
  1743. },
  1744. {
  1745. name: "Megamacro",
  1746. height: math.unit(2, "miles"),
  1747. default: true
  1748. },
  1749. {
  1750. name: "Gigamacro",
  1751. height: math.unit(5000, "miles")
  1752. },
  1753. {
  1754. name: "Teramacro",
  1755. height: math.unit(100, "parsecs")
  1756. }
  1757. ]
  1758. ))
  1759. characterMakers.push(() => makeCharacter(
  1760. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  1761. {
  1762. front: {
  1763. height: math.unit(2, "meter"),
  1764. weight: math.unit(90, "kg"),
  1765. name: "Front",
  1766. image: {
  1767. source: "./media/characters/gael'rathus/front.svg"
  1768. }
  1769. },
  1770. frontAlt: {
  1771. height: math.unit(2, "meter"),
  1772. weight: math.unit(90, "kg"),
  1773. name: "Front (alt)",
  1774. image: {
  1775. source: "./media/characters/gael'rathus/front-alt.svg"
  1776. }
  1777. },
  1778. frontAlt2: {
  1779. height: math.unit(2, "meter"),
  1780. weight: math.unit(90, "kg"),
  1781. name: "Front (alt 2)",
  1782. image: {
  1783. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1784. }
  1785. }
  1786. },
  1787. [
  1788. {
  1789. name: "Normal",
  1790. height: math.unit(9, "feet"),
  1791. default: true
  1792. },
  1793. {
  1794. name: "Large",
  1795. height: math.unit(25, "feet")
  1796. },
  1797. {
  1798. name: "Macro",
  1799. height: math.unit(0.25, "miles")
  1800. },
  1801. {
  1802. name: "Megamacro",
  1803. height: math.unit(10, "miles")
  1804. }
  1805. ]
  1806. ))
  1807. characterMakers.push(() => makeCharacter(
  1808. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  1809. {
  1810. side: {
  1811. height: math.unit(2, "meter"),
  1812. weight: math.unit(140, "kg"),
  1813. name: "Side",
  1814. image: {
  1815. source: "./media/characters/sosha/side.svg",
  1816. bottom: 0.042
  1817. }
  1818. },
  1819. },
  1820. [
  1821. {
  1822. name: "Normal",
  1823. height: math.unit(12, "feet"),
  1824. default: true
  1825. }
  1826. ]
  1827. ))
  1828. characterMakers.push(() => makeCharacter(
  1829. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  1830. {
  1831. side: {
  1832. height: math.unit(5 + 5 / 12, "feet"),
  1833. weight: math.unit(170, "kg"),
  1834. name: "Side",
  1835. image: {
  1836. source: "./media/characters/runnola/side.svg",
  1837. extra: 741 / 448,
  1838. bottom: 0.05
  1839. }
  1840. },
  1841. },
  1842. [
  1843. {
  1844. name: "Small",
  1845. height: math.unit(3, "feet")
  1846. },
  1847. {
  1848. name: "Normal",
  1849. height: math.unit(5 + 5 / 12, "feet"),
  1850. default: true
  1851. },
  1852. {
  1853. name: "Big",
  1854. height: math.unit(10, "feet")
  1855. },
  1856. ]
  1857. ))
  1858. characterMakers.push(() => makeCharacter(
  1859. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  1860. {
  1861. front: {
  1862. height: math.unit(2, "meter"),
  1863. weight: math.unit(50, "kg"),
  1864. name: "Front",
  1865. image: {
  1866. source: "./media/characters/kurribird/front.svg",
  1867. bottom: 0.015
  1868. }
  1869. },
  1870. frontAlt: {
  1871. height: math.unit(1.5, "meter"),
  1872. weight: math.unit(50, "kg"),
  1873. name: "Front (Alt)",
  1874. image: {
  1875. source: "./media/characters/kurribird/front-alt.svg",
  1876. extra: 1.45
  1877. }
  1878. },
  1879. },
  1880. [
  1881. {
  1882. name: "Normal",
  1883. height: math.unit(7, "feet")
  1884. },
  1885. {
  1886. name: "Big",
  1887. height: math.unit(12, "feet"),
  1888. default: true
  1889. },
  1890. {
  1891. name: "Macro",
  1892. height: math.unit(1500, "feet")
  1893. },
  1894. {
  1895. name: "Megamacro",
  1896. height: math.unit(2, "miles")
  1897. }
  1898. ]
  1899. ))
  1900. characterMakers.push(() => makeCharacter(
  1901. { name: "Elbial", species: ["goat", "lion", "demon"], tags: ["anthro"] },
  1902. {
  1903. front: {
  1904. height: math.unit(2, "meter"),
  1905. weight: math.unit(80, "kg"),
  1906. name: "Front",
  1907. image: {
  1908. source: "./media/characters/elbial/front.svg",
  1909. extra: 1643 / 1556,
  1910. bottom: 60.2 / 1696
  1911. }
  1912. },
  1913. side: {
  1914. height: math.unit(2, "meter"),
  1915. weight: math.unit(80, "kg"),
  1916. name: "Side",
  1917. image: {
  1918. source: "./media/characters/elbial/side.svg",
  1919. extra: 1630 / 1565,
  1920. bottom: 71.5 / 1697
  1921. }
  1922. },
  1923. back: {
  1924. height: math.unit(2, "meter"),
  1925. weight: math.unit(80, "kg"),
  1926. name: "Back",
  1927. image: {
  1928. source: "./media/characters/elbial/back.svg",
  1929. extra: 1668 / 1595,
  1930. bottom: 5.6 / 1672
  1931. }
  1932. },
  1933. frontDressed: {
  1934. height: math.unit(2, "meter"),
  1935. weight: math.unit(80, "kg"),
  1936. name: "Front (Dressed)",
  1937. image: {
  1938. source: "./media/characters/elbial/front-dressed.svg",
  1939. extra: 1653 / 1584,
  1940. bottom: 57 / 1708
  1941. }
  1942. },
  1943. genitals: {
  1944. height: math.unit(2 / 3.367, "meter"),
  1945. name: "Genitals",
  1946. image: {
  1947. source: "./media/characters/elbial/genitals.svg"
  1948. }
  1949. },
  1950. },
  1951. [
  1952. {
  1953. name: "Large",
  1954. height: math.unit(100, "feet")
  1955. },
  1956. {
  1957. name: "Macro",
  1958. height: math.unit(500, "feet"),
  1959. default: true
  1960. },
  1961. {
  1962. name: "Megamacro",
  1963. height: math.unit(10, "miles")
  1964. },
  1965. {
  1966. name: "Gigamacro",
  1967. height: math.unit(25000, "miles")
  1968. },
  1969. {
  1970. name: "Full-Size",
  1971. height: math.unit(8000000, "gigaparsecs")
  1972. }
  1973. ]
  1974. ))
  1975. characterMakers.push(() => makeCharacter(
  1976. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  1977. {
  1978. front: {
  1979. height: math.unit(2, "meter"),
  1980. weight: math.unit(60, "kg"),
  1981. name: "Front",
  1982. image: {
  1983. source: "./media/characters/noah/front.svg"
  1984. }
  1985. },
  1986. talons: {
  1987. height: math.unit(0.315, "meter"),
  1988. name: "Talons",
  1989. image: {
  1990. source: "./media/characters/noah/talons.svg"
  1991. }
  1992. }
  1993. },
  1994. [
  1995. {
  1996. name: "Large",
  1997. height: math.unit(50, "feet")
  1998. },
  1999. {
  2000. name: "Macro",
  2001. height: math.unit(750, "feet"),
  2002. default: true
  2003. },
  2004. {
  2005. name: "Megamacro",
  2006. height: math.unit(50, "miles")
  2007. },
  2008. {
  2009. name: "Gigamacro",
  2010. height: math.unit(100000, "miles")
  2011. },
  2012. {
  2013. name: "Full-Size",
  2014. height: math.unit(3000000000, "miles")
  2015. }
  2016. ]
  2017. ))
  2018. characterMakers.push(() => makeCharacter(
  2019. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2020. {
  2021. front: {
  2022. height: math.unit(2, "meter"),
  2023. weight: math.unit(80, "kg"),
  2024. name: "Front",
  2025. image: {
  2026. source: "./media/characters/natalya/front.svg"
  2027. }
  2028. },
  2029. back: {
  2030. height: math.unit(2, "meter"),
  2031. weight: math.unit(80, "kg"),
  2032. name: "Back",
  2033. image: {
  2034. source: "./media/characters/natalya/back.svg"
  2035. }
  2036. }
  2037. },
  2038. [
  2039. {
  2040. name: "Normal",
  2041. height: math.unit(150, "feet"),
  2042. default: true
  2043. },
  2044. {
  2045. name: "Megamacro",
  2046. height: math.unit(5, "miles")
  2047. },
  2048. {
  2049. name: "Full-Size",
  2050. height: math.unit(600, "kiloparsecs")
  2051. }
  2052. ]
  2053. ))
  2054. characterMakers.push(() => makeCharacter(
  2055. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2056. {
  2057. front: {
  2058. height: math.unit(2, "meter"),
  2059. weight: math.unit(50, "kg"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/erestrebah/front.svg",
  2063. extra: 208 / 193,
  2064. bottom: 0.055
  2065. }
  2066. },
  2067. back: {
  2068. height: math.unit(2, "meter"),
  2069. weight: math.unit(50, "kg"),
  2070. name: "Back",
  2071. image: {
  2072. source: "./media/characters/erestrebah/back.svg",
  2073. extra: 1.3
  2074. }
  2075. }
  2076. },
  2077. [
  2078. {
  2079. name: "Normal",
  2080. height: math.unit(10, "feet")
  2081. },
  2082. {
  2083. name: "Large",
  2084. height: math.unit(50, "feet"),
  2085. default: true
  2086. },
  2087. {
  2088. name: "Macro",
  2089. height: math.unit(300, "feet")
  2090. },
  2091. {
  2092. name: "Macro+",
  2093. height: math.unit(750, "feet")
  2094. },
  2095. {
  2096. name: "Megamacro",
  2097. height: math.unit(3, "miles")
  2098. }
  2099. ]
  2100. ))
  2101. characterMakers.push(() => makeCharacter(
  2102. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2103. {
  2104. front: {
  2105. height: math.unit(2, "meter"),
  2106. weight: math.unit(80, "kg"),
  2107. name: "Front",
  2108. image: {
  2109. source: "./media/characters/jennifer/front.svg",
  2110. bottom: 0.11,
  2111. extra: 1.16
  2112. }
  2113. },
  2114. frontAlt: {
  2115. height: math.unit(2, "meter"),
  2116. weight: math.unit(80, "kg"),
  2117. name: "Front (Alt)",
  2118. image: {
  2119. source: "./media/characters/jennifer/front-alt.svg"
  2120. }
  2121. }
  2122. },
  2123. [
  2124. {
  2125. name: "Canon Height",
  2126. height: math.unit(120, "feet"),
  2127. default: true
  2128. },
  2129. {
  2130. name: "Macro+",
  2131. height: math.unit(300, "feet")
  2132. },
  2133. {
  2134. name: "Megamacro",
  2135. height: math.unit(20000, "feet")
  2136. }
  2137. ]
  2138. ))
  2139. characterMakers.push(() => makeCharacter(
  2140. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2141. {
  2142. front: {
  2143. height: math.unit(2, "meter"),
  2144. weight: math.unit(50, "kg"),
  2145. name: "Front",
  2146. image: {
  2147. source: "./media/characters/kalista/front.svg",
  2148. extra: 1947 / 1700,
  2149. bottom: 76.6/1412.98
  2150. }
  2151. },
  2152. back: {
  2153. height: math.unit(2, "meter"),
  2154. weight: math.unit(50, "kg"),
  2155. name: "Back",
  2156. image: {
  2157. source: "./media/characters/kalista/back.svg",
  2158. extra: 1366 / 1156,
  2159. bottom: 33.9/1362.78
  2160. }
  2161. }
  2162. },
  2163. [
  2164. {
  2165. name: "Uncomfortably Small",
  2166. height: math.unit(10, "feet")
  2167. },
  2168. {
  2169. name: "Small",
  2170. height: math.unit(30, "feet")
  2171. },
  2172. {
  2173. name: "Macro",
  2174. height: math.unit(100, "feet"),
  2175. default: true
  2176. },
  2177. {
  2178. name: "Macro+",
  2179. height: math.unit(2000, "feet")
  2180. },
  2181. {
  2182. name: "True Form",
  2183. height: math.unit(8924, "miles")
  2184. }
  2185. ]
  2186. ))
  2187. characterMakers.push(() => makeCharacter(
  2188. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2189. {
  2190. front: {
  2191. height: math.unit(2, "meter"),
  2192. weight: math.unit(120, "kg"),
  2193. name: "Front",
  2194. image: {
  2195. source: "./media/characters/ggv/front.svg"
  2196. }
  2197. },
  2198. side: {
  2199. height: math.unit(2, "meter"),
  2200. weight: math.unit(120, "kg"),
  2201. name: "Side",
  2202. image: {
  2203. source: "./media/characters/ggv/side.svg"
  2204. }
  2205. }
  2206. },
  2207. [
  2208. {
  2209. name: "Extremely Puny",
  2210. height: math.unit(9 + 5 / 12, "feet")
  2211. },
  2212. {
  2213. name: "Horribly Small",
  2214. height: math.unit(47.7, "miles"),
  2215. default: true
  2216. },
  2217. {
  2218. name: "Reasonably Sized",
  2219. height: math.unit(25000, "parsecs")
  2220. },
  2221. {
  2222. name: "Slightly Uncompressed",
  2223. height: math.unit(7.77e31, "parsecs")
  2224. },
  2225. {
  2226. name: "Omniversal",
  2227. height: math.unit(1e300, "meters")
  2228. },
  2229. ]
  2230. ))
  2231. characterMakers.push(() => makeCharacter(
  2232. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2233. {
  2234. front: {
  2235. height: math.unit(2, "meter"),
  2236. weight: math.unit(75, "lb"),
  2237. name: "Front",
  2238. image: {
  2239. source: "./media/characters/napalm/front.svg"
  2240. }
  2241. },
  2242. back: {
  2243. height: math.unit(2, "meter"),
  2244. weight: math.unit(75, "lb"),
  2245. name: "Back",
  2246. image: {
  2247. source: "./media/characters/napalm/back.svg"
  2248. }
  2249. }
  2250. },
  2251. [
  2252. {
  2253. name: "Standard",
  2254. height: math.unit(55, "feet"),
  2255. default: true
  2256. }
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2261. {
  2262. front: {
  2263. height: math.unit(7 + 5 / 6, "feet"),
  2264. weight: math.unit(325, "lb"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/asana/front.svg",
  2268. extra: 1128 / 1068
  2269. }
  2270. },
  2271. back: {
  2272. height: math.unit(7 + 5 / 6, "feet"),
  2273. weight: math.unit(325, "lb"),
  2274. name: "Back",
  2275. image: {
  2276. source: "./media/characters/asana/back.svg",
  2277. extra: 1128 / 1068
  2278. }
  2279. },
  2280. },
  2281. [
  2282. {
  2283. name: "Standard",
  2284. height: math.unit(7 + 5 / 6, "feet"),
  2285. default: true
  2286. },
  2287. {
  2288. name: "Large",
  2289. height: math.unit(10, "meters")
  2290. },
  2291. {
  2292. name: "Macro",
  2293. height: math.unit(2500, "meters")
  2294. },
  2295. {
  2296. name: "Megamacro",
  2297. height: math.unit(5e6, "meters")
  2298. },
  2299. {
  2300. name: "Examacro",
  2301. height: math.unit(5e12, "lightyears")
  2302. },
  2303. {
  2304. name: "Max Size",
  2305. height: math.unit(1e31, "lightyears")
  2306. }
  2307. ]
  2308. ))
  2309. characterMakers.push(() => makeCharacter(
  2310. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  2311. {
  2312. front: {
  2313. height: math.unit(2, "meter"),
  2314. weight: math.unit(60, "kg"),
  2315. name: "Front",
  2316. image: {
  2317. source: "./media/characters/ebony/front.svg",
  2318. bottom: 0.03,
  2319. extra: 1045 / 810 + 0.03
  2320. }
  2321. },
  2322. side: {
  2323. height: math.unit(2, "meter"),
  2324. weight: math.unit(60, "kg"),
  2325. name: "Side",
  2326. image: {
  2327. source: "./media/characters/ebony/side.svg",
  2328. bottom: 0.03,
  2329. extra: 1045 / 810 + 0.03
  2330. }
  2331. },
  2332. back: {
  2333. height: math.unit(2, "meter"),
  2334. weight: math.unit(60, "kg"),
  2335. name: "Back",
  2336. image: {
  2337. source: "./media/characters/ebony/back.svg",
  2338. bottom: 0.01,
  2339. extra: 1045 / 810 + 0.01
  2340. }
  2341. },
  2342. },
  2343. [
  2344. // TODO check why I did this lol
  2345. {
  2346. name: "Standard",
  2347. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  2348. default: true
  2349. },
  2350. {
  2351. name: "Macro",
  2352. height: math.unit(200, "feet")
  2353. },
  2354. {
  2355. name: "Gigamacro",
  2356. height: math.unit(13000, "km")
  2357. }
  2358. ]
  2359. ))
  2360. characterMakers.push(() => makeCharacter(
  2361. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  2362. {
  2363. front: {
  2364. height: math.unit(6, "feet"),
  2365. weight: math.unit(175, "lb"),
  2366. name: "Front",
  2367. image: {
  2368. source: "./media/characters/mountain/front.svg"
  2369. }
  2370. },
  2371. back: {
  2372. height: math.unit(6, "feet"),
  2373. weight: math.unit(175, "lb"),
  2374. name: "Back",
  2375. image: {
  2376. source: "./media/characters/mountain/back.svg"
  2377. }
  2378. },
  2379. },
  2380. [
  2381. {
  2382. name: "Large",
  2383. height: math.unit(20, "meters")
  2384. },
  2385. {
  2386. name: "Macro",
  2387. height: math.unit(300, "meters")
  2388. },
  2389. {
  2390. name: "Gigamacro",
  2391. height: math.unit(10000, "km"),
  2392. default: true
  2393. },
  2394. {
  2395. name: "Examacro",
  2396. height: math.unit(10e9, "lightyears")
  2397. }
  2398. ]
  2399. ))
  2400. characterMakers.push(() => makeCharacter(
  2401. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  2402. {
  2403. front: {
  2404. height: math.unit(8, "feet"),
  2405. weight: math.unit(500, "lb"),
  2406. name: "Front",
  2407. image: {
  2408. source: "./media/characters/rick/front.svg"
  2409. }
  2410. }
  2411. },
  2412. [
  2413. {
  2414. name: "Normal",
  2415. height: math.unit(8, "feet"),
  2416. default: true
  2417. },
  2418. {
  2419. name: "Macro",
  2420. height: math.unit(5, "km")
  2421. }
  2422. ]
  2423. ))
  2424. characterMakers.push(() => makeCharacter(
  2425. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  2426. {
  2427. front: {
  2428. height: math.unit(8, "feet"),
  2429. weight: math.unit(120, "lb"),
  2430. name: "Front",
  2431. image: {
  2432. source: "./media/characters/ona/front.svg"
  2433. }
  2434. },
  2435. frontAlt: {
  2436. height: math.unit(8, "feet"),
  2437. weight: math.unit(120, "lb"),
  2438. name: "Front (Alt)",
  2439. image: {
  2440. source: "./media/characters/ona/front-alt.svg"
  2441. }
  2442. },
  2443. back: {
  2444. height: math.unit(8, "feet"),
  2445. weight: math.unit(120, "lb"),
  2446. name: "Back",
  2447. image: {
  2448. source: "./media/characters/ona/back.svg"
  2449. }
  2450. },
  2451. foot: {
  2452. height: math.unit(1.1, "feet"),
  2453. name: "Foot",
  2454. image: {
  2455. source: "./media/characters/ona/foot.svg"
  2456. }
  2457. }
  2458. },
  2459. [
  2460. {
  2461. name: "Megamacro",
  2462. height: math.unit(70, "km"),
  2463. default: true
  2464. },
  2465. {
  2466. name: "Gigamacro",
  2467. height: math.unit(681818, "miles")
  2468. },
  2469. {
  2470. name: "Examacro",
  2471. height: math.unit(3800000, "lightyears")
  2472. },
  2473. ]
  2474. ))
  2475. characterMakers.push(() => makeCharacter(
  2476. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  2477. {
  2478. front: {
  2479. height: math.unit(12, "feet"),
  2480. weight: math.unit(3000, "lb"),
  2481. name: "Front",
  2482. image: {
  2483. source: "./media/characters/mech/front.svg",
  2484. bottom: 0.025,
  2485. }
  2486. },
  2487. back: {
  2488. height: math.unit(12, "feet"),
  2489. weight: math.unit(3000, "lb"),
  2490. name: "Back",
  2491. image: {
  2492. source: "./media/characters/mech/back.svg",
  2493. bottom: 0.03,
  2494. }
  2495. }
  2496. },
  2497. [
  2498. {
  2499. name: "Normal",
  2500. height: math.unit(12, "feet")
  2501. },
  2502. {
  2503. name: "Macro",
  2504. height: math.unit(300, "feet"),
  2505. default: true
  2506. },
  2507. {
  2508. name: "Macro+",
  2509. height: math.unit(1500, "feet")
  2510. },
  2511. ]
  2512. ))
  2513. characterMakers.push(() => makeCharacter(
  2514. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  2515. {
  2516. front: {
  2517. height: math.unit(1.3, "meter"),
  2518. weight: math.unit(30, "kg"),
  2519. name: "Front",
  2520. image: {
  2521. source: "./media/characters/gregory/front.svg",
  2522. }
  2523. }
  2524. },
  2525. [
  2526. {
  2527. name: "Normal",
  2528. height: math.unit(1.3, "meter"),
  2529. default: true
  2530. },
  2531. {
  2532. name: "Macro",
  2533. height: math.unit(20, "meter")
  2534. }
  2535. ]
  2536. ))
  2537. characterMakers.push(() => makeCharacter(
  2538. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  2539. {
  2540. front: {
  2541. height: math.unit(2.8, "meter"),
  2542. weight: math.unit(200, "kg"),
  2543. name: "Front",
  2544. image: {
  2545. source: "./media/characters/elory/front.svg",
  2546. }
  2547. }
  2548. },
  2549. [
  2550. {
  2551. name: "Normal",
  2552. height: math.unit(2.8, "meter"),
  2553. default: true
  2554. },
  2555. {
  2556. name: "Macro",
  2557. height: math.unit(38, "meter")
  2558. }
  2559. ]
  2560. ))
  2561. characterMakers.push(() => makeCharacter(
  2562. { name: "Angelpatamon", species: ["patamon"], tags: ["anthro"] },
  2563. {
  2564. front: {
  2565. height: math.unit(470, "feet"),
  2566. weight: math.unit(924, "tons"),
  2567. name: "Front",
  2568. image: {
  2569. source: "./media/characters/angelpatamon/front.svg",
  2570. }
  2571. }
  2572. },
  2573. [
  2574. {
  2575. name: "Normal",
  2576. height: math.unit(470, "feet"),
  2577. default: true
  2578. },
  2579. {
  2580. name: "Deity Size I",
  2581. height: math.unit(28651.2, "km")
  2582. },
  2583. {
  2584. name: "Deity Size II",
  2585. height: math.unit(171907.2, "km")
  2586. }
  2587. ]
  2588. ))
  2589. characterMakers.push(() => makeCharacter(
  2590. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  2591. {
  2592. side: {
  2593. height: math.unit(7.2, "meter"),
  2594. weight: math.unit(8.2, "tons"),
  2595. name: "Side",
  2596. image: {
  2597. source: "./media/characters/cryae/side.svg",
  2598. extra: 3500 / 1500
  2599. }
  2600. }
  2601. },
  2602. [
  2603. {
  2604. name: "Normal",
  2605. height: math.unit(7.2, "meter"),
  2606. default: true
  2607. }
  2608. ]
  2609. ))
  2610. characterMakers.push(() => makeCharacter(
  2611. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  2612. {
  2613. front: {
  2614. height: math.unit(6, "feet"),
  2615. weight: math.unit(175, "lb"),
  2616. name: "Front",
  2617. image: {
  2618. source: "./media/characters/xera/front.svg",
  2619. extra: 2300 / 2061
  2620. }
  2621. },
  2622. side: {
  2623. height: math.unit(6, "feet"),
  2624. weight: math.unit(175, "lb"),
  2625. name: "Side",
  2626. image: {
  2627. source: "./media/characters/xera/side.svg",
  2628. extra: 2300 / 2061
  2629. }
  2630. },
  2631. back: {
  2632. height: math.unit(6, "feet"),
  2633. weight: math.unit(175, "lb"),
  2634. name: "Back",
  2635. image: {
  2636. source: "./media/characters/xera/back.svg"
  2637. }
  2638. },
  2639. },
  2640. [
  2641. {
  2642. name: "Small",
  2643. height: math.unit(10, "feet")
  2644. },
  2645. {
  2646. name: "Macro",
  2647. height: math.unit(500, "meters"),
  2648. default: true
  2649. },
  2650. {
  2651. name: "Macro+",
  2652. height: math.unit(10, "km")
  2653. },
  2654. {
  2655. name: "Gigamacro",
  2656. height: math.unit(25000, "km")
  2657. },
  2658. {
  2659. name: "Teramacro",
  2660. height: math.unit(3e6, "km")
  2661. }
  2662. ]
  2663. ))
  2664. characterMakers.push(() => makeCharacter(
  2665. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  2666. {
  2667. front: {
  2668. height: math.unit(6, "feet"),
  2669. weight: math.unit(175, "lb"),
  2670. name: "Front",
  2671. image: {
  2672. source: "./media/characters/nebula/front.svg",
  2673. extra: 2600 / 2450
  2674. }
  2675. }
  2676. },
  2677. [
  2678. {
  2679. name: "Small",
  2680. height: math.unit(4.5, "meters")
  2681. },
  2682. {
  2683. name: "Macro",
  2684. height: math.unit(1500, "meters"),
  2685. default: true
  2686. },
  2687. {
  2688. name: "Megamacro",
  2689. height: math.unit(150, "km")
  2690. },
  2691. {
  2692. name: "Gigamacro",
  2693. height: math.unit(27000, "km")
  2694. }
  2695. ]
  2696. ))
  2697. characterMakers.push(() => makeCharacter(
  2698. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  2699. {
  2700. front: {
  2701. height: math.unit(6, "feet"),
  2702. weight: math.unit(225, "lb"),
  2703. name: "Front",
  2704. image: {
  2705. source: "./media/characters/abysgar/front.svg"
  2706. }
  2707. }
  2708. },
  2709. [
  2710. {
  2711. name: "Small",
  2712. height: math.unit(4.5, "meters")
  2713. },
  2714. {
  2715. name: "Macro",
  2716. height: math.unit(1250, "meters"),
  2717. default: true
  2718. },
  2719. {
  2720. name: "Megamacro",
  2721. height: math.unit(125, "km")
  2722. },
  2723. {
  2724. name: "Gigamacro",
  2725. height: math.unit(26000, "km")
  2726. }
  2727. ]
  2728. ))
  2729. characterMakers.push(() => makeCharacter(
  2730. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  2731. {
  2732. front: {
  2733. height: math.unit(6, "feet"),
  2734. weight: math.unit(180, "lb"),
  2735. name: "Front",
  2736. image: {
  2737. source: "./media/characters/yakuz/front.svg"
  2738. }
  2739. }
  2740. },
  2741. [
  2742. {
  2743. name: "Small",
  2744. height: math.unit(5, "meters")
  2745. },
  2746. {
  2747. name: "Macro",
  2748. height: math.unit(1500, "meters"),
  2749. default: true
  2750. },
  2751. {
  2752. name: "Megamacro",
  2753. height: math.unit(200, "km")
  2754. },
  2755. {
  2756. name: "Gigamacro",
  2757. height: math.unit(100000, "km")
  2758. }
  2759. ]
  2760. ))
  2761. characterMakers.push(() => makeCharacter(
  2762. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  2763. {
  2764. front: {
  2765. height: math.unit(6, "feet"),
  2766. weight: math.unit(175, "lb"),
  2767. name: "Front",
  2768. image: {
  2769. source: "./media/characters/mirova/front.svg"
  2770. }
  2771. }
  2772. },
  2773. [
  2774. {
  2775. name: "Small",
  2776. height: math.unit(5, "meters")
  2777. },
  2778. {
  2779. name: "Macro",
  2780. height: math.unit(900, "meters"),
  2781. default: true
  2782. },
  2783. {
  2784. name: "Megamacro",
  2785. height: math.unit(135, "km")
  2786. },
  2787. {
  2788. name: "Gigamacro",
  2789. height: math.unit(20000, "km")
  2790. }
  2791. ]
  2792. ))
  2793. characterMakers.push(() => makeCharacter(
  2794. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  2795. {
  2796. side: {
  2797. height: math.unit(28.35, "feet"),
  2798. weight: math.unit(99.75, "tons"),
  2799. name: "Side",
  2800. image: {
  2801. source: "./media/characters/asana-mech/side.svg"
  2802. }
  2803. }
  2804. },
  2805. [
  2806. {
  2807. name: "Normal",
  2808. height: math.unit(28.35, "feet"),
  2809. default: true
  2810. },
  2811. {
  2812. name: "Macro",
  2813. height: math.unit(2500, "feet")
  2814. },
  2815. {
  2816. name: "Megamacro",
  2817. height: math.unit(25, "miles")
  2818. },
  2819. {
  2820. name: "Examacro",
  2821. height: math.unit(6e8, "lightyears")
  2822. },
  2823. ]
  2824. ))
  2825. characterMakers.push(() => makeCharacter(
  2826. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  2827. {
  2828. front: {
  2829. height: math.unit(2, "meters"),
  2830. weight: math.unit(70, "kg"),
  2831. name: "Front",
  2832. image: {
  2833. source: "./media/characters/ashtrek/front.svg",
  2834. extra: 560 / 524,
  2835. bottom: 0.01
  2836. }
  2837. },
  2838. frontArmor: {
  2839. height: math.unit(2, "meters"),
  2840. weight: math.unit(76, "kg"),
  2841. name: "Front (Armor)",
  2842. image: {
  2843. source: "./media/characters/ashtrek/front-armor.svg",
  2844. extra: 561 / 527,
  2845. bottom: 0.01
  2846. }
  2847. },
  2848. side: {
  2849. height: math.unit(2, "meters"),
  2850. weight: math.unit(70, "kg"),
  2851. name: "Side",
  2852. image: {
  2853. source: "./media/characters/ashtrek/side.svg",
  2854. extra: 1717 / 1609,
  2855. bottom: 0.005
  2856. }
  2857. },
  2858. back: {
  2859. height: math.unit(2, "meters"),
  2860. weight: math.unit(70, "kg"),
  2861. name: "Back",
  2862. image: {
  2863. source: "./media/characters/ashtrek/back.svg",
  2864. extra: 1570 / 1501
  2865. }
  2866. },
  2867. },
  2868. [
  2869. {
  2870. name: "DEFCON 5",
  2871. height: math.unit(5, "meters")
  2872. },
  2873. {
  2874. name: "DEFCON 4",
  2875. height: math.unit(500, "meters"),
  2876. default: true
  2877. },
  2878. {
  2879. name: "DEFCON 3",
  2880. height: math.unit(5, "km")
  2881. },
  2882. {
  2883. name: "DEFCON 2",
  2884. height: math.unit(500, "km")
  2885. },
  2886. {
  2887. name: "DEFCON 1",
  2888. height: math.unit(500000, "km")
  2889. },
  2890. {
  2891. name: "DEFCON 0",
  2892. height: math.unit(3, "gigaparsecs")
  2893. },
  2894. ]
  2895. ))
  2896. characterMakers.push(() => makeCharacter(
  2897. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  2898. {
  2899. front: {
  2900. height: math.unit(2, "meters"),
  2901. weight: math.unit(76, "kg"),
  2902. name: "Front",
  2903. image: {
  2904. source: "./media/characters/gale/front.svg"
  2905. }
  2906. },
  2907. frontAlt1: {
  2908. height: math.unit(2, "meters"),
  2909. weight: math.unit(76, "kg"),
  2910. name: "Front (Alt 1)",
  2911. image: {
  2912. source: "./media/characters/gale/front-alt-1.svg"
  2913. }
  2914. },
  2915. frontAlt2: {
  2916. height: math.unit(2, "meters"),
  2917. weight: math.unit(76, "kg"),
  2918. name: "Front (Alt 2)",
  2919. image: {
  2920. source: "./media/characters/gale/front-alt-2.svg"
  2921. }
  2922. },
  2923. },
  2924. [
  2925. {
  2926. name: "Normal",
  2927. height: math.unit(7, "feet")
  2928. },
  2929. {
  2930. name: "Macro",
  2931. height: math.unit(150, "feet"),
  2932. default: true
  2933. },
  2934. {
  2935. name: "Macro+",
  2936. height: math.unit(300, "feet")
  2937. },
  2938. ]
  2939. ))
  2940. characterMakers.push(() => makeCharacter(
  2941. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  2942. {
  2943. front: {
  2944. height: math.unit(2, "meters"),
  2945. weight: math.unit(76, "kg"),
  2946. name: "Front",
  2947. image: {
  2948. source: "./media/characters/draylen/front.svg"
  2949. }
  2950. }
  2951. },
  2952. [
  2953. {
  2954. name: "Macro",
  2955. height: math.unit(150, "feet"),
  2956. default: true
  2957. }
  2958. ]
  2959. ))
  2960. characterMakers.push(() => makeCharacter(
  2961. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  2962. {
  2963. front: {
  2964. height: math.unit(7 + 9 / 12, "feet"),
  2965. weight: math.unit(379, "lbs"),
  2966. name: "Front",
  2967. image: {
  2968. source: "./media/characters/chez/front.svg"
  2969. }
  2970. },
  2971. side: {
  2972. height: math.unit(7 + 9 / 12, "feet"),
  2973. weight: math.unit(379, "lbs"),
  2974. name: "Side",
  2975. image: {
  2976. source: "./media/characters/chez/side.svg"
  2977. }
  2978. }
  2979. },
  2980. [
  2981. {
  2982. name: "Normal",
  2983. height: math.unit(7 + 9 / 12, "feet"),
  2984. default: true
  2985. },
  2986. {
  2987. name: "God King",
  2988. height: math.unit(9750000, "meters")
  2989. }
  2990. ]
  2991. ))
  2992. characterMakers.push(() => makeCharacter(
  2993. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  2994. {
  2995. front: {
  2996. height: math.unit(6, "feet"),
  2997. weight: math.unit(275, "lbs"),
  2998. name: "Front",
  2999. image: {
  3000. source: "./media/characters/kaylum/front.svg",
  3001. bottom: 0.01,
  3002. extra: 1166 / 1031
  3003. }
  3004. },
  3005. frontWingless: {
  3006. height: math.unit(6, "feet"),
  3007. weight: math.unit(275, "lbs"),
  3008. name: "Front (Wingless)",
  3009. image: {
  3010. source: "./media/characters/kaylum/front-wingless.svg",
  3011. bottom: 0.01,
  3012. extra: 1117 / 1031
  3013. }
  3014. }
  3015. },
  3016. [
  3017. {
  3018. name: "Normal",
  3019. height: math.unit(3.05, "meters")
  3020. },
  3021. {
  3022. name: "Master",
  3023. height: math.unit(5.5, "meters")
  3024. },
  3025. {
  3026. name: "Rampage",
  3027. height: math.unit(19, "meters")
  3028. },
  3029. {
  3030. name: "Macro Lite",
  3031. height: math.unit(37, "meters")
  3032. },
  3033. {
  3034. name: "Hyper Predator",
  3035. height: math.unit(61, "meters")
  3036. },
  3037. {
  3038. name: "Macro",
  3039. height: math.unit(138, "meters"),
  3040. default: true
  3041. }
  3042. ]
  3043. ))
  3044. characterMakers.push(() => makeCharacter(
  3045. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3046. {
  3047. front: {
  3048. height: math.unit(6, "feet"),
  3049. weight: math.unit(150, "lbs"),
  3050. name: "Front",
  3051. image: {
  3052. source: "./media/characters/geta/front.svg"
  3053. }
  3054. }
  3055. },
  3056. [
  3057. {
  3058. name: "Micro",
  3059. height: math.unit(3, "inches"),
  3060. default: true
  3061. },
  3062. {
  3063. name: "Normal",
  3064. height: math.unit(5 + 5 / 12, "feet")
  3065. }
  3066. ]
  3067. ))
  3068. characterMakers.push(() => makeCharacter(
  3069. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3070. {
  3071. front: {
  3072. height: math.unit(6, "feet"),
  3073. weight: math.unit(300, "lbs"),
  3074. name: "Front",
  3075. image: {
  3076. source: "./media/characters/tyrnn/front.svg"
  3077. }
  3078. }
  3079. },
  3080. [
  3081. {
  3082. name: "Main Height",
  3083. height: math.unit(355, "feet"),
  3084. default: true
  3085. },
  3086. {
  3087. name: "Fave. Height",
  3088. height: math.unit(2400, "feet")
  3089. }
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3094. {
  3095. front: {
  3096. height: math.unit(6, "feet"),
  3097. weight: math.unit(300, "lbs"),
  3098. name: "Front",
  3099. image: {
  3100. source: "./media/characters/appledectomy/front.svg"
  3101. }
  3102. }
  3103. },
  3104. [
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(2500, "feet")
  3108. },
  3109. {
  3110. name: "Megamacro",
  3111. height: math.unit(50, "miles"),
  3112. default: true
  3113. },
  3114. {
  3115. name: "Gigamacro",
  3116. height: math.unit(5000, "miles")
  3117. },
  3118. {
  3119. name: "Teramacro",
  3120. height: math.unit(250000, "miles")
  3121. },
  3122. ]
  3123. ))
  3124. characterMakers.push(() => makeCharacter(
  3125. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3126. {
  3127. front: {
  3128. height: math.unit(6, "feet"),
  3129. weight: math.unit(200, "lbs"),
  3130. name: "Front",
  3131. image: {
  3132. source: "./media/characters/vulpes/front.svg",
  3133. extra: 573 / 543,
  3134. bottom: 0.033
  3135. }
  3136. },
  3137. side: {
  3138. height: math.unit(6, "feet"),
  3139. weight: math.unit(200, "lbs"),
  3140. name: "Side",
  3141. image: {
  3142. source: "./media/characters/vulpes/side.svg",
  3143. extra: 573 / 543,
  3144. bottom: 0.01
  3145. }
  3146. },
  3147. back: {
  3148. height: math.unit(6, "feet"),
  3149. weight: math.unit(200, "lbs"),
  3150. name: "Back",
  3151. image: {
  3152. source: "./media/characters/vulpes/back.svg",
  3153. extra: 573 / 543,
  3154. }
  3155. },
  3156. feet: {
  3157. height: math.unit(1.276, "feet"),
  3158. name: "Feet",
  3159. image: {
  3160. source: "./media/characters/vulpes/feet.svg"
  3161. }
  3162. },
  3163. maw: {
  3164. height: math.unit(1.18, "feet"),
  3165. name: "Maw",
  3166. image: {
  3167. source: "./media/characters/vulpes/maw.svg"
  3168. }
  3169. },
  3170. },
  3171. [
  3172. {
  3173. name: "Micro",
  3174. height: math.unit(2, "inches")
  3175. },
  3176. {
  3177. name: "Normal",
  3178. height: math.unit(6.3, "feet")
  3179. },
  3180. {
  3181. name: "Macro",
  3182. height: math.unit(850, "feet")
  3183. },
  3184. {
  3185. name: "Megamacro",
  3186. height: math.unit(7500, "feet"),
  3187. default: true
  3188. },
  3189. {
  3190. name: "Gigamacro",
  3191. height: math.unit(570000, "miles")
  3192. }
  3193. ]
  3194. ))
  3195. characterMakers.push(() => makeCharacter(
  3196. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3197. {
  3198. front: {
  3199. height: math.unit(6, "feet"),
  3200. weight: math.unit(210, "lbs"),
  3201. name: "Front",
  3202. image: {
  3203. source: "./media/characters/rain-fallen/front.svg"
  3204. }
  3205. },
  3206. side: {
  3207. height: math.unit(6, "feet"),
  3208. weight: math.unit(210, "lbs"),
  3209. name: "Side",
  3210. image: {
  3211. source: "./media/characters/rain-fallen/side.svg"
  3212. }
  3213. },
  3214. back: {
  3215. height: math.unit(6, "feet"),
  3216. weight: math.unit(210, "lbs"),
  3217. name: "Back",
  3218. image: {
  3219. source: "./media/characters/rain-fallen/back.svg"
  3220. }
  3221. },
  3222. feral: {
  3223. height: math.unit(9, "feet"),
  3224. weight: math.unit(700, "lbs"),
  3225. name: "Feral",
  3226. image: {
  3227. source: "./media/characters/rain-fallen/feral.svg"
  3228. }
  3229. },
  3230. },
  3231. [
  3232. {
  3233. name: "Normal",
  3234. height: math.unit(5, "meter")
  3235. },
  3236. {
  3237. name: "Macro",
  3238. height: math.unit(150, "meter"),
  3239. default: true
  3240. },
  3241. {
  3242. name: "Megamacro",
  3243. height: math.unit(278e6, "meter")
  3244. },
  3245. {
  3246. name: "Gigamacro",
  3247. height: math.unit(2e9, "meter")
  3248. },
  3249. {
  3250. name: "Teramacro",
  3251. height: math.unit(8e12, "meter")
  3252. },
  3253. {
  3254. name: "Devourer",
  3255. height: math.unit(14, "zettameters")
  3256. },
  3257. {
  3258. name: "Scarlet King",
  3259. height: math.unit(18, "yottameters")
  3260. },
  3261. {
  3262. name: "Void",
  3263. height: math.unit(6.66e66, "yottameters")
  3264. }
  3265. ]
  3266. ))
  3267. characterMakers.push(() => makeCharacter(
  3268. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  3269. {
  3270. standing: {
  3271. height: math.unit(6, "feet"),
  3272. weight: math.unit(180, "lbs"),
  3273. name: "Standing",
  3274. image: {
  3275. source: "./media/characters/zaakira/standing.svg"
  3276. }
  3277. },
  3278. laying: {
  3279. height: math.unit(3, "feet"),
  3280. weight: math.unit(180, "lbs"),
  3281. name: "Laying",
  3282. image: {
  3283. source: "./media/characters/zaakira/laying.svg"
  3284. }
  3285. },
  3286. },
  3287. [
  3288. {
  3289. name: "Normal",
  3290. height: math.unit(12, "feet")
  3291. },
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(279, "feet"),
  3295. default: true
  3296. }
  3297. ]
  3298. ))
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  3301. {
  3302. front: {
  3303. height: math.unit(6, "feet"),
  3304. weight: math.unit(250, "lbs"),
  3305. name: "Front",
  3306. image: {
  3307. source: "./media/characters/sigvald/front.svg",
  3308. extra: 1000 / 850
  3309. }
  3310. },
  3311. back: {
  3312. height: math.unit(6, "feet"),
  3313. weight: math.unit(250, "lbs"),
  3314. name: "Back",
  3315. image: {
  3316. source: "./media/characters/sigvald/back.svg"
  3317. }
  3318. },
  3319. },
  3320. [
  3321. {
  3322. name: "Normal",
  3323. height: math.unit(8, "feet")
  3324. },
  3325. {
  3326. name: "Large",
  3327. height: math.unit(12, "feet")
  3328. },
  3329. {
  3330. name: "Larger",
  3331. height: math.unit(20, "feet")
  3332. },
  3333. {
  3334. name: "Macro",
  3335. height: math.unit(150, "feet")
  3336. },
  3337. {
  3338. name: "Macro+",
  3339. height: math.unit(200, "feet"),
  3340. default: true
  3341. },
  3342. ]
  3343. ))
  3344. characterMakers.push(() => makeCharacter(
  3345. { name: "Scott", species: ["fox"], tags: ["taur"] },
  3346. {
  3347. side: {
  3348. height: math.unit(12, "feet"),
  3349. weight: math.unit(2000, "kg"),
  3350. name: "Side",
  3351. image: {
  3352. source: "./media/characters/scott/side.svg",
  3353. extra: 754/724,
  3354. bottom: 0.069
  3355. }
  3356. },
  3357. upright: {
  3358. height: math.unit(12, "feet"),
  3359. weight: math.unit(2000, "kg"),
  3360. name: "Upright",
  3361. image: {
  3362. source: "./media/characters/scott/upright.svg",
  3363. extra: 3881/3722,
  3364. bottom: 0.05
  3365. }
  3366. },
  3367. },
  3368. [
  3369. {
  3370. name: "Normal",
  3371. height: math.unit(12, "feet"),
  3372. default: true
  3373. },
  3374. ]
  3375. ))
  3376. characterMakers.push(() => makeCharacter(
  3377. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  3378. {
  3379. side: {
  3380. height: math.unit(8, "meters"),
  3381. weight: math.unit(84755, "lbs"),
  3382. name: "Side",
  3383. image: {
  3384. source: "./media/characters/tobias/side.svg",
  3385. extra: 1474 / 1096,
  3386. bottom: 38.9 / 1513.1235
  3387. }
  3388. },
  3389. },
  3390. [
  3391. {
  3392. name: "Normal",
  3393. height: math.unit(8, "meters"),
  3394. default: true
  3395. },
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  3400. {
  3401. front: {
  3402. height: math.unit(5.5, "feet"),
  3403. weight: math.unit(400, "lbs"),
  3404. name: "Front",
  3405. image: {
  3406. source: "./media/characters/kieran/front.svg",
  3407. extra: 2694/2364,
  3408. bottom: 217/2908
  3409. }
  3410. },
  3411. side: {
  3412. height: math.unit(5.5, "feet"),
  3413. weight: math.unit(400, "lbs"),
  3414. name: "Side",
  3415. image: {
  3416. source: "./media/characters/kieran/side.svg",
  3417. extra: 875/777,
  3418. bottom: 84.6/959
  3419. }
  3420. },
  3421. },
  3422. [
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(5.5, "feet"),
  3426. default: true
  3427. },
  3428. ]
  3429. ))
  3430. characterMakers.push(() => makeCharacter(
  3431. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  3432. {
  3433. side: {
  3434. height: math.unit(2, "meters"),
  3435. weight: math.unit(70, "kg"),
  3436. name: "Side",
  3437. image: {
  3438. source: "./media/characters/sanya/side.svg",
  3439. bottom: 0.02,
  3440. extra: 1.02
  3441. }
  3442. },
  3443. },
  3444. [
  3445. {
  3446. name: "Small",
  3447. height: math.unit(2, "meters")
  3448. },
  3449. {
  3450. name: "Normal",
  3451. height: math.unit(3, "meters")
  3452. },
  3453. {
  3454. name: "Macro",
  3455. height: math.unit(16, "meters"),
  3456. default: true
  3457. },
  3458. ]
  3459. ))
  3460. characterMakers.push(() => makeCharacter(
  3461. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  3462. {
  3463. side: {
  3464. height: math.unit(2, "meters"),
  3465. weight: math.unit(120, "kg"),
  3466. name: "Front",
  3467. image: {
  3468. source: "./media/characters/miranda/front.svg",
  3469. extra: 10.6 / 10
  3470. }
  3471. },
  3472. },
  3473. [
  3474. {
  3475. name: "Normal",
  3476. height: math.unit(10, "feet"),
  3477. default: true
  3478. }
  3479. ]
  3480. ))
  3481. characterMakers.push(() => makeCharacter(
  3482. { name: "James", species: ["deer"], tags: ["anthro"] },
  3483. {
  3484. side: {
  3485. height: math.unit(2, "meters"),
  3486. weight: math.unit(100, "kg"),
  3487. name: "Front",
  3488. image: {
  3489. source: "./media/characters/james/front.svg",
  3490. extra: 10 / 8.5
  3491. }
  3492. },
  3493. },
  3494. [
  3495. {
  3496. name: "Normal",
  3497. height: math.unit(8.5, "feet"),
  3498. default: true
  3499. }
  3500. ]
  3501. ))
  3502. characterMakers.push(() => makeCharacter(
  3503. { name: "Heather", species: ["cow"], tags: ["taur"] },
  3504. {
  3505. side: {
  3506. height: math.unit(9.5, "feet"),
  3507. weight: math.unit(2500, "lbs"),
  3508. name: "Side",
  3509. image: {
  3510. source: "./media/characters/heather/side.svg"
  3511. }
  3512. },
  3513. },
  3514. [
  3515. {
  3516. name: "Normal",
  3517. height: math.unit(9.5, "feet"),
  3518. default: true
  3519. }
  3520. ]
  3521. ))
  3522. characterMakers.push(() => makeCharacter(
  3523. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  3524. {
  3525. side: {
  3526. height: math.unit(6.5, "feet"),
  3527. weight: math.unit(400, "lbs"),
  3528. name: "Side",
  3529. image: {
  3530. source: "./media/characters/lukas/side.svg",
  3531. extra: 7.25 / 6.5
  3532. }
  3533. },
  3534. },
  3535. [
  3536. {
  3537. name: "Normal",
  3538. height: math.unit(6.5, "feet"),
  3539. default: true
  3540. }
  3541. ]
  3542. ))
  3543. characterMakers.push(() => makeCharacter(
  3544. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  3545. {
  3546. side: {
  3547. height: math.unit(5, "feet"),
  3548. weight: math.unit(3000, "lbs"),
  3549. name: "Side",
  3550. image: {
  3551. source: "./media/characters/louise/side.svg"
  3552. }
  3553. },
  3554. },
  3555. [
  3556. {
  3557. name: "Normal",
  3558. height: math.unit(5, "feet"),
  3559. default: true
  3560. }
  3561. ]
  3562. ))
  3563. characterMakers.push(() => makeCharacter(
  3564. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  3565. {
  3566. side: {
  3567. height: math.unit(6, "feet"),
  3568. weight: math.unit(150, "lbs"),
  3569. name: "Side",
  3570. image: {
  3571. source: "./media/characters/ramona/side.svg"
  3572. }
  3573. },
  3574. },
  3575. [
  3576. {
  3577. name: "Normal",
  3578. height: math.unit(5.3, "meters"),
  3579. default: true
  3580. },
  3581. {
  3582. name: "Macro",
  3583. height: math.unit(20, "stories")
  3584. },
  3585. {
  3586. name: "Macro+",
  3587. height: math.unit(50, "stories")
  3588. },
  3589. ]
  3590. ))
  3591. characterMakers.push(() => makeCharacter(
  3592. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  3593. {
  3594. standing: {
  3595. height: math.unit(5.75, "feet"),
  3596. weight: math.unit(160, "lbs"),
  3597. name: "Standing",
  3598. image: {
  3599. source: "./media/characters/deerpuff/standing.svg",
  3600. extra: 682 / 624
  3601. }
  3602. },
  3603. sitting: {
  3604. height: math.unit(5.75 / 1.79, "feet"),
  3605. weight: math.unit(160, "lbs"),
  3606. name: "Sitting",
  3607. image: {
  3608. source: "./media/characters/deerpuff/sitting.svg",
  3609. bottom: 44 / 400,
  3610. extra: 1
  3611. }
  3612. },
  3613. taurLaying: {
  3614. height: math.unit(6, "feet"),
  3615. weight: math.unit(400, "lbs"),
  3616. name: "Taur (Laying)",
  3617. image: {
  3618. source: "./media/characters/deerpuff/taur-laying.svg"
  3619. }
  3620. },
  3621. },
  3622. [
  3623. {
  3624. name: "Puffball",
  3625. height: math.unit(6, "inches")
  3626. },
  3627. {
  3628. name: "Normalpuff",
  3629. height: math.unit(5.75, "feet")
  3630. },
  3631. {
  3632. name: "Macropuff",
  3633. height: math.unit(1500, "feet"),
  3634. default: true
  3635. },
  3636. {
  3637. name: "Megapuff",
  3638. height: math.unit(500, "miles")
  3639. },
  3640. {
  3641. name: "Gigapuff",
  3642. height: math.unit(250000, "miles")
  3643. },
  3644. {
  3645. name: "Omegapuff",
  3646. height: math.unit(1000, "lightyears")
  3647. },
  3648. ]
  3649. ))
  3650. characterMakers.push(() => makeCharacter(
  3651. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  3652. {
  3653. stomping: {
  3654. height: math.unit(6, "feet"),
  3655. weight: math.unit(170, "lbs"),
  3656. name: "Stomping",
  3657. image: {
  3658. source: "./media/characters/vivian/stomping.svg"
  3659. }
  3660. },
  3661. sitting: {
  3662. height: math.unit(6 / 1.75, "feet"),
  3663. weight: math.unit(170, "lbs"),
  3664. name: "Sitting",
  3665. image: {
  3666. source: "./media/characters/vivian/sitting.svg",
  3667. bottom: 1 / 6.4,
  3668. extra: 1,
  3669. }
  3670. },
  3671. },
  3672. [
  3673. {
  3674. name: "Normal",
  3675. height: math.unit(7, "feet"),
  3676. default: true
  3677. },
  3678. {
  3679. name: "Macro",
  3680. height: math.unit(10, "stories")
  3681. },
  3682. {
  3683. name: "Macro+",
  3684. height: math.unit(30, "stories")
  3685. },
  3686. {
  3687. name: "Megamacro",
  3688. height: math.unit(10, "miles")
  3689. },
  3690. {
  3691. name: "Megamacro+",
  3692. height: math.unit(2750000, "meters")
  3693. },
  3694. ]
  3695. ))
  3696. characterMakers.push(() => makeCharacter(
  3697. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  3698. {
  3699. front: {
  3700. height: math.unit(6, "feet"),
  3701. weight: math.unit(160, "lbs"),
  3702. name: "Front",
  3703. image: {
  3704. source: "./media/characters/prince/front.svg",
  3705. extra: 3400 / 3000
  3706. }
  3707. },
  3708. jumping: {
  3709. height: math.unit(6, "feet"),
  3710. weight: math.unit(160, "lbs"),
  3711. name: "Jumping",
  3712. image: {
  3713. source: "./media/characters/prince/jump.svg",
  3714. extra: 2555 / 2134
  3715. }
  3716. },
  3717. },
  3718. [
  3719. {
  3720. name: "Normal",
  3721. height: math.unit(7.75, "feet"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "Not cute",
  3726. height: math.unit(17, "feet")
  3727. },
  3728. {
  3729. name: "I said NOT",
  3730. height: math.unit(91, "feet")
  3731. },
  3732. {
  3733. name: "Please stop",
  3734. height: math.unit(560, "feet")
  3735. },
  3736. {
  3737. name: "What have you done",
  3738. height: math.unit(2200, "feet")
  3739. },
  3740. {
  3741. name: "Deer God",
  3742. height: math.unit(3.6, "miles")
  3743. },
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  3748. {
  3749. standing: {
  3750. height: math.unit(6, "feet"),
  3751. weight: math.unit(300, "lbs"),
  3752. name: "Standing",
  3753. image: {
  3754. source: "./media/characters/psymon/standing.svg",
  3755. extra: 1888 / 1810,
  3756. bottom: 0.05
  3757. }
  3758. },
  3759. slithering: {
  3760. height: math.unit(6, "feet"),
  3761. weight: math.unit(300, "lbs"),
  3762. name: "Slithering",
  3763. image: {
  3764. source: "./media/characters/psymon/slithering.svg",
  3765. extra: 1330 / 1224
  3766. }
  3767. },
  3768. slitheringAlt: {
  3769. height: math.unit(6, "feet"),
  3770. weight: math.unit(300, "lbs"),
  3771. name: "Slithering (Alt)",
  3772. image: {
  3773. source: "./media/characters/psymon/slithering-alt.svg",
  3774. extra: 1330 / 1224
  3775. }
  3776. },
  3777. },
  3778. [
  3779. {
  3780. name: "Normal",
  3781. height: math.unit(11.25, "feet"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Large",
  3786. height: math.unit(27, "feet")
  3787. },
  3788. {
  3789. name: "Giant",
  3790. height: math.unit(87, "feet")
  3791. },
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(365, "feet")
  3795. },
  3796. {
  3797. name: "Megamacro",
  3798. height: math.unit(3, "miles")
  3799. },
  3800. {
  3801. name: "World Serpent",
  3802. height: math.unit(8000, "miles")
  3803. },
  3804. ]
  3805. ))
  3806. characterMakers.push(() => makeCharacter(
  3807. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  3808. {
  3809. front: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(180, "lbs"),
  3812. name: "Front",
  3813. image: {
  3814. source: "./media/characters/daimos/front.svg",
  3815. extra: 4160 / 3897,
  3816. bottom: 0.021
  3817. }
  3818. }
  3819. },
  3820. [
  3821. {
  3822. name: "Normal",
  3823. height: math.unit(8, "feet"),
  3824. default: true
  3825. },
  3826. {
  3827. name: "Big Dog",
  3828. height: math.unit(22, "feet")
  3829. },
  3830. {
  3831. name: "Macro",
  3832. height: math.unit(127, "feet")
  3833. },
  3834. {
  3835. name: "Megamacro",
  3836. height: math.unit(3600, "feet")
  3837. },
  3838. ]
  3839. ))
  3840. characterMakers.push(() => makeCharacter(
  3841. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  3842. {
  3843. side: {
  3844. height: math.unit(6, "feet"),
  3845. weight: math.unit(180, "lbs"),
  3846. name: "Side",
  3847. image: {
  3848. source: "./media/characters/blake/side.svg",
  3849. extra: 1212 / 1120,
  3850. bottom: 0.05
  3851. }
  3852. },
  3853. crouched: {
  3854. height: math.unit(6 * 0.57, "feet"),
  3855. weight: math.unit(180, "lbs"),
  3856. name: "Crouched",
  3857. image: {
  3858. source: "./media/characters/blake/crouched.svg",
  3859. extra: 840 / 587,
  3860. bottom: 0.04
  3861. }
  3862. },
  3863. bent: {
  3864. height: math.unit(6 * 0.75, "feet"),
  3865. weight: math.unit(180, "lbs"),
  3866. name: "Bent",
  3867. image: {
  3868. source: "./media/characters/blake/bent.svg",
  3869. extra: 592 / 544,
  3870. bottom: 0.035
  3871. }
  3872. },
  3873. },
  3874. [
  3875. {
  3876. name: "Normal",
  3877. height: math.unit(8 + 1 / 6, "feet"),
  3878. default: true
  3879. },
  3880. {
  3881. name: "Big Backside",
  3882. height: math.unit(37, "feet")
  3883. },
  3884. {
  3885. name: "Subway Shredder",
  3886. height: math.unit(72, "feet")
  3887. },
  3888. {
  3889. name: "City Carver",
  3890. height: math.unit(1675, "feet")
  3891. },
  3892. {
  3893. name: "Tectonic Tweaker",
  3894. height: math.unit(2300, "miles")
  3895. },
  3896. ]
  3897. ))
  3898. characterMakers.push(() => makeCharacter(
  3899. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  3900. {
  3901. front: {
  3902. height: math.unit(6, "feet"),
  3903. weight: math.unit(180, "lbs"),
  3904. name: "Front",
  3905. image: {
  3906. source: "./media/characters/guisetto/front.svg",
  3907. extra: 856 / 817,
  3908. bottom: 0.06
  3909. }
  3910. },
  3911. airborne: {
  3912. height: math.unit(6, "feet"),
  3913. weight: math.unit(180, "lbs"),
  3914. name: "Airborne",
  3915. image: {
  3916. source: "./media/characters/guisetto/airborne.svg",
  3917. extra: 584 / 525
  3918. }
  3919. },
  3920. },
  3921. [
  3922. {
  3923. name: "Normal",
  3924. height: math.unit(10 + 11 / 12, "feet"),
  3925. default: true
  3926. },
  3927. {
  3928. name: "Large",
  3929. height: math.unit(35, "feet")
  3930. },
  3931. {
  3932. name: "Macro",
  3933. height: math.unit(475, "feet")
  3934. },
  3935. ]
  3936. ))
  3937. characterMakers.push(() => makeCharacter(
  3938. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  3939. {
  3940. front: {
  3941. height: math.unit(6, "feet"),
  3942. weight: math.unit(180, "lbs"),
  3943. name: "Front",
  3944. image: {
  3945. source: "./media/characters/luxor/front.svg",
  3946. extra: 2940 / 2152
  3947. }
  3948. },
  3949. back: {
  3950. height: math.unit(6, "feet"),
  3951. weight: math.unit(180, "lbs"),
  3952. name: "Back",
  3953. image: {
  3954. source: "./media/characters/luxor/back.svg",
  3955. extra: 1083 / 960
  3956. }
  3957. },
  3958. },
  3959. [
  3960. {
  3961. name: "Normal",
  3962. height: math.unit(5 + 5 / 6, "feet"),
  3963. default: true
  3964. },
  3965. {
  3966. name: "Lamp",
  3967. height: math.unit(50, "feet")
  3968. },
  3969. {
  3970. name: "Lämp",
  3971. height: math.unit(300, "feet")
  3972. },
  3973. {
  3974. name: "The sun is a lamp",
  3975. height: math.unit(250000, "miles")
  3976. },
  3977. ]
  3978. ))
  3979. characterMakers.push(() => makeCharacter(
  3980. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  3981. {
  3982. front: {
  3983. height: math.unit(6, "feet"),
  3984. weight: math.unit(50, "lbs"),
  3985. name: "Front",
  3986. image: {
  3987. source: "./media/characters/huoyan/front.svg"
  3988. }
  3989. },
  3990. side: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(180, "lbs"),
  3993. name: "Side",
  3994. image: {
  3995. source: "./media/characters/huoyan/side.svg"
  3996. }
  3997. },
  3998. },
  3999. [
  4000. {
  4001. name: "Chef",
  4002. height: math.unit(9, "feet")
  4003. },
  4004. {
  4005. name: "Normal",
  4006. height: math.unit(65, "feet"),
  4007. default: true
  4008. },
  4009. {
  4010. name: "Macro",
  4011. height: math.unit(780, "feet")
  4012. },
  4013. {
  4014. name: "Flaming Mountain",
  4015. height: math.unit(4.8, "miles")
  4016. },
  4017. {
  4018. name: "Celestial",
  4019. height: math.unit(765000, "miles")
  4020. },
  4021. ]
  4022. ))
  4023. characterMakers.push(() => makeCharacter(
  4024. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4025. {
  4026. front: {
  4027. height: math.unit(5 + 3 / 4, "feet"),
  4028. weight: math.unit(120, "lbs"),
  4029. name: "Front",
  4030. image: {
  4031. source: "./media/characters/tails/front.svg"
  4032. }
  4033. }
  4034. },
  4035. [
  4036. {
  4037. name: "Normal",
  4038. height: math.unit(5 + 3 / 4, "feet"),
  4039. default: true
  4040. }
  4041. ]
  4042. ))
  4043. characterMakers.push(() => makeCharacter(
  4044. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4045. {
  4046. front: {
  4047. height: math.unit(4, "feet"),
  4048. weight: math.unit(50, "lbs"),
  4049. name: "Front",
  4050. image: {
  4051. source: "./media/characters/rainy/front.svg"
  4052. }
  4053. }
  4054. },
  4055. [
  4056. {
  4057. name: "Macro",
  4058. height: math.unit(800, "feet"),
  4059. default: true
  4060. }
  4061. ]
  4062. ))
  4063. characterMakers.push(() => makeCharacter(
  4064. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4065. {
  4066. front: {
  4067. height: math.unit(6, "feet"),
  4068. weight: math.unit(150, "lbs"),
  4069. name: "Front",
  4070. image: {
  4071. source: "./media/characters/rainier/front.svg"
  4072. }
  4073. }
  4074. },
  4075. [
  4076. {
  4077. name: "Micro",
  4078. height: math.unit(2, "mm"),
  4079. default: true
  4080. }
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4085. {
  4086. front: {
  4087. height: math.unit(6, "feet"),
  4088. weight: math.unit(180, "lbs"),
  4089. name: "Front",
  4090. image: {
  4091. source: "./media/characters/andy/front.svg"
  4092. }
  4093. }
  4094. },
  4095. [
  4096. {
  4097. name: "Normal",
  4098. height: math.unit(8, "feet"),
  4099. default: true
  4100. },
  4101. {
  4102. name: "Macro",
  4103. height: math.unit(1000, "feet")
  4104. },
  4105. {
  4106. name: "Megamacro",
  4107. height: math.unit(5, "miles")
  4108. },
  4109. {
  4110. name: "Gigamacro",
  4111. height: math.unit(5000, "miles")
  4112. },
  4113. ]
  4114. ))
  4115. characterMakers.push(() => makeCharacter(
  4116. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4117. {
  4118. front: {
  4119. height: math.unit(6, "feet"),
  4120. weight: math.unit(210, "lbs"),
  4121. name: "Front",
  4122. image: {
  4123. source: "./media/characters/cimmaron/front-sfw.svg",
  4124. extra: 701 / 676,
  4125. bottom: 0.046
  4126. }
  4127. },
  4128. back: {
  4129. height: math.unit(6, "feet"),
  4130. weight: math.unit(210, "lbs"),
  4131. name: "Back",
  4132. image: {
  4133. source: "./media/characters/cimmaron/back-sfw.svg",
  4134. extra: 701 / 676,
  4135. bottom: 0.046
  4136. }
  4137. },
  4138. frontNsfw: {
  4139. height: math.unit(6, "feet"),
  4140. weight: math.unit(210, "lbs"),
  4141. name: "Front (NSFW)",
  4142. image: {
  4143. source: "./media/characters/cimmaron/front-nsfw.svg",
  4144. extra: 701 / 676,
  4145. bottom: 0.046
  4146. }
  4147. },
  4148. backNsfw: {
  4149. height: math.unit(6, "feet"),
  4150. weight: math.unit(210, "lbs"),
  4151. name: "Back (NSFW)",
  4152. image: {
  4153. source: "./media/characters/cimmaron/back-nsfw.svg",
  4154. extra: 701 / 676,
  4155. bottom: 0.046
  4156. }
  4157. },
  4158. dick: {
  4159. height: math.unit(1.714, "feet"),
  4160. name: "Dick",
  4161. image: {
  4162. source: "./media/characters/cimmaron/dick.svg"
  4163. }
  4164. },
  4165. },
  4166. [
  4167. {
  4168. name: "Normal",
  4169. height: math.unit(6, "feet"),
  4170. default: true
  4171. },
  4172. {
  4173. name: "Macro Mayor",
  4174. height: math.unit(350, "meters")
  4175. },
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4180. {
  4181. front: {
  4182. height: math.unit(6, "feet"),
  4183. weight: math.unit(200, "lbs"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/akari/front.svg",
  4187. extra: 962 / 901,
  4188. bottom: 0.04
  4189. }
  4190. }
  4191. },
  4192. [
  4193. {
  4194. name: "Micro",
  4195. height: math.unit(5, "inches"),
  4196. default: true
  4197. },
  4198. {
  4199. name: "Normal",
  4200. height: math.unit(7, "feet")
  4201. },
  4202. ]
  4203. ))
  4204. characterMakers.push(() => makeCharacter(
  4205. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4206. {
  4207. front: {
  4208. height: math.unit(6, "feet"),
  4209. weight: math.unit(140, "lbs"),
  4210. name: "Front",
  4211. image: {
  4212. source: "./media/characters/cynosura/front.svg",
  4213. extra: 896 / 847
  4214. }
  4215. },
  4216. back: {
  4217. height: math.unit(6, "feet"),
  4218. weight: math.unit(140, "lbs"),
  4219. name: "Back",
  4220. image: {
  4221. source: "./media/characters/cynosura/back.svg",
  4222. extra: 1365 / 1250
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Micro",
  4229. height: math.unit(4, "inches")
  4230. },
  4231. {
  4232. name: "Normal",
  4233. height: math.unit(5.75, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Tall",
  4238. height: math.unit(10, "feet")
  4239. },
  4240. {
  4241. name: "Big",
  4242. height: math.unit(20, "feet")
  4243. },
  4244. {
  4245. name: "Macro",
  4246. height: math.unit(50, "feet")
  4247. },
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4252. {
  4253. front: {
  4254. height: math.unit(6, "feet"),
  4255. weight: math.unit(170, "lbs"),
  4256. name: "Front",
  4257. image: {
  4258. source: "./media/characters/gin/front.svg",
  4259. extra: 1.053,
  4260. bottom: 0.025
  4261. }
  4262. },
  4263. foot: {
  4264. height: math.unit(6 / 4.25, "feet"),
  4265. name: "Foot",
  4266. image: {
  4267. source: "./media/characters/gin/foot.svg"
  4268. }
  4269. },
  4270. sole: {
  4271. height: math.unit(6 / 4.40, "feet"),
  4272. name: "Sole",
  4273. image: {
  4274. source: "./media/characters/gin/sole.svg"
  4275. }
  4276. },
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(13 + 2/12, "feet")
  4282. },
  4283. {
  4284. name: "Macro",
  4285. height: math.unit(1500, "feet")
  4286. },
  4287. {
  4288. name: "Megamacro",
  4289. height: math.unit(200, "miles"),
  4290. default: true
  4291. },
  4292. {
  4293. name: "Gigamacro",
  4294. height: math.unit(500, "megameters")
  4295. },
  4296. {
  4297. name: "Teramacro",
  4298. height: math.unit(15, "lightyears")
  4299. }
  4300. ]
  4301. ))
  4302. characterMakers.push(() => makeCharacter(
  4303. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  4304. {
  4305. front: {
  4306. height: math.unit(6 + 1 / 6, "feet"),
  4307. weight: math.unit(178, "lbs"),
  4308. name: "Front",
  4309. image: {
  4310. source: "./media/characters/guy/front.svg"
  4311. }
  4312. }
  4313. },
  4314. [
  4315. {
  4316. name: "Normal",
  4317. height: math.unit(6 + 1 / 6, "feet"),
  4318. default: true
  4319. },
  4320. {
  4321. name: "Large",
  4322. height: math.unit(25 + 7 / 12, "feet")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(60 + 9 / 12, "feet")
  4327. },
  4328. {
  4329. name: "Macro+",
  4330. height: math.unit(246, "feet")
  4331. },
  4332. {
  4333. name: "Macro++",
  4334. height: math.unit(878, "feet")
  4335. }
  4336. ]
  4337. ))
  4338. characterMakers.push(() => makeCharacter(
  4339. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  4340. {
  4341. front: {
  4342. height: math.unit(9, "feet"),
  4343. weight: math.unit(800, "lbs"),
  4344. name: "Front",
  4345. image: {
  4346. source: "./media/characters/tiberius/front.svg",
  4347. extra: 2295 / 2071
  4348. }
  4349. },
  4350. back: {
  4351. height: math.unit(9, "feet"),
  4352. weight: math.unit(800, "lbs"),
  4353. name: "Back",
  4354. image: {
  4355. source: "./media/characters/tiberius/back.svg",
  4356. extra: 2373 / 2160
  4357. }
  4358. },
  4359. },
  4360. [
  4361. {
  4362. name: "Normal",
  4363. height: math.unit(9, "feet"),
  4364. default: true
  4365. }
  4366. ]
  4367. ))
  4368. characterMakers.push(() => makeCharacter(
  4369. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  4370. {
  4371. front: {
  4372. height: math.unit(6, "feet"),
  4373. weight: math.unit(600, "lbs"),
  4374. name: "Front",
  4375. image: {
  4376. source: "./media/characters/surgo/front.svg",
  4377. extra: 3591 / 2227
  4378. }
  4379. },
  4380. back: {
  4381. height: math.unit(6, "feet"),
  4382. weight: math.unit(600, "lbs"),
  4383. name: "Back",
  4384. image: {
  4385. source: "./media/characters/surgo/back.svg",
  4386. extra: 3557 / 2228
  4387. }
  4388. },
  4389. laying: {
  4390. height: math.unit(6 * 0.85, "feet"),
  4391. weight: math.unit(600, "lbs"),
  4392. name: "Laying",
  4393. image: {
  4394. source: "./media/characters/surgo/laying.svg"
  4395. }
  4396. },
  4397. },
  4398. [
  4399. {
  4400. name: "Normal",
  4401. height: math.unit(6, "feet"),
  4402. default: true
  4403. }
  4404. ]
  4405. ))
  4406. characterMakers.push(() => makeCharacter(
  4407. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  4408. {
  4409. side: {
  4410. height: math.unit(6, "feet"),
  4411. weight: math.unit(150, "lbs"),
  4412. name: "Side",
  4413. image: {
  4414. source: "./media/characters/cibus/side.svg",
  4415. extra: 800 / 400
  4416. }
  4417. },
  4418. },
  4419. [
  4420. {
  4421. name: "Normal",
  4422. height: math.unit(6, "feet"),
  4423. default: true
  4424. }
  4425. ]
  4426. ))
  4427. characterMakers.push(() => makeCharacter(
  4428. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  4429. {
  4430. front: {
  4431. height: math.unit(6, "feet"),
  4432. weight: math.unit(240, "lbs"),
  4433. name: "Front",
  4434. image: {
  4435. source: "./media/characters/nibbles/front.svg"
  4436. }
  4437. },
  4438. side: {
  4439. height: math.unit(6, "feet"),
  4440. weight: math.unit(240, "lbs"),
  4441. name: "Side",
  4442. image: {
  4443. source: "./media/characters/nibbles/side.svg"
  4444. }
  4445. },
  4446. },
  4447. [
  4448. {
  4449. name: "Normal",
  4450. height: math.unit(9, "feet"),
  4451. default: true
  4452. }
  4453. ]
  4454. ))
  4455. characterMakers.push(() => makeCharacter(
  4456. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  4457. {
  4458. side: {
  4459. height: math.unit(5 + 1 / 6, "feet"),
  4460. weight: math.unit(130, "lbs"),
  4461. name: "Side",
  4462. image: {
  4463. source: "./media/characters/rikky/side.svg"
  4464. }
  4465. },
  4466. },
  4467. [
  4468. {
  4469. name: "Normal",
  4470. height: math.unit(5 + 1 / 6, "feet")
  4471. },
  4472. {
  4473. name: "Macro",
  4474. height: math.unit(152, "feet"),
  4475. default: true
  4476. },
  4477. {
  4478. name: "Megamacro",
  4479. height: math.unit(7, "miles")
  4480. }
  4481. ]
  4482. ))
  4483. characterMakers.push(() => makeCharacter(
  4484. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  4485. {
  4486. side: {
  4487. height: math.unit(370, "cm"),
  4488. weight: math.unit(350, "lbs"),
  4489. name: "Side",
  4490. image: {
  4491. source: "./media/characters/malfressa/side.svg"
  4492. }
  4493. },
  4494. walking: {
  4495. height: math.unit(370, "cm"),
  4496. weight: math.unit(350, "lbs"),
  4497. name: "Walking",
  4498. image: {
  4499. source: "./media/characters/malfressa/walking.svg"
  4500. }
  4501. },
  4502. feral: {
  4503. height: math.unit(2500, "cm"),
  4504. weight: math.unit(100000, "lbs"),
  4505. name: "Feral",
  4506. image: {
  4507. source: "./media/characters/malfressa/feral.svg",
  4508. extra: 2108 / 837,
  4509. bottom: 0.02
  4510. }
  4511. },
  4512. },
  4513. [
  4514. {
  4515. name: "Normal",
  4516. height: math.unit(370, "cm")
  4517. },
  4518. {
  4519. name: "Macro",
  4520. height: math.unit(300, "meters"),
  4521. default: true
  4522. }
  4523. ]
  4524. ))
  4525. characterMakers.push(() => makeCharacter(
  4526. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  4527. {
  4528. front: {
  4529. height: math.unit(6, "feet"),
  4530. weight: math.unit(60, "kg"),
  4531. name: "Front",
  4532. image: {
  4533. source: "./media/characters/jaro/front.svg"
  4534. }
  4535. },
  4536. back: {
  4537. height: math.unit(6, "feet"),
  4538. weight: math.unit(60, "kg"),
  4539. name: "Back",
  4540. image: {
  4541. source: "./media/characters/jaro/back.svg"
  4542. }
  4543. },
  4544. },
  4545. [
  4546. {
  4547. name: "Micro",
  4548. height: math.unit(7, "inches")
  4549. },
  4550. {
  4551. name: "Normal",
  4552. height: math.unit(5.5, "feet"),
  4553. default: true
  4554. },
  4555. {
  4556. name: "Minimacro",
  4557. height: math.unit(20, "feet")
  4558. },
  4559. {
  4560. name: "Macro",
  4561. height: math.unit(200, "meters")
  4562. }
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  4567. {
  4568. front: {
  4569. height: math.unit(6, "feet"),
  4570. weight: math.unit(195, "lb"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/rogue/front.svg"
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Macro",
  4580. height: math.unit(90, "feet"),
  4581. default: true
  4582. },
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  4587. {
  4588. front: {
  4589. height: math.unit(5 + 8 / 12, "feet"),
  4590. weight: math.unit(140, "lb"),
  4591. name: "Front",
  4592. image: {
  4593. source: "./media/characters/piper/front.svg",
  4594. extra: 3928 / 3681
  4595. }
  4596. },
  4597. },
  4598. [
  4599. {
  4600. name: "Micro",
  4601. height: math.unit(2, "inches")
  4602. },
  4603. {
  4604. name: "Normal",
  4605. height: math.unit(5 + 8 / 12, "feet")
  4606. },
  4607. {
  4608. name: "Macro",
  4609. height: math.unit(250, "feet"),
  4610. default: true
  4611. },
  4612. {
  4613. name: "Megamacro",
  4614. height: math.unit(7, "miles")
  4615. },
  4616. ]
  4617. ))
  4618. characterMakers.push(() => makeCharacter(
  4619. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  4620. {
  4621. front: {
  4622. height: math.unit(6, "feet"),
  4623. weight: math.unit(220, "lb"),
  4624. name: "Front",
  4625. image: {
  4626. source: "./media/characters/gemini/front.svg"
  4627. }
  4628. },
  4629. back: {
  4630. height: math.unit(6, "feet"),
  4631. weight: math.unit(220, "lb"),
  4632. name: "Back",
  4633. image: {
  4634. source: "./media/characters/gemini/back.svg"
  4635. }
  4636. },
  4637. kneeling: {
  4638. height: math.unit(6 / 1.5, "feet"),
  4639. weight: math.unit(220, "lb"),
  4640. name: "Kneeling",
  4641. image: {
  4642. source: "./media/characters/gemini/kneeling.svg",
  4643. bottom: 0.02
  4644. }
  4645. },
  4646. },
  4647. [
  4648. {
  4649. name: "Macro",
  4650. height: math.unit(300, "meters"),
  4651. default: true
  4652. },
  4653. {
  4654. name: "Megamacro",
  4655. height: math.unit(6900, "meters")
  4656. },
  4657. ]
  4658. ))
  4659. characterMakers.push(() => makeCharacter(
  4660. { name: "Alicia" },
  4661. {
  4662. anthro: {
  4663. height: math.unit(2.35, "meters"),
  4664. weight: math.unit(73, "kg"),
  4665. name: "Anthro",
  4666. image: {
  4667. source: "./media/characters/alicia/anthro.svg"
  4668. }
  4669. },
  4670. feral: {
  4671. height: math.unit(1.69, "meters"),
  4672. weight: math.unit(73, "kg"),
  4673. name: "Feral",
  4674. image: {
  4675. source: "./media/characters/alicia/feral.svg"
  4676. }
  4677. },
  4678. },
  4679. [
  4680. {
  4681. name: "Normal",
  4682. height: math.unit(2.35, "meters")
  4683. },
  4684. {
  4685. name: "Macro",
  4686. height: math.unit(60, "meters"),
  4687. default: true
  4688. },
  4689. {
  4690. name: "Megamacro",
  4691. height: math.unit(10000, "kilometers")
  4692. },
  4693. ]
  4694. ))
  4695. characterMakers.push(() => makeCharacter(
  4696. { name: "Archy" },
  4697. {
  4698. front: {
  4699. height: math.unit(7, "feet"),
  4700. weight: math.unit(250, "lbs"),
  4701. name: "Front",
  4702. image: {
  4703. source: "./media/characters/archy/front.svg"
  4704. }
  4705. }
  4706. },
  4707. [
  4708. {
  4709. name: "Micro",
  4710. height: math.unit(1, "inch")
  4711. },
  4712. {
  4713. name: "Shorty",
  4714. height: math.unit(5, "feet")
  4715. },
  4716. {
  4717. name: "Normal",
  4718. height: math.unit(7, "feet")
  4719. },
  4720. {
  4721. name: "Macro",
  4722. height: math.unit(600, "meters"),
  4723. default: true
  4724. },
  4725. {
  4726. name: "Megamacro",
  4727. height: math.unit(1, "mile")
  4728. },
  4729. ]
  4730. ))
  4731. characterMakers.push(() => makeCharacter(
  4732. { name: "Berri" },
  4733. {
  4734. front: {
  4735. height: math.unit(1.65, "meters"),
  4736. weight: math.unit(74, "kg"),
  4737. name: "Front",
  4738. image: {
  4739. source: "./media/characters/berri/front.svg"
  4740. }
  4741. }
  4742. },
  4743. [
  4744. {
  4745. name: "Normal",
  4746. height: math.unit(1.65, "meters")
  4747. },
  4748. {
  4749. name: "Macro",
  4750. height: math.unit(60, "m"),
  4751. default: true
  4752. },
  4753. {
  4754. name: "Megamacro",
  4755. height: math.unit(9.213, "km")
  4756. },
  4757. {
  4758. name: "Planet Eater",
  4759. height: math.unit(489, "megameters")
  4760. },
  4761. {
  4762. name: "Teramacro",
  4763. height: math.unit(2471635000000, "meters")
  4764. },
  4765. {
  4766. name: "Examacro",
  4767. height: math.unit(8.0624e+26, "meters")
  4768. }
  4769. ]
  4770. ))
  4771. characterMakers.push(() => makeCharacter(
  4772. { name: "Lexi" },
  4773. {
  4774. front: {
  4775. height: math.unit(1.72, "meters"),
  4776. weight: math.unit(68, "kg"),
  4777. name: "Front",
  4778. image: {
  4779. source: "./media/characters/lexi/front.svg"
  4780. }
  4781. }
  4782. },
  4783. [
  4784. {
  4785. name: "Very Smol",
  4786. height: math.unit(10, "mm")
  4787. },
  4788. {
  4789. name: "Micro",
  4790. height: math.unit(6.8, "cm"),
  4791. default: true
  4792. },
  4793. {
  4794. name: "Normal",
  4795. height: math.unit(1.72, "m")
  4796. }
  4797. ]
  4798. ))
  4799. characterMakers.push(() => makeCharacter(
  4800. { name: "Martin" },
  4801. {
  4802. front: {
  4803. height: math.unit(1.69, "meters"),
  4804. weight: math.unit(68, "kg"),
  4805. name: "Front",
  4806. image: {
  4807. source: "./media/characters/martin/front.svg",
  4808. extra: 596 / 581
  4809. }
  4810. }
  4811. },
  4812. [
  4813. {
  4814. name: "Micro",
  4815. height: math.unit(6.85, "cm"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Normal",
  4820. height: math.unit(1.69, "m")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Juno" },
  4826. {
  4827. front: {
  4828. height: math.unit(1.69, "meters"),
  4829. weight: math.unit(68, "kg"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/juno/front.svg"
  4833. }
  4834. }
  4835. },
  4836. [
  4837. {
  4838. name: "Micro",
  4839. height: math.unit(7, "cm")
  4840. },
  4841. {
  4842. name: "Normal",
  4843. height: math.unit(1.89, "m")
  4844. },
  4845. {
  4846. name: "Macro",
  4847. height: math.unit(353, "meters"),
  4848. default: true
  4849. }
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Samantha" },
  4854. {
  4855. front: {
  4856. height: math.unit(1.93, "meters"),
  4857. weight: math.unit(83, "kg"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/samantha/front.svg"
  4861. }
  4862. },
  4863. frontClothed: {
  4864. height: math.unit(1.93, "meters"),
  4865. weight: math.unit(83, "kg"),
  4866. name: "Front (Clothed)",
  4867. image: {
  4868. source: "./media/characters/samantha/front-clothed.svg"
  4869. }
  4870. },
  4871. back: {
  4872. height: math.unit(1.93, "meters"),
  4873. weight: math.unit(83, "kg"),
  4874. name: "Back",
  4875. image: {
  4876. source: "./media/characters/samantha/back.svg"
  4877. }
  4878. },
  4879. },
  4880. [
  4881. {
  4882. name: "Normal",
  4883. height: math.unit(1.93, "m")
  4884. },
  4885. {
  4886. name: "Macro",
  4887. height: math.unit(74, "meters"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Macro+",
  4892. height: math.unit(223, "meters"),
  4893. },
  4894. {
  4895. name: "Megamacro",
  4896. height: math.unit(8381, "meters"),
  4897. },
  4898. {
  4899. name: "Megamacro+",
  4900. height: math.unit(12000, "kilometers")
  4901. },
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Dr. Clay" },
  4906. {
  4907. front: {
  4908. height: math.unit(1.92, "meters"),
  4909. weight: math.unit(80, "kg"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/dr-clay/front.svg"
  4913. }
  4914. },
  4915. frontClothed: {
  4916. height: math.unit(1.92, "meters"),
  4917. weight: math.unit(80, "kg"),
  4918. name: "Front (Clothed)",
  4919. image: {
  4920. source: "./media/characters/dr-clay/front-clothed.svg"
  4921. }
  4922. }
  4923. },
  4924. [
  4925. {
  4926. name: "Normal",
  4927. height: math.unit(1.92, "m")
  4928. },
  4929. {
  4930. name: "Macro",
  4931. height: math.unit(214, "meters"),
  4932. default: true
  4933. },
  4934. {
  4935. name: "Macro+",
  4936. height: math.unit(12.237, "meters"),
  4937. },
  4938. {
  4939. name: "Megamacro",
  4940. height: math.unit(557, "megameters"),
  4941. },
  4942. {
  4943. name: "Unimaginable",
  4944. height: math.unit(120e9, "lightyears")
  4945. },
  4946. ]
  4947. ))
  4948. characterMakers.push(() => makeCharacter(
  4949. { name: "Wyvrn Ripsnarl" },
  4950. {
  4951. front: {
  4952. height: math.unit(2, "meters"),
  4953. weight: math.unit(80, "kg"),
  4954. name: "Front",
  4955. image: {
  4956. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4957. }
  4958. }
  4959. },
  4960. [
  4961. {
  4962. name: "Teramacro",
  4963. height: math.unit(500000, "lightyears"),
  4964. default: true
  4965. },
  4966. ]
  4967. ))
  4968. characterMakers.push(() => makeCharacter(
  4969. { name: "Vemus" },
  4970. {
  4971. front: {
  4972. height: math.unit(2, "meters"),
  4973. weight: math.unit(150, "kg"),
  4974. name: "Front",
  4975. image: {
  4976. source: "./media/characters/vemus/front.svg",
  4977. extra: 2384 / 2084,
  4978. bottom: 0.0123
  4979. }
  4980. }
  4981. },
  4982. [
  4983. {
  4984. name: "Normal",
  4985. height: math.unit(3.75, "meters"),
  4986. default: true
  4987. },
  4988. {
  4989. name: "Big",
  4990. height: math.unit(8, "meters")
  4991. },
  4992. {
  4993. name: "Macro",
  4994. height: math.unit(100, "meters")
  4995. },
  4996. {
  4997. name: "Macro+",
  4998. height: math.unit(1500, "meters")
  4999. },
  5000. {
  5001. name: "Stellar",
  5002. height: math.unit(14e8, "meters")
  5003. },
  5004. ]
  5005. ))
  5006. characterMakers.push(() => makeCharacter(
  5007. { name: "Beherit" },
  5008. {
  5009. front: {
  5010. height: math.unit(2, "meters"),
  5011. weight: math.unit(70, "kg"),
  5012. name: "Front",
  5013. image: {
  5014. source: "./media/characters/beherit/front.svg",
  5015. extra: 1408 / 1242
  5016. }
  5017. }
  5018. },
  5019. [
  5020. {
  5021. name: "Normal",
  5022. height: math.unit(6, "feet")
  5023. },
  5024. {
  5025. name: "Lorg",
  5026. height: math.unit(25, "feet"),
  5027. default: true
  5028. },
  5029. {
  5030. name: "Lorger",
  5031. height: math.unit(75, "feet")
  5032. },
  5033. {
  5034. name: "Macro",
  5035. height: math.unit(200, "meters")
  5036. },
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Everett" },
  5041. {
  5042. front: {
  5043. height: math.unit(2, "meters"),
  5044. weight: math.unit(150, "kg"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/everett/front.svg",
  5048. extra: 2038 / 1737,
  5049. bottom: 0.03
  5050. }
  5051. },
  5052. paw: {
  5053. height: math.unit(2 / 3.6, "meters"),
  5054. name: "Paw",
  5055. image: {
  5056. source: "./media/characters/everett/paw.svg"
  5057. }
  5058. },
  5059. },
  5060. [
  5061. {
  5062. name: "Normal",
  5063. height: math.unit(15, "feet"),
  5064. default: true
  5065. },
  5066. {
  5067. name: "Lorg",
  5068. height: math.unit(70, "feet"),
  5069. default: true
  5070. },
  5071. {
  5072. name: "Lorger",
  5073. height: math.unit(250, "feet")
  5074. },
  5075. {
  5076. name: "Macro",
  5077. height: math.unit(500, "meters")
  5078. },
  5079. ]
  5080. ))
  5081. characterMakers.push(() => makeCharacter(
  5082. { name: "Rose Lion" },
  5083. {
  5084. front: {
  5085. height: math.unit(2, "meters"),
  5086. weight: math.unit(86, "kg"),
  5087. name: "Front",
  5088. image: {
  5089. source: "./media/characters/rose-lion/front.svg"
  5090. }
  5091. },
  5092. bent: {
  5093. height: math.unit(2 / 1.4288, "meters"),
  5094. weight: math.unit(86, "kg"),
  5095. name: "Bent",
  5096. image: {
  5097. source: "./media/characters/rose-lion/bent.svg"
  5098. }
  5099. }
  5100. },
  5101. [
  5102. {
  5103. name: "Mini-Micro",
  5104. height: math.unit(1, "cm")
  5105. },
  5106. {
  5107. name: "Micro",
  5108. height: math.unit(3.5, "inches"),
  5109. default: true
  5110. },
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(6 + 1 / 6, "feet")
  5114. },
  5115. {
  5116. name: "Mini-Macro",
  5117. height: math.unit(9 + 10 / 12, "feet")
  5118. },
  5119. ]
  5120. ))
  5121. characterMakers.push(() => makeCharacter(
  5122. { name: "Regal" },
  5123. {
  5124. front: {
  5125. height: math.unit(2, "meters"),
  5126. weight: math.unit(350, "lbs"),
  5127. name: "Front",
  5128. image: {
  5129. source: "./media/characters/regal/front.svg"
  5130. }
  5131. },
  5132. back: {
  5133. height: math.unit(2, "meters"),
  5134. weight: math.unit(350, "lbs"),
  5135. name: "Back",
  5136. image: {
  5137. source: "./media/characters/regal/back.svg"
  5138. }
  5139. },
  5140. },
  5141. [
  5142. {
  5143. name: "Macro",
  5144. height: math.unit(350, "feet"),
  5145. default: true
  5146. }
  5147. ]
  5148. ))
  5149. characterMakers.push(() => makeCharacter(
  5150. { name: "Opal" },
  5151. {
  5152. front: {
  5153. height: math.unit(4 + 11 / 12, "feet"),
  5154. weight: math.unit(100, "lbs"),
  5155. name: "Front",
  5156. image: {
  5157. source: "./media/characters/opal/front.svg"
  5158. }
  5159. },
  5160. frontAlt: {
  5161. height: math.unit(4 + 11 / 12, "feet"),
  5162. weight: math.unit(100, "lbs"),
  5163. name: "Front (Alt)",
  5164. image: {
  5165. source: "./media/characters/opal/front-alt.svg"
  5166. }
  5167. },
  5168. },
  5169. [
  5170. {
  5171. name: "Small",
  5172. height: math.unit(4 + 11 / 12, "feet")
  5173. },
  5174. {
  5175. name: "Normal",
  5176. height: math.unit(20, "feet"),
  5177. default: true
  5178. },
  5179. {
  5180. name: "Macro",
  5181. height: math.unit(120, "feet")
  5182. },
  5183. {
  5184. name: "Megamacro",
  5185. height: math.unit(80, "miles")
  5186. },
  5187. {
  5188. name: "True Size",
  5189. height: math.unit(100000, "lightyears")
  5190. },
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Vector Wuff" },
  5195. {
  5196. front: {
  5197. height: math.unit(6, "feet"),
  5198. weight: math.unit(200, "lbs"),
  5199. name: "Front",
  5200. image: {
  5201. source: "./media/characters/vector-wuff/front.svg"
  5202. }
  5203. }
  5204. },
  5205. [
  5206. {
  5207. name: "Normal",
  5208. height: math.unit(2.8, "meters")
  5209. },
  5210. {
  5211. name: "Macro",
  5212. height: math.unit(450, "meters"),
  5213. default: true
  5214. },
  5215. {
  5216. name: "Megamacro",
  5217. height: math.unit(15, "kilometers")
  5218. }
  5219. ]
  5220. ))
  5221. characterMakers.push(() => makeCharacter(
  5222. { name: "Dannik" },
  5223. {
  5224. front: {
  5225. height: math.unit(6, "feet"),
  5226. weight: math.unit(256, "lbs"),
  5227. name: "Front",
  5228. image: {
  5229. source: "./media/characters/dannik/front.svg"
  5230. }
  5231. }
  5232. },
  5233. [
  5234. {
  5235. name: "Macro",
  5236. height: math.unit(69.57, "meters"),
  5237. default: true
  5238. },
  5239. ]
  5240. ))
  5241. characterMakers.push(() => makeCharacter(
  5242. { name: "Azura Saharah" },
  5243. {
  5244. front: {
  5245. height: math.unit(6, "feet"),
  5246. weight: math.unit(120, "lbs"),
  5247. name: "Front",
  5248. image: {
  5249. source: "./media/characters/azura-saharah/front.svg"
  5250. }
  5251. },
  5252. back: {
  5253. height: math.unit(6, "feet"),
  5254. weight: math.unit(120, "lbs"),
  5255. name: "Back",
  5256. image: {
  5257. source: "./media/characters/azura-saharah/back.svg"
  5258. }
  5259. },
  5260. },
  5261. [
  5262. {
  5263. name: "Macro",
  5264. height: math.unit(100, "feet"),
  5265. default: true
  5266. },
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Kennedy" },
  5271. {
  5272. side: {
  5273. height: math.unit(5 + 4 / 12, "feet"),
  5274. weight: math.unit(163, "lbs"),
  5275. name: "Side",
  5276. image: {
  5277. source: "./media/characters/kennedy/side.svg"
  5278. }
  5279. }
  5280. },
  5281. [
  5282. {
  5283. name: "Standard Doggo",
  5284. height: math.unit(5 + 4 / 12, "feet")
  5285. },
  5286. {
  5287. name: "Big Doggo",
  5288. height: math.unit(25 + 3 / 12, "feet"),
  5289. default: true
  5290. },
  5291. ]
  5292. ))
  5293. characterMakers.push(() => makeCharacter(
  5294. { name: "Odi Lunar" },
  5295. {
  5296. front: {
  5297. height: math.unit(6, "feet"),
  5298. weight: math.unit(90, "lbs"),
  5299. name: "Front",
  5300. image: {
  5301. source: "./media/characters/odi-lunar/front.svg"
  5302. }
  5303. }
  5304. },
  5305. [
  5306. {
  5307. name: "Micro",
  5308. height: math.unit(3, "inches"),
  5309. default: true
  5310. },
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(5.5, "feet")
  5314. }
  5315. ]
  5316. ))
  5317. characterMakers.push(() => makeCharacter(
  5318. { name: "Mandake" },
  5319. {
  5320. back: {
  5321. height: math.unit(6, "feet"),
  5322. weight: math.unit(220, "lbs"),
  5323. name: "Back",
  5324. image: {
  5325. source: "./media/characters/mandake/back.svg"
  5326. }
  5327. }
  5328. },
  5329. [
  5330. {
  5331. name: "Normal",
  5332. height: math.unit(7, "feet"),
  5333. default: true
  5334. },
  5335. {
  5336. name: "Macro",
  5337. height: math.unit(78, "feet")
  5338. },
  5339. {
  5340. name: "Macro+",
  5341. height: math.unit(300, "meters")
  5342. },
  5343. {
  5344. name: "Macro++",
  5345. height: math.unit(2400, "feet")
  5346. },
  5347. {
  5348. name: "Megamacro",
  5349. height: math.unit(5167, "meters")
  5350. },
  5351. {
  5352. name: "Gigamacro",
  5353. height: math.unit(41769, "miles")
  5354. },
  5355. ]
  5356. ))
  5357. characterMakers.push(() => makeCharacter(
  5358. { name: "Yozey" },
  5359. {
  5360. front: {
  5361. height: math.unit(6, "feet"),
  5362. weight: math.unit(120, "lbs"),
  5363. name: "Front",
  5364. image: {
  5365. source: "./media/characters/yozey/front.svg"
  5366. }
  5367. },
  5368. frontAlt: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(120, "lbs"),
  5371. name: "Front (Alt)",
  5372. image: {
  5373. source: "./media/characters/yozey/front-alt.svg"
  5374. }
  5375. },
  5376. side: {
  5377. height: math.unit(6, "feet"),
  5378. weight: math.unit(120, "lbs"),
  5379. name: "Side",
  5380. image: {
  5381. source: "./media/characters/yozey/side.svg"
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Micro",
  5388. height: math.unit(3, "inches"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(6, "feet")
  5394. }
  5395. ]
  5396. ))
  5397. characterMakers.push(() => makeCharacter(
  5398. { name: "Valeska Voss" },
  5399. {
  5400. front: {
  5401. height: math.unit(6, "feet"),
  5402. weight: math.unit(103, "lbs"),
  5403. name: "Front",
  5404. image: {
  5405. source: "./media/characters/valeska-voss/front.svg"
  5406. }
  5407. }
  5408. },
  5409. [
  5410. {
  5411. name: "Mini-Sized Sub",
  5412. height: math.unit(3.1, "inches")
  5413. },
  5414. {
  5415. name: "Mid-Sized Sub",
  5416. height: math.unit(6.2, "inches")
  5417. },
  5418. {
  5419. name: "Full-Sized Sub",
  5420. height: math.unit(9.3, "inches")
  5421. },
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(5 + 2 / 12, "foot"),
  5425. default: true
  5426. },
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Gene Zeta" },
  5431. {
  5432. front: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(160, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/gene-zeta/front.svg",
  5438. bottom: 0.03,
  5439. extra: 1
  5440. }
  5441. }
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(6.25, "foot"),
  5447. default: true
  5448. },
  5449. ]
  5450. ))
  5451. characterMakers.push(() => makeCharacter(
  5452. { name: "Razinox" },
  5453. {
  5454. front: {
  5455. height: math.unit(6, "feet"),
  5456. weight: math.unit(350, "lbs"),
  5457. name: "Front",
  5458. image: {
  5459. source: "./media/characters/razinox/front.svg",
  5460. extra: 1686 / 1548,
  5461. bottom: 28.2/1868
  5462. }
  5463. },
  5464. back: {
  5465. height: math.unit(6, "feet"),
  5466. weight: math.unit(350, "lbs"),
  5467. name: "Back",
  5468. image: {
  5469. source: "./media/characters/razinox/back.svg",
  5470. extra: 1660 / 1590,
  5471. bottom: 15/1665
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(10 + 8 / 12, "foot")
  5479. },
  5480. {
  5481. name: "Minimacro",
  5482. height: math.unit(15, "foot")
  5483. },
  5484. {
  5485. name: "Macro",
  5486. height: math.unit(60, "foot"),
  5487. default: true
  5488. },
  5489. {
  5490. name: "Megamacro",
  5491. height: math.unit(5, "miles")
  5492. },
  5493. {
  5494. name: "Gigamacro",
  5495. height: math.unit(6000, "miles")
  5496. },
  5497. ]
  5498. ))
  5499. characterMakers.push(() => makeCharacter(
  5500. { name: "Cobalt" },
  5501. {
  5502. front: {
  5503. height: math.unit(6, "feet"),
  5504. weight: math.unit(150, "lbs"),
  5505. name: "Front",
  5506. image: {
  5507. source: "./media/characters/cobalt/front.svg"
  5508. }
  5509. }
  5510. },
  5511. [
  5512. {
  5513. name: "Normal",
  5514. height: math.unit(8 + 1 / 12, "foot")
  5515. },
  5516. {
  5517. name: "Macro",
  5518. height: math.unit(111, "foot"),
  5519. default: true
  5520. },
  5521. {
  5522. name: "Supracosmic",
  5523. height: math.unit(1e42, "feet")
  5524. },
  5525. ]
  5526. ))
  5527. characterMakers.push(() => makeCharacter(
  5528. { name: "Amanda" },
  5529. {
  5530. front: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(140, "lbs"),
  5533. name: "Front",
  5534. image: {
  5535. source: "./media/characters/amanda/front.svg"
  5536. }
  5537. }
  5538. },
  5539. [
  5540. {
  5541. name: "Micro",
  5542. height: math.unit(5, "inches"),
  5543. default: true
  5544. },
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Teal" },
  5549. {
  5550. front: {
  5551. height: math.unit(5.59, "feet"),
  5552. weight: math.unit(250, "lbs"),
  5553. name: "Front",
  5554. image: {
  5555. source: "./media/characters/teal/front.svg"
  5556. }
  5557. },
  5558. frontAlt: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(250, "lbs"),
  5561. name: "Front (Alt)",
  5562. image: {
  5563. source: "./media/characters/teal/front-alt.svg",
  5564. bottom: 0.04,
  5565. extra: 1
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Normal",
  5572. height: math.unit(12, "feet"),
  5573. default: true
  5574. },
  5575. {
  5576. name: "Macro",
  5577. height: math.unit(300, "feet")
  5578. },
  5579. ]
  5580. ))
  5581. characterMakers.push(() => makeCharacter(
  5582. { name: "Ravin Amulet" },
  5583. {
  5584. frontCat: {
  5585. height: math.unit(6, "feet"),
  5586. weight: math.unit(180, "lbs"),
  5587. name: "Front (Cat)",
  5588. image: {
  5589. source: "./media/characters/ravin-amulet/front-cat.svg"
  5590. }
  5591. },
  5592. frontCatAlt: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(180, "lbs"),
  5595. name: "Front (Alt, Cat)",
  5596. image: {
  5597. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5598. }
  5599. },
  5600. frontWerewolf: {
  5601. height: math.unit(6 * 1.2, "feet"),
  5602. weight: math.unit(225, "lbs"),
  5603. name: "Front (Werewolf)",
  5604. image: {
  5605. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5606. }
  5607. },
  5608. backWerewolf: {
  5609. height: math.unit(6 * 1.2, "feet"),
  5610. weight: math.unit(225, "lbs"),
  5611. name: "Back (Werewolf)",
  5612. image: {
  5613. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5614. }
  5615. },
  5616. },
  5617. [
  5618. {
  5619. name: "Nano",
  5620. height: math.unit(1, "micrometer")
  5621. },
  5622. {
  5623. name: "Micro",
  5624. height: math.unit(1, "inch")
  5625. },
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(6, "feet"),
  5629. default: true
  5630. },
  5631. {
  5632. name: "Macro",
  5633. height: math.unit(60, "feet")
  5634. }
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Fluoresce" },
  5639. {
  5640. front: {
  5641. height: math.unit(6, "feet"),
  5642. weight: math.unit(165, "lbs"),
  5643. name: "Front",
  5644. image: {
  5645. source: "./media/characters/fluoresce/front.svg"
  5646. }
  5647. }
  5648. },
  5649. [
  5650. {
  5651. name: "Micro",
  5652. height: math.unit(6, "cm")
  5653. },
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(5 + 7 / 12, "feet"),
  5657. default: true
  5658. },
  5659. {
  5660. name: "Macro",
  5661. height: math.unit(56, "feet")
  5662. },
  5663. {
  5664. name: "Megamacro",
  5665. height: math.unit(1.9, "miles")
  5666. },
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Aurora" },
  5671. {
  5672. front: {
  5673. height: math.unit(9 + 6 / 12, "feet"),
  5674. weight: math.unit(523, "lbs"),
  5675. name: "Side",
  5676. image: {
  5677. source: "./media/characters/aurora/side.svg"
  5678. }
  5679. }
  5680. },
  5681. [
  5682. {
  5683. name: "Normal",
  5684. height: math.unit(9 + 6 / 12, "feet")
  5685. },
  5686. {
  5687. name: "Macro",
  5688. height: math.unit(96, "feet"),
  5689. default: true
  5690. },
  5691. {
  5692. name: "Macro+",
  5693. height: math.unit(243, "feet")
  5694. },
  5695. ]
  5696. ))
  5697. characterMakers.push(() => makeCharacter(
  5698. { name: "Ranek" },
  5699. {
  5700. front: {
  5701. height: math.unit(194, "cm"),
  5702. weight: math.unit(90, "kg"),
  5703. name: "Front",
  5704. image: {
  5705. source: "./media/characters/ranek/front.svg"
  5706. }
  5707. },
  5708. side: {
  5709. height: math.unit(194, "cm"),
  5710. weight: math.unit(90, "kg"),
  5711. name: "Side",
  5712. image: {
  5713. source: "./media/characters/ranek/side.svg"
  5714. }
  5715. },
  5716. back: {
  5717. height: math.unit(194, "cm"),
  5718. weight: math.unit(90, "kg"),
  5719. name: "Back",
  5720. image: {
  5721. source: "./media/characters/ranek/back.svg"
  5722. }
  5723. },
  5724. feral: {
  5725. height: math.unit(30, "cm"),
  5726. weight: math.unit(1.6, "lbs"),
  5727. name: "Feral",
  5728. image: {
  5729. source: "./media/characters/ranek/feral.svg"
  5730. }
  5731. },
  5732. },
  5733. [
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(194, "cm"),
  5737. default: true
  5738. },
  5739. {
  5740. name: "Macro",
  5741. height: math.unit(100, "meters")
  5742. },
  5743. ]
  5744. ))
  5745. characterMakers.push(() => makeCharacter(
  5746. { name: "Andrew Cooper" },
  5747. {
  5748. front: {
  5749. height: math.unit(5 + 6 / 12, "feet"),
  5750. weight: math.unit(153, "lbs"),
  5751. name: "Front",
  5752. image: {
  5753. source: "./media/characters/andrew-cooper/front.svg"
  5754. }
  5755. },
  5756. },
  5757. [
  5758. {
  5759. name: "Nano",
  5760. height: math.unit(1, "mm")
  5761. },
  5762. {
  5763. name: "Micro",
  5764. height: math.unit(2, "inches")
  5765. },
  5766. {
  5767. name: "Normal",
  5768. height: math.unit(5 + 6 / 12, "feet"),
  5769. default: true
  5770. }
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Akane Sato" },
  5775. {
  5776. front: {
  5777. height: math.unit(6, "feet"),
  5778. weight: math.unit(180, "lbs"),
  5779. name: "Front",
  5780. image: {
  5781. source: "./media/characters/akane-sato/front.svg",
  5782. extra: 1219 / 1140
  5783. }
  5784. },
  5785. back: {
  5786. height: math.unit(6, "feet"),
  5787. weight: math.unit(180, "lbs"),
  5788. name: "Back",
  5789. image: {
  5790. source: "./media/characters/akane-sato/back.svg",
  5791. extra: 1219 / 1170
  5792. }
  5793. },
  5794. },
  5795. [
  5796. {
  5797. name: "Normal",
  5798. height: math.unit(2.5, "meters")
  5799. },
  5800. {
  5801. name: "Macro",
  5802. height: math.unit(250, "meters"),
  5803. default: true
  5804. },
  5805. {
  5806. name: "Megamacro",
  5807. height: math.unit(25, "km")
  5808. },
  5809. ]
  5810. ))
  5811. characterMakers.push(() => makeCharacter(
  5812. { name: "Rook" },
  5813. {
  5814. front: {
  5815. height: math.unit(6, "feet"),
  5816. weight: math.unit(65, "kg"),
  5817. name: "Front",
  5818. image: {
  5819. source: "./media/characters/rook/front.svg",
  5820. extra: 960/950
  5821. }
  5822. }
  5823. },
  5824. [
  5825. {
  5826. name: "Normal",
  5827. height: math.unit(8.8, "feet")
  5828. },
  5829. {
  5830. name: "Macro",
  5831. height: math.unit(88, "feet"),
  5832. default: true
  5833. },
  5834. {
  5835. name: "Megamacro",
  5836. height: math.unit(8, "miles")
  5837. },
  5838. ]
  5839. ))
  5840. characterMakers.push(() => makeCharacter(
  5841. { name: "Prodigy" },
  5842. {
  5843. front: {
  5844. height: math.unit(12 + 2 / 12, "feet"),
  5845. weight: math.unit(808, "lbs"),
  5846. name: "Front",
  5847. image: {
  5848. source: "./media/characters/prodigy/front.svg"
  5849. }
  5850. }
  5851. },
  5852. [
  5853. {
  5854. name: "Normal",
  5855. height: math.unit(12 + 2 / 12, "feet"),
  5856. default: true
  5857. },
  5858. {
  5859. name: "Macro",
  5860. height: math.unit(143, "feet")
  5861. },
  5862. {
  5863. name: "Macro+",
  5864. height: math.unit(400, "feet")
  5865. },
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Daniel" },
  5870. {
  5871. front: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(225, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/daniel/front.svg"
  5877. }
  5878. },
  5879. leaning: {
  5880. height: math.unit(6, "feet"),
  5881. weight: math.unit(225, "lbs"),
  5882. name: "Leaning",
  5883. image: {
  5884. source: "./media/characters/daniel/leaning.svg"
  5885. }
  5886. },
  5887. },
  5888. [
  5889. {
  5890. name: "Macro",
  5891. height: math.unit(1000, "feet"),
  5892. default: true
  5893. },
  5894. ]
  5895. ))
  5896. characterMakers.push(() => makeCharacter(
  5897. { name: "Chiros" },
  5898. {
  5899. front: {
  5900. height: math.unit(6, "feet"),
  5901. weight: math.unit(88, "lbs"),
  5902. name: "Front",
  5903. image: {
  5904. source: "./media/characters/chiros/front.svg",
  5905. extra: 306 / 226
  5906. }
  5907. },
  5908. side: {
  5909. height: math.unit(6, "feet"),
  5910. weight: math.unit(88, "lbs"),
  5911. name: "Side",
  5912. image: {
  5913. source: "./media/characters/chiros/side.svg",
  5914. extra: 306 / 226
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(6, "cm"),
  5922. default: true
  5923. },
  5924. ]
  5925. ))
  5926. characterMakers.push(() => makeCharacter(
  5927. { name: "Selka" },
  5928. {
  5929. front: {
  5930. height: math.unit(6, "feet"),
  5931. weight: math.unit(100, "lbs"),
  5932. name: "Front",
  5933. image: {
  5934. source: "./media/characters/selka/front.svg",
  5935. extra: 947 / 887
  5936. }
  5937. }
  5938. },
  5939. [
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(5, "cm"),
  5943. default: true
  5944. },
  5945. ]
  5946. ))
  5947. characterMakers.push(() => makeCharacter(
  5948. { name: "Verin" },
  5949. {
  5950. front: {
  5951. height: math.unit(8 + 3 / 12, "feet"),
  5952. weight: math.unit(424, "lbs"),
  5953. name: "Front",
  5954. image: {
  5955. source: "./media/characters/verin/front.svg",
  5956. extra: 1845 / 1550
  5957. }
  5958. },
  5959. frontArmored: {
  5960. height: math.unit(8 + 3 / 12, "feet"),
  5961. weight: math.unit(424, "lbs"),
  5962. name: "Front (Armored)",
  5963. image: {
  5964. source: "./media/characters/verin/front-armor.svg",
  5965. extra: 1845 / 1550,
  5966. bottom: 0.01
  5967. }
  5968. },
  5969. back: {
  5970. height: math.unit(8 + 3 / 12, "feet"),
  5971. weight: math.unit(424, "lbs"),
  5972. name: "Back",
  5973. image: {
  5974. source: "./media/characters/verin/back.svg",
  5975. bottom: 0.1,
  5976. extra: 1
  5977. }
  5978. },
  5979. foot: {
  5980. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5981. name: "Foot",
  5982. image: {
  5983. source: "./media/characters/verin/foot.svg"
  5984. }
  5985. },
  5986. },
  5987. [
  5988. {
  5989. name: "Normal",
  5990. height: math.unit(8 + 3 / 12, "feet")
  5991. },
  5992. {
  5993. name: "Minimacro",
  5994. height: math.unit(21, "feet"),
  5995. default: true
  5996. },
  5997. {
  5998. name: "Macro",
  5999. height: math.unit(626, "feet")
  6000. },
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Sovrim Terraquian" },
  6005. {
  6006. front: {
  6007. height: math.unit(2.718, "meters"),
  6008. weight: math.unit(150, "lbs"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/sovrim-terraquian/front.svg"
  6012. }
  6013. },
  6014. back: {
  6015. height: math.unit(2.718, "meters"),
  6016. weight: math.unit(150, "lbs"),
  6017. name: "Back",
  6018. image: {
  6019. source: "./media/characters/sovrim-terraquian/back.svg"
  6020. }
  6021. }
  6022. },
  6023. [
  6024. {
  6025. name: "Micro",
  6026. height: math.unit(2, "inches")
  6027. },
  6028. {
  6029. name: "Small",
  6030. height: math.unit(1, "meter")
  6031. },
  6032. {
  6033. name: "Normal",
  6034. height: math.unit(Math.E, "meters"),
  6035. default: true
  6036. },
  6037. {
  6038. name: "Macro",
  6039. height: math.unit(20, "meters")
  6040. },
  6041. {
  6042. name: "Macro+",
  6043. height: math.unit(400, "meters")
  6044. },
  6045. ]
  6046. ))
  6047. characterMakers.push(() => makeCharacter(
  6048. { name: "Reece Silvermane" },
  6049. {
  6050. front: {
  6051. height: math.unit(7, "feet"),
  6052. weight: math.unit(489, "lbs"),
  6053. name: "Front",
  6054. image: {
  6055. source: "./media/characters/reece-silvermane/front.svg",
  6056. bottom: 0.02,
  6057. extra: 1
  6058. }
  6059. },
  6060. },
  6061. [
  6062. {
  6063. name: "Macro",
  6064. height: math.unit(1.5, "miles"),
  6065. default: true
  6066. },
  6067. ]
  6068. ))
  6069. characterMakers.push(() => makeCharacter(
  6070. { name: "Kane" },
  6071. {
  6072. front: {
  6073. height: math.unit(6, "feet"),
  6074. weight: math.unit(78, "kg"),
  6075. name: "Front",
  6076. image: {
  6077. source: "./media/characters/kane/front.svg",
  6078. extra: 978 / 899
  6079. }
  6080. },
  6081. },
  6082. [
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(2.1, "m"),
  6086. },
  6087. {
  6088. name: "Macro",
  6089. height: math.unit(1, "km"),
  6090. default: true
  6091. },
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Tegon" },
  6096. {
  6097. front: {
  6098. height: math.unit(6, "feet"),
  6099. weight: math.unit(200, "kg"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/tegon/front.svg",
  6103. bottom: 0.01,
  6104. extra: 1
  6105. }
  6106. },
  6107. },
  6108. [
  6109. {
  6110. name: "Micro",
  6111. height: math.unit(1, "inch")
  6112. },
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(6 + 3 / 12, "feet"),
  6116. default: true
  6117. },
  6118. {
  6119. name: "Macro",
  6120. height: math.unit(300, "feet")
  6121. },
  6122. {
  6123. name: "Megamacro",
  6124. height: math.unit(69, "miles")
  6125. },
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Arcturax" },
  6130. {
  6131. side: {
  6132. height: math.unit(6, "feet"),
  6133. weight: math.unit(2304, "lbs"),
  6134. name: "Side",
  6135. image: {
  6136. source: "./media/characters/arcturax/side.svg",
  6137. extra: 790 / 376,
  6138. bottom: 0.01
  6139. }
  6140. },
  6141. },
  6142. [
  6143. {
  6144. name: "Micro",
  6145. height: math.unit(2, "inch")
  6146. },
  6147. {
  6148. name: "Normal",
  6149. height: math.unit(6, "feet")
  6150. },
  6151. {
  6152. name: "Macro",
  6153. height: math.unit(39, "feet"),
  6154. default: true
  6155. },
  6156. {
  6157. name: "Megamacro",
  6158. height: math.unit(7, "miles")
  6159. },
  6160. ]
  6161. ))
  6162. characterMakers.push(() => makeCharacter(
  6163. { name: "Sentri" },
  6164. {
  6165. front: {
  6166. height: math.unit(6, "feet"),
  6167. weight: math.unit(50, "lbs"),
  6168. name: "Front",
  6169. image: {
  6170. source: "./media/characters/sentri/front.svg",
  6171. extra: 1750 / 1570,
  6172. bottom: 0.025
  6173. }
  6174. },
  6175. frontAlt: {
  6176. height: math.unit(6, "feet"),
  6177. weight: math.unit(50, "lbs"),
  6178. name: "Front (Alt)",
  6179. image: {
  6180. source: "./media/characters/sentri/front-alt.svg",
  6181. extra: 1750 / 1570,
  6182. bottom: 0.025
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Normal",
  6189. height: math.unit(15, "feet"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Macro",
  6194. height: math.unit(2500, "feet")
  6195. }
  6196. ]
  6197. ))
  6198. characterMakers.push(() => makeCharacter(
  6199. { name: "Corvin" },
  6200. {
  6201. front: {
  6202. height: math.unit(5 + 8 / 12, "feet"),
  6203. weight: math.unit(130, "lbs"),
  6204. name: "Front",
  6205. image: {
  6206. source: "./media/characters/corvin/front.svg",
  6207. extra: 1803 / 1629
  6208. }
  6209. },
  6210. frontShirt: {
  6211. height: math.unit(5 + 8 / 12, "feet"),
  6212. weight: math.unit(130, "lbs"),
  6213. name: "Front (Shirt)",
  6214. image: {
  6215. source: "./media/characters/corvin/front-shirt.svg",
  6216. extra: 1803 / 1629
  6217. }
  6218. },
  6219. frontPoncho: {
  6220. height: math.unit(5 + 8 / 12, "feet"),
  6221. weight: math.unit(130, "lbs"),
  6222. name: "Front (Poncho)",
  6223. image: {
  6224. source: "./media/characters/corvin/front-poncho.svg",
  6225. extra: 1803 / 1629
  6226. }
  6227. },
  6228. side: {
  6229. height: math.unit(5 + 8 / 12, "feet"),
  6230. weight: math.unit(130, "lbs"),
  6231. name: "Side",
  6232. image: {
  6233. source: "./media/characters/corvin/side.svg",
  6234. extra: 1012 / 945
  6235. }
  6236. },
  6237. back: {
  6238. height: math.unit(5 + 8 / 12, "feet"),
  6239. weight: math.unit(130, "lbs"),
  6240. name: "Back",
  6241. image: {
  6242. source: "./media/characters/corvin/back.svg",
  6243. extra: 1803 / 1629
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Micro",
  6250. height: math.unit(3, "inches")
  6251. },
  6252. {
  6253. name: "Normal",
  6254. height: math.unit(5 + 8 / 12, "feet")
  6255. },
  6256. {
  6257. name: "Macro",
  6258. height: math.unit(300, "feet"),
  6259. default: true
  6260. },
  6261. {
  6262. name: "Megamacro",
  6263. height: math.unit(500, "miles")
  6264. }
  6265. ]
  6266. ))
  6267. characterMakers.push(() => makeCharacter(
  6268. { name: "Q" },
  6269. {
  6270. front: {
  6271. height: math.unit(6, "feet"),
  6272. weight: math.unit(135, "lbs"),
  6273. name: "Front",
  6274. image: {
  6275. source: "./media/characters/q/front.svg",
  6276. extra: 854 / 752,
  6277. bottom: 0.005
  6278. }
  6279. },
  6280. back: {
  6281. height: math.unit(6, "feet"),
  6282. weight: math.unit(130, "lbs"),
  6283. name: "Back",
  6284. image: {
  6285. source: "./media/characters/q/back.svg",
  6286. extra: 854 / 752
  6287. }
  6288. },
  6289. },
  6290. [
  6291. {
  6292. name: "Macro",
  6293. height: math.unit(90, "feet"),
  6294. default: true
  6295. },
  6296. {
  6297. name: "Extra Macro",
  6298. height: math.unit(300, "feet"),
  6299. },
  6300. {
  6301. name: "BIG WALF",
  6302. height: math.unit(750, "feet"),
  6303. },
  6304. ]
  6305. ))
  6306. characterMakers.push(() => makeCharacter(
  6307. { name: "Carley" },
  6308. {
  6309. front: {
  6310. height: math.unit(6, "feet"),
  6311. weight: math.unit(150, "lbs"),
  6312. name: "Front",
  6313. image: {
  6314. source: "./media/characters/carley/front.svg",
  6315. extra: 3927 / 3540,
  6316. bottom: 0.03
  6317. }
  6318. }
  6319. },
  6320. [
  6321. {
  6322. name: "Normal",
  6323. height: math.unit(6 + 3 / 12, "feet")
  6324. },
  6325. {
  6326. name: "Macro",
  6327. height: math.unit(185, "feet"),
  6328. default: true
  6329. },
  6330. {
  6331. name: "Megamacro",
  6332. height: math.unit(8, "miles"),
  6333. },
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Citrine" },
  6338. {
  6339. front: {
  6340. height: math.unit(3, "feet"),
  6341. weight: math.unit(28, "lbs"),
  6342. name: "Front",
  6343. image: {
  6344. source: "./media/characters/citrine/front.svg"
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Normal",
  6351. height: math.unit(3, "feet"),
  6352. default: true
  6353. }
  6354. ]
  6355. ))
  6356. characterMakers.push(() => makeCharacter(
  6357. { name: "Aura Starwind" },
  6358. {
  6359. front: {
  6360. height: math.unit(14, "feet"),
  6361. weight: math.unit(1450, "kg"),
  6362. capacity: math.unit(15, "people"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/aura-starwind/front.svg",
  6366. extra: 1455 / 1335
  6367. }
  6368. },
  6369. side: {
  6370. height: math.unit(14, "feet"),
  6371. weight: math.unit(1450, "kg"),
  6372. capacity: math.unit(15, "people"),
  6373. name: "Side",
  6374. image: {
  6375. source: "./media/characters/aura-starwind/side.svg",
  6376. extra: 1654 / 1497
  6377. }
  6378. },
  6379. taur: {
  6380. height: math.unit(18, "feet"),
  6381. weight: math.unit(5500, "kg"),
  6382. capacity: math.unit(50, "people"),
  6383. name: "Taur",
  6384. image: {
  6385. source: "./media/characters/aura-starwind/taur.svg",
  6386. extra: 1760 / 1650
  6387. }
  6388. },
  6389. feral: {
  6390. height: math.unit(46, "feet"),
  6391. weight: math.unit(25000, "kg"),
  6392. capacity: math.unit(120, "people"),
  6393. name: "Feral",
  6394. image: {
  6395. source: "./media/characters/aura-starwind/feral.svg"
  6396. }
  6397. },
  6398. },
  6399. [
  6400. {
  6401. name: "Normal",
  6402. height: math.unit(14, "feet"),
  6403. default: true
  6404. },
  6405. {
  6406. name: "Macro",
  6407. height: math.unit(50, "meters")
  6408. },
  6409. {
  6410. name: "Megamacro",
  6411. height: math.unit(5000, "meters")
  6412. },
  6413. {
  6414. name: "Gigamacro",
  6415. height: math.unit(100000, "kilometers")
  6416. },
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Rivet" },
  6421. {
  6422. front: {
  6423. height: math.unit(2 + 7 / 12, "feet"),
  6424. weight: math.unit(32, "lbs"),
  6425. name: "Front",
  6426. image: {
  6427. source: "./media/characters/rivet/front.svg",
  6428. extra: 1716 / 1658,
  6429. bottom: 0.03
  6430. }
  6431. },
  6432. foot: {
  6433. height: math.unit(0.551, "feet"),
  6434. name: "Rivet's Foot",
  6435. image: {
  6436. source: "./media/characters/rivet/foot.svg"
  6437. },
  6438. rename: true
  6439. }
  6440. },
  6441. [
  6442. {
  6443. name: "Micro",
  6444. height: math.unit(1.5, "inches"),
  6445. },
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(2 + 7 / 12, "feet"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Macro",
  6453. height: math.unit(85, "feet")
  6454. },
  6455. {
  6456. name: "Megamacro",
  6457. height: math.unit(2.2, "km")
  6458. }
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Coffee" },
  6463. {
  6464. front: {
  6465. height: math.unit(5 + 9 / 12, "feet"),
  6466. weight: math.unit(150, "lbs"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/coffee/front.svg",
  6470. extra: 3666 / 3032,
  6471. bottom: 0.04
  6472. }
  6473. },
  6474. foot: {
  6475. height: math.unit(1.29, "feet"),
  6476. name: "Foot",
  6477. image: {
  6478. source: "./media/characters/coffee/foot.svg"
  6479. }
  6480. },
  6481. },
  6482. [
  6483. {
  6484. name: "Micro",
  6485. height: math.unit(2, "inches"),
  6486. },
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(5 + 9 / 12, "feet"),
  6490. default: true
  6491. },
  6492. {
  6493. name: "Macro",
  6494. height: math.unit(800, "feet")
  6495. },
  6496. {
  6497. name: "Megamacro",
  6498. height: math.unit(25, "miles")
  6499. }
  6500. ]
  6501. ))
  6502. characterMakers.push(() => makeCharacter(
  6503. { name: "Chari-Gal" },
  6504. {
  6505. front: {
  6506. height: math.unit(6, "feet"),
  6507. weight: math.unit(200, "lbs"),
  6508. name: "Front",
  6509. image: {
  6510. source: "./media/characters/chari-gal/front.svg",
  6511. extra: 1568 / 1385,
  6512. bottom: 0.047
  6513. }
  6514. },
  6515. gigantamax: {
  6516. height: math.unit(6 * 16, "feet"),
  6517. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  6518. name: "Gigantamax",
  6519. image: {
  6520. source: "./media/characters/chari-gal/gigantamax.svg",
  6521. extra: 1124 / 888,
  6522. bottom: 0.03
  6523. }
  6524. },
  6525. },
  6526. [
  6527. {
  6528. name: "Normal",
  6529. height: math.unit(5 + 7 / 12, "feet")
  6530. },
  6531. {
  6532. name: "Macro",
  6533. height: math.unit(200, "feet"),
  6534. default: true
  6535. }
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Nova" },
  6540. {
  6541. front: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(150, "lbs"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/nova/front.svg",
  6547. extra: 5000 / 4722,
  6548. bottom: 0.02
  6549. }
  6550. }
  6551. },
  6552. [
  6553. {
  6554. name: "Micro-",
  6555. height: math.unit(0.8, "inches")
  6556. },
  6557. {
  6558. name: "Micro",
  6559. height: math.unit(2, "inches"),
  6560. default: true
  6561. },
  6562. ]
  6563. ))
  6564. characterMakers.push(() => makeCharacter(
  6565. { name: "Argent" },
  6566. {
  6567. front: {
  6568. height: math.unit(3 + 1 / 12, "feet"),
  6569. weight: math.unit(21.7, "lbs"),
  6570. name: "Front",
  6571. image: {
  6572. source: "./media/characters/argent/front.svg",
  6573. extra: 1565 / 1416,
  6574. bottom: 0.01
  6575. }
  6576. }
  6577. },
  6578. [
  6579. {
  6580. name: "Micro",
  6581. height: math.unit(2, "inches")
  6582. },
  6583. {
  6584. name: "Normal",
  6585. height: math.unit(3 + 1 / 12, "feet"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Macro",
  6590. height: math.unit(120, "feet")
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Mira al-Cul" },
  6596. {
  6597. lamp: {
  6598. height: math.unit(7 * 1559 / 989, "feet"),
  6599. name: "Magic Lamp",
  6600. image: {
  6601. source: "./media/characters/mira-al-cul/lamp.svg",
  6602. extra: 1617 / 1559
  6603. }
  6604. },
  6605. front: {
  6606. height: math.unit(7, "feet"),
  6607. name: "Front",
  6608. image: {
  6609. source: "./media/characters/mira-al-cul/front.svg",
  6610. extra: 1044 / 990
  6611. }
  6612. },
  6613. },
  6614. [
  6615. {
  6616. name: "Heavily Restricted",
  6617. height: math.unit(7 * 1559 / 989, "feet")
  6618. },
  6619. {
  6620. name: "Freshly Freed",
  6621. height: math.unit(50 * 1559 / 989, "feet")
  6622. },
  6623. {
  6624. name: "World Encompassing",
  6625. height: math.unit(10000 * 1559 / 989, "miles")
  6626. },
  6627. {
  6628. name: "Galactic",
  6629. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6630. },
  6631. {
  6632. name: "Palmed Universe",
  6633. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Multiversal Matriarch",
  6638. height: math.unit(8.87e10, "yottameters")
  6639. },
  6640. {
  6641. name: "Void Mother",
  6642. height: math.unit(3.14e110, "yottaparsecs")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Kuro-shi Uchū" },
  6648. {
  6649. front: {
  6650. height: math.unit(17 + 1 / 12, "feet"),
  6651. weight: math.unit(476.2 * 5, "lbs"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/kuro-shi-uchū/front.svg",
  6655. extra: 2329 / 1835,
  6656. bottom: 0.02
  6657. }
  6658. },
  6659. },
  6660. [
  6661. {
  6662. name: "Micro",
  6663. height: math.unit(2, "inches")
  6664. },
  6665. {
  6666. name: "Normal",
  6667. height: math.unit(12, "meters")
  6668. },
  6669. {
  6670. name: "Planetary",
  6671. height: math.unit(0.00929, "AU"),
  6672. default: true
  6673. },
  6674. {
  6675. name: "Universal",
  6676. height: math.unit(20, "gigaparsecs")
  6677. },
  6678. ]
  6679. ))
  6680. characterMakers.push(() => makeCharacter(
  6681. { name: "Katherine" },
  6682. {
  6683. front: {
  6684. height: math.unit(5 + 2 / 12, "feet"),
  6685. weight: math.unit(120, "lbs"),
  6686. name: "Front",
  6687. image: {
  6688. source: "./media/characters/katherine/front.svg",
  6689. extra: 2075 / 1969
  6690. }
  6691. },
  6692. dress: {
  6693. height: math.unit(5 + 2 / 12, "feet"),
  6694. weight: math.unit(120, "lbs"),
  6695. name: "Dress",
  6696. image: {
  6697. source: "./media/characters/katherine/dress.svg",
  6698. extra: 2258 / 2064
  6699. }
  6700. },
  6701. },
  6702. [
  6703. {
  6704. name: "Micro",
  6705. height: math.unit(1, "inches"),
  6706. default: true
  6707. },
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(5 + 2 / 12, "feet")
  6711. },
  6712. {
  6713. name: "Macro",
  6714. height: math.unit(100, "meters")
  6715. },
  6716. {
  6717. name: "Megamacro",
  6718. height: math.unit(80, "miles")
  6719. },
  6720. ]
  6721. ))
  6722. characterMakers.push(() => makeCharacter(
  6723. { name: "Yevis" },
  6724. {
  6725. front: {
  6726. height: math.unit(7 + 8 / 12, "feet"),
  6727. weight: math.unit(250, "lbs"),
  6728. name: "Front",
  6729. image: {
  6730. source: "./media/characters/yevis/front.svg",
  6731. extra: 1938 / 1755
  6732. }
  6733. }
  6734. },
  6735. [
  6736. {
  6737. name: "Mortal",
  6738. height: math.unit(7 + 8 / 12, "feet")
  6739. },
  6740. {
  6741. name: "Battle",
  6742. height: math.unit(25 + 11 / 12, "feet")
  6743. },
  6744. {
  6745. name: "Wrath",
  6746. height: math.unit(1654 + 11 / 12, "feet")
  6747. },
  6748. {
  6749. name: "Planet Destroyer",
  6750. height: math.unit(12000, "miles")
  6751. },
  6752. {
  6753. name: "Galaxy Conqueror",
  6754. height: math.unit(1.45, "zettameters"),
  6755. default: true
  6756. },
  6757. {
  6758. name: "Universal War",
  6759. height: math.unit(184, "gigaparsecs")
  6760. },
  6761. {
  6762. name: "Eternity War",
  6763. height: math.unit(1.98e55, "yottaparsecs")
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Xavier" },
  6769. {
  6770. front: {
  6771. height: math.unit(5 + 8 / 12, "feet"),
  6772. weight: math.unit(63, "kg"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/xavier/front.svg",
  6776. extra: 944 / 883
  6777. }
  6778. },
  6779. frontStretch: {
  6780. height: math.unit(5 + 8 / 12, "feet"),
  6781. weight: math.unit(63, "kg"),
  6782. name: "Stretching",
  6783. image: {
  6784. source: "./media/characters/xavier/front-stretch.svg",
  6785. extra: 962 / 820
  6786. }
  6787. },
  6788. },
  6789. [
  6790. {
  6791. name: "Normal",
  6792. height: math.unit(5 + 8 / 12, "feet")
  6793. },
  6794. {
  6795. name: "Macro",
  6796. height: math.unit(100, "meters"),
  6797. default: true
  6798. },
  6799. {
  6800. name: "McLargeHuge",
  6801. height: math.unit(10, "miles")
  6802. },
  6803. ]
  6804. ))
  6805. characterMakers.push(() => makeCharacter(
  6806. { name: "Joshii" },
  6807. {
  6808. front: {
  6809. height: math.unit(5 + 5 / 12, "feet"),
  6810. weight: math.unit(150, "lb"),
  6811. name: "Front",
  6812. image: {
  6813. source: "./media/characters/joshii/front.svg"
  6814. }
  6815. },
  6816. foot: {
  6817. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6818. name: "Foot",
  6819. image: {
  6820. source: "./media/characters/joshii/foot.svg"
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Micro",
  6827. height: math.unit(2, "inches")
  6828. },
  6829. {
  6830. name: "Normal",
  6831. height: math.unit(5 + 5 / 12, "feet"),
  6832. default: true
  6833. },
  6834. {
  6835. name: "Macro",
  6836. height: math.unit(785, "feet")
  6837. },
  6838. {
  6839. name: "Megamacro",
  6840. height: math.unit(24.5, "miles")
  6841. },
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Goddess Elizabeth" },
  6846. {
  6847. front: {
  6848. height: math.unit(6, "feet"),
  6849. weight: math.unit(150, "lb"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/goddess-elizabeth/front.svg",
  6853. extra: 1800 / 1525,
  6854. bottom: 0.005
  6855. }
  6856. },
  6857. foot: {
  6858. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6859. name: "Foot",
  6860. image: {
  6861. source: "./media/characters/goddess-elizabeth/foot.svg"
  6862. }
  6863. },
  6864. mouth: {
  6865. height: math.unit(6, "feet"),
  6866. name: "Mouth",
  6867. image: {
  6868. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6869. }
  6870. },
  6871. },
  6872. [
  6873. {
  6874. name: "Micro",
  6875. height: math.unit(12, "feet")
  6876. },
  6877. {
  6878. name: "Normal",
  6879. height: math.unit(80, "miles"),
  6880. default: true
  6881. },
  6882. {
  6883. name: "Macro",
  6884. height: math.unit(15000, "parsecs")
  6885. },
  6886. ]
  6887. ))
  6888. characterMakers.push(() => makeCharacter(
  6889. { name: "Kara" },
  6890. {
  6891. front: {
  6892. height: math.unit(5 + 9 / 12, "feet"),
  6893. weight: math.unit(144, "lb"),
  6894. name: "Front",
  6895. image: {
  6896. source: "./media/characters/kara/front.svg"
  6897. }
  6898. },
  6899. feet: {
  6900. height: math.unit(6 / 6.765, "feet"),
  6901. name: "Kara's Feet",
  6902. rename: true,
  6903. image: {
  6904. source: "./media/characters/kara/feet.svg"
  6905. }
  6906. },
  6907. },
  6908. [
  6909. {
  6910. name: "Normal",
  6911. height: math.unit(5 + 9 / 12, "feet")
  6912. },
  6913. {
  6914. name: "Macro",
  6915. height: math.unit(174, "feet"),
  6916. default: true
  6917. },
  6918. ]
  6919. ))
  6920. characterMakers.push(() => makeCharacter(
  6921. { name: "Tyrone" },
  6922. {
  6923. front: {
  6924. height: math.unit(18, "feet"),
  6925. weight: math.unit(4050, "lb"),
  6926. name: "Front",
  6927. image: {
  6928. source: "./media/characters/tyrone/front.svg",
  6929. extra: 2520 / 2402,
  6930. bottom: 0.025
  6931. }
  6932. },
  6933. },
  6934. [
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(18, "feet"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(300, "feet")
  6943. },
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Danny" },
  6948. {
  6949. front: {
  6950. height: math.unit(7 + 8 / 12, "feet"),
  6951. weight: math.unit(120, "lb"),
  6952. name: "Front",
  6953. image: {
  6954. source: "./media/characters/danny/front.svg",
  6955. extra: 1490 / 1350
  6956. }
  6957. },
  6958. back: {
  6959. height: math.unit(7 + 8 / 12, "feet"),
  6960. weight: math.unit(120, "lb"),
  6961. name: "Back",
  6962. image: {
  6963. source: "./media/characters/danny/back.svg",
  6964. extra: 1490 / 1350
  6965. }
  6966. },
  6967. },
  6968. [
  6969. {
  6970. name: "Normal",
  6971. height: math.unit(7 + 8 / 12, "feet"),
  6972. default: true
  6973. },
  6974. ]
  6975. ))
  6976. characterMakers.push(() => makeCharacter(
  6977. { name: "Mallow" },
  6978. {
  6979. front: {
  6980. height: math.unit(3.5, "inches"),
  6981. weight: math.unit(19, "grams"),
  6982. name: "Front",
  6983. image: {
  6984. source: "./media/characters/mallow/front.svg",
  6985. extra: 471 / 431
  6986. }
  6987. },
  6988. back: {
  6989. height: math.unit(3.5, "inches"),
  6990. weight: math.unit(19, "grams"),
  6991. name: "Back",
  6992. image: {
  6993. source: "./media/characters/mallow/back.svg",
  6994. extra: 471 / 431
  6995. }
  6996. },
  6997. },
  6998. [
  6999. {
  7000. name: "Normal",
  7001. height: math.unit(3.5, "inches"),
  7002. default: true
  7003. },
  7004. ]
  7005. ))
  7006. characterMakers.push(() => makeCharacter(
  7007. { name: "Starry Aqua" },
  7008. {
  7009. front: {
  7010. height: math.unit(9, "feet"),
  7011. weight: math.unit(230, "kg"),
  7012. name: "Front",
  7013. image: {
  7014. source: "./media/characters/starry-aqua/front.svg"
  7015. }
  7016. },
  7017. back: {
  7018. height: math.unit(9, "feet"),
  7019. weight: math.unit(230, "kg"),
  7020. name: "Back",
  7021. image: {
  7022. source: "./media/characters/starry-aqua/back.svg"
  7023. }
  7024. },
  7025. hand: {
  7026. height: math.unit(9 * 0.1168, "feet"),
  7027. name: "Hand",
  7028. image: {
  7029. source: "./media/characters/starry-aqua/hand.svg"
  7030. }
  7031. },
  7032. foot: {
  7033. height: math.unit(9 * 0.18, "feet"),
  7034. name: "Foot",
  7035. image: {
  7036. source: "./media/characters/starry-aqua/foot.svg"
  7037. }
  7038. }
  7039. },
  7040. [
  7041. {
  7042. name: "Micro",
  7043. height: math.unit(3, "inches")
  7044. },
  7045. {
  7046. name: "Normal",
  7047. height: math.unit(9, "feet")
  7048. },
  7049. {
  7050. name: "Macro",
  7051. height: math.unit(300, "feet"),
  7052. default: true
  7053. },
  7054. {
  7055. name: "Megamacro",
  7056. height: math.unit(3200, "feet")
  7057. }
  7058. ]
  7059. ))
  7060. characterMakers.push(() => makeCharacter(
  7061. { name: "Luka" },
  7062. {
  7063. front: {
  7064. height: math.unit(6, "feet"),
  7065. weight: math.unit(230, "lb"),
  7066. name: "Front",
  7067. image: {
  7068. source: "./media/characters/luka/front.svg",
  7069. extra: 1,
  7070. bottom: 0.025
  7071. }
  7072. },
  7073. },
  7074. [
  7075. {
  7076. name: "Normal",
  7077. height: math.unit(12 + 8 / 12, "feet"),
  7078. default: true
  7079. },
  7080. {
  7081. name: "Minimacro",
  7082. height: math.unit(20, "feet")
  7083. },
  7084. {
  7085. name: "Macro",
  7086. height: math.unit(250, "feet")
  7087. },
  7088. {
  7089. name: "Megamacro",
  7090. height: math.unit(5, "miles")
  7091. },
  7092. {
  7093. name: "Gigamacro",
  7094. height: math.unit(8000, "miles")
  7095. },
  7096. ]
  7097. ))
  7098. characterMakers.push(() => makeCharacter(
  7099. { name: "Natalie Nightring" },
  7100. {
  7101. front: {
  7102. height: math.unit(6, "feet"),
  7103. weight: math.unit(150, "lb"),
  7104. name: "Front",
  7105. image: {
  7106. source: "./media/characters/natalie-nightring/front.svg",
  7107. extra: 1,
  7108. bottom: 0.06
  7109. }
  7110. },
  7111. },
  7112. [
  7113. {
  7114. name: "Uh Oh",
  7115. height: math.unit(0.1, "mm")
  7116. },
  7117. {
  7118. name: "Small",
  7119. height: math.unit(3, "inches")
  7120. },
  7121. {
  7122. name: "Human Scale",
  7123. height: math.unit(6, "feet")
  7124. },
  7125. {
  7126. name: "Librarian",
  7127. height: math.unit(50, "feet"),
  7128. default: true
  7129. },
  7130. {
  7131. name: "Immense",
  7132. height: math.unit(200, "miles")
  7133. },
  7134. ]
  7135. ))
  7136. characterMakers.push(() => makeCharacter(
  7137. { name: "Danni Rosie" },
  7138. {
  7139. front: {
  7140. height: math.unit(6, "feet"),
  7141. weight: math.unit(180, "lbs"),
  7142. name: "Front",
  7143. image: {
  7144. source: "./media/characters/danni-rosie/front.svg",
  7145. extra: 1260 / 1128,
  7146. bottom: 0.022
  7147. }
  7148. },
  7149. },
  7150. [
  7151. {
  7152. name: "Micro",
  7153. height: math.unit(2, "inches"),
  7154. default: true
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Samantha Kruse" },
  7160. {
  7161. front: {
  7162. height: math.unit(5 + 9 / 12, "feet"),
  7163. weight: math.unit(220, "lb"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/samantha-kruse/front.svg",
  7167. extra: (985 / 935),
  7168. bottom: 0.03
  7169. }
  7170. },
  7171. frontUndressed: {
  7172. height: math.unit(5 + 9 / 12, "feet"),
  7173. weight: math.unit(220, "lb"),
  7174. name: "Front (Undressed)",
  7175. image: {
  7176. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7177. extra: (973 / 923),
  7178. bottom: 0.025
  7179. }
  7180. },
  7181. fat: {
  7182. height: math.unit(5 + 9 / 12, "feet"),
  7183. weight: math.unit(900, "lb"),
  7184. name: "Front (Fat)",
  7185. image: {
  7186. source: "./media/characters/samantha-kruse/fat.svg",
  7187. extra: 2688 / 2561
  7188. }
  7189. },
  7190. },
  7191. [
  7192. {
  7193. name: "Normal",
  7194. height: math.unit(5 + 9 / 12, "feet"),
  7195. default: true
  7196. }
  7197. ]
  7198. ))
  7199. characterMakers.push(() => makeCharacter(
  7200. { name: "Amelia Rosie" },
  7201. {
  7202. back: {
  7203. height: math.unit(5 + 4 / 12, "feet"),
  7204. weight: math.unit(4963, "lb"),
  7205. name: "Back",
  7206. image: {
  7207. source: "./media/characters/amelia-rosie/back.svg",
  7208. extra: 1113 / 963,
  7209. bottom: 0.01
  7210. }
  7211. },
  7212. },
  7213. [
  7214. {
  7215. name: "Level 0",
  7216. height: math.unit(5 + 4 / 12, "feet")
  7217. },
  7218. {
  7219. name: "Level 1",
  7220. height: math.unit(164597, "feet"),
  7221. default: true
  7222. },
  7223. {
  7224. name: "Level 2",
  7225. height: math.unit(956243, "miles")
  7226. },
  7227. {
  7228. name: "Level 3",
  7229. height: math.unit(29421709423, "miles")
  7230. },
  7231. {
  7232. name: "Level 4",
  7233. height: math.unit(154, "lightyears")
  7234. },
  7235. {
  7236. name: "Level 5",
  7237. height: math.unit(4738272, "lightyears")
  7238. },
  7239. {
  7240. name: "Level 6",
  7241. height: math.unit(145787152896, "lightyears")
  7242. },
  7243. ]
  7244. ))
  7245. characterMakers.push(() => makeCharacter(
  7246. { name: "Rook Kitara" },
  7247. {
  7248. front: {
  7249. height: math.unit(5 + 11 / 12, "feet"),
  7250. weight: math.unit(65, "kg"),
  7251. name: "Front",
  7252. image: {
  7253. source: "./media/characters/rook-kitara/front.svg",
  7254. extra: 1347 / 1274,
  7255. bottom: 0.005
  7256. }
  7257. },
  7258. },
  7259. [
  7260. {
  7261. name: "Totally Unfair",
  7262. height: math.unit(1.8, "mm")
  7263. },
  7264. {
  7265. name: "Lap Rookie",
  7266. height: math.unit(1.4, "feet")
  7267. },
  7268. {
  7269. name: "Normal",
  7270. height: math.unit(5 + 11 / 12, "feet"),
  7271. default: true
  7272. },
  7273. {
  7274. name: "How Did This Happen",
  7275. height: math.unit(80, "miles")
  7276. }
  7277. ]
  7278. ))
  7279. characterMakers.push(() => makeCharacter(
  7280. { name: "Pisces" },
  7281. {
  7282. front: {
  7283. height: math.unit(7, "feet"),
  7284. weight: math.unit(300, "lb"),
  7285. name: "Front",
  7286. image: {
  7287. source: "./media/characters/pisces/front.svg",
  7288. extra: 2255 / 2115,
  7289. bottom: 0.03
  7290. }
  7291. },
  7292. back: {
  7293. height: math.unit(7, "feet"),
  7294. weight: math.unit(300, "lb"),
  7295. name: "Back",
  7296. image: {
  7297. source: "./media/characters/pisces/back.svg",
  7298. extra: 2146 / 2055,
  7299. bottom: 0.04
  7300. }
  7301. },
  7302. },
  7303. [
  7304. {
  7305. name: "Normal",
  7306. height: math.unit(7, "feet"),
  7307. default: true
  7308. },
  7309. {
  7310. name: "Swimming Pool",
  7311. height: math.unit(12.2, "meters")
  7312. },
  7313. {
  7314. name: "Olympic Swimming Pool",
  7315. height: math.unit(56.3, "meters")
  7316. },
  7317. {
  7318. name: "Lake Superior",
  7319. height: math.unit(93900, "meters")
  7320. },
  7321. {
  7322. name: "Mediterranean Sea",
  7323. height: math.unit(644457, "meters")
  7324. },
  7325. {
  7326. name: "World's Oceans",
  7327. height: math.unit(4567491, "meters")
  7328. },
  7329. ]
  7330. ))
  7331. characterMakers.push(() => makeCharacter(
  7332. { name: "Zelas" },
  7333. {
  7334. front: {
  7335. height: math.unit(2.3, "meters"),
  7336. weight: math.unit(120, "kg"),
  7337. name: "Front",
  7338. image: {
  7339. source: "./media/characters/zelas/front.svg"
  7340. }
  7341. },
  7342. side: {
  7343. height: math.unit(2.3, "meters"),
  7344. weight: math.unit(120, "kg"),
  7345. name: "Side",
  7346. image: {
  7347. source: "./media/characters/zelas/side.svg"
  7348. }
  7349. },
  7350. back: {
  7351. height: math.unit(2.3, "meters"),
  7352. weight: math.unit(120, "kg"),
  7353. name: "Back",
  7354. image: {
  7355. source: "./media/characters/zelas/back.svg"
  7356. }
  7357. },
  7358. foot: {
  7359. height: math.unit(1.116, "feet"),
  7360. name: "Foot",
  7361. image: {
  7362. source: "./media/characters/zelas/foot.svg"
  7363. }
  7364. },
  7365. },
  7366. [
  7367. {
  7368. name: "Normal",
  7369. height: math.unit(2.3, "meters")
  7370. },
  7371. {
  7372. name: "Macro",
  7373. height: math.unit(30, "meters"),
  7374. default: true
  7375. },
  7376. ]
  7377. ))
  7378. characterMakers.push(() => makeCharacter(
  7379. { name: "Talbot" },
  7380. {
  7381. front: {
  7382. height: math.unit(1, "inch"),
  7383. weight: math.unit(0.21, "grams"),
  7384. name: "Front",
  7385. image: {
  7386. source: "./media/characters/talbot/front.svg",
  7387. extra: 594 / 544
  7388. }
  7389. },
  7390. },
  7391. [
  7392. {
  7393. name: "Micro",
  7394. height: math.unit(1, "inch"),
  7395. default: true
  7396. },
  7397. ]
  7398. ))
  7399. characterMakers.push(() => makeCharacter(
  7400. { name: "Fliss" },
  7401. {
  7402. front: {
  7403. height: math.unit(3 + 3 / 12, "feet"),
  7404. weight: math.unit(51.8, "lb"),
  7405. name: "Front",
  7406. image: {
  7407. source: "./media/characters/fliss/front.svg",
  7408. extra: 840 / 640
  7409. }
  7410. },
  7411. },
  7412. [
  7413. {
  7414. name: "Teeny Tiny",
  7415. height: math.unit(1, "mm")
  7416. },
  7417. {
  7418. name: "Small",
  7419. height: math.unit(1, "inch"),
  7420. default: true
  7421. },
  7422. {
  7423. name: "Standard Sylveon",
  7424. height: math.unit(3 + 3 / 12, "feet")
  7425. },
  7426. {
  7427. name: "Large Nuisance",
  7428. height: math.unit(33, "feet")
  7429. },
  7430. {
  7431. name: "City Filler",
  7432. height: math.unit(3000, "feet")
  7433. },
  7434. {
  7435. name: "New Horizon",
  7436. height: math.unit(6000, "miles")
  7437. },
  7438. ]
  7439. ))
  7440. characterMakers.push(() => makeCharacter(
  7441. { name: "Fleta" },
  7442. {
  7443. front: {
  7444. height: math.unit(5, "cm"),
  7445. weight: math.unit(1.94, "g"),
  7446. name: "Front",
  7447. image: {
  7448. source: "./media/characters/fleta/front.svg",
  7449. extra: 835 / 803
  7450. }
  7451. },
  7452. back: {
  7453. height: math.unit(5, "cm"),
  7454. weight: math.unit(1.94, "g"),
  7455. name: "Back",
  7456. image: {
  7457. source: "./media/characters/fleta/back.svg",
  7458. extra: 835 / 803
  7459. }
  7460. },
  7461. },
  7462. [
  7463. {
  7464. name: "Micro",
  7465. height: math.unit(5, "cm"),
  7466. default: true
  7467. },
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Dominic" },
  7472. {
  7473. front: {
  7474. height: math.unit(6, "feet"),
  7475. weight: math.unit(225, "lb"),
  7476. name: "Front",
  7477. image: {
  7478. source: "./media/characters/dominic/front.svg",
  7479. extra: 1770 / 1620,
  7480. bottom: 0.025
  7481. }
  7482. },
  7483. back: {
  7484. height: math.unit(6, "feet"),
  7485. weight: math.unit(225, "lb"),
  7486. name: "Back",
  7487. image: {
  7488. source: "./media/characters/dominic/back.svg",
  7489. extra: 1745 / 1620,
  7490. bottom: 0.065
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Nano",
  7497. height: math.unit(0.1, "mm")
  7498. },
  7499. {
  7500. name: "Micro-",
  7501. height: math.unit(1, "mm")
  7502. },
  7503. {
  7504. name: "Micro",
  7505. height: math.unit(4, "inches")
  7506. },
  7507. {
  7508. name: "Normal",
  7509. height: math.unit(6 + 4 / 12, "feet"),
  7510. default: true
  7511. },
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(115, "feet")
  7515. },
  7516. {
  7517. name: "Macro+",
  7518. height: math.unit(955, "feet")
  7519. },
  7520. {
  7521. name: "Megamacro",
  7522. height: math.unit(8990, "feet")
  7523. },
  7524. {
  7525. name: "Gigmacro",
  7526. height: math.unit(9310, "miles")
  7527. },
  7528. {
  7529. name: "Teramacro",
  7530. height: math.unit(1567005010, "miles")
  7531. },
  7532. {
  7533. name: "Examacro",
  7534. height: math.unit(1425, "parsecs")
  7535. },
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Major Colonel" },
  7540. {
  7541. front: {
  7542. height: math.unit(400, "feet"),
  7543. weight: math.unit(44444444, "lb"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/major-colonel/front.svg"
  7547. }
  7548. },
  7549. back: {
  7550. height: math.unit(400, "feet"),
  7551. weight: math.unit(44444444, "lb"),
  7552. name: "Back",
  7553. image: {
  7554. source: "./media/characters/major-colonel/back.svg"
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Macro",
  7561. height: math.unit(400, "feet"),
  7562. default: true
  7563. },
  7564. ]
  7565. ))
  7566. characterMakers.push(() => makeCharacter(
  7567. { name: "Axel Lycan" },
  7568. {
  7569. front: {
  7570. height: math.unit(6, "feet"),
  7571. weight: math.unit(120, "lb"),
  7572. name: "Front",
  7573. image: {
  7574. source: "./media/characters/axel-lycan/front.svg",
  7575. extra: 1,
  7576. bottom: 0.08
  7577. }
  7578. },
  7579. },
  7580. [
  7581. {
  7582. name: "Macro",
  7583. height: math.unit(1, "km"),
  7584. default: true
  7585. },
  7586. ]
  7587. ))
  7588. characterMakers.push(() => makeCharacter(
  7589. { name: "Vanrel (Hyena)" },
  7590. {
  7591. front: {
  7592. height: math.unit(5 + 9 / 12, "feet"),
  7593. weight: math.unit(175, "lb"),
  7594. name: "Front",
  7595. image: {
  7596. source: "./media/characters/vanrel-hyena/front.svg",
  7597. extra: 1086 / 1010,
  7598. bottom: 0.04
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Normal",
  7605. height: math.unit(5 + 9 / 12, "feet"),
  7606. default: true
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Abbott Absol" },
  7612. {
  7613. front: {
  7614. height: math.unit(6, "feet"),
  7615. weight: math.unit(103, "lb"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/abbott-absol/front.svg",
  7619. extra: 2010 / 1842
  7620. }
  7621. },
  7622. },
  7623. [
  7624. {
  7625. name: "Megamicro",
  7626. height: math.unit(0.1, "mm")
  7627. },
  7628. {
  7629. name: "Micro",
  7630. height: math.unit(1, "inch")
  7631. },
  7632. {
  7633. name: "Normal",
  7634. height: math.unit(6, "feet"),
  7635. default: true
  7636. },
  7637. ]
  7638. ))
  7639. characterMakers.push(() => makeCharacter(
  7640. { name: "Hector" },
  7641. {
  7642. front: {
  7643. height: math.unit(6, "feet"),
  7644. weight: math.unit(264, "lb"),
  7645. name: "Front",
  7646. image: {
  7647. source: "./media/characters/hector/front.svg",
  7648. extra: 2280 / 2130,
  7649. bottom: 0.07
  7650. }
  7651. },
  7652. },
  7653. [
  7654. {
  7655. name: "Normal",
  7656. height: math.unit(12.25, "foot"),
  7657. default: true
  7658. },
  7659. {
  7660. name: "Macro",
  7661. height: math.unit(160, "feet")
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Sal" },
  7667. {
  7668. front: {
  7669. height: math.unit(6, "feet"),
  7670. weight: math.unit(150, "lb"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/sal/front.svg",
  7674. extra: 1846 / 1699,
  7675. bottom: 0.04
  7676. }
  7677. },
  7678. },
  7679. [
  7680. {
  7681. name: "Megamacro",
  7682. height: math.unit(10, "miles"),
  7683. default: true
  7684. },
  7685. ]
  7686. ))
  7687. characterMakers.push(() => makeCharacter(
  7688. { name: "Ranger" },
  7689. {
  7690. front: {
  7691. height: math.unit(3, "meters"),
  7692. weight: math.unit(450, "kg"),
  7693. name: "front",
  7694. image: {
  7695. source: "./media/characters/ranger/front.svg",
  7696. extra: 2401 / 2243,
  7697. bottom: 0.05
  7698. }
  7699. },
  7700. },
  7701. [
  7702. {
  7703. name: "Normal",
  7704. height: math.unit(3, "meters"),
  7705. default: true
  7706. },
  7707. ]
  7708. ))
  7709. characterMakers.push(() => makeCharacter(
  7710. { name: "Theresa" },
  7711. {
  7712. front: {
  7713. height: math.unit(14, "feet"),
  7714. weight: math.unit(800, "kg"),
  7715. name: "Front",
  7716. image: {
  7717. source: "./media/characters/theresa/front.svg",
  7718. extra: 3575 / 3346,
  7719. bottom: 0.03
  7720. }
  7721. },
  7722. },
  7723. [
  7724. {
  7725. name: "Normal",
  7726. height: math.unit(14, "feet"),
  7727. default: true
  7728. },
  7729. ]
  7730. ))
  7731. characterMakers.push(() => makeCharacter(
  7732. { name: "Ine" },
  7733. {
  7734. front: {
  7735. height: math.unit(6, "feet"),
  7736. weight: math.unit(3, "kg"),
  7737. name: "Front",
  7738. image: {
  7739. source: "./media/characters/ine/front.svg",
  7740. extra: 678 / 539,
  7741. bottom: 0.023
  7742. }
  7743. },
  7744. },
  7745. [
  7746. {
  7747. name: "Normal",
  7748. height: math.unit(2.265, "feet"),
  7749. default: true
  7750. },
  7751. ]
  7752. ))
  7753. characterMakers.push(() => makeCharacter(
  7754. { name: "Vial" },
  7755. {
  7756. front: {
  7757. height: math.unit(5, "feet"),
  7758. weight: math.unit(30, "kg"),
  7759. name: "Front",
  7760. image: {
  7761. source: "./media/characters/vial/front.svg",
  7762. extra: 1365 / 1277,
  7763. bottom: 0.04
  7764. }
  7765. },
  7766. },
  7767. [
  7768. {
  7769. name: "Normal",
  7770. height: math.unit(5, "feet"),
  7771. default: true
  7772. },
  7773. ]
  7774. ))
  7775. characterMakers.push(() => makeCharacter(
  7776. { name: "Rovoska" },
  7777. {
  7778. side: {
  7779. height: math.unit(3.4, "meters"),
  7780. weight: math.unit(1000, "lb"),
  7781. name: "Side",
  7782. image: {
  7783. source: "./media/characters/rovoska/side.svg",
  7784. extra: 4403 / 1515
  7785. }
  7786. },
  7787. },
  7788. [
  7789. {
  7790. name: "Normal",
  7791. height: math.unit(3.4, "meters"),
  7792. default: true
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Gunner Rotthbauer" },
  7798. {
  7799. front: {
  7800. height: math.unit(8, "feet"),
  7801. weight: math.unit(315, "lb"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/gunner-rotthbauer/front.svg"
  7805. }
  7806. },
  7807. back: {
  7808. height: math.unit(8, "feet"),
  7809. weight: math.unit(315, "lb"),
  7810. name: "Back",
  7811. image: {
  7812. source: "./media/characters/gunner-rotthbauer/back.svg"
  7813. }
  7814. },
  7815. },
  7816. [
  7817. {
  7818. name: "Micro",
  7819. height: math.unit(3.5, "inches")
  7820. },
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(8, "feet"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Macro",
  7828. height: math.unit(250, "feet")
  7829. },
  7830. {
  7831. name: "Megamacro",
  7832. height: math.unit(1, "AU")
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Allatia" },
  7838. {
  7839. front: {
  7840. height: math.unit(5 + 5 / 12, "feet"),
  7841. weight: math.unit(140, "lb"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/allatia/front.svg",
  7845. extra: 1227 / 1180,
  7846. bottom: 0.027
  7847. }
  7848. },
  7849. },
  7850. [
  7851. {
  7852. name: "Normal",
  7853. height: math.unit(5 + 5 / 12, "feet")
  7854. },
  7855. {
  7856. name: "Macro",
  7857. height: math.unit(250, "feet"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Megamacro",
  7862. height: math.unit(8, "miles")
  7863. }
  7864. ]
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Tene" },
  7868. {
  7869. front: {
  7870. height: math.unit(6, "feet"),
  7871. weight: math.unit(120, "lb"),
  7872. name: "Front",
  7873. image: {
  7874. source: "./media/characters/tene/front.svg",
  7875. extra: 1728 / 1578,
  7876. bottom: 0.022
  7877. }
  7878. },
  7879. stomping: {
  7880. height: math.unit(2.025, "meters"),
  7881. weight: math.unit(120, "lb"),
  7882. name: "Stomping",
  7883. image: {
  7884. source: "./media/characters/tene/stomping.svg",
  7885. extra: 938 / 873,
  7886. bottom: 0.01
  7887. }
  7888. },
  7889. sitting: {
  7890. height: math.unit(1, "meter"),
  7891. weight: math.unit(120, "lb"),
  7892. name: "Sitting",
  7893. image: {
  7894. source: "./media/characters/tene/sitting.svg",
  7895. extra: 437 / 415,
  7896. bottom: 0.1
  7897. }
  7898. },
  7899. feral: {
  7900. height: math.unit(3.9, "feet"),
  7901. weight: math.unit(250, "lb"),
  7902. name: "Feral",
  7903. image: {
  7904. source: "./media/characters/tene/feral.svg",
  7905. extra: 717 / 458,
  7906. bottom: 0.179
  7907. }
  7908. },
  7909. },
  7910. [
  7911. {
  7912. name: "Normal",
  7913. height: math.unit(6, "feet")
  7914. },
  7915. {
  7916. name: "Macro",
  7917. height: math.unit(300, "feet"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Megamacro",
  7922. height: math.unit(5, "miles")
  7923. },
  7924. ]
  7925. ))
  7926. characterMakers.push(() => makeCharacter(
  7927. { name: "Evander" },
  7928. {
  7929. side: {
  7930. height: math.unit(6, "feet"),
  7931. name: "Side",
  7932. image: {
  7933. source: "./media/characters/evander/side.svg",
  7934. extra: 877 / 477
  7935. }
  7936. },
  7937. },
  7938. [
  7939. {
  7940. name: "Normal",
  7941. height: math.unit(0.83, "meters"),
  7942. default: true
  7943. },
  7944. ]
  7945. ))
  7946. characterMakers.push(() => makeCharacter(
  7947. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7948. {
  7949. front: {
  7950. height: math.unit(12, "feet"),
  7951. weight: math.unit(1000, "lb"),
  7952. name: "Front",
  7953. image: {
  7954. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7955. extra: 1762 / 1611
  7956. }
  7957. },
  7958. back: {
  7959. height: math.unit(12, "feet"),
  7960. weight: math.unit(1000, "lb"),
  7961. name: "Back",
  7962. image: {
  7963. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7964. extra: 1762 / 1611
  7965. }
  7966. },
  7967. },
  7968. [
  7969. {
  7970. name: "Normal",
  7971. height: math.unit(12, "feet"),
  7972. default: true
  7973. },
  7974. {
  7975. name: "Kaiju",
  7976. height: math.unit(150, "feet")
  7977. },
  7978. ]
  7979. ))
  7980. characterMakers.push(() => makeCharacter(
  7981. { name: "Zero Alurus" },
  7982. {
  7983. front: {
  7984. height: math.unit(6, "feet"),
  7985. weight: math.unit(150, "lb"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/zero-alurus/front.svg"
  7989. }
  7990. },
  7991. back: {
  7992. height: math.unit(6, "feet"),
  7993. weight: math.unit(150, "lb"),
  7994. name: "Back",
  7995. image: {
  7996. source: "./media/characters/zero-alurus/back.svg"
  7997. }
  7998. },
  7999. },
  8000. [
  8001. {
  8002. name: "Normal",
  8003. height: math.unit(5 + 10 / 12, "feet")
  8004. },
  8005. {
  8006. name: "Macro",
  8007. height: math.unit(60, "feet"),
  8008. default: true
  8009. },
  8010. {
  8011. name: "Macro+",
  8012. height: math.unit(450, "feet")
  8013. },
  8014. ]
  8015. ))
  8016. characterMakers.push(() => makeCharacter(
  8017. { name: "Mega Shi" },
  8018. {
  8019. front: {
  8020. height: math.unit(6, "feet"),
  8021. weight: math.unit(200, "lb"),
  8022. name: "Front",
  8023. image: {
  8024. source: "./media/characters/mega-shi/front.svg",
  8025. extra: 1279 / 1250,
  8026. bottom: 0.02
  8027. }
  8028. },
  8029. back: {
  8030. height: math.unit(6, "feet"),
  8031. weight: math.unit(200, "lb"),
  8032. name: "Back",
  8033. image: {
  8034. source: "./media/characters/mega-shi/back.svg",
  8035. extra: 1279 / 1250,
  8036. bottom: 0.02
  8037. }
  8038. },
  8039. },
  8040. [
  8041. {
  8042. name: "Micro",
  8043. height: math.unit(16 + 6 / 12, "feet")
  8044. },
  8045. {
  8046. name: "Third Dimension",
  8047. height: math.unit(40, "meters")
  8048. },
  8049. {
  8050. name: "Normal",
  8051. height: math.unit(660, "feet"),
  8052. default: true
  8053. },
  8054. {
  8055. name: "Megamacro",
  8056. height: math.unit(10, "miles")
  8057. },
  8058. {
  8059. name: "Planetary Launch",
  8060. height: math.unit(500, "miles")
  8061. },
  8062. {
  8063. name: "Interstellar",
  8064. height: math.unit(1e9, "miles")
  8065. },
  8066. {
  8067. name: "Leaving the Universe",
  8068. height: math.unit(1, "gigaparsec")
  8069. },
  8070. {
  8071. name: "Travelling Universes",
  8072. height: math.unit(30e15, "parsecs")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Odyssey" },
  8078. {
  8079. front: {
  8080. height: math.unit(6, "feet"),
  8081. weight: math.unit(150, "lb"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/odyssey/front.svg",
  8085. extra: 1782 / 1582,
  8086. bottom: 0.01
  8087. }
  8088. },
  8089. side: {
  8090. height: math.unit(5.7, "feet"),
  8091. weight: math.unit(140, "lb"),
  8092. name: "Side",
  8093. image: {
  8094. source: "./media/characters/odyssey/side.svg",
  8095. extra: 6462 / 5700
  8096. }
  8097. },
  8098. },
  8099. [
  8100. {
  8101. name: "Normal",
  8102. height: math.unit(5 + 4 / 12, "feet")
  8103. },
  8104. {
  8105. name: "Macro",
  8106. height: math.unit(1, "km")
  8107. },
  8108. {
  8109. name: "Megamacro",
  8110. height: math.unit(3000, "km")
  8111. },
  8112. {
  8113. name: "Gigamacro",
  8114. height: math.unit(1, "AU"),
  8115. default: true
  8116. },
  8117. {
  8118. name: "Omniversal",
  8119. height: math.unit(100e14, "lightyears")
  8120. },
  8121. ]
  8122. ))
  8123. characterMakers.push(() => makeCharacter(
  8124. { name: "Mekuto" },
  8125. {
  8126. front: {
  8127. height: math.unit(6, "feet"),
  8128. weight: math.unit(300, "lb"),
  8129. name: "Front",
  8130. image: {
  8131. source: "./media/characters/mekuto/front.svg",
  8132. extra: 921 / 832,
  8133. bottom: 0.03
  8134. }
  8135. },
  8136. hand: {
  8137. height: math.unit(6 / 10.24, "feet"),
  8138. name: "Hand",
  8139. image: {
  8140. source: "./media/characters/mekuto/hand.svg"
  8141. }
  8142. },
  8143. foot: {
  8144. height: math.unit(6 / 5.05, "feet"),
  8145. name: "Foot",
  8146. image: {
  8147. source: "./media/characters/mekuto/foot.svg"
  8148. }
  8149. },
  8150. },
  8151. [
  8152. {
  8153. name: "Minimicro",
  8154. height: math.unit(0.2, "inches")
  8155. },
  8156. {
  8157. name: "Micro",
  8158. height: math.unit(1.5, "inches")
  8159. },
  8160. {
  8161. name: "Normal",
  8162. height: math.unit(5 + 11 / 12, "feet"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "Minimacro",
  8167. height: math.unit(17 + 9 / 12, "feet")
  8168. },
  8169. {
  8170. name: "Macro",
  8171. height: math.unit(177.5, "feet")
  8172. },
  8173. {
  8174. name: "Megamacro",
  8175. height: math.unit(152, "miles")
  8176. },
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Dafydd Tomos" },
  8181. {
  8182. front: {
  8183. height: math.unit(6.5, "inches"),
  8184. weight: math.unit(13, "oz"),
  8185. name: "Front",
  8186. image: {
  8187. source: "./media/characters/dafydd-tomos/front.svg",
  8188. extra: 2990 / 2603,
  8189. bottom: 0.03
  8190. }
  8191. },
  8192. },
  8193. [
  8194. {
  8195. name: "Micro",
  8196. height: math.unit(6.5, "inches"),
  8197. default: true
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Splinter" },
  8203. {
  8204. front: {
  8205. height: math.unit(6, "feet"),
  8206. weight: math.unit(150, "lb"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/splinter/front.svg",
  8210. extra: 2990 / 2882,
  8211. bottom: 0.04
  8212. }
  8213. },
  8214. back: {
  8215. height: math.unit(6, "feet"),
  8216. weight: math.unit(150, "lb"),
  8217. name: "Back",
  8218. image: {
  8219. source: "./media/characters/splinter/back.svg",
  8220. extra: 2990 / 2882,
  8221. bottom: 0.04
  8222. }
  8223. },
  8224. },
  8225. [
  8226. {
  8227. name: "Normal",
  8228. height: math.unit(6, "feet")
  8229. },
  8230. {
  8231. name: "Macro",
  8232. height: math.unit(230, "meters"),
  8233. default: true
  8234. },
  8235. ]
  8236. ))
  8237. characterMakers.push(() => makeCharacter(
  8238. { name: "SnowGabumon" },
  8239. {
  8240. front: {
  8241. height: math.unit(4 + 10 / 12, "feet"),
  8242. weight: math.unit(480, "lb"),
  8243. name: "Front",
  8244. image: {
  8245. source: "./media/characters/snow-gabumon/front.svg",
  8246. extra: 1140 / 963,
  8247. bottom: 0.058
  8248. }
  8249. },
  8250. back: {
  8251. height: math.unit(4 + 10 / 12, "feet"),
  8252. weight: math.unit(480, "lb"),
  8253. name: "Back",
  8254. image: {
  8255. source: "./media/characters/snow-gabumon/back.svg",
  8256. extra: 1115 / 962,
  8257. bottom: 0.041
  8258. }
  8259. },
  8260. frontUndresed: {
  8261. height: math.unit(4 + 10 / 12, "feet"),
  8262. weight: math.unit(480, "lb"),
  8263. name: "Front (Undressed)",
  8264. image: {
  8265. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8266. extra: 1061 / 960,
  8267. bottom: 0.045
  8268. }
  8269. },
  8270. },
  8271. [
  8272. {
  8273. name: "Micro",
  8274. height: math.unit(1, "inch")
  8275. },
  8276. {
  8277. name: "Normal",
  8278. height: math.unit(4 + 10 / 12, "feet"),
  8279. default: true
  8280. },
  8281. {
  8282. name: "Macro",
  8283. height: math.unit(200, "feet")
  8284. },
  8285. {
  8286. name: "Megamacro",
  8287. height: math.unit(120, "miles")
  8288. },
  8289. {
  8290. name: "Gigamacro",
  8291. height: math.unit(9800, "miles")
  8292. },
  8293. ]
  8294. ))
  8295. characterMakers.push(() => makeCharacter(
  8296. { name: "Moody" },
  8297. {
  8298. front: {
  8299. height: math.unit(1.7, "meters"),
  8300. weight: math.unit(140, "lb"),
  8301. name: "Front",
  8302. image: {
  8303. source: "./media/characters/moody/front.svg",
  8304. extra: 3226 / 3007,
  8305. bottom: 0.087
  8306. }
  8307. },
  8308. },
  8309. [
  8310. {
  8311. name: "Micro",
  8312. height: math.unit(1, "mm")
  8313. },
  8314. {
  8315. name: "Normal",
  8316. height: math.unit(1.7, "meters"),
  8317. default: true
  8318. },
  8319. {
  8320. name: "Macro",
  8321. height: math.unit(80, "meters")
  8322. },
  8323. {
  8324. name: "Macro+",
  8325. height: math.unit(500, "meters")
  8326. },
  8327. ]
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Zyas" },
  8331. {
  8332. front: {
  8333. height: math.unit(6, "feet"),
  8334. weight: math.unit(150, "lb"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/zyas/front.svg",
  8338. extra: 1180 / 1120,
  8339. bottom: 0.045
  8340. }
  8341. },
  8342. },
  8343. [
  8344. {
  8345. name: "Normal",
  8346. height: math.unit(10, "feet"),
  8347. default: true
  8348. },
  8349. {
  8350. name: "Macro",
  8351. height: math.unit(500, "feet")
  8352. },
  8353. {
  8354. name: "Megamacro",
  8355. height: math.unit(5, "miles")
  8356. },
  8357. {
  8358. name: "Teramacro",
  8359. height: math.unit(150000, "miles")
  8360. },
  8361. ]
  8362. ))
  8363. characterMakers.push(() => makeCharacter(
  8364. { name: "Cuon" },
  8365. {
  8366. front: {
  8367. height: math.unit(6, "feet"),
  8368. weight: math.unit(150, "lb"),
  8369. name: "Front",
  8370. image: {
  8371. source: "./media/characters/cuon/front.svg",
  8372. extra: 1390 / 1320,
  8373. bottom: 0.008
  8374. }
  8375. },
  8376. },
  8377. [
  8378. {
  8379. name: "Micro",
  8380. height: math.unit(3, "inches")
  8381. },
  8382. {
  8383. name: "Normal",
  8384. height: math.unit(18 + 9 / 12, "feet"),
  8385. default: true
  8386. },
  8387. {
  8388. name: "Macro",
  8389. height: math.unit(360, "feet")
  8390. },
  8391. {
  8392. name: "Megamacro",
  8393. height: math.unit(360, "miles")
  8394. },
  8395. ]
  8396. ))
  8397. characterMakers.push(() => makeCharacter(
  8398. { name: "Nyanuxk" },
  8399. {
  8400. front: {
  8401. height: math.unit(2.4, "meters"),
  8402. weight: math.unit(70, "kg"),
  8403. name: "Front",
  8404. image: {
  8405. source: "./media/characters/nyanuxk/front.svg",
  8406. extra: 1172 / 1084,
  8407. bottom: 0.065
  8408. }
  8409. },
  8410. side: {
  8411. height: math.unit(2.4, "meters"),
  8412. weight: math.unit(70, "kg"),
  8413. name: "Side",
  8414. image: {
  8415. source: "./media/characters/nyanuxk/side.svg",
  8416. extra: 1190 / 1132,
  8417. bottom: 0.007
  8418. }
  8419. },
  8420. back: {
  8421. height: math.unit(2.4, "meters"),
  8422. weight: math.unit(70, "kg"),
  8423. name: "Back",
  8424. image: {
  8425. source: "./media/characters/nyanuxk/back.svg",
  8426. extra: 1200 / 1141,
  8427. bottom: 0.015
  8428. }
  8429. },
  8430. foot: {
  8431. height: math.unit(0.52, "meters"),
  8432. name: "Foot",
  8433. image: {
  8434. source: "./media/characters/nyanuxk/foot.svg"
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Micro",
  8441. height: math.unit(2, "cm")
  8442. },
  8443. {
  8444. name: "Normal",
  8445. height: math.unit(2.4, "meters"),
  8446. default: true
  8447. },
  8448. {
  8449. name: "Smaller Macro",
  8450. height: math.unit(120, "meters")
  8451. },
  8452. {
  8453. name: "Bigger Macro",
  8454. height: math.unit(1.2, "km")
  8455. },
  8456. {
  8457. name: "Megamacro",
  8458. height: math.unit(15, "kilometers")
  8459. },
  8460. {
  8461. name: "Gigamacro",
  8462. height: math.unit(2000, "km")
  8463. },
  8464. {
  8465. name: "Teramacro",
  8466. height: math.unit(500000, "km")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Ailbhe" },
  8472. {
  8473. side: {
  8474. height: math.unit(6, "feet"),
  8475. name: "Side",
  8476. image: {
  8477. source: "./media/characters/ailbhe/side.svg",
  8478. extra: 757 / 464,
  8479. bottom: 0.041
  8480. }
  8481. },
  8482. },
  8483. [
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(1.07, "meters"),
  8487. default: true
  8488. },
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Zevulfius" },
  8493. {
  8494. front: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(120, "kg"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/zevulfius/front.svg",
  8500. extra: 965 / 903
  8501. }
  8502. },
  8503. side: {
  8504. height: math.unit(6, "feet"),
  8505. weight: math.unit(120, "kg"),
  8506. name: "Side",
  8507. image: {
  8508. source: "./media/characters/zevulfius/side.svg",
  8509. extra: 939 / 900
  8510. }
  8511. },
  8512. back: {
  8513. height: math.unit(6, "feet"),
  8514. weight: math.unit(120, "kg"),
  8515. name: "Back",
  8516. image: {
  8517. source: "./media/characters/zevulfius/back.svg",
  8518. extra: 918 / 854,
  8519. bottom: 0.005
  8520. }
  8521. },
  8522. foot: {
  8523. height: math.unit(6 / 3.72, "feet"),
  8524. name: "Foot",
  8525. image: {
  8526. source: "./media/characters/zevulfius/foot.svg"
  8527. }
  8528. },
  8529. },
  8530. [
  8531. {
  8532. name: "Macro",
  8533. height: math.unit(750, "meters")
  8534. },
  8535. {
  8536. name: "Megamacro",
  8537. height: math.unit(20, "km"),
  8538. default: true
  8539. },
  8540. {
  8541. name: "Gigamacro",
  8542. height: math.unit(2000, "km")
  8543. },
  8544. {
  8545. name: "Teramacro",
  8546. height: math.unit(250000, "km")
  8547. },
  8548. ]
  8549. ))
  8550. characterMakers.push(() => makeCharacter(
  8551. { name: "Rikes" },
  8552. {
  8553. front: {
  8554. height: math.unit(100, "feet"),
  8555. weight: math.unit(350, "kg"),
  8556. name: "Front",
  8557. image: {
  8558. source: "./media/characters/rikes/front.svg",
  8559. extra: 1565 / 1483,
  8560. bottom: 0.017
  8561. }
  8562. },
  8563. },
  8564. [
  8565. {
  8566. name: "Macro",
  8567. height: math.unit(100, "feet"),
  8568. default: true
  8569. },
  8570. ]
  8571. ))
  8572. characterMakers.push(() => makeCharacter(
  8573. { name: "Adam Silver-Mane" },
  8574. {
  8575. anthro: {
  8576. height: math.unit(8, "feet"),
  8577. weight: math.unit(120, "kg"),
  8578. name: "Anthro",
  8579. image: {
  8580. source: "./media/characters/adam-silver-mane/anthro.svg",
  8581. extra: 5743 / 5339,
  8582. bottom: 0.07
  8583. }
  8584. },
  8585. taur: {
  8586. height: math.unit(16, "feet"),
  8587. weight: math.unit(1500, "kg"),
  8588. name: "Taur",
  8589. image: {
  8590. source: "./media/characters/adam-silver-mane/taur.svg",
  8591. extra: 1713 / 1571,
  8592. bottom: 0.01
  8593. }
  8594. },
  8595. },
  8596. [
  8597. {
  8598. name: "Normal",
  8599. height: math.unit(8, "feet")
  8600. },
  8601. {
  8602. name: "Minimacro",
  8603. height: math.unit(80, "feet")
  8604. },
  8605. {
  8606. name: "Macro",
  8607. height: math.unit(800, "feet"),
  8608. default: true
  8609. },
  8610. {
  8611. name: "Megamacro",
  8612. height: math.unit(8000, "feet")
  8613. },
  8614. {
  8615. name: "Gigamacro",
  8616. height: math.unit(800, "miles")
  8617. },
  8618. {
  8619. name: "Teramacro",
  8620. height: math.unit(80000, "miles")
  8621. },
  8622. {
  8623. name: "Celestial",
  8624. height: math.unit(8e6, "miles")
  8625. },
  8626. {
  8627. name: "Star Dragon",
  8628. height: math.unit(800000, "parsecs")
  8629. },
  8630. {
  8631. name: "Godly",
  8632. height: math.unit(800, "teraparsecs")
  8633. },
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Ky'owin" },
  8638. {
  8639. front: {
  8640. height: math.unit(6, "feet"),
  8641. weight: math.unit(150, "lb"),
  8642. name: "Front",
  8643. image: {
  8644. source: "./media/characters/ky'owin/front.svg",
  8645. extra: 3888 / 3068,
  8646. bottom: 0.015
  8647. }
  8648. },
  8649. },
  8650. [
  8651. {
  8652. name: "Normal",
  8653. height: math.unit(6 + 8 / 12, "feet")
  8654. },
  8655. {
  8656. name: "Large",
  8657. height: math.unit(68, "feet")
  8658. },
  8659. {
  8660. name: "Macro",
  8661. height: math.unit(132, "feet")
  8662. },
  8663. {
  8664. name: "Macro+",
  8665. height: math.unit(340, "feet")
  8666. },
  8667. {
  8668. name: "Macro++",
  8669. height: math.unit(680, "feet"),
  8670. default: true
  8671. },
  8672. {
  8673. name: "Megamacro",
  8674. height: math.unit(1, "mile")
  8675. },
  8676. {
  8677. name: "Megamacro+",
  8678. height: math.unit(10, "miles")
  8679. },
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Mal" },
  8684. {
  8685. front: {
  8686. height: math.unit(4, "feet"),
  8687. weight: math.unit(50, "lb"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/mal/front.svg",
  8691. extra: 785 / 724,
  8692. bottom: 0.07
  8693. }
  8694. },
  8695. },
  8696. [
  8697. {
  8698. name: "Micro",
  8699. height: math.unit(4, "inches")
  8700. },
  8701. {
  8702. name: "Normal",
  8703. height: math.unit(4, "feet"),
  8704. default: true
  8705. },
  8706. {
  8707. name: "Macro",
  8708. height: math.unit(200, "feet")
  8709. },
  8710. ]
  8711. ))
  8712. characterMakers.push(() => makeCharacter(
  8713. { name: "Jordan Deware" },
  8714. {
  8715. front: {
  8716. height: math.unit(6, "feet"),
  8717. weight: math.unit(150, "lb"),
  8718. name: "Front",
  8719. image: {
  8720. source: "./media/characters/jordan-deware/front.svg",
  8721. extra: 1191 / 1012
  8722. }
  8723. },
  8724. },
  8725. [
  8726. {
  8727. name: "Nano",
  8728. height: math.unit(0.01, "mm")
  8729. },
  8730. {
  8731. name: "Minimicro",
  8732. height: math.unit(1, "mm")
  8733. },
  8734. {
  8735. name: "Micro",
  8736. height: math.unit(0.5, "inches")
  8737. },
  8738. {
  8739. name: "Normal",
  8740. height: math.unit(4, "feet"),
  8741. default: true
  8742. },
  8743. {
  8744. name: "Minimacro",
  8745. height: math.unit(40, "meters")
  8746. },
  8747. {
  8748. name: "Small Macro",
  8749. height: math.unit(400, "meters")
  8750. },
  8751. {
  8752. name: "Macro",
  8753. height: math.unit(4, "miles")
  8754. },
  8755. {
  8756. name: "Megamacro",
  8757. height: math.unit(40, "miles")
  8758. },
  8759. {
  8760. name: "Megamacro+",
  8761. height: math.unit(400, "miles")
  8762. },
  8763. {
  8764. name: "Gigamacro",
  8765. height: math.unit(400000, "miles")
  8766. },
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Kimiko" },
  8771. {
  8772. side: {
  8773. height: math.unit(6, "feet"),
  8774. weight: math.unit(150, "lb"),
  8775. name: "Side",
  8776. image: {
  8777. source: "./media/characters/kimiko/side.svg",
  8778. extra: 600 / 358
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Normal",
  8785. height: math.unit(15, "feet"),
  8786. default: true
  8787. },
  8788. {
  8789. name: "Macro",
  8790. height: math.unit(220, "feet")
  8791. },
  8792. {
  8793. name: "Macro+",
  8794. height: math.unit(1450, "feet")
  8795. },
  8796. {
  8797. name: "Megamacro",
  8798. height: math.unit(11500, "feet")
  8799. },
  8800. {
  8801. name: "Gigamacro",
  8802. height: math.unit(9500, "miles")
  8803. },
  8804. {
  8805. name: "Teramacro",
  8806. height: math.unit(2208005005, "miles")
  8807. },
  8808. {
  8809. name: "Examacro",
  8810. height: math.unit(2750, "parsecs")
  8811. },
  8812. {
  8813. name: "Zettamacro",
  8814. height: math.unit(101500, "parsecs")
  8815. },
  8816. ]
  8817. ))
  8818. characterMakers.push(() => makeCharacter(
  8819. { name: "Andrew Sleepy" },
  8820. {
  8821. front: {
  8822. height: math.unit(6, "feet"),
  8823. weight: math.unit(70, "kg"),
  8824. name: "Front",
  8825. image: {
  8826. source: "./media/characters/andrew-sleepy/front.svg"
  8827. }
  8828. },
  8829. side: {
  8830. height: math.unit(6, "feet"),
  8831. weight: math.unit(70, "kg"),
  8832. name: "Side",
  8833. image: {
  8834. source: "./media/characters/andrew-sleepy/side.svg"
  8835. }
  8836. },
  8837. },
  8838. [
  8839. {
  8840. name: "Micro",
  8841. height: math.unit(1, "mm"),
  8842. default: true
  8843. },
  8844. ]
  8845. ))
  8846. characterMakers.push(() => makeCharacter(
  8847. { name: "Judio" },
  8848. {
  8849. front: {
  8850. height: math.unit(6, "feet"),
  8851. weight: math.unit(150, "lb"),
  8852. name: "Front",
  8853. image: {
  8854. source: "./media/characters/judio/front.svg",
  8855. extra: 1258 / 1110
  8856. }
  8857. },
  8858. },
  8859. [
  8860. {
  8861. name: "Normal",
  8862. height: math.unit(5 + 6 / 12, "feet")
  8863. },
  8864. {
  8865. name: "Macro",
  8866. height: math.unit(1000, "feet"),
  8867. default: true
  8868. },
  8869. {
  8870. name: "Megamacro",
  8871. height: math.unit(10, "miles")
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Nomaxice" },
  8877. {
  8878. front: {
  8879. height: math.unit(6, "feet"),
  8880. weight: math.unit(68, "kg"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/nomaxice/front.svg",
  8884. extra: 1498 / 1073,
  8885. bottom: 0.075
  8886. }
  8887. },
  8888. foot: {
  8889. height: math.unit(1.1, "feet"),
  8890. name: "Foot",
  8891. image: {
  8892. source: "./media/characters/nomaxice/foot.svg"
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Micro",
  8899. height: math.unit(8, "cm")
  8900. },
  8901. {
  8902. name: "Norm",
  8903. height: math.unit(1.82, "m")
  8904. },
  8905. {
  8906. name: "Norm+",
  8907. height: math.unit(8.8, "feet")
  8908. },
  8909. {
  8910. name: "Big",
  8911. height: math.unit(8, "meters"),
  8912. default: true
  8913. },
  8914. {
  8915. name: "Macro",
  8916. height: math.unit(18, "meters")
  8917. },
  8918. {
  8919. name: "Macro+",
  8920. height: math.unit(88, "meters")
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Dydros" },
  8926. {
  8927. front: {
  8928. height: math.unit(12, "feet"),
  8929. weight: math.unit(1.5, "tons"),
  8930. name: "Front",
  8931. image: {
  8932. source: "./media/characters/dydros/front.svg",
  8933. extra: 863 / 800,
  8934. bottom: 0.015
  8935. }
  8936. },
  8937. back: {
  8938. height: math.unit(12, "feet"),
  8939. weight: math.unit(1.5, "tons"),
  8940. name: "Back",
  8941. image: {
  8942. source: "./media/characters/dydros/back.svg",
  8943. extra: 900 / 843,
  8944. bottom: 0.005
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Normal",
  8951. height: math.unit(12, "feet"),
  8952. default: true
  8953. },
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Riggi" },
  8958. {
  8959. front: {
  8960. height: math.unit(6, "feet"),
  8961. weight: math.unit(100, "kg"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/riggi/front.svg",
  8965. extra: 5787 / 5303
  8966. }
  8967. },
  8968. hyper: {
  8969. height: math.unit(6 * 5 / 3, "feet"),
  8970. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8971. name: "Hyper",
  8972. image: {
  8973. source: "./media/characters/riggi/hyper.svg",
  8974. extra: 3595 / 3485
  8975. }
  8976. },
  8977. },
  8978. [
  8979. {
  8980. name: "Small Macro",
  8981. height: math.unit(50, "feet")
  8982. },
  8983. {
  8984. name: "Default",
  8985. height: math.unit(200, "feet"),
  8986. default: true
  8987. },
  8988. {
  8989. name: "Loom",
  8990. height: math.unit(10000, "feet")
  8991. },
  8992. {
  8993. name: "Cruising Altitude",
  8994. height: math.unit(30000, "feet")
  8995. },
  8996. {
  8997. name: "Megamacro",
  8998. height: math.unit(100, "miles")
  8999. },
  9000. {
  9001. name: "Continent Sized",
  9002. height: math.unit(2800, "miles")
  9003. },
  9004. {
  9005. name: "Earth Sized",
  9006. height: math.unit(8000, "miles")
  9007. },
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Alexi" },
  9012. {
  9013. front: {
  9014. height: math.unit(6, "feet"),
  9015. weight: math.unit(250, "lb"),
  9016. name: "Front",
  9017. image: {
  9018. source: "./media/characters/alexi/front.svg",
  9019. extra: 3483 / 3291,
  9020. bottom: 0.04
  9021. }
  9022. },
  9023. back: {
  9024. height: math.unit(6, "feet"),
  9025. weight: math.unit(250, "lb"),
  9026. name: "Back",
  9027. image: {
  9028. source: "./media/characters/alexi/back.svg",
  9029. extra: 3533 / 3356,
  9030. bottom: 0.021
  9031. }
  9032. },
  9033. frontTransforming: {
  9034. height: math.unit(8.58, "feet"),
  9035. weight: math.unit(1300, "lb"),
  9036. name: "Transforming",
  9037. image: {
  9038. source: "./media/characters/alexi/front-transforming.svg",
  9039. extra: 437 / 409,
  9040. bottom: 19/458.66
  9041. }
  9042. },
  9043. frontTransformed: {
  9044. height: math.unit(12.5, "feet"),
  9045. weight: math.unit(4000, "lb"),
  9046. name: "Transformed",
  9047. image: {
  9048. source: "./media/characters/alexi/front-transformed.svg",
  9049. extra: 639 / 614,
  9050. bottom: 30.55/671
  9051. }
  9052. },
  9053. },
  9054. [
  9055. {
  9056. name: "Normal",
  9057. height: math.unit(3, "meters"),
  9058. default: true
  9059. },
  9060. {
  9061. name: "Minimacro",
  9062. height: math.unit(30, "meters")
  9063. },
  9064. {
  9065. name: "Macro",
  9066. height: math.unit(500, "meters")
  9067. },
  9068. {
  9069. name: "Megamacro",
  9070. height: math.unit(9000, "km")
  9071. },
  9072. {
  9073. name: "Teramacro",
  9074. height: math.unit(384000, "km")
  9075. },
  9076. ]
  9077. ))
  9078. characterMakers.push(() => makeCharacter(
  9079. { name: "Kayroo" },
  9080. {
  9081. front: {
  9082. height: math.unit(6, "feet"),
  9083. weight: math.unit(150, "lb"),
  9084. name: "Front",
  9085. image: {
  9086. source: "./media/characters/kayroo/front.svg",
  9087. extra: 1153 / 1038,
  9088. bottom: 0.06
  9089. }
  9090. },
  9091. foot: {
  9092. height: math.unit(6, "feet"),
  9093. weight: math.unit(150, "lb"),
  9094. name: "Foot",
  9095. image: {
  9096. source: "./media/characters/kayroo/foot.svg"
  9097. }
  9098. },
  9099. },
  9100. [
  9101. {
  9102. name: "Normal",
  9103. height: math.unit(8, "feet"),
  9104. default: true
  9105. },
  9106. {
  9107. name: "Minimacro",
  9108. height: math.unit(250, "feet")
  9109. },
  9110. {
  9111. name: "Macro",
  9112. height: math.unit(2800, "feet")
  9113. },
  9114. {
  9115. name: "Megamacro",
  9116. height: math.unit(5200, "feet")
  9117. },
  9118. {
  9119. name: "Gigamacro",
  9120. height: math.unit(27000, "feet")
  9121. },
  9122. {
  9123. name: "Omega",
  9124. height: math.unit(45000, "feet")
  9125. },
  9126. ]
  9127. ))
  9128. characterMakers.push(() => makeCharacter(
  9129. { name: "Rhys" },
  9130. {
  9131. front: {
  9132. height: math.unit(18, "feet"),
  9133. weight: math.unit(5800, "lb"),
  9134. name: "Front",
  9135. image: {
  9136. source: "./media/characters/rhys/front.svg",
  9137. extra: 3386 / 3090,
  9138. bottom: 0.07
  9139. }
  9140. },
  9141. },
  9142. [
  9143. {
  9144. name: "Normal",
  9145. height: math.unit(18, "feet"),
  9146. default: true
  9147. },
  9148. {
  9149. name: "Working Size",
  9150. height: math.unit(200, "feet")
  9151. },
  9152. {
  9153. name: "Demolition Size",
  9154. height: math.unit(2000, "feet")
  9155. },
  9156. {
  9157. name: "Maximum Licensed Size",
  9158. height: math.unit(5, "miles")
  9159. },
  9160. {
  9161. name: "Maximum Observed Size",
  9162. height: math.unit(10, "yottameters")
  9163. },
  9164. ]
  9165. ))
  9166. characterMakers.push(() => makeCharacter(
  9167. { name: "Toto" },
  9168. {
  9169. front: {
  9170. height: math.unit(6, "feet"),
  9171. weight: math.unit(250, "lb"),
  9172. name: "Front",
  9173. image: {
  9174. source: "./media/characters/toto/front.svg",
  9175. extra: 527 / 479,
  9176. bottom: 0.05
  9177. }
  9178. },
  9179. },
  9180. [
  9181. {
  9182. name: "Micro",
  9183. height: math.unit(3, "feet")
  9184. },
  9185. {
  9186. name: "Normal",
  9187. height: math.unit(10, "feet")
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(150, "feet"),
  9192. default: true
  9193. },
  9194. {
  9195. name: "Megamacro",
  9196. height: math.unit(1200, "feet")
  9197. },
  9198. ]
  9199. ))
  9200. characterMakers.push(() => makeCharacter(
  9201. { name: "King" },
  9202. {
  9203. back: {
  9204. height: math.unit(6, "feet"),
  9205. weight: math.unit(150, "lb"),
  9206. name: "Back",
  9207. image: {
  9208. source: "./media/characters/king/back.svg"
  9209. }
  9210. },
  9211. },
  9212. [
  9213. {
  9214. name: "Micro",
  9215. height: math.unit(2, "inches")
  9216. },
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(8, "feet")
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(200, "feet"),
  9224. default: true
  9225. },
  9226. {
  9227. name: "Megamacro",
  9228. height: math.unit(50, "miles")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Cordite" },
  9234. {
  9235. anthro: {
  9236. height: math.unit(6 + 5 / 12, "feet"),
  9237. weight: math.unit(280, "lb"),
  9238. name: "Anthro",
  9239. image: {
  9240. source: "./media/characters/cordite/anthro.svg",
  9241. extra: 1986 / 1905,
  9242. bottom: 0.025
  9243. }
  9244. },
  9245. feral: {
  9246. height: math.unit(2, "feet"),
  9247. weight: math.unit(90, "lb"),
  9248. name: "Feral",
  9249. image: {
  9250. source: "./media/characters/cordite/feral.svg",
  9251. extra: 1260 / 755,
  9252. bottom: 0.05
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(6 + 5 / 12, "feet"),
  9260. default: true
  9261. },
  9262. ]
  9263. ))
  9264. characterMakers.push(() => makeCharacter(
  9265. { name: "Pianostrong" },
  9266. {
  9267. front: {
  9268. height: math.unit(6, "feet"),
  9269. weight: math.unit(150, "lb"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/pianostrong/front.svg",
  9273. extra: 6577 / 6254,
  9274. bottom: 0.02
  9275. }
  9276. },
  9277. side: {
  9278. height: math.unit(6, "feet"),
  9279. weight: math.unit(150, "lb"),
  9280. name: "Side",
  9281. image: {
  9282. source: "./media/characters/pianostrong/side.svg",
  9283. extra: 6106 / 5730
  9284. }
  9285. },
  9286. back: {
  9287. height: math.unit(6, "feet"),
  9288. weight: math.unit(150, "lb"),
  9289. name: "Back",
  9290. image: {
  9291. source: "./media/characters/pianostrong/back.svg",
  9292. extra: 6085 / 5733,
  9293. bottom: 0.01
  9294. }
  9295. },
  9296. },
  9297. [
  9298. {
  9299. name: "Macro",
  9300. height: math.unit(100, "feet")
  9301. },
  9302. {
  9303. name: "Macro+",
  9304. height: math.unit(300, "feet"),
  9305. default: true
  9306. },
  9307. {
  9308. name: "Macro++",
  9309. height: math.unit(1000, "feet")
  9310. },
  9311. ]
  9312. ))
  9313. characterMakers.push(() => makeCharacter(
  9314. { name: "Kona" },
  9315. {
  9316. front: {
  9317. height: math.unit(6, "feet"),
  9318. weight: math.unit(150, "lb"),
  9319. name: "Front",
  9320. image: {
  9321. source: "./media/characters/kona/front.svg",
  9322. extra: 2960 / 2629,
  9323. bottom: 0.005
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Normal",
  9330. height: math.unit(11 + 8 / 12, "feet")
  9331. },
  9332. {
  9333. name: "Macro",
  9334. height: math.unit(850, "feet"),
  9335. default: true
  9336. },
  9337. {
  9338. name: "Macro+",
  9339. height: math.unit(1.5, "km"),
  9340. default: true
  9341. },
  9342. {
  9343. name: "Megamacro",
  9344. height: math.unit(80, "miles")
  9345. },
  9346. {
  9347. name: "Gigamacro",
  9348. height: math.unit(3500, "miles")
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Levi" },
  9354. {
  9355. side: {
  9356. height: math.unit(1.9, "meters"),
  9357. weight: math.unit(326, "kg"),
  9358. name: "Side",
  9359. image: {
  9360. source: "./media/characters/levi/side.svg",
  9361. extra: 1704 / 1334,
  9362. bottom: 0.02
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(1.9, "meters"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Macro",
  9374. height: math.unit(20, "meters")
  9375. },
  9376. {
  9377. name: "Macro+",
  9378. height: math.unit(200, "meters")
  9379. },
  9380. {
  9381. name: "Megamacro",
  9382. height: math.unit(2, "km")
  9383. },
  9384. {
  9385. name: "Megamacro+",
  9386. height: math.unit(20, "km")
  9387. },
  9388. {
  9389. name: "Gigamacro",
  9390. height: math.unit(2500, "km")
  9391. },
  9392. {
  9393. name: "Gigamacro+",
  9394. height: math.unit(120000, "km")
  9395. },
  9396. {
  9397. name: "Teramacro",
  9398. height: math.unit(7.77e6, "km")
  9399. },
  9400. ]
  9401. ))
  9402. characterMakers.push(() => makeCharacter(
  9403. { name: "BMC" },
  9404. {
  9405. front: {
  9406. height: math.unit(6 + 4 / 12, "feet"),
  9407. weight: math.unit(188, "lb"),
  9408. name: "Front",
  9409. image: {
  9410. source: "./media/characters/bmc/front.svg",
  9411. extra: 1067 / 1022,
  9412. bottom: 0.047
  9413. }
  9414. },
  9415. },
  9416. [
  9417. {
  9418. name: "Human-sized",
  9419. height: math.unit(6 + 4 / 12, "feet")
  9420. },
  9421. {
  9422. name: "Small",
  9423. height: math.unit(250, "feet")
  9424. },
  9425. {
  9426. name: "Normal",
  9427. height: math.unit(1250, "feet"),
  9428. default: true
  9429. },
  9430. {
  9431. name: "Good Day",
  9432. height: math.unit(88, "miles")
  9433. },
  9434. {
  9435. name: "Largest Measured Size",
  9436. height: math.unit(11.2e6, "lightyears")
  9437. },
  9438. ]
  9439. ))
  9440. characterMakers.push(() => makeCharacter(
  9441. { name: "Sven the Kaiju" },
  9442. {
  9443. front: {
  9444. height: math.unit(20, "feet"),
  9445. weight: math.unit(2016, "kg"),
  9446. name: "Front",
  9447. image: {
  9448. source: "./media/characters/sven-the-kaiju/front.svg",
  9449. extra: 1479 / 1449,
  9450. bottom: 0.05
  9451. }
  9452. },
  9453. },
  9454. [
  9455. {
  9456. name: "Fairy",
  9457. height: math.unit(6, "inches")
  9458. },
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(20, "feet"),
  9462. default: true
  9463. },
  9464. {
  9465. name: "Rampage",
  9466. height: math.unit(200, "feet")
  9467. },
  9468. {
  9469. name: "Archfey Forest Guardian",
  9470. height: math.unit(1, "mile")
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Marik" },
  9476. {
  9477. front: {
  9478. height: math.unit(4, "meters"),
  9479. weight: math.unit(2, "tons"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/marik/front.svg",
  9483. extra: 1057 / 1003,
  9484. bottom: 0.08
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Normal",
  9491. height: math.unit(4, "meters"),
  9492. default: true
  9493. },
  9494. {
  9495. name: "Macro",
  9496. height: math.unit(20, "meters")
  9497. },
  9498. {
  9499. name: "Megamacro",
  9500. height: math.unit(50, "km")
  9501. },
  9502. {
  9503. name: "Gigamacro",
  9504. height: math.unit(100, "km")
  9505. },
  9506. {
  9507. name: "Alpha Macro",
  9508. height: math.unit(7.88e7, "yottameters")
  9509. },
  9510. ]
  9511. ))
  9512. characterMakers.push(() => makeCharacter(
  9513. { name: "Mel" },
  9514. {
  9515. front: {
  9516. height: math.unit(6, "feet"),
  9517. weight: math.unit(110, "lb"),
  9518. name: "Front",
  9519. image: {
  9520. source: "./media/characters/mel/front.svg",
  9521. extra: 736 / 617,
  9522. bottom: 0.017
  9523. }
  9524. },
  9525. },
  9526. [
  9527. {
  9528. name: "Pico",
  9529. height: math.unit(3, "pm")
  9530. },
  9531. {
  9532. name: "Nano",
  9533. height: math.unit(3, "nm")
  9534. },
  9535. {
  9536. name: "Micro",
  9537. height: math.unit(0.3, "mm"),
  9538. default: true
  9539. },
  9540. {
  9541. name: "Micro+",
  9542. height: math.unit(3, "mm")
  9543. },
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(5 + 10.5 / 12, "feet")
  9547. },
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Lykonous" },
  9552. {
  9553. kaiju: {
  9554. height: math.unit(1.75, "meters"),
  9555. weight: math.unit(55, "kg"),
  9556. name: "Kaiju",
  9557. image: {
  9558. source: "./media/characters/lykonous/kaiju.svg",
  9559. extra: 1055 / 946,
  9560. bottom: 0.135
  9561. }
  9562. },
  9563. },
  9564. [
  9565. {
  9566. name: "Normal",
  9567. height: math.unit(2.5, "meters"),
  9568. default: true
  9569. },
  9570. {
  9571. name: "Kaiju Dragon",
  9572. height: math.unit(60, "meters")
  9573. },
  9574. {
  9575. name: "Mega Kaiju",
  9576. height: math.unit(120, "km")
  9577. },
  9578. {
  9579. name: "Giga Kaiju",
  9580. height: math.unit(200, "megameters")
  9581. },
  9582. {
  9583. name: "Terra Kaiju",
  9584. height: math.unit(400, "gigameters")
  9585. },
  9586. {
  9587. name: "Kaiju Dragon God",
  9588. height: math.unit(13000, "exaparsecs")
  9589. },
  9590. ]
  9591. ))
  9592. characterMakers.push(() => makeCharacter(
  9593. { name: "Blü" },
  9594. {
  9595. front: {
  9596. height: math.unit(6, "feet"),
  9597. weight: math.unit(150, "lb"),
  9598. name: "Front",
  9599. image: {
  9600. source: "./media/characters/blü/front.svg",
  9601. extra: 1883 / 1564,
  9602. bottom: 0.031
  9603. }
  9604. },
  9605. },
  9606. [
  9607. {
  9608. name: "Normal",
  9609. height: math.unit(13, "feet"),
  9610. default: true
  9611. },
  9612. {
  9613. name: "Big Boi",
  9614. height: math.unit(150, "meters")
  9615. },
  9616. {
  9617. name: "Mini Stomper",
  9618. height: math.unit(300, "meters")
  9619. },
  9620. {
  9621. name: "Macro",
  9622. height: math.unit(1000, "meters")
  9623. },
  9624. {
  9625. name: "Megamacro",
  9626. height: math.unit(11000, "meters")
  9627. },
  9628. {
  9629. name: "Gigamacro",
  9630. height: math.unit(11000, "km")
  9631. },
  9632. {
  9633. name: "Teramacro",
  9634. height: math.unit(420000, "km")
  9635. },
  9636. {
  9637. name: "Examacro",
  9638. height: math.unit(120, "parsecs")
  9639. },
  9640. {
  9641. name: "God Tho",
  9642. height: math.unit(98000000000, "parsecs")
  9643. },
  9644. ]
  9645. ))
  9646. characterMakers.push(() => makeCharacter(
  9647. { name: "Scales" },
  9648. {
  9649. taurFront: {
  9650. height: math.unit(6, "feet"),
  9651. weight: math.unit(200, "lb"),
  9652. name: "Taur (Front)",
  9653. image: {
  9654. source: "./media/characters/scales/taur-front.svg",
  9655. extra: 1,
  9656. bottom: 0.05
  9657. }
  9658. },
  9659. taurBack: {
  9660. height: math.unit(6, "feet"),
  9661. weight: math.unit(200, "lb"),
  9662. name: "Taur (Back)",
  9663. image: {
  9664. source: "./media/characters/scales/taur-back.svg",
  9665. extra: 1,
  9666. bottom: 0.08
  9667. }
  9668. },
  9669. anthro: {
  9670. height: math.unit(6 * 7 / 12, "feet"),
  9671. weight: math.unit(100, "lb"),
  9672. name: "Anthro",
  9673. image: {
  9674. source: "./media/characters/scales/anthro.svg",
  9675. extra: 1,
  9676. bottom: 0.06
  9677. }
  9678. },
  9679. },
  9680. [
  9681. {
  9682. name: "Normal",
  9683. height: math.unit(12, "feet"),
  9684. default: true
  9685. },
  9686. ]
  9687. ))
  9688. characterMakers.push(() => makeCharacter(
  9689. { name: "Koragos" },
  9690. {
  9691. front: {
  9692. height: math.unit(6, "feet"),
  9693. weight: math.unit(150, "lb"),
  9694. name: "Front",
  9695. image: {
  9696. source: "./media/characters/koragos/front.svg",
  9697. extra: 841 / 794,
  9698. bottom: 0.035
  9699. }
  9700. },
  9701. back: {
  9702. height: math.unit(6, "feet"),
  9703. weight: math.unit(150, "lb"),
  9704. name: "Back",
  9705. image: {
  9706. source: "./media/characters/koragos/back.svg",
  9707. extra: 841 / 810,
  9708. bottom: 0.022
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Normal",
  9715. height: math.unit(6 + 11 / 12, "feet"),
  9716. default: true
  9717. },
  9718. {
  9719. name: "Macro",
  9720. height: math.unit(490, "feet")
  9721. },
  9722. {
  9723. name: "Megamacro",
  9724. height: math.unit(10, "miles")
  9725. },
  9726. {
  9727. name: "Gigamacro",
  9728. height: math.unit(50, "miles")
  9729. },
  9730. ]
  9731. ))
  9732. characterMakers.push(() => makeCharacter(
  9733. { name: "Xylrem" },
  9734. {
  9735. front: {
  9736. height: math.unit(6, "feet"),
  9737. weight: math.unit(250, "lb"),
  9738. name: "Front",
  9739. image: {
  9740. source: "./media/characters/xylrem/front.svg",
  9741. extra: 3323 / 3050,
  9742. bottom: 0.065
  9743. }
  9744. },
  9745. },
  9746. [
  9747. {
  9748. name: "Micro",
  9749. height: math.unit(4, "feet")
  9750. },
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(16, "feet"),
  9754. default: true
  9755. },
  9756. {
  9757. name: "Macro",
  9758. height: math.unit(2720, "feet")
  9759. },
  9760. {
  9761. name: "Megamacro",
  9762. height: math.unit(25000, "miles")
  9763. },
  9764. ]
  9765. ))
  9766. characterMakers.push(() => makeCharacter(
  9767. { name: "Ikideru" },
  9768. {
  9769. front: {
  9770. height: math.unit(8, "feet"),
  9771. weight: math.unit(250, "kg"),
  9772. name: "Front",
  9773. image: {
  9774. source: "./media/characters/ikideru/front.svg",
  9775. extra: 930 / 870,
  9776. bottom: 0.087
  9777. }
  9778. },
  9779. back: {
  9780. height: math.unit(8, "feet"),
  9781. weight: math.unit(250, "kg"),
  9782. name: "Back",
  9783. image: {
  9784. source: "./media/characters/ikideru/back.svg",
  9785. extra: 919 / 852,
  9786. bottom: 0.055
  9787. }
  9788. },
  9789. },
  9790. [
  9791. {
  9792. name: "Rare",
  9793. height: math.unit(8, "feet"),
  9794. default: true
  9795. },
  9796. {
  9797. name: "Playful Loom",
  9798. height: math.unit(80, "feet")
  9799. },
  9800. {
  9801. name: "City Leaner",
  9802. height: math.unit(230, "feet")
  9803. },
  9804. {
  9805. name: "Megamacro",
  9806. height: math.unit(2500, "feet")
  9807. },
  9808. {
  9809. name: "Gigamacro",
  9810. height: math.unit(26400, "feet")
  9811. },
  9812. {
  9813. name: "Tectonic Shifter",
  9814. height: math.unit(1.7, "megameters")
  9815. },
  9816. {
  9817. name: "Planet Carer",
  9818. height: math.unit(21, "megameters")
  9819. },
  9820. {
  9821. name: "God",
  9822. height: math.unit(11157.22, "parsecs")
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Neo" },
  9828. {
  9829. front: {
  9830. height: math.unit(6, "feet"),
  9831. weight: math.unit(120, "lb"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/neo/front.svg"
  9835. }
  9836. },
  9837. },
  9838. [
  9839. {
  9840. name: "Micro",
  9841. height: math.unit(2, "inches"),
  9842. default: true
  9843. },
  9844. {
  9845. name: "Human Size",
  9846. height: math.unit(5 + 8 / 12, "feet")
  9847. },
  9848. ]
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Chauncey (Chantz)" },
  9852. {
  9853. front: {
  9854. height: math.unit(13 + 10 / 12, "feet"),
  9855. weight: math.unit(5320, "lb"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/chauncey-chantz/front.svg",
  9859. extra: 1587 / 1435,
  9860. bottom: 0.02
  9861. }
  9862. },
  9863. },
  9864. [
  9865. {
  9866. name: "Normal",
  9867. height: math.unit(13 + 10 / 12, "feet"),
  9868. default: true
  9869. },
  9870. {
  9871. name: "Macro",
  9872. height: math.unit(45, "feet")
  9873. },
  9874. {
  9875. name: "Megamacro",
  9876. height: math.unit(250, "miles")
  9877. },
  9878. {
  9879. name: "Planetary",
  9880. height: math.unit(10000, "miles")
  9881. },
  9882. {
  9883. name: "Galactic",
  9884. height: math.unit(40000, "parsecs")
  9885. },
  9886. {
  9887. name: "Universal",
  9888. height: math.unit(1, "yottameter")
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Epifox" },
  9894. {
  9895. front: {
  9896. height: math.unit(6, "feet"),
  9897. weight: math.unit(150, "lb"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/epifox/front.svg",
  9901. extra: 1,
  9902. bottom: 0.075
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Micro",
  9909. height: math.unit(6, "inches")
  9910. },
  9911. {
  9912. name: "Normal",
  9913. height: math.unit(12, "feet"),
  9914. default: true
  9915. },
  9916. {
  9917. name: "Macro",
  9918. height: math.unit(3810, "feet")
  9919. },
  9920. {
  9921. name: "Megamacro",
  9922. height: math.unit(500, "miles")
  9923. },
  9924. ]
  9925. ))
  9926. characterMakers.push(() => makeCharacter(
  9927. { name: "Colin T." },
  9928. {
  9929. front: {
  9930. height: math.unit(1.8796, "m"),
  9931. weight: math.unit(230, "lb"),
  9932. name: "Front",
  9933. image: {
  9934. source: "./media/characters/colin-t/front.svg",
  9935. extra: 1272 / 1193,
  9936. bottom: 0.07
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(0.571, "meters")
  9944. },
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(1.8796, "meters"),
  9948. default: true
  9949. },
  9950. {
  9951. name: "Tall",
  9952. height: math.unit(4, "meters")
  9953. },
  9954. {
  9955. name: "Macro",
  9956. height: math.unit(67.241, "meters")
  9957. },
  9958. {
  9959. name: "Megamacro",
  9960. height: math.unit(371.856, "meters")
  9961. },
  9962. {
  9963. name: "Planetary",
  9964. height: math.unit(12631.5689, "km")
  9965. },
  9966. ]
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Matvei" },
  9970. {
  9971. front: {
  9972. height: math.unit(1.85, "meters"),
  9973. weight: math.unit(80, "kg"),
  9974. name: "Front",
  9975. image: {
  9976. source: "./media/characters/matvei/front.svg",
  9977. extra: 614 / 594,
  9978. bottom: 0.01
  9979. }
  9980. },
  9981. },
  9982. [
  9983. {
  9984. name: "Normal",
  9985. height: math.unit(1.85, "meters"),
  9986. default: true
  9987. },
  9988. ]
  9989. ))
  9990. characterMakers.push(() => makeCharacter(
  9991. { name: "Quincy" },
  9992. {
  9993. front: {
  9994. height: math.unit(5 + 9 / 12, "feet"),
  9995. weight: math.unit(70, "lb"),
  9996. name: "Front",
  9997. image: {
  9998. source: "./media/characters/quincy/front.svg",
  9999. extra: 3041 / 2751
  10000. }
  10001. },
  10002. back: {
  10003. height: math.unit(5 + 9 / 12, "feet"),
  10004. weight: math.unit(70, "lb"),
  10005. name: "Back",
  10006. image: {
  10007. source: "./media/characters/quincy/back.svg",
  10008. extra: 3041 / 2751
  10009. }
  10010. },
  10011. flying: {
  10012. height: math.unit(5 + 4 / 12, "feet"),
  10013. weight: math.unit(70, "lb"),
  10014. name: "Flying",
  10015. image: {
  10016. source: "./media/characters/quincy/flying.svg",
  10017. extra: 1044 / 930
  10018. }
  10019. },
  10020. },
  10021. [
  10022. {
  10023. name: "Micro",
  10024. height: math.unit(3, "cm")
  10025. },
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(5 + 9 / 12, "feet")
  10029. },
  10030. {
  10031. name: "Macro",
  10032. height: math.unit(200, "meters"),
  10033. default: true
  10034. },
  10035. {
  10036. name: "Megamacro",
  10037. height: math.unit(1000, "meters")
  10038. },
  10039. ]
  10040. ))
  10041. characterMakers.push(() => makeCharacter(
  10042. { name: "Vanrel" },
  10043. {
  10044. front: {
  10045. height: math.unit(4 + 7 / 12, "feet"),
  10046. weight: math.unit(150, "lb"),
  10047. name: "Front",
  10048. image: {
  10049. source: "./media/characters/vanrel/front.svg",
  10050. extra: 1,
  10051. bottom: 0.02
  10052. }
  10053. },
  10054. elemental: {
  10055. height: math.unit(3, "feet"),
  10056. weight: math.unit(150, "lb"),
  10057. name: "Elemental",
  10058. image: {
  10059. source: "./media/characters/vanrel/elemental.svg",
  10060. extra: 192.3/162.8,
  10061. bottom: 1.79/194.17
  10062. }
  10063. },
  10064. side: {
  10065. height: math.unit(4 + 7 / 12, "feet"),
  10066. weight: math.unit(150, "lb"),
  10067. name: "Side",
  10068. image: {
  10069. source: "./media/characters/vanrel/side.svg",
  10070. extra: 1,
  10071. bottom: 0.025
  10072. }
  10073. },
  10074. tome: {
  10075. height: math.unit(1.35, "feet"),
  10076. weight: math.unit(10, "lb"),
  10077. name: "Vanrel's Tome",
  10078. rename: true,
  10079. image: {
  10080. source: "./media/characters/vanrel/tome.svg"
  10081. }
  10082. },
  10083. beans: {
  10084. height: math.unit(0.89, "feet"),
  10085. name: "Beans",
  10086. image: {
  10087. source: "./media/characters/vanrel/beans.svg"
  10088. }
  10089. },
  10090. },
  10091. [
  10092. {
  10093. name: "Normal",
  10094. height: math.unit(4 + 7 / 12, "feet"),
  10095. default: true
  10096. },
  10097. ]
  10098. ))
  10099. characterMakers.push(() => makeCharacter(
  10100. { name: "Kuiper Vanrel" },
  10101. {
  10102. front: {
  10103. height: math.unit(7 + 5 / 12, "feet"),
  10104. weight: math.unit(150, "lb"),
  10105. name: "Front",
  10106. image: {
  10107. source: "./media/characters/kuiper-vanrel/front.svg",
  10108. extra: 1118 / 1068,
  10109. bottom: 0.09
  10110. }
  10111. },
  10112. foot: {
  10113. height: math.unit(0.55, "meters"),
  10114. name: "Foot",
  10115. image: {
  10116. source: "./media/characters/kuiper-vanrel/foot.svg",
  10117. }
  10118. },
  10119. battle: {
  10120. height: math.unit(6.824, "feet"),
  10121. weight: math.unit(150, "lb"),
  10122. name: "Battle",
  10123. image: {
  10124. source: "./media/characters/kuiper-vanrel/battle.svg",
  10125. extra: 1466/1327,
  10126. bottom: 29/1492.5
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Normal",
  10133. height: math.unit(7 + 5 / 12, "feet"),
  10134. default: true
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Keset Vanrel" },
  10140. {
  10141. front: {
  10142. height: math.unit(8 + 5 / 12, "feet"),
  10143. weight: math.unit(150, "lb"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/keset-vanrel/front.svg",
  10147. extra: 1150 / 1084,
  10148. bottom: 0.05
  10149. }
  10150. },
  10151. hand: {
  10152. height: math.unit(0.6, "meters"),
  10153. name: "Hand",
  10154. image: {
  10155. source: "./media/characters/keset-vanrel/hand.svg"
  10156. }
  10157. },
  10158. foot: {
  10159. height: math.unit(0.94978, "meters"),
  10160. name: "Foot",
  10161. image: {
  10162. source: "./media/characters/keset-vanrel/foot.svg"
  10163. }
  10164. },
  10165. battle: {
  10166. height: math.unit(7.408, "feet"),
  10167. weight: math.unit(150, "lb"),
  10168. name: "Battle",
  10169. image: {
  10170. source: "./media/characters/keset-vanrel/battle.svg",
  10171. extra: 1890/1386,
  10172. bottom: 73.28/1970
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(8 + 5 / 12, "feet"),
  10180. default: true
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Neos" },
  10186. {
  10187. front: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(150, "lb"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/neos/front.svg",
  10193. extra: 1696 / 992,
  10194. bottom: 0.14
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(54, "cm"),
  10202. default: true
  10203. },
  10204. {
  10205. name: "Macro",
  10206. height: math.unit(100, "m")
  10207. },
  10208. {
  10209. name: "Megamacro",
  10210. height: math.unit(10, "km")
  10211. },
  10212. {
  10213. name: "Megamacro+",
  10214. height: math.unit(100, "km")
  10215. },
  10216. {
  10217. name: "Gigamacro",
  10218. height: math.unit(100, "Mm")
  10219. },
  10220. {
  10221. name: "Teramacro",
  10222. height: math.unit(100, "Gm")
  10223. },
  10224. {
  10225. name: "Examacro",
  10226. height: math.unit(100, "Em")
  10227. },
  10228. {
  10229. name: "Godly",
  10230. height: math.unit(10000, "Ym")
  10231. },
  10232. {
  10233. name: "Beyond Godly",
  10234. height: math.unit(10000000, "Ym")
  10235. },
  10236. ]
  10237. ))
  10238. characterMakers.push(() => makeCharacter(
  10239. { name: "Sammy Mouse" },
  10240. {
  10241. feminine: {
  10242. height: math.unit(5, "feet"),
  10243. weight: math.unit(100, "lb"),
  10244. name: "Feminine",
  10245. image: {
  10246. source: "./media/characters/sammy-mouse/feminine.svg",
  10247. extra: 2526 / 2425,
  10248. bottom: 0.123
  10249. }
  10250. },
  10251. masculine: {
  10252. height: math.unit(5, "feet"),
  10253. weight: math.unit(100, "lb"),
  10254. name: "Masculine",
  10255. image: {
  10256. source: "./media/characters/sammy-mouse/masculine.svg",
  10257. extra: 2526 / 2425,
  10258. bottom: 0.123
  10259. }
  10260. },
  10261. },
  10262. [
  10263. {
  10264. name: "Micro",
  10265. height: math.unit(5, "inches")
  10266. },
  10267. {
  10268. name: "Normal",
  10269. height: math.unit(5, "feet"),
  10270. default: true
  10271. },
  10272. {
  10273. name: "Macro",
  10274. height: math.unit(60, "feet")
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Kole" },
  10280. {
  10281. front: {
  10282. height: math.unit(4, "feet"),
  10283. weight: math.unit(50, "lb"),
  10284. name: "Front",
  10285. image: {
  10286. source: "./media/characters/kole/front.svg",
  10287. extra: 1423 / 1303,
  10288. bottom: 0.025
  10289. }
  10290. },
  10291. back: {
  10292. height: math.unit(4, "feet"),
  10293. weight: math.unit(50, "lb"),
  10294. name: "Back",
  10295. image: {
  10296. source: "./media/characters/kole/back.svg",
  10297. extra: 1426 / 1280,
  10298. bottom: 0.02
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(4, "feet"),
  10306. default: true
  10307. },
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Rufran" },
  10312. {
  10313. front: {
  10314. height: math.unit(2 + 6 / 12, "feet"),
  10315. weight: math.unit(20, "lb"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/rufran/front.svg",
  10319. extra: 2041 / 1839,
  10320. bottom: 0.055
  10321. }
  10322. },
  10323. back: {
  10324. height: math.unit(2 + 6 / 12, "feet"),
  10325. weight: math.unit(20, "lb"),
  10326. name: "Back",
  10327. image: {
  10328. source: "./media/characters/rufran/back.svg",
  10329. extra: 2054 / 1839,
  10330. bottom: 0.01
  10331. }
  10332. },
  10333. hand: {
  10334. height: math.unit(0.2166, "meters"),
  10335. name: "Hand",
  10336. image: {
  10337. source: "./media/characters/rufran/hand.svg"
  10338. }
  10339. },
  10340. foot: {
  10341. height: math.unit(0.185, "meters"),
  10342. name: "Foot",
  10343. image: {
  10344. source: "./media/characters/rufran/foot.svg"
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Micro",
  10351. height: math.unit(1, "inch")
  10352. },
  10353. {
  10354. name: "Normal",
  10355. height: math.unit(2 + 6 / 12, "feet"),
  10356. default: true
  10357. },
  10358. {
  10359. name: "Big",
  10360. height: math.unit(60, "feet")
  10361. },
  10362. {
  10363. name: "Macro",
  10364. height: math.unit(325, "feet")
  10365. },
  10366. ]
  10367. ))
  10368. characterMakers.push(() => makeCharacter(
  10369. { name: "Chip" },
  10370. {
  10371. front: {
  10372. height: math.unit(0.3, "meters"),
  10373. weight: math.unit(3.5, "kg"),
  10374. name: "Front",
  10375. image: {
  10376. source: "./media/characters/chip/front.svg",
  10377. extra: 748 / 674
  10378. }
  10379. },
  10380. },
  10381. [
  10382. {
  10383. name: "Micro",
  10384. height: math.unit(1, "inch"),
  10385. default: true
  10386. },
  10387. ]
  10388. ))
  10389. characterMakers.push(() => makeCharacter(
  10390. { name: "Torvid" },
  10391. {
  10392. side: {
  10393. height: math.unit(2.3, "meters"),
  10394. weight: math.unit(3500, "lb"),
  10395. name: "Side",
  10396. image: {
  10397. source: "./media/characters/torvid/side.svg",
  10398. extra: 1972 / 722,
  10399. bottom: 0.035
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(2.3, "meters"),
  10407. default: true
  10408. },
  10409. ]
  10410. ))
  10411. characterMakers.push(() => makeCharacter(
  10412. { name: "Susan" },
  10413. {
  10414. front: {
  10415. height: math.unit(2, "meters"),
  10416. weight: math.unit(150.5, "kg"),
  10417. name: "Front",
  10418. image: {
  10419. source: "./media/characters/susan/front.svg",
  10420. extra: 693 / 635,
  10421. bottom: 0.05
  10422. }
  10423. },
  10424. },
  10425. [
  10426. {
  10427. name: "Megamacro",
  10428. height: math.unit(505, "miles"),
  10429. default: true
  10430. },
  10431. ]
  10432. ))
  10433. characterMakers.push(() => makeCharacter(
  10434. { name: "Raindrops" },
  10435. {
  10436. front: {
  10437. height: math.unit(6, "feet"),
  10438. weight: math.unit(150, "lb"),
  10439. name: "Front",
  10440. image: {
  10441. source: "./media/characters/raindrops/front.svg",
  10442. extra: 2655 / 2461,
  10443. bottom: 0.02
  10444. }
  10445. },
  10446. back: {
  10447. height: math.unit(6, "feet"),
  10448. weight: math.unit(150, "lb"),
  10449. name: "Back",
  10450. image: {
  10451. source: "./media/characters/raindrops/back.svg",
  10452. extra: 2574 / 2400,
  10453. bottom: 0.03
  10454. }
  10455. },
  10456. },
  10457. [
  10458. {
  10459. name: "Micro",
  10460. height: math.unit(6, "inches")
  10461. },
  10462. {
  10463. name: "Normal",
  10464. height: math.unit(6 + 2 / 12, "feet")
  10465. },
  10466. {
  10467. name: "Macro",
  10468. height: math.unit(131, "feet"),
  10469. default: true
  10470. },
  10471. {
  10472. name: "Megamacro",
  10473. height: math.unit(15, "miles")
  10474. },
  10475. {
  10476. name: "Gigamacro",
  10477. height: math.unit(4000, "miles")
  10478. },
  10479. {
  10480. name: "Teramacro",
  10481. height: math.unit(315000, "miles")
  10482. },
  10483. ]
  10484. ))
  10485. characterMakers.push(() => makeCharacter(
  10486. { name: "Tezwa" },
  10487. {
  10488. front: {
  10489. height: math.unit(2.794, "meters"),
  10490. weight: math.unit(325, "kg"),
  10491. name: "Front",
  10492. image: {
  10493. source: "./media/characters/tezwa/front.svg",
  10494. extra: 2083 / 1906,
  10495. bottom: 0.031
  10496. }
  10497. },
  10498. foot: {
  10499. height: math.unit(0.687, "meters"),
  10500. name: "Foot",
  10501. image: {
  10502. source: "./media/characters/tezwa/foot.svg"
  10503. }
  10504. },
  10505. },
  10506. [
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(9 + 2 / 12, "feet"),
  10510. default: true
  10511. },
  10512. ]
  10513. ))
  10514. characterMakers.push(() => makeCharacter(
  10515. { name: "Typhus" },
  10516. {
  10517. front: {
  10518. height: math.unit(58, "feet"),
  10519. weight: math.unit(89000, "lb"),
  10520. name: "Front",
  10521. image: {
  10522. source: "./media/characters/typhus/front.svg",
  10523. extra: 816 / 800,
  10524. bottom: 0.065
  10525. }
  10526. },
  10527. },
  10528. [
  10529. {
  10530. name: "Macro",
  10531. height: math.unit(58, "feet"),
  10532. default: true
  10533. },
  10534. ]
  10535. ))
  10536. characterMakers.push(() => makeCharacter(
  10537. { name: "Lyra Von Wulf" },
  10538. {
  10539. front: {
  10540. height: math.unit(12, "feet"),
  10541. weight: math.unit(6, "tonnes"),
  10542. name: "Front",
  10543. image: {
  10544. source: "./media/characters/lyra-von-wulf/front.svg",
  10545. extra: 1,
  10546. bottom: 0.10
  10547. }
  10548. },
  10549. frontMecha: {
  10550. height: math.unit(12, "feet"),
  10551. weight: math.unit(12, "tonnes"),
  10552. name: "Front (Mecha)",
  10553. image: {
  10554. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10555. extra: 1,
  10556. bottom: 0.042
  10557. }
  10558. },
  10559. maw: {
  10560. height: math.unit(2.2, "feet"),
  10561. name: "Maw",
  10562. image: {
  10563. source: "./media/characters/lyra-von-wulf/maw.svg"
  10564. }
  10565. },
  10566. },
  10567. [
  10568. {
  10569. name: "Normal",
  10570. height: math.unit(12, "feet"),
  10571. default: true
  10572. },
  10573. {
  10574. name: "Classic",
  10575. height: math.unit(50, "feet")
  10576. },
  10577. {
  10578. name: "Macro",
  10579. height: math.unit(500, "feet")
  10580. },
  10581. {
  10582. name: "Megamacro",
  10583. height: math.unit(1, "mile")
  10584. },
  10585. {
  10586. name: "Gigamacro",
  10587. height: math.unit(400, "miles")
  10588. },
  10589. {
  10590. name: "Teramacro",
  10591. height: math.unit(22000, "miles")
  10592. },
  10593. {
  10594. name: "Solarmacro",
  10595. height: math.unit(8600000, "miles")
  10596. },
  10597. {
  10598. name: "Galactic",
  10599. height: math.unit(1057000, "lightyears")
  10600. },
  10601. ]
  10602. ))
  10603. characterMakers.push(() => makeCharacter(
  10604. { name: "Dixon" },
  10605. {
  10606. front: {
  10607. height: math.unit(6 + 10 / 12, "feet"),
  10608. weight: math.unit(150, "lb"),
  10609. name: "Front",
  10610. image: {
  10611. source: "./media/characters/dixon/front.svg",
  10612. extra: 3361 / 3209,
  10613. bottom: 0.01
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Normal",
  10620. height: math.unit(6 + 10 / 12, "feet"),
  10621. default: true
  10622. },
  10623. {
  10624. name: "Big",
  10625. height: math.unit(12, "meters")
  10626. },
  10627. {
  10628. name: "Macro",
  10629. height: math.unit(500, "meters")
  10630. },
  10631. {
  10632. name: "Megamacro",
  10633. height: math.unit(2, "km")
  10634. },
  10635. ]
  10636. ))
  10637. characterMakers.push(() => makeCharacter(
  10638. { name: "Kauko" },
  10639. {
  10640. front: {
  10641. height: math.unit(185, "cm"),
  10642. weight: math.unit(68, "kg"),
  10643. name: "Front",
  10644. image: {
  10645. source: "./media/characters/kauko/front.svg",
  10646. extra: 1455 / 1421,
  10647. bottom: 0.03
  10648. }
  10649. },
  10650. back: {
  10651. height: math.unit(185, "cm"),
  10652. weight: math.unit(68, "kg"),
  10653. name: "Back",
  10654. image: {
  10655. source: "./media/characters/kauko/back.svg",
  10656. extra: 1455 / 1421,
  10657. bottom: 0.004
  10658. }
  10659. },
  10660. },
  10661. [
  10662. {
  10663. name: "Normal",
  10664. height: math.unit(185, "cm"),
  10665. default: true
  10666. },
  10667. ]
  10668. ))
  10669. characterMakers.push(() => makeCharacter(
  10670. { name: "Varg" },
  10671. {
  10672. front: {
  10673. height: math.unit(6, "feet"),
  10674. weight: math.unit(150, "kg"),
  10675. name: "Front",
  10676. image: {
  10677. source: "./media/characters/varg/front.svg",
  10678. extra: 1108 / 1018,
  10679. bottom: 0.0375
  10680. }
  10681. },
  10682. },
  10683. [
  10684. {
  10685. name: "Normal",
  10686. height: math.unit(5, "meters")
  10687. },
  10688. {
  10689. name: "Macro",
  10690. height: math.unit(200, "meters")
  10691. },
  10692. {
  10693. name: "Megamacro",
  10694. height: math.unit(20, "kilometers")
  10695. },
  10696. {
  10697. name: "True Size",
  10698. height: math.unit(211, "km"),
  10699. default: true
  10700. },
  10701. {
  10702. name: "Gigamacro",
  10703. height: math.unit(1000, "km")
  10704. },
  10705. {
  10706. name: "Gigamacro+",
  10707. height: math.unit(8000, "km")
  10708. },
  10709. {
  10710. name: "Teramacro",
  10711. height: math.unit(1000000, "km")
  10712. },
  10713. ]
  10714. ))
  10715. characterMakers.push(() => makeCharacter(
  10716. { name: "Dayza" },
  10717. {
  10718. front: {
  10719. height: math.unit(7 + 7 / 12, "feet"),
  10720. weight: math.unit(267, "lb"),
  10721. name: "Front",
  10722. image: {
  10723. source: "./media/characters/dayza/front.svg",
  10724. extra: 1262 / 1200,
  10725. bottom: 0.035
  10726. }
  10727. },
  10728. side: {
  10729. height: math.unit(7 + 7 / 12, "feet"),
  10730. weight: math.unit(267, "lb"),
  10731. name: "Side",
  10732. image: {
  10733. source: "./media/characters/dayza/side.svg",
  10734. extra: 1295 / 1245,
  10735. bottom: 0.05
  10736. }
  10737. },
  10738. back: {
  10739. height: math.unit(7 + 7 / 12, "feet"),
  10740. weight: math.unit(267, "lb"),
  10741. name: "Back",
  10742. image: {
  10743. source: "./media/characters/dayza/back.svg",
  10744. extra: 1241 / 1170
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Normal",
  10751. height: math.unit(7 + 7 / 12, "feet"),
  10752. default: true
  10753. },
  10754. {
  10755. name: "Macro",
  10756. height: math.unit(155, "feet")
  10757. },
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "Xanthos" },
  10762. {
  10763. front: {
  10764. height: math.unit(6 + 5 / 12, "feet"),
  10765. weight: math.unit(160, "lb"),
  10766. name: "Front",
  10767. image: {
  10768. source: "./media/characters/xanthos/front.svg",
  10769. extra: 1,
  10770. bottom: 0.04
  10771. }
  10772. },
  10773. back: {
  10774. height: math.unit(6 + 5 / 12, "feet"),
  10775. weight: math.unit(160, "lb"),
  10776. name: "Back",
  10777. image: {
  10778. source: "./media/characters/xanthos/back.svg",
  10779. extra: 1,
  10780. bottom: 0.03
  10781. }
  10782. },
  10783. hand: {
  10784. height: math.unit(0.928, "feet"),
  10785. name: "Hand",
  10786. image: {
  10787. source: "./media/characters/xanthos/hand.svg"
  10788. }
  10789. },
  10790. foot: {
  10791. height: math.unit(1.286, "feet"),
  10792. name: "Foot",
  10793. image: {
  10794. source: "./media/characters/xanthos/foot.svg"
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Normal",
  10801. height: math.unit(6 + 5 / 12, "feet"),
  10802. default: true
  10803. },
  10804. {
  10805. name: "Normal+",
  10806. height: math.unit(6, "meters")
  10807. },
  10808. {
  10809. name: "Macro",
  10810. height: math.unit(40, "feet")
  10811. },
  10812. {
  10813. name: "Macro+",
  10814. height: math.unit(200, "meters")
  10815. },
  10816. {
  10817. name: "Megamacro",
  10818. height: math.unit(20, "km")
  10819. },
  10820. {
  10821. name: "Megamacro+",
  10822. height: math.unit(100, "km")
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Grynn" },
  10828. {
  10829. front: {
  10830. height: math.unit(6 + 3 / 12, "feet"),
  10831. weight: math.unit(215, "lb"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/grynn/front.svg",
  10835. extra: 4627 / 4209,
  10836. bottom: 0.047
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Micro",
  10843. height: math.unit(6, "inches")
  10844. },
  10845. {
  10846. name: "Normal",
  10847. height: math.unit(6 + 3 / 12, "feet"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "Big",
  10852. height: math.unit(104, "feet")
  10853. },
  10854. {
  10855. name: "Macro",
  10856. height: math.unit(944, "feet")
  10857. },
  10858. {
  10859. name: "Macro+",
  10860. height: math.unit(9480, "feet")
  10861. },
  10862. {
  10863. name: "Megamacro",
  10864. height: math.unit(78752, "feet")
  10865. },
  10866. {
  10867. name: "Megamacro+",
  10868. height: math.unit(630128, "feet")
  10869. },
  10870. {
  10871. name: "Megamacro++",
  10872. height: math.unit(3150695, "feet")
  10873. },
  10874. ]
  10875. ))
  10876. characterMakers.push(() => makeCharacter(
  10877. { name: "Mocha Aura" },
  10878. {
  10879. front: {
  10880. height: math.unit(7 + 5 / 12, "feet"),
  10881. weight: math.unit(450, "lb"),
  10882. name: "Front",
  10883. image: {
  10884. source: "./media/characters/mocha-aura/front.svg",
  10885. extra: 1907 / 1817,
  10886. bottom: 0.04
  10887. }
  10888. },
  10889. back: {
  10890. height: math.unit(7 + 5 / 12, "feet"),
  10891. weight: math.unit(450, "lb"),
  10892. name: "Back",
  10893. image: {
  10894. source: "./media/characters/mocha-aura/back.svg",
  10895. extra: 1900 / 1825,
  10896. bottom: 0.045
  10897. }
  10898. },
  10899. },
  10900. [
  10901. {
  10902. name: "Nano",
  10903. height: math.unit(1, "nm")
  10904. },
  10905. {
  10906. name: "Megamicro",
  10907. height: math.unit(1, "mm")
  10908. },
  10909. {
  10910. name: "Micro",
  10911. height: math.unit(3, "inches")
  10912. },
  10913. {
  10914. name: "Normal",
  10915. height: math.unit(7 + 5 / 12, "feet"),
  10916. default: true
  10917. },
  10918. {
  10919. name: "Macro",
  10920. height: math.unit(30, "feet")
  10921. },
  10922. {
  10923. name: "Megamacro",
  10924. height: math.unit(3500, "feet")
  10925. },
  10926. {
  10927. name: "Teramacro",
  10928. height: math.unit(500000, "miles")
  10929. },
  10930. {
  10931. name: "Petamacro",
  10932. height: math.unit(50000000000000000, "parsecs")
  10933. },
  10934. ]
  10935. ))
  10936. characterMakers.push(() => makeCharacter(
  10937. { name: "Ilisha Devya" },
  10938. {
  10939. front: {
  10940. height: math.unit(6, "feet"),
  10941. weight: math.unit(150, "lb"),
  10942. name: "Front",
  10943. image: {
  10944. source: "./media/characters/ilisha-devya/front.svg",
  10945. extra: 1,
  10946. bottom: 0.175
  10947. }
  10948. },
  10949. back: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(150, "lb"),
  10952. name: "Back",
  10953. image: {
  10954. source: "./media/characters/ilisha-devya/back.svg",
  10955. extra: 1,
  10956. bottom: 0.015
  10957. }
  10958. },
  10959. },
  10960. [
  10961. {
  10962. name: "Macro",
  10963. height: math.unit(500, "feet"),
  10964. default: true
  10965. },
  10966. {
  10967. name: "Megamacro",
  10968. height: math.unit(10, "miles")
  10969. },
  10970. {
  10971. name: "Gigamacro",
  10972. height: math.unit(100000, "miles")
  10973. },
  10974. {
  10975. name: "Examacro",
  10976. height: math.unit(1e9, "lightyears")
  10977. },
  10978. {
  10979. name: "Omniversal",
  10980. height: math.unit(1e33, "lightyears")
  10981. },
  10982. {
  10983. name: "Beyond Infinite",
  10984. height: math.unit(1e100, "lightyears")
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Mira" },
  10990. {
  10991. Side: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(150, "lb"),
  10994. name: "Side",
  10995. image: {
  10996. source: "./media/characters/mira/side.svg",
  10997. extra: 900 / 799,
  10998. bottom: 0.02
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Human Size",
  11005. height: math.unit(6, "feet")
  11006. },
  11007. {
  11008. name: "Macro",
  11009. height: math.unit(100, "feet"),
  11010. default: true
  11011. },
  11012. {
  11013. name: "Megamacro",
  11014. height: math.unit(10, "miles")
  11015. },
  11016. {
  11017. name: "Gigamacro",
  11018. height: math.unit(25000, "miles")
  11019. },
  11020. {
  11021. name: "Teramacro",
  11022. height: math.unit(300, "AU")
  11023. },
  11024. {
  11025. name: "Full Size",
  11026. height: math.unit(4.5e10, "lightyears")
  11027. },
  11028. ]
  11029. ))
  11030. characterMakers.push(() => makeCharacter(
  11031. { name: "Holly" },
  11032. {
  11033. front: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(150, "lb"),
  11036. name: "Front",
  11037. image: {
  11038. source: "./media/characters/holly/front.svg",
  11039. extra: 639 / 606
  11040. }
  11041. },
  11042. back: {
  11043. height: math.unit(6, "feet"),
  11044. weight: math.unit(150, "lb"),
  11045. name: "Back",
  11046. image: {
  11047. source: "./media/characters/holly/back.svg",
  11048. extra: 623 / 598
  11049. }
  11050. },
  11051. frontWorking: {
  11052. height: math.unit(6, "feet"),
  11053. weight: math.unit(150, "lb"),
  11054. name: "Front (Working)",
  11055. image: {
  11056. source: "./media/characters/holly/front-working.svg",
  11057. extra: 607 / 577,
  11058. bottom: 0.048
  11059. }
  11060. },
  11061. },
  11062. [
  11063. {
  11064. name: "Normal",
  11065. height: math.unit(12 + 3 / 12, "feet"),
  11066. default: true
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Porter" },
  11072. {
  11073. front: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(150, "lb"),
  11076. name: "Front",
  11077. image: {
  11078. source: "./media/characters/porter/front.svg",
  11079. extra: 1,
  11080. bottom: 0.01
  11081. }
  11082. },
  11083. frontRobes: {
  11084. height: math.unit(6, "feet"),
  11085. weight: math.unit(150, "lb"),
  11086. name: "Front (Robes)",
  11087. image: {
  11088. source: "./media/characters/porter/front-robes.svg",
  11089. extra: 1.01,
  11090. bottom: 0.01
  11091. }
  11092. },
  11093. },
  11094. [
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(11 + 9 / 12, "feet"),
  11098. default: true
  11099. },
  11100. ]
  11101. ))
  11102. characterMakers.push(() => makeCharacter(
  11103. { name: "Lucy" },
  11104. {
  11105. legendary: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(150, "lb"),
  11108. name: "Legendary",
  11109. image: {
  11110. source: "./media/characters/lucy/legendary.svg",
  11111. extra: 1355 / 1100,
  11112. bottom: 0.045
  11113. }
  11114. },
  11115. },
  11116. [
  11117. {
  11118. name: "Legendary",
  11119. height: math.unit(86882 * 2, "miles"),
  11120. default: true
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Drusilla" },
  11126. {
  11127. front: {
  11128. height: math.unit(6, "feet"),
  11129. weight: math.unit(150, "lb"),
  11130. name: "Front",
  11131. image: {
  11132. source: "./media/characters/drusilla/front.svg",
  11133. extra: 678 / 635,
  11134. bottom: 0.03
  11135. }
  11136. },
  11137. back: {
  11138. height: math.unit(6, "feet"),
  11139. weight: math.unit(150, "lb"),
  11140. name: "Back",
  11141. image: {
  11142. source: "./media/characters/drusilla/back.svg",
  11143. extra: 678 / 635,
  11144. bottom: 0.005
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Macro",
  11151. height: math.unit(100, "feet")
  11152. },
  11153. {
  11154. name: "Canon Height",
  11155. height: math.unit(2000, "feet"),
  11156. default: true
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Renard Thatch" },
  11162. {
  11163. front: {
  11164. height: math.unit(6, "feet"),
  11165. weight: math.unit(180, "lb"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/renard-thatch/front.svg",
  11169. extra: 2411 / 2275,
  11170. bottom: 0.01
  11171. }
  11172. },
  11173. frontPosing: {
  11174. height: math.unit(6, "feet"),
  11175. weight: math.unit(180, "lb"),
  11176. name: "Front (Posing)",
  11177. image: {
  11178. source: "./media/characters/renard-thatch/front-posing.svg",
  11179. extra: 2381 / 2261,
  11180. bottom: 0.01
  11181. }
  11182. },
  11183. back: {
  11184. height: math.unit(6, "feet"),
  11185. weight: math.unit(180, "lb"),
  11186. name: "Back",
  11187. image: {
  11188. source: "./media/characters/renard-thatch/back.svg",
  11189. extra: 2428 / 2288
  11190. }
  11191. },
  11192. },
  11193. [
  11194. {
  11195. name: "Micro",
  11196. height: math.unit(3, "inches")
  11197. },
  11198. {
  11199. name: "Default",
  11200. height: math.unit(6, "feet"),
  11201. default: true
  11202. },
  11203. {
  11204. name: "Macro",
  11205. height: math.unit(75, "feet")
  11206. },
  11207. ]
  11208. ))
  11209. characterMakers.push(() => makeCharacter(
  11210. { name: "Sekvra" },
  11211. {
  11212. front: {
  11213. height: math.unit(1450, "feet"),
  11214. weight: math.unit(1.21e6, "tons"),
  11215. name: "Front",
  11216. image: {
  11217. source: "./media/characters/sekvra/front.svg",
  11218. extra: 1,
  11219. bottom: 0.03
  11220. }
  11221. },
  11222. frontClothed: {
  11223. height: math.unit(1450, "feet"),
  11224. weight: math.unit(1.21e6, "tons"),
  11225. name: "Front (Clothed)",
  11226. image: {
  11227. source: "./media/characters/sekvra/front-clothed.svg",
  11228. extra: 1,
  11229. bottom: 0.03
  11230. }
  11231. },
  11232. side: {
  11233. height: math.unit(1450, "feet"),
  11234. weight: math.unit(1.21e6, "tons"),
  11235. name: "Side",
  11236. image: {
  11237. source: "./media/characters/sekvra/side.svg",
  11238. extra: 1,
  11239. bottom: 0.025
  11240. }
  11241. },
  11242. back: {
  11243. height: math.unit(1450, "feet"),
  11244. weight: math.unit(1.21e6, "tons"),
  11245. name: "Back",
  11246. image: {
  11247. source: "./media/characters/sekvra/back.svg",
  11248. extra: 1,
  11249. bottom: 0.005
  11250. }
  11251. },
  11252. },
  11253. [
  11254. {
  11255. name: "Macro",
  11256. height: math.unit(1450, "feet"),
  11257. default: true
  11258. },
  11259. {
  11260. name: "Megamacro",
  11261. height: math.unit(15000, "feet")
  11262. },
  11263. ]
  11264. ))
  11265. characterMakers.push(() => makeCharacter(
  11266. { name: "Carmine" },
  11267. {
  11268. front: {
  11269. height: math.unit(6, "feet"),
  11270. weight: math.unit(150, "lb"),
  11271. name: "Front",
  11272. image: {
  11273. source: "./media/characters/carmine/front.svg",
  11274. extra: 1,
  11275. bottom: 0.035
  11276. }
  11277. },
  11278. frontArmor: {
  11279. height: math.unit(6, "feet"),
  11280. weight: math.unit(150, "lb"),
  11281. name: "Front (Armor)",
  11282. image: {
  11283. source: "./media/characters/carmine/front-armor.svg",
  11284. extra: 1,
  11285. bottom: 0.035
  11286. }
  11287. },
  11288. },
  11289. [
  11290. {
  11291. name: "Large",
  11292. height: math.unit(1, "mile")
  11293. },
  11294. {
  11295. name: "Huge",
  11296. height: math.unit(40, "miles"),
  11297. default: true
  11298. },
  11299. {
  11300. name: "Colossal",
  11301. height: math.unit(2500, "miles")
  11302. },
  11303. ]
  11304. ))
  11305. characterMakers.push(() => makeCharacter(
  11306. { name: "Elyssia" },
  11307. {
  11308. front: {
  11309. height: math.unit(6, "feet"),
  11310. weight: math.unit(150, "lb"),
  11311. name: "Front",
  11312. image: {
  11313. source: "./media/characters/elyssia/front.svg",
  11314. extra: 2201 / 2035,
  11315. bottom: 0.05
  11316. }
  11317. },
  11318. frontClothed: {
  11319. height: math.unit(6, "feet"),
  11320. weight: math.unit(150, "lb"),
  11321. name: "Front (Clothed)",
  11322. image: {
  11323. source: "./media/characters/elyssia/front-clothed.svg",
  11324. extra: 2201 / 2035,
  11325. bottom: 0.05
  11326. }
  11327. },
  11328. back: {
  11329. height: math.unit(6, "feet"),
  11330. weight: math.unit(150, "lb"),
  11331. name: "Back",
  11332. image: {
  11333. source: "./media/characters/elyssia/back.svg",
  11334. extra: 2201 / 2035,
  11335. bottom: 0.013
  11336. }
  11337. },
  11338. },
  11339. [
  11340. {
  11341. name: "Smaller",
  11342. height: math.unit(150, "feet")
  11343. },
  11344. {
  11345. name: "Standard",
  11346. height: math.unit(1400, "feet"),
  11347. default: true
  11348. },
  11349. {
  11350. name: "Distracted",
  11351. height: math.unit(15000, "feet")
  11352. },
  11353. ]
  11354. ))
  11355. characterMakers.push(() => makeCharacter(
  11356. { name: "Geno Maxwell" },
  11357. {
  11358. front: {
  11359. height: math.unit(7 + 4 / 12, "feet"),
  11360. weight: math.unit(500, "lb"),
  11361. name: "Front",
  11362. image: {
  11363. source: "./media/characters/geno-maxwell/front.svg",
  11364. extra: 2207 / 2040,
  11365. bottom: 0.015
  11366. }
  11367. },
  11368. },
  11369. [
  11370. {
  11371. name: "Micro",
  11372. height: math.unit(3, "inches")
  11373. },
  11374. {
  11375. name: "Normal",
  11376. height: math.unit(7 + 4 / 12, "feet"),
  11377. default: true
  11378. },
  11379. {
  11380. name: "Macro",
  11381. height: math.unit(220, "feet")
  11382. },
  11383. {
  11384. name: "Megamacro",
  11385. height: math.unit(11, "miles")
  11386. },
  11387. ]
  11388. ))
  11389. characterMakers.push(() => makeCharacter(
  11390. { name: "Regena Maxwell" },
  11391. {
  11392. front: {
  11393. height: math.unit(7 + 4 / 12, "feet"),
  11394. weight: math.unit(500, "lb"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/regena-maxwell/front.svg",
  11398. extra: 3115 / 2770,
  11399. bottom: 0.02
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Normal",
  11406. height: math.unit(7 + 4 / 12, "feet"),
  11407. default: true
  11408. },
  11409. {
  11410. name: "Macro",
  11411. height: math.unit(220, "feet")
  11412. },
  11413. {
  11414. name: "Megamacro",
  11415. height: math.unit(11, "miles")
  11416. },
  11417. ]
  11418. ))
  11419. characterMakers.push(() => makeCharacter(
  11420. { name: "XGlidingDragonX" },
  11421. {
  11422. front: {
  11423. height: math.unit(6, "feet"),
  11424. weight: math.unit(150, "lb"),
  11425. name: "Front",
  11426. image: {
  11427. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11428. extra: 860 / 690,
  11429. bottom: 0.03
  11430. }
  11431. },
  11432. },
  11433. [
  11434. {
  11435. name: "Normal",
  11436. height: math.unit(1.7, "meters"),
  11437. default: true
  11438. },
  11439. ]
  11440. ))
  11441. characterMakers.push(() => makeCharacter(
  11442. { name: "Quilly" },
  11443. {
  11444. front: {
  11445. height: math.unit(6, "feet"),
  11446. weight: math.unit(150, "lb"),
  11447. name: "Front",
  11448. image: {
  11449. source: "./media/characters/quilly/front.svg",
  11450. extra: 890 / 776
  11451. }
  11452. },
  11453. },
  11454. [
  11455. {
  11456. name: "Gigamacro",
  11457. height: math.unit(404090, "miles"),
  11458. default: true
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Tempest" },
  11464. {
  11465. front: {
  11466. height: math.unit(7 + 8 / 12, "feet"),
  11467. weight: math.unit(350, "lb"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/tempest/front.svg",
  11471. extra: 1175 / 1086,
  11472. bottom: 0.02
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Normal",
  11479. height: math.unit(7 + 8 / 12, "feet"),
  11480. default: true
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "Rodger" },
  11486. {
  11487. side: {
  11488. height: math.unit(4 + 5 / 12, "feet"),
  11489. weight: math.unit(80, "lb"),
  11490. name: "Side",
  11491. image: {
  11492. source: "./media/characters/rodger/side.svg",
  11493. extra: 1235 / 1118
  11494. }
  11495. },
  11496. },
  11497. [
  11498. {
  11499. name: "Micro",
  11500. height: math.unit(1, "inch")
  11501. },
  11502. {
  11503. name: "Normal",
  11504. height: math.unit(4 + 5 / 12, "feet"),
  11505. default: true
  11506. },
  11507. {
  11508. name: "Macro",
  11509. height: math.unit(120, "feet")
  11510. },
  11511. ]
  11512. ))
  11513. characterMakers.push(() => makeCharacter(
  11514. { name: "Danyel" },
  11515. {
  11516. front: {
  11517. height: math.unit(6, "feet"),
  11518. weight: math.unit(150, "lb"),
  11519. name: "Front",
  11520. image: {
  11521. source: "./media/characters/danyel/front.svg",
  11522. extra: 1185 / 1123,
  11523. bottom: 0.05
  11524. }
  11525. },
  11526. },
  11527. [
  11528. {
  11529. name: "Shrunken",
  11530. height: math.unit(0.5, "mm")
  11531. },
  11532. {
  11533. name: "Micro",
  11534. height: math.unit(1, "mm"),
  11535. default: true
  11536. },
  11537. {
  11538. name: "Upsized",
  11539. height: math.unit(5 + 5 / 12, "feet")
  11540. },
  11541. ]
  11542. ))
  11543. characterMakers.push(() => makeCharacter(
  11544. { name: "Vivian Bijoux" },
  11545. {
  11546. front: {
  11547. height: math.unit(5 + 6 / 12, "feet"),
  11548. weight: math.unit(200, "lb"),
  11549. name: "Front",
  11550. image: {
  11551. source: "./media/characters/vivian-bijoux/front.svg",
  11552. extra: 1,
  11553. bottom: 0.072
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Normal",
  11560. height: math.unit(5 + 6 / 12, "feet"),
  11561. default: true
  11562. },
  11563. {
  11564. name: "Bad Dream",
  11565. height: math.unit(500, "feet")
  11566. },
  11567. {
  11568. name: "Nightmare",
  11569. height: math.unit(500, "miles")
  11570. },
  11571. ]
  11572. ))
  11573. characterMakers.push(() => makeCharacter(
  11574. { name: "Zeta" },
  11575. {
  11576. front: {
  11577. height: math.unit(6 + 1 / 12, "feet"),
  11578. weight: math.unit(260, "lb"),
  11579. name: "Front",
  11580. image: {
  11581. source: "./media/characters/zeta/front.svg",
  11582. extra: 1968 / 1889,
  11583. bottom: 0.06
  11584. }
  11585. },
  11586. back: {
  11587. height: math.unit(6 + 1 / 12, "feet"),
  11588. weight: math.unit(260, "lb"),
  11589. name: "Back",
  11590. image: {
  11591. source: "./media/characters/zeta/back.svg",
  11592. extra: 1944 / 1858,
  11593. bottom: 0.03
  11594. }
  11595. },
  11596. hand: {
  11597. height: math.unit(1.112, "feet"),
  11598. name: "Hand",
  11599. image: {
  11600. source: "./media/characters/zeta/hand.svg"
  11601. }
  11602. },
  11603. foot: {
  11604. height: math.unit(1.48, "feet"),
  11605. name: "Foot",
  11606. image: {
  11607. source: "./media/characters/zeta/foot.svg"
  11608. }
  11609. },
  11610. },
  11611. [
  11612. {
  11613. name: "Micro",
  11614. height: math.unit(6, "inches")
  11615. },
  11616. {
  11617. name: "Normal",
  11618. height: math.unit(6 + 1 / 12, "feet"),
  11619. default: true
  11620. },
  11621. {
  11622. name: "Macro",
  11623. height: math.unit(20, "feet")
  11624. },
  11625. ]
  11626. ))
  11627. characterMakers.push(() => makeCharacter(
  11628. { name: "Jamie Larsen" },
  11629. {
  11630. front: {
  11631. height: math.unit(6, "feet"),
  11632. weight: math.unit(150, "lb"),
  11633. name: "Front",
  11634. image: {
  11635. source: "./media/characters/jamie-larsen/front.svg",
  11636. extra: 962 / 933,
  11637. bottom: 0.02
  11638. }
  11639. },
  11640. back: {
  11641. height: math.unit(6, "feet"),
  11642. weight: math.unit(150, "lb"),
  11643. name: "Back",
  11644. image: {
  11645. source: "./media/characters/jamie-larsen/back.svg",
  11646. extra: 997 / 946
  11647. }
  11648. },
  11649. },
  11650. [
  11651. {
  11652. name: "Macro",
  11653. height: math.unit(28 + 7 / 12, "feet"),
  11654. default: true
  11655. },
  11656. {
  11657. name: "Macro+",
  11658. height: math.unit(180, "feet")
  11659. },
  11660. {
  11661. name: "Megamacro",
  11662. height: math.unit(10, "miles")
  11663. },
  11664. {
  11665. name: "Gigamacro",
  11666. height: math.unit(200000, "miles")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Vance" },
  11672. {
  11673. front: {
  11674. height: math.unit(6, "feet"),
  11675. weight: math.unit(120, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/vance/front.svg",
  11679. extra: 1980 / 1890,
  11680. bottom: 0.09
  11681. }
  11682. },
  11683. back: {
  11684. height: math.unit(6, "feet"),
  11685. weight: math.unit(120, "lb"),
  11686. name: "Back",
  11687. image: {
  11688. source: "./media/characters/vance/back.svg",
  11689. extra: 2081 / 1994,
  11690. bottom: 0.014
  11691. }
  11692. },
  11693. hand: {
  11694. height: math.unit(0.88, "feet"),
  11695. name: "Hand",
  11696. image: {
  11697. source: "./media/characters/vance/hand.svg"
  11698. }
  11699. },
  11700. foot: {
  11701. height: math.unit(0.64, "feet"),
  11702. name: "Foot",
  11703. image: {
  11704. source: "./media/characters/vance/foot.svg"
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Small",
  11711. height: math.unit(90, "feet"),
  11712. default: true
  11713. },
  11714. {
  11715. name: "Macro",
  11716. height: math.unit(100, "meters")
  11717. },
  11718. {
  11719. name: "Megamacro",
  11720. height: math.unit(15, "miles")
  11721. },
  11722. ]
  11723. ))
  11724. characterMakers.push(() => makeCharacter(
  11725. { name: "Xochitl" },
  11726. {
  11727. front: {
  11728. height: math.unit(6, "feet"),
  11729. weight: math.unit(180, "lb"),
  11730. name: "Front",
  11731. image: {
  11732. source: "./media/characters/xochitl/front.svg",
  11733. extra: 2297 / 2261,
  11734. bottom: 0.065
  11735. }
  11736. },
  11737. back: {
  11738. height: math.unit(6, "feet"),
  11739. weight: math.unit(180, "lb"),
  11740. name: "Back",
  11741. image: {
  11742. source: "./media/characters/xochitl/back.svg",
  11743. extra: 2386 / 2354,
  11744. bottom: 0.01
  11745. }
  11746. },
  11747. foot: {
  11748. height: math.unit(6 / 5 * 1.15, "feet"),
  11749. weight: math.unit(150, "lb"),
  11750. name: "Foot",
  11751. image: {
  11752. source: "./media/characters/xochitl/foot.svg"
  11753. }
  11754. },
  11755. },
  11756. [
  11757. {
  11758. name: "Macro",
  11759. height: math.unit(80, "feet")
  11760. },
  11761. {
  11762. name: "Macro+",
  11763. height: math.unit(400, "feet"),
  11764. default: true
  11765. },
  11766. {
  11767. name: "Gigamacro",
  11768. height: math.unit(80000, "miles")
  11769. },
  11770. {
  11771. name: "Gigamacro+",
  11772. height: math.unit(400000, "miles")
  11773. },
  11774. {
  11775. name: "Teramacro",
  11776. height: math.unit(300, "AU")
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Vincent" },
  11782. {
  11783. front: {
  11784. height: math.unit(6, "feet"),
  11785. weight: math.unit(150, "lb"),
  11786. name: "Front",
  11787. image: {
  11788. source: "./media/characters/vincent/front.svg",
  11789. extra: 1130 / 1080,
  11790. bottom: 0.055
  11791. }
  11792. },
  11793. beak: {
  11794. height: math.unit(6 * 0.1, "feet"),
  11795. name: "Beak",
  11796. image: {
  11797. source: "./media/characters/vincent/beak.svg"
  11798. }
  11799. },
  11800. hand: {
  11801. height: math.unit(6 * 0.85, "feet"),
  11802. weight: math.unit(150, "lb"),
  11803. name: "Hand",
  11804. image: {
  11805. source: "./media/characters/vincent/hand.svg"
  11806. }
  11807. },
  11808. foot: {
  11809. height: math.unit(6 * 0.19, "feet"),
  11810. weight: math.unit(150, "lb"),
  11811. name: "Foot",
  11812. image: {
  11813. source: "./media/characters/vincent/foot.svg"
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Base",
  11820. height: math.unit(6 + 5 / 12, "feet"),
  11821. default: true
  11822. },
  11823. {
  11824. name: "Macro",
  11825. height: math.unit(300, "feet")
  11826. },
  11827. {
  11828. name: "Megamacro",
  11829. height: math.unit(2, "miles")
  11830. },
  11831. {
  11832. name: "Gigamacro",
  11833. height: math.unit(1000, "miles")
  11834. },
  11835. ]
  11836. ))
  11837. characterMakers.push(() => makeCharacter(
  11838. { name: "Jay" },
  11839. {
  11840. front: {
  11841. height: math.unit(6 + 2 / 12, "feet"),
  11842. weight: math.unit(265, "lb"),
  11843. name: "Front",
  11844. image: {
  11845. source: "./media/characters/jay/front.svg",
  11846. extra: 1510 / 1430,
  11847. bottom: 0.042
  11848. }
  11849. },
  11850. back: {
  11851. height: math.unit(6 + 2 / 12, "feet"),
  11852. weight: math.unit(265, "lb"),
  11853. name: "Back",
  11854. image: {
  11855. source: "./media/characters/jay/back.svg",
  11856. extra: 1510 / 1430,
  11857. bottom: 0.025
  11858. }
  11859. },
  11860. clothed: {
  11861. height: math.unit(6 + 2 / 12, "feet"),
  11862. weight: math.unit(265, "lb"),
  11863. name: "Front (Clothed)",
  11864. image: {
  11865. source: "./media/characters/jay/clothed.svg",
  11866. extra: 744 / 699,
  11867. bottom: 0.043
  11868. }
  11869. },
  11870. head: {
  11871. height: math.unit(1.772, "feet"),
  11872. name: "Head",
  11873. image: {
  11874. source: "./media/characters/jay/head.svg"
  11875. }
  11876. },
  11877. sizeRay: {
  11878. height: math.unit(1.331, "feet"),
  11879. name: "Size Ray",
  11880. image: {
  11881. source: "./media/characters/jay/size-ray.svg"
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Micro",
  11888. height: math.unit(1, "inch")
  11889. },
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(6 + 2 / 12, "feet"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Macro",
  11897. height: math.unit(1, "mile")
  11898. },
  11899. {
  11900. name: "Megamacro",
  11901. height: math.unit(100, "miles")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Coatl" },
  11907. {
  11908. front: {
  11909. height: math.unit(2, "meters"),
  11910. weight: math.unit(500, "kg"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/coatl/front.svg",
  11914. extra: 3948 / 3500,
  11915. bottom: 0.082
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Normal",
  11922. height: math.unit(4, "meters")
  11923. },
  11924. {
  11925. name: "Macro",
  11926. height: math.unit(100, "meters"),
  11927. default: true
  11928. },
  11929. {
  11930. name: "Macro+",
  11931. height: math.unit(300, "meters")
  11932. },
  11933. {
  11934. name: "Megamacro",
  11935. height: math.unit(3, "gigameters")
  11936. },
  11937. {
  11938. name: "Megamacro+",
  11939. height: math.unit(300, "terameters")
  11940. },
  11941. {
  11942. name: "Megamacro++",
  11943. height: math.unit(3, "lightyears")
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Shiroryu" },
  11949. {
  11950. front: {
  11951. height: math.unit(6, "feet"),
  11952. weight: math.unit(50, "kg"),
  11953. name: "front",
  11954. image: {
  11955. source: "./media/characters/shiroryu/front.svg",
  11956. extra: 1990 / 1935
  11957. }
  11958. },
  11959. },
  11960. [
  11961. {
  11962. name: "Mortal Mingling",
  11963. height: math.unit(3, "meters")
  11964. },
  11965. {
  11966. name: "Kaiju-ish",
  11967. height: math.unit(250, "meters")
  11968. },
  11969. {
  11970. name: "Somewhat Godly",
  11971. height: math.unit(400, "km"),
  11972. default: true
  11973. },
  11974. {
  11975. name: "Planetary",
  11976. height: math.unit(300, "megameters")
  11977. },
  11978. {
  11979. name: "Galaxy-dwarfing",
  11980. height: math.unit(450, "kiloparsecs")
  11981. },
  11982. {
  11983. name: "Universe Eater",
  11984. height: math.unit(150, "gigaparsecs")
  11985. },
  11986. {
  11987. name: "Almost Immeasurable",
  11988. height: math.unit(1.3e266, "yottaparsecs")
  11989. },
  11990. ]
  11991. ))
  11992. characterMakers.push(() => makeCharacter(
  11993. { name: "Umeko" },
  11994. {
  11995. front: {
  11996. height: math.unit(6, "feet"),
  11997. weight: math.unit(150, "lb"),
  11998. name: "Front",
  11999. image: {
  12000. source: "./media/characters/umeko/front.svg",
  12001. extra: 1,
  12002. bottom: 0.019
  12003. }
  12004. },
  12005. frontArmored: {
  12006. height: math.unit(6, "feet"),
  12007. weight: math.unit(150, "lb"),
  12008. name: "Front (Armored)",
  12009. image: {
  12010. source: "./media/characters/umeko/front-armored.svg",
  12011. extra: 1,
  12012. bottom: 0.021
  12013. }
  12014. },
  12015. },
  12016. [
  12017. {
  12018. name: "Macro",
  12019. height: math.unit(220, "feet"),
  12020. default: true
  12021. },
  12022. {
  12023. name: "Guardian Dragon",
  12024. height: math.unit(50, "miles")
  12025. },
  12026. {
  12027. name: "Cosmic",
  12028. height: math.unit(800000, "miles")
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Cassidy" },
  12034. {
  12035. front: {
  12036. height: math.unit(6, "feet"),
  12037. weight: math.unit(150, "lb"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/cassidy/front.svg",
  12041. extra: 1,
  12042. bottom: 0.043
  12043. }
  12044. },
  12045. },
  12046. [
  12047. {
  12048. name: "Canon Height",
  12049. height: math.unit(120, "feet"),
  12050. default: true
  12051. },
  12052. {
  12053. name: "Macro+",
  12054. height: math.unit(400, "feet")
  12055. },
  12056. {
  12057. name: "Macro++",
  12058. height: math.unit(4000, "feet")
  12059. },
  12060. {
  12061. name: "Megamacro",
  12062. height: math.unit(3, "miles")
  12063. },
  12064. ]
  12065. ))
  12066. characterMakers.push(() => makeCharacter(
  12067. { name: "Isaac" },
  12068. {
  12069. front: {
  12070. height: math.unit(6, "feet"),
  12071. weight: math.unit(150, "lb"),
  12072. name: "Front",
  12073. image: {
  12074. source: "./media/characters/isaac/front.svg",
  12075. extra: 896 / 815,
  12076. bottom: 0.11
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Human Size",
  12083. height: math.unit(8, "feet"),
  12084. default: true
  12085. },
  12086. {
  12087. name: "Macro",
  12088. height: math.unit(400, "feet")
  12089. },
  12090. {
  12091. name: "Megamacro",
  12092. height: math.unit(50, "miles")
  12093. },
  12094. {
  12095. name: "Canon Height",
  12096. height: math.unit(200, "AU")
  12097. },
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Sleekit" },
  12102. {
  12103. front: {
  12104. height: math.unit(6, "feet"),
  12105. weight: math.unit(72, "kg"),
  12106. name: "Front",
  12107. image: {
  12108. source: "./media/characters/sleekit/front.svg",
  12109. extra: 4693 / 4487,
  12110. bottom: 0.012
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Minimum Height",
  12117. height: math.unit(10, "meters")
  12118. },
  12119. {
  12120. name: "Smaller",
  12121. height: math.unit(25, "meters")
  12122. },
  12123. {
  12124. name: "Larger",
  12125. height: math.unit(38, "meters"),
  12126. default: true
  12127. },
  12128. {
  12129. name: "Maximum height",
  12130. height: math.unit(100, "meters")
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Nillia" },
  12136. {
  12137. front: {
  12138. height: math.unit(6, "feet"),
  12139. weight: math.unit(150, "lb"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/nillia/front.svg",
  12143. extra: 2195 / 2037,
  12144. bottom: 0.005
  12145. }
  12146. },
  12147. back: {
  12148. height: math.unit(6, "feet"),
  12149. weight: math.unit(150, "lb"),
  12150. name: "Back",
  12151. image: {
  12152. source: "./media/characters/nillia/back.svg",
  12153. extra: 2195 / 2037,
  12154. bottom: 0.005
  12155. }
  12156. },
  12157. },
  12158. [
  12159. {
  12160. name: "Canon Height",
  12161. height: math.unit(489, "feet"),
  12162. default: true
  12163. }
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Mesmyriza" },
  12168. {
  12169. front: {
  12170. height: math.unit(6, "feet"),
  12171. weight: math.unit(150, "lb"),
  12172. name: "Front",
  12173. image: {
  12174. source: "./media/characters/mesmyriza/front.svg",
  12175. extra: 2067 / 1784,
  12176. bottom: 0.035
  12177. }
  12178. },
  12179. foot: {
  12180. height: math.unit(6 / (250 / 35), "feet"),
  12181. name: "Foot",
  12182. image: {
  12183. source: "./media/characters/mesmyriza/foot.svg"
  12184. }
  12185. },
  12186. },
  12187. [
  12188. {
  12189. name: "Macro",
  12190. height: math.unit(457, "meters"),
  12191. default: true
  12192. },
  12193. {
  12194. name: "Megamacro",
  12195. height: math.unit(8, "megameters")
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Saudade" },
  12201. {
  12202. front: {
  12203. height: math.unit(6, "feet"),
  12204. weight: math.unit(250, "lb"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/saudade/front.svg",
  12208. extra: 1172 / 1139,
  12209. bottom: 0.035
  12210. }
  12211. },
  12212. },
  12213. [
  12214. {
  12215. name: "Micro",
  12216. height: math.unit(3, "inches")
  12217. },
  12218. {
  12219. name: "Normal",
  12220. height: math.unit(6, "feet"),
  12221. default: true
  12222. },
  12223. {
  12224. name: "Macro",
  12225. height: math.unit(50, "feet")
  12226. },
  12227. {
  12228. name: "Megamacro",
  12229. height: math.unit(2800, "feet")
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Keireer" },
  12235. {
  12236. front: {
  12237. height: math.unit(5 + 4 / 12, "feet"),
  12238. weight: math.unit(100, "lb"),
  12239. name: "Front",
  12240. image: {
  12241. source: "./media/characters/keireer/front.svg",
  12242. extra: 716 / 666,
  12243. bottom: 0.05
  12244. }
  12245. },
  12246. },
  12247. [
  12248. {
  12249. name: "Normal",
  12250. height: math.unit(5 + 4 / 12, "feet"),
  12251. default: true
  12252. },
  12253. ]
  12254. ))
  12255. characterMakers.push(() => makeCharacter(
  12256. { name: "Mirja" },
  12257. {
  12258. front: {
  12259. height: math.unit(6, "feet"),
  12260. weight: math.unit(90, "kg"),
  12261. name: "Front",
  12262. image: {
  12263. source: "./media/characters/mirja/front.svg",
  12264. extra: 1789 / 1683,
  12265. bottom: 0.05
  12266. }
  12267. },
  12268. frontDressed: {
  12269. height: math.unit(6, "feet"),
  12270. weight: math.unit(90, "lb"),
  12271. name: "Front (Dressed)",
  12272. image: {
  12273. source: "./media/characters/mirja/front-dressed.svg",
  12274. extra: 1789 / 1683,
  12275. bottom: 0.05
  12276. }
  12277. },
  12278. back: {
  12279. height: math.unit(6, "feet"),
  12280. weight: math.unit(90, "lb"),
  12281. name: "Back",
  12282. image: {
  12283. source: "./media/characters/mirja/back.svg",
  12284. extra: 953 / 917,
  12285. bottom: 0.017
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "\"Incognito\"",
  12292. height: math.unit(3, "meters")
  12293. },
  12294. {
  12295. name: "Strolling Size",
  12296. height: math.unit(15, "km")
  12297. },
  12298. {
  12299. name: "Larger Strolling Size",
  12300. height: math.unit(400, "km")
  12301. },
  12302. {
  12303. name: "Preferred Size",
  12304. height: math.unit(5000, "km")
  12305. },
  12306. {
  12307. name: "True Size",
  12308. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12309. default: true
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Nightraver" },
  12315. {
  12316. front: {
  12317. height: math.unit(15, "feet"),
  12318. weight: math.unit(880, "kg"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/nightraver/front.svg",
  12322. extra: 2444 / 2160,
  12323. bottom: 0.027
  12324. }
  12325. },
  12326. back: {
  12327. height: math.unit(15, "feet"),
  12328. weight: math.unit(880, "kg"),
  12329. name: "Back",
  12330. image: {
  12331. source: "./media/characters/nightraver/back.svg",
  12332. extra: 2309 / 2180,
  12333. bottom: 0.005
  12334. }
  12335. },
  12336. sole: {
  12337. height: math.unit(2.878, "feet"),
  12338. name: "Sole",
  12339. image: {
  12340. source: "./media/characters/nightraver/sole.svg"
  12341. }
  12342. },
  12343. foot: {
  12344. height: math.unit(2.285, "feet"),
  12345. name: "Foot",
  12346. image: {
  12347. source: "./media/characters/nightraver/foot.svg"
  12348. }
  12349. },
  12350. maw: {
  12351. height: math.unit(2.67, "feet"),
  12352. name: "Maw",
  12353. image: {
  12354. source: "./media/characters/nightraver/maw.svg"
  12355. }
  12356. },
  12357. },
  12358. [
  12359. {
  12360. name: "Micro",
  12361. height: math.unit(1, "cm")
  12362. },
  12363. {
  12364. name: "Normal",
  12365. height: math.unit(15, "feet"),
  12366. default: true
  12367. },
  12368. {
  12369. name: "Macro",
  12370. height: math.unit(300, "feet")
  12371. },
  12372. {
  12373. name: "Megamacro",
  12374. height: math.unit(300, "miles")
  12375. },
  12376. {
  12377. name: "Gigamacro",
  12378. height: math.unit(10000, "miles")
  12379. },
  12380. ]
  12381. ))
  12382. characterMakers.push(() => makeCharacter(
  12383. { name: "Arc" },
  12384. {
  12385. side: {
  12386. height: math.unit(2, "inches"),
  12387. weight: math.unit(5, "grams"),
  12388. name: "Side",
  12389. image: {
  12390. source: "./media/characters/arc/side.svg"
  12391. }
  12392. },
  12393. },
  12394. [
  12395. {
  12396. name: "Micro",
  12397. height: math.unit(2, "inches"),
  12398. default: true
  12399. },
  12400. ]
  12401. ))
  12402. characterMakers.push(() => makeCharacter(
  12403. { name: "Nebula Shahar" },
  12404. {
  12405. front: {
  12406. height: math.unit(1.1938, "meters"),
  12407. weight: math.unit(54, "kg"),
  12408. name: "Front",
  12409. image: {
  12410. source: "./media/characters/nebula-shahar/front.svg",
  12411. extra: 1642 / 1436,
  12412. bottom: 0.06
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Megamicro",
  12419. height: math.unit(0.3, "mm")
  12420. },
  12421. {
  12422. name: "Micro",
  12423. height: math.unit(3, "cm")
  12424. },
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(138, "cm"),
  12428. default: true
  12429. },
  12430. {
  12431. name: "Macro",
  12432. height: math.unit(30, "m")
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Shayla" },
  12438. {
  12439. front: {
  12440. height: math.unit(5.24, "feet"),
  12441. weight: math.unit(150, "lb"),
  12442. name: "Front",
  12443. image: {
  12444. source: "./media/characters/shayla/front.svg",
  12445. extra: 1512 / 1414,
  12446. bottom: 0.01
  12447. }
  12448. },
  12449. back: {
  12450. height: math.unit(5.24, "feet"),
  12451. weight: math.unit(150, "lb"),
  12452. name: "Back",
  12453. image: {
  12454. source: "./media/characters/shayla/back.svg",
  12455. extra: 1512 / 1414
  12456. }
  12457. },
  12458. hand: {
  12459. height: math.unit(0.7781496062992126, "feet"),
  12460. name: "Hand",
  12461. image: {
  12462. source: "./media/characters/shayla/hand.svg"
  12463. }
  12464. },
  12465. foot: {
  12466. height: math.unit(1.4206036745406823, "feet"),
  12467. name: "Foot",
  12468. image: {
  12469. source: "./media/characters/shayla/foot.svg"
  12470. }
  12471. },
  12472. },
  12473. [
  12474. {
  12475. name: "Micro",
  12476. height: math.unit(0.32, "feet")
  12477. },
  12478. {
  12479. name: "Normal",
  12480. height: math.unit(5.24, "feet"),
  12481. default: true
  12482. },
  12483. {
  12484. name: "Macro",
  12485. height: math.unit(492.12, "feet")
  12486. },
  12487. {
  12488. name: "Megamacro",
  12489. height: math.unit(186.41, "miles")
  12490. },
  12491. ]
  12492. ))
  12493. characterMakers.push(() => makeCharacter(
  12494. { name: "Pia Jr." },
  12495. {
  12496. front: {
  12497. height: math.unit(2.2, "m"),
  12498. weight: math.unit(120, "kg"),
  12499. name: "Front",
  12500. image: {
  12501. source: "./media/characters/pia-jr/front.svg",
  12502. extra: 1000 / 970,
  12503. bottom: 0.035
  12504. }
  12505. },
  12506. hand: {
  12507. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12508. name: "Hand",
  12509. image: {
  12510. source: "./media/characters/pia-jr/hand.svg"
  12511. }
  12512. },
  12513. paw: {
  12514. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12515. name: "Paw",
  12516. image: {
  12517. source: "./media/characters/pia-jr/paw.svg"
  12518. }
  12519. },
  12520. },
  12521. [
  12522. {
  12523. name: "Micro",
  12524. height: math.unit(1.2, "cm")
  12525. },
  12526. {
  12527. name: "Normal",
  12528. height: math.unit(2.2, "m"),
  12529. default: true
  12530. },
  12531. {
  12532. name: "Macro",
  12533. height: math.unit(180, "m")
  12534. },
  12535. {
  12536. name: "Megamacro",
  12537. height: math.unit(420, "km")
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "Pia Sr." },
  12543. {
  12544. front: {
  12545. height: math.unit(2, "m"),
  12546. weight: math.unit(115, "kg"),
  12547. name: "Front",
  12548. image: {
  12549. source: "./media/characters/pia-sr/front.svg",
  12550. extra: 760 / 730,
  12551. bottom: 0.015
  12552. }
  12553. },
  12554. back: {
  12555. height: math.unit(2, "m"),
  12556. weight: math.unit(115, "kg"),
  12557. name: "Back",
  12558. image: {
  12559. source: "./media/characters/pia-sr/back.svg",
  12560. extra: 760 / 730,
  12561. bottom: 0.01
  12562. }
  12563. },
  12564. hand: {
  12565. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12566. name: "Hand",
  12567. image: {
  12568. source: "./media/characters/pia-sr/hand.svg"
  12569. }
  12570. },
  12571. foot: {
  12572. height: math.unit(1.83, "feet"),
  12573. name: "Foot",
  12574. image: {
  12575. source: "./media/characters/pia-sr/foot.svg"
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Micro",
  12582. height: math.unit(88, "mm")
  12583. },
  12584. {
  12585. name: "Normal",
  12586. height: math.unit(2, "m"),
  12587. default: true
  12588. },
  12589. {
  12590. name: "Macro",
  12591. height: math.unit(200, "m")
  12592. },
  12593. {
  12594. name: "Megamacro",
  12595. height: math.unit(420, "km")
  12596. },
  12597. ]
  12598. ))
  12599. characterMakers.push(() => makeCharacter(
  12600. { name: "KIBIBYTE" },
  12601. {
  12602. front: {
  12603. height: math.unit(8 + 2 / 12, "feet"),
  12604. weight: math.unit(300, "lb"),
  12605. name: "Front",
  12606. image: {
  12607. source: "./media/characters/kibibyte/front.svg",
  12608. extra: 2221 / 2098,
  12609. bottom: 0.04
  12610. }
  12611. },
  12612. },
  12613. [
  12614. {
  12615. name: "Normal",
  12616. height: math.unit(8 + 2 / 12, "feet"),
  12617. default: true
  12618. },
  12619. {
  12620. name: "Socialable Macro",
  12621. height: math.unit(50, "feet")
  12622. },
  12623. {
  12624. name: "Macro",
  12625. height: math.unit(300, "feet")
  12626. },
  12627. {
  12628. name: "Megamacro",
  12629. height: math.unit(500, "miles")
  12630. },
  12631. ]
  12632. ))
  12633. characterMakers.push(() => makeCharacter(
  12634. { name: "Felix" },
  12635. {
  12636. front: {
  12637. height: math.unit(6, "feet"),
  12638. weight: math.unit(150, "lb"),
  12639. name: "Front",
  12640. image: {
  12641. source: "./media/characters/felix/front.svg",
  12642. extra: 762 / 722,
  12643. bottom: 0.02
  12644. }
  12645. },
  12646. frontClothed: {
  12647. height: math.unit(6, "feet"),
  12648. weight: math.unit(150, "lb"),
  12649. name: "Front (Clothed)",
  12650. image: {
  12651. source: "./media/characters/felix/front-clothed.svg",
  12652. extra: 762 / 722,
  12653. bottom: 0.02
  12654. }
  12655. },
  12656. },
  12657. [
  12658. {
  12659. name: "Normal",
  12660. height: math.unit(6 + 8 / 12, "feet"),
  12661. default: true
  12662. },
  12663. {
  12664. name: "Macro",
  12665. height: math.unit(2600, "feet")
  12666. },
  12667. {
  12668. name: "Megamacro",
  12669. height: math.unit(450, "miles")
  12670. },
  12671. ]
  12672. ))
  12673. characterMakers.push(() => makeCharacter(
  12674. { name: "Tobo" },
  12675. {
  12676. front: {
  12677. height: math.unit(6 + 1 / 12, "feet"),
  12678. weight: math.unit(250, "lb"),
  12679. name: "Front",
  12680. image: {
  12681. source: "./media/characters/tobo/front.svg",
  12682. extra: 608 / 586,
  12683. bottom: 0.023
  12684. }
  12685. },
  12686. back: {
  12687. height: math.unit(6 + 1 / 12, "feet"),
  12688. weight: math.unit(250, "lb"),
  12689. name: "Back",
  12690. image: {
  12691. source: "./media/characters/tobo/back.svg",
  12692. extra: 608 / 586
  12693. }
  12694. },
  12695. },
  12696. [
  12697. {
  12698. name: "Nano",
  12699. height: math.unit(2, "nm")
  12700. },
  12701. {
  12702. name: "Megamicro",
  12703. height: math.unit(0.1, "mm")
  12704. },
  12705. {
  12706. name: "Micro",
  12707. height: math.unit(1, "inch"),
  12708. default: true
  12709. },
  12710. {
  12711. name: "Human-sized",
  12712. height: math.unit(6 + 1 / 12, "feet")
  12713. },
  12714. {
  12715. name: "Macro",
  12716. height: math.unit(250, "feet")
  12717. },
  12718. {
  12719. name: "Megamacro",
  12720. height: math.unit(75, "miles")
  12721. },
  12722. {
  12723. name: "Texas-sized",
  12724. height: math.unit(750, "miles")
  12725. },
  12726. {
  12727. name: "Teramacro",
  12728. height: math.unit(50000, "miles")
  12729. },
  12730. ]
  12731. ))
  12732. characterMakers.push(() => makeCharacter(
  12733. { name: "Danny Kapowsky" },
  12734. {
  12735. front: {
  12736. height: math.unit(6, "feet"),
  12737. weight: math.unit(269, "lb"),
  12738. name: "Front",
  12739. image: {
  12740. source: "./media/characters/danny-kapowsky/front.svg",
  12741. extra: 766 / 736,
  12742. bottom: 0.044
  12743. }
  12744. },
  12745. back: {
  12746. height: math.unit(6, "feet"),
  12747. weight: math.unit(269, "lb"),
  12748. name: "Back",
  12749. image: {
  12750. source: "./media/characters/danny-kapowsky/back.svg",
  12751. extra: 797 / 760,
  12752. bottom: 0.025
  12753. }
  12754. },
  12755. },
  12756. [
  12757. {
  12758. name: "Macro",
  12759. height: math.unit(150, "feet"),
  12760. default: true
  12761. },
  12762. {
  12763. name: "Macro+",
  12764. height: math.unit(200, "feet")
  12765. },
  12766. {
  12767. name: "Macro++",
  12768. height: math.unit(300, "feet")
  12769. },
  12770. {
  12771. name: "Macro+++",
  12772. height: math.unit(400, "feet")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Finn" },
  12778. {
  12779. side: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(170, "lb"),
  12782. name: "Side",
  12783. image: {
  12784. source: "./media/characters/finn/side.svg",
  12785. extra: 1953 / 1807,
  12786. bottom: 0.057
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Megamacro",
  12793. height: math.unit(14445, "feet"),
  12794. default: true
  12795. },
  12796. ]
  12797. ))
  12798. characterMakers.push(() => makeCharacter(
  12799. { name: "Roy" },
  12800. {
  12801. front: {
  12802. height: math.unit(5 + 6 / 12, "feet"),
  12803. weight: math.unit(125, "lb"),
  12804. name: "Front",
  12805. image: {
  12806. source: "./media/characters/roy/front.svg",
  12807. extra: 1,
  12808. bottom: 0.11
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Micro",
  12815. height: math.unit(3, "inches"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Normal",
  12820. height: math.unit(5 + 6 / 12, "feet")
  12821. },
  12822. {
  12823. name: "Lesser Macro",
  12824. height: math.unit(60, "feet")
  12825. },
  12826. {
  12827. name: "Greater Macro",
  12828. height: math.unit(120, "feet")
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Aevsivs" },
  12834. {
  12835. front: {
  12836. height: math.unit(6, "feet"),
  12837. weight: math.unit(100, "lb"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/aevsivs/front.svg",
  12841. extra: 1,
  12842. bottom: 0.03
  12843. }
  12844. },
  12845. back: {
  12846. height: math.unit(6, "feet"),
  12847. weight: math.unit(100, "lb"),
  12848. name: "Back",
  12849. image: {
  12850. source: "./media/characters/aevsivs/back.svg"
  12851. }
  12852. },
  12853. },
  12854. [
  12855. {
  12856. name: "Micro",
  12857. height: math.unit(2, "inches"),
  12858. default: true
  12859. },
  12860. {
  12861. name: "Normal",
  12862. height: math.unit(5, "feet")
  12863. },
  12864. ]
  12865. ))
  12866. characterMakers.push(() => makeCharacter(
  12867. { name: "Hildegard" },
  12868. {
  12869. front: {
  12870. height: math.unit(5 + 7 / 12, "feet"),
  12871. weight: math.unit(159, "lb"),
  12872. name: "Front",
  12873. image: {
  12874. source: "./media/characters/hildegard/front.svg",
  12875. extra: 312 / 286,
  12876. bottom: 0.005
  12877. }
  12878. },
  12879. },
  12880. [
  12881. {
  12882. name: "Normal",
  12883. height: math.unit(5 + 7 / 12, "feet"),
  12884. default: true
  12885. },
  12886. ]
  12887. ))
  12888. characterMakers.push(() => makeCharacter(
  12889. { name: "Bernard & Wilder" },
  12890. {
  12891. bernard: {
  12892. height: math.unit(2 + 7 / 12, "feet"),
  12893. weight: math.unit(66, "lb"),
  12894. name: "Bernard",
  12895. rename: true,
  12896. image: {
  12897. source: "./media/characters/bernard-wilder/bernard.svg",
  12898. extra: 192 / 128,
  12899. bottom: 0.05
  12900. }
  12901. },
  12902. wilder: {
  12903. height: math.unit(5 + 8 / 12, "feet"),
  12904. weight: math.unit(143, "lb"),
  12905. name: "Wilder",
  12906. rename: true,
  12907. image: {
  12908. source: "./media/characters/bernard-wilder/wilder.svg",
  12909. extra: 361 / 312,
  12910. bottom: 0.02
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(2 + 7 / 12, "feet"),
  12918. default: true
  12919. },
  12920. ]
  12921. ))
  12922. characterMakers.push(() => makeCharacter(
  12923. { name: "Hearth" },
  12924. {
  12925. anthro: {
  12926. height: math.unit(6 + 1 / 12, "feet"),
  12927. weight: math.unit(155, "lb"),
  12928. name: "Anthro",
  12929. image: {
  12930. source: "./media/characters/hearth/anthro.svg",
  12931. extra: 260 / 250,
  12932. bottom: 0.02
  12933. }
  12934. },
  12935. feral: {
  12936. height: math.unit(3.78, "feet"),
  12937. weight: math.unit(35, "kg"),
  12938. name: "Feral",
  12939. image: {
  12940. source: "./media/characters/hearth/feral.svg",
  12941. extra: 153 / 135,
  12942. bottom: 0.03
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(6 + 1 / 12, "feet"),
  12950. default: true
  12951. },
  12952. ]
  12953. ))
  12954. characterMakers.push(() => makeCharacter(
  12955. { name: "Ingrid" },
  12956. {
  12957. front: {
  12958. height: math.unit(6, "feet"),
  12959. weight: math.unit(182, "lb"),
  12960. name: "Front",
  12961. image: {
  12962. source: "./media/characters/ingrid/front.svg",
  12963. extra: 294 / 268,
  12964. bottom: 0.027
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Normal",
  12971. height: math.unit(6, "feet"),
  12972. default: true
  12973. },
  12974. ]
  12975. ))
  12976. characterMakers.push(() => makeCharacter(
  12977. { name: "Malgam" },
  12978. {
  12979. eevee: {
  12980. height: math.unit(2 + 10 / 12, "feet"),
  12981. weight: math.unit(86, "lb"),
  12982. name: "Malgam",
  12983. image: {
  12984. source: "./media/characters/malgam/eevee.svg",
  12985. extra: 218 / 180,
  12986. bottom: 0.2
  12987. }
  12988. },
  12989. sylveon: {
  12990. height: math.unit(4, "feet"),
  12991. weight: math.unit(101, "lb"),
  12992. name: "Future Malgam",
  12993. rename: true,
  12994. image: {
  12995. source: "./media/characters/malgam/sylveon.svg",
  12996. extra: 371 / 325,
  12997. bottom: 0.015
  12998. }
  12999. },
  13000. gigantamax: {
  13001. height: math.unit(50, "feet"),
  13002. name: "Gigantamax Malgam",
  13003. rename: true,
  13004. image: {
  13005. source: "./media/characters/malgam/gigantamax.svg"
  13006. }
  13007. },
  13008. },
  13009. [
  13010. {
  13011. name: "Normal",
  13012. height: math.unit(2 + 10 / 12, "feet"),
  13013. default: true
  13014. },
  13015. ]
  13016. ))
  13017. characterMakers.push(() => makeCharacter(
  13018. { name: "Fleur" },
  13019. {
  13020. front: {
  13021. height: math.unit(5 + 11 / 12, "feet"),
  13022. weight: math.unit(188, "lb"),
  13023. name: "Front",
  13024. image: {
  13025. source: "./media/characters/fleur/front.svg",
  13026. extra: 309 / 283,
  13027. bottom: 0.007
  13028. }
  13029. },
  13030. },
  13031. [
  13032. {
  13033. name: "Normal",
  13034. height: math.unit(5 + 11 / 12, "feet"),
  13035. default: true
  13036. },
  13037. ]
  13038. ))
  13039. characterMakers.push(() => makeCharacter(
  13040. { name: "Jude" },
  13041. {
  13042. front: {
  13043. height: math.unit(5 + 4 / 12, "feet"),
  13044. weight: math.unit(122, "lb"),
  13045. name: "Front",
  13046. image: {
  13047. source: "./media/characters/jude/front.svg",
  13048. extra: 288 / 273,
  13049. bottom: 0.03
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Normal",
  13056. height: math.unit(5 + 4 / 12, "feet"),
  13057. default: true
  13058. },
  13059. ]
  13060. ))
  13061. characterMakers.push(() => makeCharacter(
  13062. { name: "Seara" },
  13063. {
  13064. front: {
  13065. height: math.unit(5 + 11 / 12, "feet"),
  13066. weight: math.unit(190, "lb"),
  13067. name: "Front",
  13068. image: {
  13069. source: "./media/characters/seara/front.svg",
  13070. extra: 1,
  13071. bottom: 0.05
  13072. }
  13073. },
  13074. },
  13075. [
  13076. {
  13077. name: "Normal",
  13078. height: math.unit(5 + 11 / 12, "feet"),
  13079. default: true
  13080. },
  13081. ]
  13082. ))
  13083. characterMakers.push(() => makeCharacter(
  13084. { name: "Caspian" },
  13085. {
  13086. front: {
  13087. height: math.unit(16 + 5 / 12, "feet"),
  13088. weight: math.unit(524, "lb"),
  13089. name: "Front",
  13090. image: {
  13091. source: "./media/characters/caspian/front.svg",
  13092. extra: 1,
  13093. bottom: 0.04
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(16 + 5 / 12, "feet"),
  13101. default: true
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Mika" },
  13107. {
  13108. front: {
  13109. height: math.unit(5 + 7 / 12, "feet"),
  13110. weight: math.unit(170, "lb"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/mika/front.svg",
  13114. extra: 1,
  13115. bottom: 0.016
  13116. }
  13117. },
  13118. },
  13119. [
  13120. {
  13121. name: "Normal",
  13122. height: math.unit(5 + 7 / 12, "feet"),
  13123. default: true
  13124. },
  13125. ]
  13126. ))
  13127. characterMakers.push(() => makeCharacter(
  13128. { name: "Sol" },
  13129. {
  13130. front: {
  13131. height: math.unit(6 + 2 / 12, "feet"),
  13132. weight: math.unit(268, "lb"),
  13133. name: "Front",
  13134. image: {
  13135. source: "./media/characters/sol/front.svg",
  13136. extra: 247 / 231,
  13137. bottom: 0.05
  13138. }
  13139. },
  13140. },
  13141. [
  13142. {
  13143. name: "Normal",
  13144. height: math.unit(6 + 2 / 12, "feet"),
  13145. default: true
  13146. },
  13147. ]
  13148. ))
  13149. characterMakers.push(() => makeCharacter(
  13150. { name: "Umiko" },
  13151. {
  13152. buizel: {
  13153. height: math.unit(2 + 5 / 12, "feet"),
  13154. weight: math.unit(87, "lb"),
  13155. name: "Buizel",
  13156. image: {
  13157. source: "./media/characters/umiko/buizel.svg",
  13158. extra: 172 / 157,
  13159. bottom: 0.01
  13160. }
  13161. },
  13162. floatzel: {
  13163. height: math.unit(5 + 9 / 12, "feet"),
  13164. weight: math.unit(250, "lb"),
  13165. name: "Floatzel",
  13166. image: {
  13167. source: "./media/characters/umiko/floatzel.svg",
  13168. extra: 262 / 248
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Normal",
  13175. height: math.unit(2 + 5 / 12, "feet"),
  13176. default: true
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Iliac" },
  13182. {
  13183. front: {
  13184. height: math.unit(6 + 2 / 12, "feet"),
  13185. weight: math.unit(146, "lb"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/iliac/front.svg",
  13189. extra: 389 / 365,
  13190. bottom: 0.035
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(6 + 2 / 12, "feet"),
  13198. default: true
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Topaz" },
  13204. {
  13205. front: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(170, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/topaz/front.svg",
  13211. extra: 317 / 303,
  13212. bottom: 0.055
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Normal",
  13219. height: math.unit(6, "feet"),
  13220. default: true
  13221. },
  13222. ]
  13223. ))
  13224. characterMakers.push(() => makeCharacter(
  13225. { name: "Gabriel" },
  13226. {
  13227. front: {
  13228. height: math.unit(5 + 11 / 12, "feet"),
  13229. weight: math.unit(144, "lb"),
  13230. name: "Front",
  13231. image: {
  13232. source: "./media/characters/gabriel/front.svg",
  13233. extra: 285 / 262,
  13234. bottom: 0.004
  13235. }
  13236. },
  13237. },
  13238. [
  13239. {
  13240. name: "Normal",
  13241. height: math.unit(5 + 11 / 12, "feet"),
  13242. default: true
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Tempest (Suicune)" },
  13248. {
  13249. side: {
  13250. height: math.unit(6 + 5 / 12, "feet"),
  13251. weight: math.unit(300, "lb"),
  13252. name: "Side",
  13253. image: {
  13254. source: "./media/characters/tempest-suicune/side.svg",
  13255. extra: 195 / 154,
  13256. bottom: 0.04
  13257. }
  13258. },
  13259. },
  13260. [
  13261. {
  13262. name: "Normal",
  13263. height: math.unit(6 + 5 / 12, "feet"),
  13264. default: true
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Vulcan" },
  13270. {
  13271. front: {
  13272. height: math.unit(7 + 2 / 12, "feet"),
  13273. weight: math.unit(322, "lb"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/vulcan/front.svg",
  13277. extra: 154 / 147,
  13278. bottom: 0.04
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Normal",
  13285. height: math.unit(7 + 2 / 12, "feet"),
  13286. default: true
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Gault" },
  13292. {
  13293. front: {
  13294. height: math.unit(5 + 10 / 12, "feet"),
  13295. weight: math.unit(264, "lb"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/gault/front.svg",
  13299. extra: 161 / 140,
  13300. bottom: 0.028
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(5 + 10 / 12, "feet"),
  13308. default: true
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Shard" },
  13314. {
  13315. front: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(150, "lb"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/shard/front.svg",
  13321. extra: 273 / 238,
  13322. bottom: 0.02
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "Normal",
  13329. height: math.unit(3 + 6 / 12, "feet"),
  13330. default: true
  13331. },
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Ashe" },
  13336. {
  13337. front: {
  13338. height: math.unit(5 + 11 / 12, "feet"),
  13339. weight: math.unit(146, "lb"),
  13340. name: "Front",
  13341. image: {
  13342. source: "./media/characters/ashe/front.svg",
  13343. extra: 400 / 373,
  13344. bottom: 0.01
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Normal",
  13351. height: math.unit(5 + 11 / 12, "feet"),
  13352. default: true
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Beatrix" },
  13358. {
  13359. front: {
  13360. height: math.unit(5 + 5 / 12, "feet"),
  13361. weight: math.unit(135, "lb"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/beatrix/front.svg",
  13365. extra: 392 / 379,
  13366. bottom: 0.01
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Normal",
  13373. height: math.unit(6, "feet"),
  13374. default: true
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Ignatius" },
  13380. {
  13381. front: {
  13382. height: math.unit(6, "feet"),
  13383. weight: math.unit(150, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/ignatius/front.svg",
  13387. extra: 245 / 222,
  13388. bottom: 0.01
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Normal",
  13395. height: math.unit(5 + 5 / 12, "feet"),
  13396. default: true
  13397. },
  13398. ]
  13399. ))
  13400. characterMakers.push(() => makeCharacter(
  13401. { name: "Mei Li" },
  13402. {
  13403. front: {
  13404. height: math.unit(6 + 2 / 12, "feet"),
  13405. weight: math.unit(138, "lb"),
  13406. name: "Front",
  13407. image: {
  13408. source: "./media/characters/mei-li/front.svg",
  13409. extra: 237 / 229,
  13410. bottom: 0.03
  13411. }
  13412. },
  13413. },
  13414. [
  13415. {
  13416. name: "Normal",
  13417. height: math.unit(6 + 2 / 12, "feet"),
  13418. default: true
  13419. },
  13420. ]
  13421. ))
  13422. characterMakers.push(() => makeCharacter(
  13423. { name: "Puru" },
  13424. {
  13425. front: {
  13426. height: math.unit(2 + 4 / 12, "feet"),
  13427. weight: math.unit(62, "lb"),
  13428. name: "Front",
  13429. image: {
  13430. source: "./media/characters/puru/front.svg",
  13431. extra: 206 / 149,
  13432. bottom: 0.06
  13433. }
  13434. },
  13435. },
  13436. [
  13437. {
  13438. name: "Normal",
  13439. height: math.unit(2 + 4 / 12, "feet"),
  13440. default: true
  13441. },
  13442. ]
  13443. ))
  13444. characterMakers.push(() => makeCharacter(
  13445. { name: "Kee" },
  13446. {
  13447. taur: {
  13448. height: math.unit(11, "feet"),
  13449. weight: math.unit(500, "lb"),
  13450. name: "Taur",
  13451. image: {
  13452. source: "./media/characters/kee/taur.svg",
  13453. extra: 1,
  13454. bottom: 0.04
  13455. }
  13456. },
  13457. },
  13458. [
  13459. {
  13460. name: "Normal",
  13461. height: math.unit(11, "feet"),
  13462. default: true
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Cobalt (Dracha)" },
  13468. {
  13469. anthro: {
  13470. height: math.unit(7, "feet"),
  13471. weight: math.unit(190, "lb"),
  13472. name: "Anthro",
  13473. image: {
  13474. source: "./media/characters/cobalt-dracha/anthro.svg",
  13475. extra: 231 / 225,
  13476. bottom: 0.04
  13477. }
  13478. },
  13479. feral: {
  13480. height: math.unit(9 + 7 / 12, "feet"),
  13481. weight: math.unit(294, "lb"),
  13482. name: "Feral",
  13483. image: {
  13484. source: "./media/characters/cobalt-dracha/feral.svg",
  13485. extra: 692 / 633,
  13486. bottom: 0.05
  13487. }
  13488. },
  13489. },
  13490. [
  13491. {
  13492. name: "Normal",
  13493. height: math.unit(7, "feet"),
  13494. default: true
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Java" },
  13500. {
  13501. fallen: {
  13502. height: math.unit(11 + 8 / 12, "feet"),
  13503. weight: math.unit(485, "lb"),
  13504. name: "Java (Fallen)",
  13505. rename: true,
  13506. image: {
  13507. source: "./media/characters/java/fallen.svg",
  13508. extra: 226 / 208,
  13509. bottom: 0.005
  13510. }
  13511. },
  13512. godkin: {
  13513. height: math.unit(10 + 6 / 12, "feet"),
  13514. weight: math.unit(328, "lb"),
  13515. name: "Java (Godkin)",
  13516. rename: true,
  13517. image: {
  13518. source: "./media/characters/java/godkin.svg",
  13519. extra: 270 / 262,
  13520. bottom: 0.02
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Normal",
  13527. height: math.unit(11 + 8 / 12, "feet"),
  13528. default: true
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Skoll" },
  13534. {
  13535. front: {
  13536. height: math.unit(7 + 8 / 12, "feet"),
  13537. weight: math.unit(320, "lb"),
  13538. name: "Front",
  13539. image: {
  13540. source: "./media/characters/skoll/front.svg",
  13541. extra: 232 / 220,
  13542. bottom: 0.02
  13543. }
  13544. },
  13545. },
  13546. [
  13547. {
  13548. name: "Normal",
  13549. height: math.unit(7 + 8 / 12, "feet"),
  13550. default: true
  13551. },
  13552. ]
  13553. ))
  13554. characterMakers.push(() => makeCharacter(
  13555. { name: "Purna" },
  13556. {
  13557. front: {
  13558. height: math.unit(5 + 9 / 12, "feet"),
  13559. weight: math.unit(170, "lb"),
  13560. name: "Front",
  13561. image: {
  13562. source: "./media/characters/purna/front.svg",
  13563. extra: 239 / 229,
  13564. bottom: 0.01
  13565. }
  13566. },
  13567. },
  13568. [
  13569. {
  13570. name: "Normal",
  13571. height: math.unit(5 + 9 / 12, "feet"),
  13572. default: true
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "Kuva" },
  13578. {
  13579. front: {
  13580. height: math.unit(5 + 9 / 12, "feet"),
  13581. weight: math.unit(142, "lb"),
  13582. name: "Front",
  13583. image: {
  13584. source: "./media/characters/kuva/front.svg",
  13585. extra: 281 / 271,
  13586. bottom: 0.006
  13587. }
  13588. },
  13589. },
  13590. [
  13591. {
  13592. name: "Normal",
  13593. height: math.unit(5 + 9 / 12, "feet"),
  13594. default: true
  13595. },
  13596. ]
  13597. ))
  13598. characterMakers.push(() => makeCharacter(
  13599. { name: "Embra" },
  13600. {
  13601. anthro: {
  13602. height: math.unit(9 + 2 / 12, "feet"),
  13603. weight: math.unit(270, "lb"),
  13604. name: "Anthro",
  13605. image: {
  13606. source: "./media/characters/embra/anthro.svg",
  13607. extra: 200 / 187,
  13608. bottom: 0.02
  13609. }
  13610. },
  13611. feral: {
  13612. height: math.unit(18 + 8 / 12, "feet"),
  13613. weight: math.unit(576, "lb"),
  13614. name: "Feral",
  13615. image: {
  13616. source: "./media/characters/embra/feral.svg",
  13617. extra: 152 / 137,
  13618. bottom: 0.037
  13619. }
  13620. },
  13621. },
  13622. [
  13623. {
  13624. name: "Normal",
  13625. height: math.unit(9 + 2 / 12, "feet"),
  13626. default: true
  13627. },
  13628. ]
  13629. ))
  13630. characterMakers.push(() => makeCharacter(
  13631. { name: "Grottos" },
  13632. {
  13633. anthro: {
  13634. height: math.unit(10 + 9 / 12, "feet"),
  13635. weight: math.unit(224, "lb"),
  13636. name: "Anthro",
  13637. image: {
  13638. source: "./media/characters/grottos/anthro.svg",
  13639. extra: 350 / 332,
  13640. bottom: 0.045
  13641. }
  13642. },
  13643. feral: {
  13644. height: math.unit(20 + 7 / 12, "feet"),
  13645. weight: math.unit(629, "lb"),
  13646. name: "Feral",
  13647. image: {
  13648. source: "./media/characters/grottos/feral.svg",
  13649. extra: 207 / 190,
  13650. bottom: 0.05
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Normal",
  13657. height: math.unit(10 + 9 / 12, "feet"),
  13658. default: true
  13659. },
  13660. ]
  13661. ))
  13662. characterMakers.push(() => makeCharacter(
  13663. { name: "Frifna" },
  13664. {
  13665. anthro: {
  13666. height: math.unit(9 + 6 / 12, "feet"),
  13667. weight: math.unit(298, "lb"),
  13668. name: "Anthro",
  13669. image: {
  13670. source: "./media/characters/frifna/anthro.svg",
  13671. extra: 282 / 269,
  13672. bottom: 0.015
  13673. }
  13674. },
  13675. feral: {
  13676. height: math.unit(16 + 2 / 12, "feet"),
  13677. weight: math.unit(624, "lb"),
  13678. name: "Feral",
  13679. image: {
  13680. source: "./media/characters/frifna/feral.svg"
  13681. }
  13682. },
  13683. },
  13684. [
  13685. {
  13686. name: "Normal",
  13687. height: math.unit(9 + 6 / 12, "feet"),
  13688. default: true
  13689. },
  13690. ]
  13691. ))
  13692. characterMakers.push(() => makeCharacter(
  13693. { name: "Elise" },
  13694. {
  13695. front: {
  13696. height: math.unit(6 + 2 / 12, "feet"),
  13697. weight: math.unit(168, "lb"),
  13698. name: "Front",
  13699. image: {
  13700. source: "./media/characters/elise/front.svg",
  13701. extra: 276 / 271
  13702. }
  13703. },
  13704. },
  13705. [
  13706. {
  13707. name: "Normal",
  13708. height: math.unit(6 + 2 / 12, "feet"),
  13709. default: true
  13710. },
  13711. ]
  13712. ))
  13713. characterMakers.push(() => makeCharacter(
  13714. { name: "Glade" },
  13715. {
  13716. front: {
  13717. height: math.unit(5 + 10 / 12, "feet"),
  13718. weight: math.unit(210, "lb"),
  13719. name: "Front",
  13720. image: {
  13721. source: "./media/characters/glade/front.svg",
  13722. extra: 258 / 247,
  13723. bottom: 0.008
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Normal",
  13730. height: math.unit(5 + 10 / 12, "feet"),
  13731. default: true
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Rina" },
  13737. {
  13738. front: {
  13739. height: math.unit(5 + 10 / 12, "feet"),
  13740. weight: math.unit(129, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/rina/front.svg",
  13744. extra: 266 / 255,
  13745. bottom: 0.005
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Normal",
  13752. height: math.unit(5 + 10 / 12, "feet"),
  13753. default: true
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "Veronica" },
  13759. {
  13760. front: {
  13761. height: math.unit(6 + 1 / 12, "feet"),
  13762. weight: math.unit(192, "lb"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/veronica/front.svg",
  13766. extra: 319 / 309,
  13767. bottom: 0.005
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Normal",
  13774. height: math.unit(6 + 1 / 12, "feet"),
  13775. default: true
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Braxton" },
  13781. {
  13782. front: {
  13783. height: math.unit(9 + 3 / 12, "feet"),
  13784. weight: math.unit(1100, "lb"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/braxton/front.svg",
  13788. extra: 1057 / 984,
  13789. bottom: 0.05
  13790. }
  13791. },
  13792. },
  13793. [
  13794. {
  13795. name: "Normal",
  13796. height: math.unit(9 + 3 / 12, "feet")
  13797. },
  13798. {
  13799. name: "Giant",
  13800. height: math.unit(300, "feet"),
  13801. default: true
  13802. },
  13803. {
  13804. name: "Macro",
  13805. height: math.unit(700, "feet")
  13806. },
  13807. {
  13808. name: "Megamacro",
  13809. height: math.unit(6000, "feet")
  13810. },
  13811. ]
  13812. ))
  13813. characterMakers.push(() => makeCharacter(
  13814. { name: "Blue Feyonics" },
  13815. {
  13816. front: {
  13817. height: math.unit(6 + 7 / 12, "feet"),
  13818. weight: math.unit(150, "lb"),
  13819. name: "Front",
  13820. image: {
  13821. source: "./media/characters/blue-feyonics/front.svg",
  13822. extra: 1403 / 1306,
  13823. bottom: 0.047
  13824. }
  13825. },
  13826. },
  13827. [
  13828. {
  13829. name: "Normal",
  13830. height: math.unit(6 + 7 / 12, "feet"),
  13831. default: true
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Maxwell" },
  13837. {
  13838. front: {
  13839. height: math.unit(1.8, "meters"),
  13840. weight: math.unit(60, "kg"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/maxwell/front.svg",
  13844. extra: 2060 / 1873
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Micro",
  13851. height: math.unit(1, "mm")
  13852. },
  13853. {
  13854. name: "Normal",
  13855. height: math.unit(1.8, "meter"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Macro",
  13860. height: math.unit(30, "meters")
  13861. },
  13862. {
  13863. name: "Megamacro",
  13864. height: math.unit(10, "km")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Jack" },
  13870. {
  13871. front: {
  13872. height: math.unit(6, "feet"),
  13873. weight: math.unit(150, "lb"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/jack/front.svg",
  13877. extra: 1754 / 1640,
  13878. bottom: 0.01
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Normal",
  13885. height: math.unit(80000, "feet"),
  13886. default: true
  13887. },
  13888. {
  13889. name: "Max size",
  13890. height: math.unit(10, "lightyears")
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Cafat" },
  13896. {
  13897. upright: {
  13898. height: math.unit(7, "feet"),
  13899. weight: math.unit(170, "lb"),
  13900. name: "Upright",
  13901. image: {
  13902. source: "./media/characters/cafat/upright.svg",
  13903. bottom: 0.01
  13904. }
  13905. },
  13906. uprightFull: {
  13907. height: math.unit(7, "feet"),
  13908. weight: math.unit(170, "lb"),
  13909. name: "Upright (Full)",
  13910. image: {
  13911. source: "./media/characters/cafat/upright-full.svg",
  13912. bottom: 0.01
  13913. }
  13914. },
  13915. side: {
  13916. height: math.unit(5, "feet"),
  13917. weight: math.unit(150, "lb"),
  13918. name: "Side",
  13919. image: {
  13920. source: "./media/characters/cafat/side.svg"
  13921. }
  13922. },
  13923. },
  13924. [
  13925. {
  13926. name: "Small",
  13927. height: math.unit(7, "feet"),
  13928. default: true
  13929. },
  13930. {
  13931. name: "Large",
  13932. height: math.unit(15.5, "feet")
  13933. },
  13934. ]
  13935. ))
  13936. characterMakers.push(() => makeCharacter(
  13937. { name: "Verin Raharra" },
  13938. {
  13939. front: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(150, "lb"),
  13942. name: "Front",
  13943. image: {
  13944. source: "./media/characters/verin-raharra/front.svg",
  13945. extra: 5019 / 4835,
  13946. bottom: 0.023
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Normal",
  13953. height: math.unit(7 + 5 / 12, "feet"),
  13954. default: true
  13955. },
  13956. {
  13957. name: "Upsized",
  13958. height: math.unit(20, "feet")
  13959. },
  13960. ]
  13961. ))
  13962. characterMakers.push(() => makeCharacter(
  13963. { name: "Nakata" },
  13964. {
  13965. front: {
  13966. height: math.unit(7, "feet"),
  13967. weight: math.unit(230, "lb"),
  13968. name: "Front",
  13969. image: {
  13970. source: "./media/characters/nakata/front.svg",
  13971. extra: 1.005,
  13972. bottom: 0.01
  13973. }
  13974. },
  13975. },
  13976. [
  13977. {
  13978. name: "Normal",
  13979. height: math.unit(7, "feet"),
  13980. default: true
  13981. },
  13982. {
  13983. name: "Big",
  13984. height: math.unit(14, "feet")
  13985. },
  13986. {
  13987. name: "Macro",
  13988. height: math.unit(400, "feet")
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Lily" },
  13994. {
  13995. front: {
  13996. height: math.unit(4.91, "feet"),
  13997. weight: math.unit(100, "lb"),
  13998. name: "Front",
  13999. image: {
  14000. source: "./media/characters/lily/front.svg",
  14001. extra: 1585 / 1415,
  14002. bottom: 0.02
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Normal",
  14009. height: math.unit(4.91, "feet"),
  14010. default: true
  14011. },
  14012. ]
  14013. ))
  14014. characterMakers.push(() => makeCharacter(
  14015. { name: "Sheila" },
  14016. {
  14017. laying: {
  14018. height: math.unit(4 + 4 / 12, "feet"),
  14019. weight: math.unit(600, "lb"),
  14020. name: "Laying",
  14021. image: {
  14022. source: "./media/characters/sheila/laying.svg",
  14023. extra: 1333 / 1265,
  14024. bottom: 0.16
  14025. }
  14026. },
  14027. },
  14028. [
  14029. {
  14030. name: "Normal",
  14031. height: math.unit(4 + 4 / 12, "feet"),
  14032. default: true
  14033. },
  14034. ]
  14035. ))
  14036. characterMakers.push(() => makeCharacter(
  14037. { name: "Sax" },
  14038. {
  14039. front: {
  14040. height: math.unit(6, "feet"),
  14041. weight: math.unit(190, "lb"),
  14042. name: "Front",
  14043. image: {
  14044. source: "./media/characters/sax/front.svg",
  14045. extra: 1187 / 973,
  14046. bottom: 0.042
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Micro",
  14053. height: math.unit(4, "inches"),
  14054. default: true
  14055. },
  14056. ]
  14057. ))
  14058. characterMakers.push(() => makeCharacter(
  14059. { name: "Pandora" },
  14060. {
  14061. front: {
  14062. height: math.unit(6, "feet"),
  14063. weight: math.unit(150, "lb"),
  14064. name: "Front",
  14065. image: {
  14066. source: "./media/characters/pandora/front.svg",
  14067. extra: 2720 / 2556,
  14068. bottom: 0.015
  14069. }
  14070. },
  14071. back: {
  14072. height: math.unit(6, "feet"),
  14073. weight: math.unit(150, "lb"),
  14074. name: "Back",
  14075. image: {
  14076. source: "./media/characters/pandora/back.svg",
  14077. extra: 2720 / 2556,
  14078. bottom: 0.01
  14079. }
  14080. },
  14081. beans: {
  14082. height: math.unit(6 / 8, "feet"),
  14083. name: "Beans",
  14084. image: {
  14085. source: "./media/characters/pandora/beans.svg"
  14086. }
  14087. },
  14088. skirt: {
  14089. height: math.unit(6, "feet"),
  14090. weight: math.unit(150, "lb"),
  14091. name: "Skirt",
  14092. image: {
  14093. source: "./media/characters/pandora/skirt.svg",
  14094. extra: 1622 / 1525,
  14095. bottom: 0.015
  14096. }
  14097. },
  14098. hoodie: {
  14099. height: math.unit(6, "feet"),
  14100. weight: math.unit(150, "lb"),
  14101. name: "Hoodie",
  14102. image: {
  14103. source: "./media/characters/pandora/hoodie.svg",
  14104. extra: 1622 / 1525,
  14105. bottom: 0.015
  14106. }
  14107. },
  14108. casual: {
  14109. height: math.unit(6, "feet"),
  14110. weight: math.unit(150, "lb"),
  14111. name: "Casual",
  14112. image: {
  14113. source: "./media/characters/pandora/casual.svg",
  14114. extra: 1622 / 1525,
  14115. bottom: 0.015
  14116. }
  14117. },
  14118. },
  14119. [
  14120. {
  14121. name: "Normal",
  14122. height: math.unit(6, "feet")
  14123. },
  14124. {
  14125. name: "Big Steppy",
  14126. height: math.unit(1, "km"),
  14127. default: true
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Venio Darcony" },
  14133. {
  14134. side: {
  14135. height: math.unit(10, "feet"),
  14136. weight: math.unit(800, "kg"),
  14137. name: "Side",
  14138. image: {
  14139. source: "./media/characters/venio-darcony/side.svg",
  14140. extra: 1373 / 1003,
  14141. bottom: 0.037
  14142. }
  14143. },
  14144. front: {
  14145. height: math.unit(19, "feet"),
  14146. weight: math.unit(800, "kg"),
  14147. name: "Front",
  14148. image: {
  14149. source: "./media/characters/venio-darcony/front.svg"
  14150. }
  14151. },
  14152. back: {
  14153. height: math.unit(19, "feet"),
  14154. weight: math.unit(800, "kg"),
  14155. name: "Back",
  14156. image: {
  14157. source: "./media/characters/venio-darcony/back.svg"
  14158. }
  14159. },
  14160. sideNsfw: {
  14161. height: math.unit(10, "feet"),
  14162. weight: math.unit(800, "kg"),
  14163. name: "Side (NSFW)",
  14164. image: {
  14165. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14166. extra: 1373 / 1003,
  14167. bottom: 0.037
  14168. }
  14169. },
  14170. frontNsfw: {
  14171. height: math.unit(19, "feet"),
  14172. weight: math.unit(800, "kg"),
  14173. name: "Front (NSFW)",
  14174. image: {
  14175. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14176. }
  14177. },
  14178. backNsfw: {
  14179. height: math.unit(19, "feet"),
  14180. weight: math.unit(800, "kg"),
  14181. name: "Back (NSFW)",
  14182. image: {
  14183. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14184. }
  14185. },
  14186. sideArmored: {
  14187. height: math.unit(10, "feet"),
  14188. weight: math.unit(800, "kg"),
  14189. name: "Side (Armored)",
  14190. image: {
  14191. source: "./media/characters/venio-darcony/side-armored.svg",
  14192. extra: 1373 / 1003,
  14193. bottom: 0.037
  14194. }
  14195. },
  14196. frontArmored: {
  14197. height: math.unit(19, "feet"),
  14198. weight: math.unit(900, "kg"),
  14199. name: "Front (Armored)",
  14200. image: {
  14201. source: "./media/characters/venio-darcony/front-armored.svg"
  14202. }
  14203. },
  14204. backArmored: {
  14205. height: math.unit(19, "feet"),
  14206. weight: math.unit(900, "kg"),
  14207. name: "Back (Armored)",
  14208. image: {
  14209. source: "./media/characters/venio-darcony/back-armored.svg"
  14210. }
  14211. },
  14212. sword: {
  14213. height: math.unit(10, "feet"),
  14214. weight: math.unit(50, "lb"),
  14215. name: "Sword",
  14216. image: {
  14217. source: "./media/characters/venio-darcony/sword.svg"
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Normal",
  14224. height: math.unit(10, "feet")
  14225. },
  14226. {
  14227. name: "Macro",
  14228. height: math.unit(130, "feet"),
  14229. default: true
  14230. },
  14231. {
  14232. name: "Macro+",
  14233. height: math.unit(240, "feet")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Veski" },
  14239. {
  14240. front: {
  14241. height: math.unit(6, "feet"),
  14242. weight: math.unit(150, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/veski/front.svg",
  14246. extra: 1299 / 1225,
  14247. bottom: 0.04
  14248. }
  14249. },
  14250. back: {
  14251. height: math.unit(6, "feet"),
  14252. weight: math.unit(150, "lb"),
  14253. name: "Back",
  14254. image: {
  14255. source: "./media/characters/veski/back.svg",
  14256. extra: 1299 / 1225,
  14257. bottom: 0.008
  14258. }
  14259. },
  14260. maw: {
  14261. height: math.unit(1.5 * 1.21, "feet"),
  14262. name: "Maw",
  14263. image: {
  14264. source: "./media/characters/veski/maw.svg"
  14265. }
  14266. },
  14267. },
  14268. [
  14269. {
  14270. name: "Macro",
  14271. height: math.unit(2, "km"),
  14272. default: true
  14273. },
  14274. ]
  14275. ))
  14276. characterMakers.push(() => makeCharacter(
  14277. { name: "Isabelle" },
  14278. {
  14279. front: {
  14280. height: math.unit(5 + 7 / 12, "feet"),
  14281. name: "Front",
  14282. image: {
  14283. source: "./media/characters/isabelle/front.svg",
  14284. extra: 2130 / 1976,
  14285. bottom: 0.05
  14286. }
  14287. },
  14288. },
  14289. [
  14290. {
  14291. name: "Supermicro",
  14292. height: math.unit(10, "micrometers")
  14293. },
  14294. {
  14295. name: "Micro",
  14296. height: math.unit(1, "inch")
  14297. },
  14298. {
  14299. name: "Tiny",
  14300. height: math.unit(5, "inches")
  14301. },
  14302. {
  14303. name: "Standard",
  14304. height: math.unit(5 + 7 / 12, "inches")
  14305. },
  14306. {
  14307. name: "Macro",
  14308. height: math.unit(80, "meters"),
  14309. default: true
  14310. },
  14311. {
  14312. name: "Megamacro",
  14313. height: math.unit(250, "meters")
  14314. },
  14315. {
  14316. name: "Gigamacro",
  14317. height: math.unit(5, "km")
  14318. },
  14319. {
  14320. name: "Cosmic",
  14321. height: math.unit(2.5e6, "miles")
  14322. },
  14323. ]
  14324. ))
  14325. characterMakers.push(() => makeCharacter(
  14326. { name: "Hanzo" },
  14327. {
  14328. front: {
  14329. height: math.unit(6, "feet"),
  14330. weight: math.unit(150, "lb"),
  14331. name: "Front",
  14332. image: {
  14333. source: "./media/characters/hanzo/front.svg",
  14334. extra: 374 / 344,
  14335. bottom: 0.02
  14336. }
  14337. },
  14338. },
  14339. [
  14340. {
  14341. name: "Normal",
  14342. height: math.unit(8, "feet"),
  14343. default: true
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Anna" },
  14349. {
  14350. front: {
  14351. height: math.unit(7, "feet"),
  14352. weight: math.unit(130, "lb"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/anna/front.svg",
  14356. extra: 169 / 145,
  14357. bottom: 0.06
  14358. }
  14359. },
  14360. full: {
  14361. height: math.unit(4.96, "feet"),
  14362. weight: math.unit(220, "lb"),
  14363. name: "Full",
  14364. image: {
  14365. source: "./media/characters/anna/full.svg",
  14366. extra: 138 / 114,
  14367. bottom: 0.15
  14368. }
  14369. },
  14370. tongue: {
  14371. height: math.unit(2.53, "feet"),
  14372. name: "Tongue",
  14373. image: {
  14374. source: "./media/characters/anna/tongue.svg"
  14375. }
  14376. },
  14377. },
  14378. [
  14379. {
  14380. name: "Normal",
  14381. height: math.unit(7, "feet"),
  14382. default: true
  14383. },
  14384. ]
  14385. ))
  14386. characterMakers.push(() => makeCharacter(
  14387. { name: "Ian Corvid" },
  14388. {
  14389. front: {
  14390. height: math.unit(7, "feet"),
  14391. weight: math.unit(150, "lb"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/ian-corvid/front.svg",
  14395. extra: 150 / 142,
  14396. bottom: 0.02
  14397. }
  14398. },
  14399. back: {
  14400. height: math.unit(7, "feet"),
  14401. weight: math.unit(150, "lb"),
  14402. name: "Back",
  14403. image: {
  14404. source: "./media/characters/ian-corvid/back.svg",
  14405. extra: 150 / 143,
  14406. bottom: 0.01
  14407. }
  14408. },
  14409. stomping: {
  14410. height: math.unit(7, "feet"),
  14411. weight: math.unit(150, "lb"),
  14412. name: "Stomping",
  14413. image: {
  14414. source: "./media/characters/ian-corvid/stomping.svg",
  14415. extra: 76 / 72
  14416. }
  14417. },
  14418. sitting: {
  14419. height: math.unit(7 / 1.8, "feet"),
  14420. weight: math.unit(150, "lb"),
  14421. name: "Sitting",
  14422. image: {
  14423. source: "./media/characters/ian-corvid/sitting.svg",
  14424. extra: 1400 / 1269,
  14425. bottom: 0.15
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Tiny Microw",
  14432. height: math.unit(1, "inch")
  14433. },
  14434. {
  14435. name: "Microw",
  14436. height: math.unit(6, "inches")
  14437. },
  14438. {
  14439. name: "Crow",
  14440. height: math.unit(7 + 1 / 12, "feet"),
  14441. default: true
  14442. },
  14443. {
  14444. name: "Macrow",
  14445. height: math.unit(176, "feet")
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Natalie Kellon" },
  14451. {
  14452. front: {
  14453. height: math.unit(5 + 7 / 12, "feet"),
  14454. weight: math.unit(147, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/natalie-kellon/front.svg",
  14458. extra: 1214 / 1141,
  14459. bottom: 0.02
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Micro",
  14466. height: math.unit(1 / 16, "inch")
  14467. },
  14468. {
  14469. name: "Tiny",
  14470. height: math.unit(4, "inches")
  14471. },
  14472. {
  14473. name: "Normal",
  14474. height: math.unit(5 + 7 / 12, "feet"),
  14475. default: true
  14476. },
  14477. {
  14478. name: "Amazon",
  14479. height: math.unit(12, "feet")
  14480. },
  14481. {
  14482. name: "Giantess",
  14483. height: math.unit(160, "meters")
  14484. },
  14485. {
  14486. name: "Titaness",
  14487. height: math.unit(800, "meters")
  14488. },
  14489. ]
  14490. ))
  14491. characterMakers.push(() => makeCharacter(
  14492. { name: "Alluria" },
  14493. {
  14494. front: {
  14495. height: math.unit(6, "feet"),
  14496. weight: math.unit(150, "lb"),
  14497. name: "Front",
  14498. image: {
  14499. source: "./media/characters/alluria/front.svg",
  14500. extra: 806 / 738,
  14501. bottom: 0.01
  14502. }
  14503. },
  14504. side: {
  14505. height: math.unit(6, "feet"),
  14506. weight: math.unit(150, "lb"),
  14507. name: "Side",
  14508. image: {
  14509. source: "./media/characters/alluria/side.svg",
  14510. extra: 800 / 750,
  14511. }
  14512. },
  14513. back: {
  14514. height: math.unit(6, "feet"),
  14515. weight: math.unit(150, "lb"),
  14516. name: "Back",
  14517. image: {
  14518. source: "./media/characters/alluria/back.svg",
  14519. extra: 806 / 738,
  14520. }
  14521. },
  14522. frontMaid: {
  14523. height: math.unit(6, "feet"),
  14524. weight: math.unit(150, "lb"),
  14525. name: "Front (Maid)",
  14526. image: {
  14527. source: "./media/characters/alluria/front-maid.svg",
  14528. extra: 806 / 738,
  14529. bottom: 0.01
  14530. }
  14531. },
  14532. sideMaid: {
  14533. height: math.unit(6, "feet"),
  14534. weight: math.unit(150, "lb"),
  14535. name: "Side (Maid)",
  14536. image: {
  14537. source: "./media/characters/alluria/side-maid.svg",
  14538. extra: 800 / 750,
  14539. bottom: 0.005
  14540. }
  14541. },
  14542. backMaid: {
  14543. height: math.unit(6, "feet"),
  14544. weight: math.unit(150, "lb"),
  14545. name: "Back (Maid)",
  14546. image: {
  14547. source: "./media/characters/alluria/back-maid.svg",
  14548. extra: 806 / 738,
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Micro",
  14555. height: math.unit(6, "inches"),
  14556. default: true
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Kyle" },
  14562. {
  14563. front: {
  14564. height: math.unit(6, "feet"),
  14565. weight: math.unit(150, "lb"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/kyle/front.svg",
  14569. extra: 1069 / 962,
  14570. bottom: 77.228 / 1727.45
  14571. }
  14572. },
  14573. },
  14574. [
  14575. {
  14576. name: "Macro",
  14577. height: math.unit(150, "feet"),
  14578. default: true
  14579. },
  14580. ]
  14581. ))
  14582. characterMakers.push(() => makeCharacter(
  14583. { name: "Duncan" },
  14584. {
  14585. front: {
  14586. height: math.unit(6, "feet"),
  14587. weight: math.unit(300, "lb"),
  14588. name: "Front",
  14589. image: {
  14590. source: "./media/characters/duncan/front.svg",
  14591. extra: 1650 / 1482,
  14592. bottom: 0.05
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Macro",
  14599. height: math.unit(100, "feet"),
  14600. default: true
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Memory" },
  14606. {
  14607. front: {
  14608. height: math.unit(5 + 4 / 12, "feet"),
  14609. weight: math.unit(220, "lb"),
  14610. name: "Front",
  14611. image: {
  14612. source: "./media/characters/memory/front.svg",
  14613. extra: 3641 / 3545,
  14614. bottom: 0.03
  14615. }
  14616. },
  14617. back: {
  14618. height: math.unit(5 + 4 / 12, "feet"),
  14619. weight: math.unit(220, "lb"),
  14620. name: "Back",
  14621. image: {
  14622. source: "./media/characters/memory/back.svg",
  14623. extra: 3641 / 3545,
  14624. bottom: 0.025
  14625. }
  14626. },
  14627. frontSkirt: {
  14628. height: math.unit(5 + 4 / 12, "feet"),
  14629. weight: math.unit(220, "lb"),
  14630. name: "Front (Skirt)",
  14631. image: {
  14632. source: "./media/characters/memory/front-skirt.svg",
  14633. extra: 3641 / 3545,
  14634. bottom: 0.03
  14635. }
  14636. },
  14637. frontDress: {
  14638. height: math.unit(5 + 4 / 12, "feet"),
  14639. weight: math.unit(220, "lb"),
  14640. name: "Front (Dress)",
  14641. image: {
  14642. source: "./media/characters/memory/front-dress.svg",
  14643. extra: 3641 / 3545,
  14644. bottom: 0.03
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Micro",
  14651. height: math.unit(6, "inches"),
  14652. default: true
  14653. },
  14654. {
  14655. name: "Normal",
  14656. height: math.unit(5 + 4 / 12, "feet")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Luno" },
  14662. {
  14663. front: {
  14664. height: math.unit(4 + 11 / 12, "feet"),
  14665. weight: math.unit(100, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/luno/front.svg",
  14669. extra: 1535 / 1487,
  14670. bottom: 0.03
  14671. }
  14672. },
  14673. },
  14674. [
  14675. {
  14676. name: "Micro",
  14677. height: math.unit(3, "inches")
  14678. },
  14679. {
  14680. name: "Normal",
  14681. height: math.unit(4 + 11 / 12, "feet"),
  14682. default: true
  14683. },
  14684. {
  14685. name: "Macro",
  14686. height: math.unit(300, "feet")
  14687. },
  14688. {
  14689. name: "Megamacro",
  14690. height: math.unit(700, "miles")
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Jamesy" },
  14696. {
  14697. front: {
  14698. height: math.unit(6 + 2 / 12, "feet"),
  14699. weight: math.unit(170, "lb"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/jamesy/front.svg",
  14703. extra: 440 / 382,
  14704. bottom: 0.005
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Micro",
  14711. height: math.unit(3, "inches")
  14712. },
  14713. {
  14714. name: "Normal",
  14715. height: math.unit(6 + 2 / 12, "feet"),
  14716. default: true
  14717. },
  14718. {
  14719. name: "Macro",
  14720. height: math.unit(300, "feet")
  14721. },
  14722. {
  14723. name: "Megamacro",
  14724. height: math.unit(700, "miles")
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Mark" },
  14730. {
  14731. front: {
  14732. height: math.unit(6, "feet"),
  14733. weight: math.unit(160, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/mark/front.svg",
  14737. extra: 3300 / 3100,
  14738. bottom: 136.42 / 3440.47
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Macro",
  14745. height: math.unit(120, "meters")
  14746. },
  14747. {
  14748. name: "Bigger Macro",
  14749. height: math.unit(350, "meters")
  14750. },
  14751. {
  14752. name: "Megamacro",
  14753. height: math.unit(8, "km"),
  14754. default: true
  14755. },
  14756. {
  14757. name: "Continental",
  14758. height: math.unit(4550, "km")
  14759. },
  14760. {
  14761. name: "Planetary",
  14762. height: math.unit(65000, "km")
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Mac" },
  14768. {
  14769. front: {
  14770. height: math.unit(6, "feet"),
  14771. weight: math.unit(400, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/mac/front.svg",
  14775. extra: 1048 / 987.7,
  14776. bottom: 60 / 1107.6,
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Macro",
  14783. height: math.unit(500, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Bari" },
  14790. {
  14791. front: {
  14792. height: math.unit(5 + 2 / 12, "feet"),
  14793. weight: math.unit(190, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/bari/front.svg",
  14797. extra: 3156 / 2880,
  14798. bottom: 0.03
  14799. }
  14800. },
  14801. back: {
  14802. height: math.unit(5 + 2 / 12, "feet"),
  14803. weight: math.unit(190, "lb"),
  14804. name: "Back",
  14805. image: {
  14806. source: "./media/characters/bari/back.svg",
  14807. extra: 3260 / 2834,
  14808. bottom: 0.025
  14809. }
  14810. },
  14811. frontPlush: {
  14812. height: math.unit(5 + 2 / 12, "feet"),
  14813. weight: math.unit(190, "lb"),
  14814. name: "Front (Plush)",
  14815. image: {
  14816. source: "./media/characters/bari/front-plush.svg",
  14817. extra: 1112 / 1061,
  14818. bottom: 0.002
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Micro",
  14825. height: math.unit(3, "inches")
  14826. },
  14827. {
  14828. name: "Normal",
  14829. height: math.unit(5 + 2 / 12, "feet"),
  14830. default: true
  14831. },
  14832. {
  14833. name: "Macro",
  14834. height: math.unit(20, "feet")
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Hunter Misha Raven" },
  14840. {
  14841. front: {
  14842. height: math.unit(6 + 1 / 12, "feet"),
  14843. weight: math.unit(275, "lb"),
  14844. name: "Front",
  14845. image: {
  14846. source: "./media/characters/hunter-misha-raven/front.svg"
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Mortal",
  14853. height: math.unit(6 + 1 / 12, "feet")
  14854. },
  14855. {
  14856. name: "Divine",
  14857. height: math.unit(1.12134e34, "parsecs"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Max Calore" },
  14864. {
  14865. front: {
  14866. height: math.unit(6 + 3 / 12, "feet"),
  14867. weight: math.unit(220, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/max-calore/front.svg",
  14871. extra: 1700 / 1648,
  14872. bottom: 0.01
  14873. }
  14874. },
  14875. back: {
  14876. height: math.unit(6 + 3 / 12, "feet"),
  14877. weight: math.unit(220, "lb"),
  14878. name: "Back",
  14879. image: {
  14880. source: "./media/characters/max-calore/back.svg",
  14881. extra: 1700 / 1648,
  14882. bottom: 0.01
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(6 + 3 / 12, "feet"),
  14890. default: true
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Aspen" },
  14896. {
  14897. side: {
  14898. height: math.unit(2 + 8 / 12, "feet"),
  14899. weight: math.unit(99, "lb"),
  14900. name: "Side",
  14901. image: {
  14902. source: "./media/characters/aspen/side.svg",
  14903. extra: 152 / 138,
  14904. bottom: 0.032
  14905. }
  14906. },
  14907. },
  14908. [
  14909. {
  14910. name: "Normal",
  14911. height: math.unit(2 + 8 / 12, "feet"),
  14912. default: true
  14913. },
  14914. ]
  14915. ))
  14916. characterMakers.push(() => makeCharacter(
  14917. { name: "Sheila (Feral Wolf)" },
  14918. {
  14919. side: {
  14920. height: math.unit(3 + 2 / 12, "feet"),
  14921. weight: math.unit(224, "lb"),
  14922. name: "Side",
  14923. image: {
  14924. source: "./media/characters/sheila-feral-wolf/side.svg",
  14925. extra: 179 / 166,
  14926. bottom: 0.03
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(3 + 2 / 12, "feet"),
  14934. default: true
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Michelle" },
  14940. {
  14941. side: {
  14942. height: math.unit(1 + 9 / 12, "feet"),
  14943. weight: math.unit(38, "lb"),
  14944. name: "Side",
  14945. image: {
  14946. source: "./media/characters/michelle/side.svg",
  14947. extra: 147 / 136.7,
  14948. bottom: 0.03
  14949. }
  14950. },
  14951. },
  14952. [
  14953. {
  14954. name: "Normal",
  14955. height: math.unit(1 + 9 / 12, "feet"),
  14956. default: true
  14957. },
  14958. ]
  14959. ))
  14960. characterMakers.push(() => makeCharacter(
  14961. { name: "Nino" },
  14962. {
  14963. front: {
  14964. height: math.unit(1 + 1 / 12, "feet"),
  14965. weight: math.unit(18, "lb"),
  14966. name: "Front",
  14967. image: {
  14968. source: "./media/characters/nino/front.svg"
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Normal",
  14975. height: math.unit(1 + 1 / 12, "feet"),
  14976. default: true
  14977. },
  14978. ]
  14979. ))
  14980. characterMakers.push(() => makeCharacter(
  14981. { name: "Viola" },
  14982. {
  14983. front: {
  14984. height: math.unit(1, "feet"),
  14985. weight: math.unit(16, "lb"),
  14986. name: "Front",
  14987. image: {
  14988. source: "./media/characters/viola/front.svg"
  14989. }
  14990. },
  14991. },
  14992. [
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(1, "feet"),
  14996. default: true
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Atlas" },
  15002. {
  15003. front: {
  15004. height: math.unit(6 + 5 / 12, "feet"),
  15005. weight: math.unit(580, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/atlas/front.svg",
  15009. extra: 298.5 / 290,
  15010. bottom: 0.015
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Normal",
  15017. height: math.unit(6 + 5 / 12, "feet"),
  15018. default: true
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Davy" },
  15024. {
  15025. side: {
  15026. height: math.unit(1 + 10 / 12, "feet"),
  15027. weight: math.unit(25, "lb"),
  15028. name: "Side",
  15029. image: {
  15030. source: "./media/characters/davy/side.svg",
  15031. extra: 200 / 170,
  15032. bottom: 0.01
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(1 + 10 / 12, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Fiona" },
  15046. {
  15047. side: {
  15048. height: math.unit(4 + 8 / 12, "feet"),
  15049. weight: math.unit(166, "lb"),
  15050. name: "Side",
  15051. image: {
  15052. source: "./media/characters/fiona/side.svg",
  15053. extra: 232 / 220,
  15054. bottom: 0.03
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(4 + 8 / 12, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Lyla" },
  15068. {
  15069. front: {
  15070. height: math.unit(2, "feet"),
  15071. weight: math.unit(62, "lb"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/lyla/front.svg",
  15075. bottom: 0.1
  15076. }
  15077. },
  15078. },
  15079. [
  15080. {
  15081. name: "Normal",
  15082. height: math.unit(2, "feet"),
  15083. default: true
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Perseus" },
  15089. {
  15090. side: {
  15091. height: math.unit(1.8, "feet"),
  15092. weight: math.unit(44, "lb"),
  15093. name: "Side",
  15094. image: {
  15095. source: "./media/characters/perseus/side.svg",
  15096. bottom: 0.21
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Normal",
  15103. height: math.unit(1.8, "feet"),
  15104. default: true
  15105. },
  15106. ]
  15107. ))
  15108. characterMakers.push(() => makeCharacter(
  15109. { name: "Remus" },
  15110. {
  15111. side: {
  15112. height: math.unit(4 + 2 / 12, "feet"),
  15113. weight: math.unit(20, "lb"),
  15114. name: "Side",
  15115. image: {
  15116. source: "./media/characters/remus/side.svg"
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Normal",
  15123. height: math.unit(4 + 2 / 12, "feet"),
  15124. default: true
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Raf" },
  15130. {
  15131. front: {
  15132. height: math.unit(4 + 11 / 12, "feet"),
  15133. weight: math.unit(114, "lb"),
  15134. name: "Front",
  15135. image: {
  15136. source: "./media/characters/raf/front.svg",
  15137. bottom: 0.01
  15138. }
  15139. },
  15140. side: {
  15141. height: math.unit(4 + 11 / 12, "feet"),
  15142. weight: math.unit(114, "lb"),
  15143. name: "Side",
  15144. image: {
  15145. source: "./media/characters/raf/side.svg",
  15146. bottom: 0.005
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Micro",
  15153. height: math.unit(2, "inches")
  15154. },
  15155. {
  15156. name: "Normal",
  15157. height: math.unit(4 + 11 / 12, "feet"),
  15158. default: true
  15159. },
  15160. {
  15161. name: "Macro",
  15162. height: math.unit(70, "feet")
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Liam Einarr" },
  15168. {
  15169. front: {
  15170. height: math.unit(1.5, "meters"),
  15171. weight: math.unit(68, "kg"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/liam-einarr/front.svg",
  15175. extra: 2822 / 2666
  15176. }
  15177. },
  15178. back: {
  15179. height: math.unit(1.5, "meters"),
  15180. weight: math.unit(68, "kg"),
  15181. name: "Back",
  15182. image: {
  15183. source: "./media/characters/liam-einarr/back.svg",
  15184. extra: 2822 / 2666,
  15185. bottom: 0.015
  15186. }
  15187. },
  15188. },
  15189. [
  15190. {
  15191. name: "Normal",
  15192. height: math.unit(1.5, "meters"),
  15193. default: true
  15194. },
  15195. {
  15196. name: "Macro",
  15197. height: math.unit(150, "meters")
  15198. },
  15199. {
  15200. name: "Megamacro",
  15201. height: math.unit(35, "km")
  15202. },
  15203. ]
  15204. ))
  15205. characterMakers.push(() => makeCharacter(
  15206. { name: "Linda" },
  15207. {
  15208. front: {
  15209. height: math.unit(6, "feet"),
  15210. weight: math.unit(75, "kg"),
  15211. name: "Front",
  15212. image: {
  15213. source: "./media/characters/linda/front.svg",
  15214. extra: 930 / 874,
  15215. bottom: 0.004
  15216. }
  15217. },
  15218. },
  15219. [
  15220. {
  15221. name: "Normal",
  15222. height: math.unit(6, "feet"),
  15223. default: true
  15224. },
  15225. ]
  15226. ))
  15227. characterMakers.push(() => makeCharacter(
  15228. { name: "Caylex" },
  15229. {
  15230. front: {
  15231. height: math.unit(6 + 8 / 12, "feet"),
  15232. weight: math.unit(220, "lb"),
  15233. name: "Front",
  15234. image: {
  15235. source: "./media/characters/caylex/front.svg",
  15236. extra: 821 / 772,
  15237. bottom: 0.07
  15238. }
  15239. },
  15240. back: {
  15241. height: math.unit(6 + 8 / 12, "feet"),
  15242. weight: math.unit(220, "lb"),
  15243. name: "Back",
  15244. image: {
  15245. source: "./media/characters/caylex/back.svg",
  15246. extra: 821 / 772,
  15247. bottom: 0.022
  15248. }
  15249. },
  15250. hand: {
  15251. height: math.unit(1.25, "feet"),
  15252. name: "Hand",
  15253. image: {
  15254. source: "./media/characters/caylex/hand.svg"
  15255. }
  15256. },
  15257. foot: {
  15258. height: math.unit(1.6, "feet"),
  15259. name: "Foot",
  15260. image: {
  15261. source: "./media/characters/caylex/foot.svg"
  15262. }
  15263. },
  15264. armored: {
  15265. height: math.unit(6 + 8 / 12, "feet"),
  15266. weight: math.unit(250, "lb"),
  15267. name: "Armored",
  15268. image: {
  15269. source: "./media/characters/caylex/armored.svg",
  15270. extra: 1420 / 1310,
  15271. bottom: 0.045
  15272. }
  15273. },
  15274. },
  15275. [
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(6 + 8 / 12, "feet"),
  15279. default: true
  15280. },
  15281. {
  15282. name: "Normal+",
  15283. height: math.unit(12, "feet")
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Alana" },
  15289. {
  15290. front: {
  15291. height: math.unit(7 + 6 / 12, "feet"),
  15292. weight: math.unit(288, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/alana/front.svg",
  15296. extra: 679 / 653,
  15297. bottom: 22.5 / 701
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(7 + 6 / 12, "feet")
  15305. },
  15306. {
  15307. name: "Large",
  15308. height: math.unit(50, "feet")
  15309. },
  15310. {
  15311. name: "Macro",
  15312. height: math.unit(100, "feet"),
  15313. default: true
  15314. },
  15315. {
  15316. name: "Macro+",
  15317. height: math.unit(200, "feet")
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Hasani" },
  15323. {
  15324. front: {
  15325. height: math.unit(6 + 1 / 12, "feet"),
  15326. weight: math.unit(210, "lb"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/hasani/front.svg",
  15330. extra: 244 / 232,
  15331. bottom: 0.01
  15332. }
  15333. },
  15334. back: {
  15335. height: math.unit(6 + 1 / 12, "feet"),
  15336. weight: math.unit(210, "lb"),
  15337. name: "Back",
  15338. image: {
  15339. source: "./media/characters/hasani/back.svg",
  15340. extra: 244 / 232,
  15341. bottom: 0.01
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(6 + 1 / 12, "feet")
  15349. },
  15350. {
  15351. name: "Macro",
  15352. height: math.unit(175, "feet"),
  15353. default: true
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Nita" },
  15359. {
  15360. front: {
  15361. height: math.unit(1.82, "meters"),
  15362. weight: math.unit(140, "lb"),
  15363. name: "Front",
  15364. image: {
  15365. source: "./media/characters/nita/front.svg",
  15366. extra: 2473 / 2363,
  15367. bottom: 0.01
  15368. }
  15369. },
  15370. },
  15371. [
  15372. {
  15373. name: "Normal",
  15374. height: math.unit(1.82, "m")
  15375. },
  15376. {
  15377. name: "Macro",
  15378. height: math.unit(300, "m")
  15379. },
  15380. {
  15381. name: "Mistake Canon",
  15382. height: math.unit(0.5, "miles"),
  15383. default: true
  15384. },
  15385. {
  15386. name: "Big Mistake",
  15387. height: math.unit(13, "miles")
  15388. },
  15389. {
  15390. name: "Playing God",
  15391. height: math.unit(2450, "miles")
  15392. },
  15393. ]
  15394. ))
  15395. characterMakers.push(() => makeCharacter(
  15396. { name: "Shiriko" },
  15397. {
  15398. front: {
  15399. height: math.unit(4, "feet"),
  15400. weight: math.unit(120, "lb"),
  15401. name: "Front",
  15402. image: {
  15403. source: "./media/characters/shiriko/front.svg",
  15404. extra: 195 / 188
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(4, "feet"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Deja" },
  15418. {
  15419. front: {
  15420. height: math.unit(6, "feet"),
  15421. name: "front",
  15422. image: {
  15423. source: "./media/characters/deja/front.svg",
  15424. extra: 926 / 840,
  15425. bottom: 0.07
  15426. }
  15427. },
  15428. },
  15429. [
  15430. {
  15431. name: "Planck Length",
  15432. height: math.unit(1.6e-35, "meters")
  15433. },
  15434. {
  15435. name: "Normal",
  15436. height: math.unit(30.48, "meters"),
  15437. default: true
  15438. },
  15439. {
  15440. name: "Universal",
  15441. height: math.unit(8.8e26, "meters")
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Anima" },
  15447. {
  15448. side: {
  15449. height: math.unit(8, "feet"),
  15450. weight: math.unit(6300, "lb"),
  15451. name: "Side",
  15452. image: {
  15453. source: "./media/characters/anima/side.svg",
  15454. bottom: 0.035
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(8, "feet"),
  15462. default: true
  15463. },
  15464. ]
  15465. ))
  15466. characterMakers.push(() => makeCharacter(
  15467. { name: "Bianca" },
  15468. {
  15469. front: {
  15470. height: math.unit(8, "feet"),
  15471. weight: math.unit(350, "lb"),
  15472. name: "Front",
  15473. image: {
  15474. source: "./media/characters/bianca/front.svg",
  15475. extra: 234 / 225,
  15476. bottom: 0.03
  15477. }
  15478. },
  15479. },
  15480. [
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(8, "feet"),
  15484. default: true
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Adinia" },
  15490. {
  15491. front: {
  15492. height: math.unit(6, "feet"),
  15493. weight: math.unit(150, "lb"),
  15494. name: "Front",
  15495. image: {
  15496. source: "./media/characters/adinia/front.svg",
  15497. extra: 1845 / 1672,
  15498. bottom: 0.02
  15499. }
  15500. },
  15501. back: {
  15502. height: math.unit(6, "feet"),
  15503. weight: math.unit(150, "lb"),
  15504. name: "Back",
  15505. image: {
  15506. source: "./media/characters/adinia/back.svg",
  15507. extra: 1845 / 1672,
  15508. bottom: 0.002
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Normal",
  15515. height: math.unit(11 + 5 / 12, "feet"),
  15516. default: true
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Lykasa" },
  15522. {
  15523. front: {
  15524. height: math.unit(3, "meters"),
  15525. weight: math.unit(200, "kg"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/lykasa/front.svg",
  15529. extra: 1076 / 976,
  15530. bottom: 0.06
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(3, "meters")
  15538. },
  15539. {
  15540. name: "Kaiju",
  15541. height: math.unit(120, "meters"),
  15542. default: true
  15543. },
  15544. {
  15545. name: "Mega Kaiju",
  15546. height: math.unit(240, "km")
  15547. },
  15548. {
  15549. name: "Giga Kaiju",
  15550. height: math.unit(400, "megameters")
  15551. },
  15552. {
  15553. name: "Tera Kaiju",
  15554. height: math.unit(800, "gigameters")
  15555. },
  15556. {
  15557. name: "Kaiju Dragon Goddess",
  15558. height: math.unit(26, "zettaparsecs")
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Malfaren" },
  15564. {
  15565. side: {
  15566. height: math.unit(283 / 124 * 6, "feet"),
  15567. weight: math.unit(35000, "lb"),
  15568. name: "Side",
  15569. image: {
  15570. source: "./media/characters/malfaren/side.svg",
  15571. extra: 2500 / 1010,
  15572. bottom: 0.01
  15573. }
  15574. },
  15575. front: {
  15576. height: math.unit(22.36, "feet"),
  15577. weight: math.unit(35000, "lb"),
  15578. name: "Front",
  15579. image: {
  15580. source: "./media/characters/malfaren/front.svg",
  15581. extra: 1631 / 1476,
  15582. bottom: 0.01
  15583. }
  15584. },
  15585. maw: {
  15586. height: math.unit(6.9, "feet"),
  15587. name: "Maw",
  15588. image: {
  15589. source: "./media/characters/malfaren/maw.svg"
  15590. }
  15591. },
  15592. },
  15593. [
  15594. {
  15595. name: "Big",
  15596. height: math.unit(283 / 162 * 6, "feet"),
  15597. },
  15598. {
  15599. name: "Bigger",
  15600. height: math.unit(283 / 124 * 6, "feet")
  15601. },
  15602. {
  15603. name: "Massive",
  15604. height: math.unit(283 / 92 * 6, "feet"),
  15605. default: true
  15606. },
  15607. {
  15608. name: "👀💦",
  15609. height: math.unit(283 / 73 * 6, "feet"),
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "Kernel" },
  15615. {
  15616. front: {
  15617. height: math.unit(1.7, "m"),
  15618. weight: math.unit(70, "kg"),
  15619. name: "Front",
  15620. image: {
  15621. source: "./media/characters/kernel/front.svg",
  15622. extra: 222 / 210,
  15623. bottom: 0.007
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Nano",
  15630. height: math.unit(17, "micrometers")
  15631. },
  15632. {
  15633. name: "Micro",
  15634. height: math.unit(1.7, "mm")
  15635. },
  15636. {
  15637. name: "Small",
  15638. height: math.unit(1.7, "cm")
  15639. },
  15640. {
  15641. name: "Normal",
  15642. height: math.unit(1.7, "m"),
  15643. default: true
  15644. },
  15645. ]
  15646. ))
  15647. characterMakers.push(() => makeCharacter(
  15648. { name: "Jayne Folest" },
  15649. {
  15650. front: {
  15651. height: math.unit(1.75, "meters"),
  15652. weight: math.unit(65, "kg"),
  15653. name: "Front",
  15654. image: {
  15655. source: "./media/characters/jayne-folest/front.svg",
  15656. extra: 2115 / 2007,
  15657. bottom: 0.02
  15658. }
  15659. },
  15660. back: {
  15661. height: math.unit(1.75, "meters"),
  15662. weight: math.unit(65, "kg"),
  15663. name: "Back",
  15664. image: {
  15665. source: "./media/characters/jayne-folest/back.svg",
  15666. extra: 2115 / 2007,
  15667. bottom: 0.005
  15668. }
  15669. },
  15670. frontClothed: {
  15671. height: math.unit(1.75, "meters"),
  15672. weight: math.unit(65, "kg"),
  15673. name: "Front (Clothed)",
  15674. image: {
  15675. source: "./media/characters/jayne-folest/front-clothed.svg",
  15676. extra: 2115 / 2007,
  15677. bottom: 0.035
  15678. }
  15679. },
  15680. hand: {
  15681. height: math.unit(1 / 1.260, "feet"),
  15682. name: "Hand",
  15683. image: {
  15684. source: "./media/characters/jayne-folest/hand.svg"
  15685. }
  15686. },
  15687. foot: {
  15688. height: math.unit(1 / 0.918, "feet"),
  15689. name: "Foot",
  15690. image: {
  15691. source: "./media/characters/jayne-folest/foot.svg"
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "Micro",
  15698. height: math.unit(4, "cm")
  15699. },
  15700. {
  15701. name: "Normal",
  15702. height: math.unit(1.75, "meters")
  15703. },
  15704. {
  15705. name: "Macro",
  15706. height: math.unit(47.5, "meters"),
  15707. default: true
  15708. },
  15709. ]
  15710. ))
  15711. characterMakers.push(() => makeCharacter(
  15712. { name: "Algier" },
  15713. {
  15714. front: {
  15715. height: math.unit(180, "cm"),
  15716. weight: math.unit(70, "kg"),
  15717. name: "Front",
  15718. image: {
  15719. source: "./media/characters/algier/front.svg",
  15720. extra: 596 / 572,
  15721. bottom: 0.04
  15722. }
  15723. },
  15724. back: {
  15725. height: math.unit(180, "cm"),
  15726. weight: math.unit(70, "kg"),
  15727. name: "Back",
  15728. image: {
  15729. source: "./media/characters/algier/back.svg",
  15730. extra: 596 / 572,
  15731. bottom: 0.025
  15732. }
  15733. },
  15734. frontdressed: {
  15735. height: math.unit(180, "cm"),
  15736. weight: math.unit(150, "kg"),
  15737. name: "Front-dressed",
  15738. image: {
  15739. source: "./media/characters/algier/front-dressed.svg",
  15740. extra: 596 / 572,
  15741. bottom: 0.038
  15742. }
  15743. },
  15744. },
  15745. [
  15746. {
  15747. name: "Micro",
  15748. height: math.unit(5, "cm")
  15749. },
  15750. {
  15751. name: "Normal",
  15752. height: math.unit(180, "cm"),
  15753. default: true
  15754. },
  15755. {
  15756. name: "Macro",
  15757. height: math.unit(64, "m")
  15758. },
  15759. ]
  15760. ))
  15761. characterMakers.push(() => makeCharacter(
  15762. { name: "Pretzel" },
  15763. {
  15764. upright: {
  15765. height: math.unit(7, "feet"),
  15766. weight: math.unit(300, "lb"),
  15767. name: "Upright",
  15768. image: {
  15769. source: "./media/characters/pretzel/upright.svg",
  15770. extra: 534 / 522,
  15771. bottom: 0.065
  15772. }
  15773. },
  15774. sprawling: {
  15775. height: math.unit(3.75, "feet"),
  15776. weight: math.unit(300, "lb"),
  15777. name: "Sprawling",
  15778. image: {
  15779. source: "./media/characters/pretzel/sprawling.svg",
  15780. extra: 314 / 281,
  15781. bottom: 0.1
  15782. }
  15783. },
  15784. tongue: {
  15785. height: math.unit(2, "feet"),
  15786. name: "Tongue",
  15787. image: {
  15788. source: "./media/characters/pretzel/tongue.svg"
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(7, "feet"),
  15796. default: true
  15797. },
  15798. {
  15799. name: "Oversized",
  15800. height: math.unit(15, "feet")
  15801. },
  15802. {
  15803. name: "Huge",
  15804. height: math.unit(30, "feet")
  15805. },
  15806. {
  15807. name: "Macro",
  15808. height: math.unit(250, "feet")
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Roxi" },
  15814. {
  15815. sideFront: {
  15816. height: math.unit(5 + 2 / 12, "feet"),
  15817. weight: math.unit(120, "lb"),
  15818. name: "Front Side",
  15819. image: {
  15820. source: "./media/characters/roxi/side-front.svg",
  15821. extra: 2924 / 2717,
  15822. bottom: 0.08
  15823. }
  15824. },
  15825. sideBack: {
  15826. height: math.unit(5 + 2 / 12, "feet"),
  15827. weight: math.unit(120, "lb"),
  15828. name: "Back Side",
  15829. image: {
  15830. source: "./media/characters/roxi/side-back.svg",
  15831. extra: 2904 / 2693,
  15832. bottom: 0.06
  15833. }
  15834. },
  15835. front: {
  15836. height: math.unit(5 + 2 / 12, "feet"),
  15837. weight: math.unit(120, "lb"),
  15838. name: "Front",
  15839. image: {
  15840. source: "./media/characters/roxi/front.svg",
  15841. extra: 2028 / 1907,
  15842. bottom: 0.01
  15843. }
  15844. },
  15845. frontAlt: {
  15846. height: math.unit(5 + 2 / 12, "feet"),
  15847. weight: math.unit(120, "lb"),
  15848. name: "Front (Alt)",
  15849. image: {
  15850. source: "./media/characters/roxi/front-alt.svg",
  15851. extra: 1828 / 1798,
  15852. bottom: 0.01
  15853. }
  15854. },
  15855. sitting: {
  15856. height: math.unit(2.8, "feet"),
  15857. weight: math.unit(120, "lb"),
  15858. name: "Sitting",
  15859. image: {
  15860. source: "./media/characters/roxi/sitting.svg",
  15861. extra: 2660 / 2462,
  15862. bottom: 0.1
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(5 + 2 / 12, "feet"),
  15870. default: true
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Shadow" },
  15876. {
  15877. side: {
  15878. height: math.unit(55, "feet"),
  15879. weight: math.unit(153, "tons"),
  15880. name: "Side",
  15881. image: {
  15882. source: "./media/characters/shadow/side.svg",
  15883. extra: 701 / 628,
  15884. bottom: 0.02
  15885. }
  15886. },
  15887. flying: {
  15888. height: math.unit(145, "feet"),
  15889. weight: math.unit(153, "tons"),
  15890. name: "Flying",
  15891. image: {
  15892. source: "./media/characters/shadow/flying.svg"
  15893. }
  15894. },
  15895. },
  15896. [
  15897. {
  15898. name: "Normal",
  15899. height: math.unit(55, "feet"),
  15900. default: true
  15901. },
  15902. ]
  15903. ))
  15904. characterMakers.push(() => makeCharacter(
  15905. { name: "Marcie" },
  15906. {
  15907. front: {
  15908. height: math.unit(6, "feet"),
  15909. weight: math.unit(200, "lb"),
  15910. name: "Front",
  15911. image: {
  15912. source: "./media/characters/marcie/front.svg",
  15913. extra: 960 / 876,
  15914. bottom: 58 / 1017.87
  15915. }
  15916. },
  15917. },
  15918. [
  15919. {
  15920. name: "Macro",
  15921. height: math.unit(1, "mile"),
  15922. default: true
  15923. },
  15924. ]
  15925. ))
  15926. characterMakers.push(() => makeCharacter(
  15927. { name: "Kachina" },
  15928. {
  15929. front: {
  15930. height: math.unit(7, "feet"),
  15931. weight: math.unit(200, "lb"),
  15932. name: "Front",
  15933. image: {
  15934. source: "./media/characters/kachina/front.svg",
  15935. extra: 1290.68 / 1119,
  15936. bottom: 36.5 / 1327.18
  15937. }
  15938. },
  15939. },
  15940. [
  15941. {
  15942. name: "Normal",
  15943. height: math.unit(7, "feet"),
  15944. default: true
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Kash" },
  15950. {
  15951. looking: {
  15952. height: math.unit(2, "meters"),
  15953. weight: math.unit(300, "kg"),
  15954. name: "Looking",
  15955. image: {
  15956. source: "./media/characters/kash/looking.svg",
  15957. extra: 474 / 344,
  15958. bottom: 0.03
  15959. }
  15960. },
  15961. side: {
  15962. height: math.unit(2, "meters"),
  15963. weight: math.unit(300, "kg"),
  15964. name: "Side",
  15965. image: {
  15966. source: "./media/characters/kash/side.svg",
  15967. extra: 302 / 251,
  15968. bottom: 0.03
  15969. }
  15970. },
  15971. front: {
  15972. height: math.unit(2, "meters"),
  15973. weight: math.unit(300, "kg"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/kash/front.svg",
  15977. extra: 495 / 360,
  15978. bottom: 0.015
  15979. }
  15980. },
  15981. },
  15982. [
  15983. {
  15984. name: "Normal",
  15985. height: math.unit(2, "meters"),
  15986. default: true
  15987. },
  15988. {
  15989. name: "Big",
  15990. height: math.unit(3, "meters")
  15991. },
  15992. {
  15993. name: "Large",
  15994. height: math.unit(5, "meters")
  15995. },
  15996. ]
  15997. ))
  15998. characterMakers.push(() => makeCharacter(
  15999. { name: "Lalim" },
  16000. {
  16001. feeding: {
  16002. height: math.unit(6.7, "feet"),
  16003. weight: math.unit(350, "lb"),
  16004. name: "Feeding",
  16005. image: {
  16006. source: "./media/characters/lalim/feeding.svg",
  16007. }
  16008. },
  16009. },
  16010. [
  16011. {
  16012. name: "Normal",
  16013. height: math.unit(6.7, "feet"),
  16014. default: true
  16015. },
  16016. ]
  16017. ))
  16018. characterMakers.push(() => makeCharacter(
  16019. { name: "De'Vout" },
  16020. {
  16021. front: {
  16022. height: math.unit(9.5, "feet"),
  16023. weight: math.unit(600, "lb"),
  16024. name: "Front",
  16025. image: {
  16026. source: "./media/characters/de'vout/front.svg",
  16027. extra: 1443 / 1328,
  16028. bottom: 0.025
  16029. }
  16030. },
  16031. back: {
  16032. height: math.unit(9.5, "feet"),
  16033. weight: math.unit(600, "lb"),
  16034. name: "Back",
  16035. image: {
  16036. source: "./media/characters/de'vout/back.svg",
  16037. extra: 1443 / 1328
  16038. }
  16039. },
  16040. frontDressed: {
  16041. height: math.unit(9.5, "feet"),
  16042. weight: math.unit(600, "lb"),
  16043. name: "Front (Dressed",
  16044. image: {
  16045. source: "./media/characters/de'vout/front-dressed.svg",
  16046. extra: 1443 / 1328,
  16047. bottom: 0.025
  16048. }
  16049. },
  16050. backDressed: {
  16051. height: math.unit(9.5, "feet"),
  16052. weight: math.unit(600, "lb"),
  16053. name: "Back (Dressed",
  16054. image: {
  16055. source: "./media/characters/de'vout/back-dressed.svg",
  16056. extra: 1443 / 1328
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(9.5, "feet"),
  16064. default: true
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Talana" },
  16070. {
  16071. front: {
  16072. height: math.unit(8, "feet"),
  16073. weight: math.unit(225, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/talana/front.svg",
  16077. extra: 1410 / 1300,
  16078. bottom: 0.015
  16079. }
  16080. },
  16081. frontDressed: {
  16082. height: math.unit(8, "feet"),
  16083. weight: math.unit(225, "lb"),
  16084. name: "Front (Dressed",
  16085. image: {
  16086. source: "./media/characters/talana/front-dressed.svg",
  16087. extra: 1410 / 1300,
  16088. bottom: 0.015
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Normal",
  16095. height: math.unit(8, "feet"),
  16096. default: true
  16097. },
  16098. ]
  16099. ))
  16100. characterMakers.push(() => makeCharacter(
  16101. { name: "Xeauvok" },
  16102. {
  16103. side: {
  16104. height: math.unit(7.2, "feet"),
  16105. weight: math.unit(150, "lb"),
  16106. name: "Side",
  16107. image: {
  16108. source: "./media/characters/xeauvok/side.svg",
  16109. extra: 1975 / 1523,
  16110. bottom: 0.07
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Normal",
  16117. height: math.unit(7.2, "feet"),
  16118. default: true
  16119. },
  16120. ]
  16121. ))
  16122. characterMakers.push(() => makeCharacter(
  16123. { name: "Zara" },
  16124. {
  16125. side: {
  16126. height: math.unit(10, "feet"),
  16127. weight: math.unit(900, "kg"),
  16128. name: "Side",
  16129. image: {
  16130. source: "./media/characters/zara/side.svg",
  16131. extra: 504 / 498
  16132. }
  16133. },
  16134. },
  16135. [
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(10, "feet"),
  16139. default: true
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Richard (Dragon)" },
  16145. {
  16146. side: {
  16147. height: math.unit(6, "feet"),
  16148. weight: math.unit(150, "lb"),
  16149. name: "Side",
  16150. image: {
  16151. source: "./media/characters/richard-dragon/side.svg",
  16152. extra: 845 / 340,
  16153. bottom: 0.017
  16154. }
  16155. },
  16156. maw: {
  16157. height: math.unit(2.97, "feet"),
  16158. name: "Maw",
  16159. image: {
  16160. source: "./media/characters/richard-dragon/maw.svg"
  16161. }
  16162. },
  16163. },
  16164. [
  16165. ]
  16166. ))
  16167. characterMakers.push(() => makeCharacter(
  16168. { name: "Richard (Smeargle)" },
  16169. {
  16170. front: {
  16171. height: math.unit(4, "feet"),
  16172. weight: math.unit(100, "lb"),
  16173. name: "Front",
  16174. image: {
  16175. source: "./media/characters/richard-smeargle/front.svg",
  16176. extra: 2952 / 2820,
  16177. bottom: 0.028
  16178. }
  16179. },
  16180. },
  16181. [
  16182. {
  16183. name: "Normal",
  16184. height: math.unit(4, "feet"),
  16185. default: true
  16186. },
  16187. {
  16188. name: "Dynamax",
  16189. height: math.unit(20, "meters")
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Klay" },
  16195. {
  16196. front: {
  16197. height: math.unit(6, "feet"),
  16198. weight: math.unit(110, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/klay/front.svg",
  16202. extra: 962 / 883,
  16203. bottom: 0.04
  16204. }
  16205. },
  16206. back: {
  16207. height: math.unit(6, "feet"),
  16208. weight: math.unit(110, "lb"),
  16209. name: "Back",
  16210. image: {
  16211. source: "./media/characters/klay/back.svg",
  16212. extra: 962 / 883
  16213. }
  16214. },
  16215. beans: {
  16216. height: math.unit(1.15, "feet"),
  16217. name: "Beans",
  16218. image: {
  16219. source: "./media/characters/klay/beans.svg"
  16220. }
  16221. },
  16222. },
  16223. [
  16224. {
  16225. name: "Micro",
  16226. height: math.unit(6, "inches")
  16227. },
  16228. {
  16229. name: "Mini",
  16230. height: math.unit(3, "feet")
  16231. },
  16232. {
  16233. name: "Normal",
  16234. height: math.unit(6, "feet"),
  16235. default: true
  16236. },
  16237. {
  16238. name: "Big",
  16239. height: math.unit(25, "feet")
  16240. },
  16241. {
  16242. name: "Macro",
  16243. height: math.unit(100, "feet")
  16244. },
  16245. {
  16246. name: "Megamacro",
  16247. height: math.unit(400, "feet")
  16248. },
  16249. ]
  16250. ))
  16251. characterMakers.push(() => makeCharacter(
  16252. { name: "Marcus" },
  16253. {
  16254. front: {
  16255. height: math.unit(6, "feet"),
  16256. weight: math.unit(160, "lb"),
  16257. name: "Front",
  16258. image: {
  16259. source: "./media/characters/marcus/front.svg",
  16260. extra: 734 / 676,
  16261. bottom: 0.03
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Little",
  16268. height: math.unit(6, "feet")
  16269. },
  16270. {
  16271. name: "Normal",
  16272. height: math.unit(110, "feet"),
  16273. default: true
  16274. },
  16275. {
  16276. name: "Macro",
  16277. height: math.unit(250, "feet")
  16278. },
  16279. {
  16280. name: "Megamacro",
  16281. height: math.unit(1000, "feet")
  16282. },
  16283. ]
  16284. ))
  16285. characterMakers.push(() => makeCharacter(
  16286. { name: "Claude DelRoute" },
  16287. {
  16288. front: {
  16289. height: math.unit(7, "feet"),
  16290. weight: math.unit(275, "lb"),
  16291. name: "Front",
  16292. image: {
  16293. source: "./media/characters/claude-delroute/front.svg",
  16294. extra: 230 / 214,
  16295. bottom: 0.007
  16296. }
  16297. },
  16298. side: {
  16299. height: math.unit(7, "feet"),
  16300. weight: math.unit(275, "lb"),
  16301. name: "Side",
  16302. image: {
  16303. source: "./media/characters/claude-delroute/side.svg",
  16304. extra: 222 / 214,
  16305. bottom: 0.01
  16306. }
  16307. },
  16308. back: {
  16309. height: math.unit(7, "feet"),
  16310. weight: math.unit(275, "lb"),
  16311. name: "Back",
  16312. image: {
  16313. source: "./media/characters/claude-delroute/back.svg",
  16314. extra: 230 / 214,
  16315. bottom: 0.015
  16316. }
  16317. },
  16318. maw: {
  16319. height: math.unit(0.6407, "meters"),
  16320. name: "Maw",
  16321. image: {
  16322. source: "./media/characters/claude-delroute/maw.svg"
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(7, "feet"),
  16330. default: true
  16331. },
  16332. {
  16333. name: "Lorge",
  16334. height: math.unit(20, "feet")
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Dragonien" },
  16340. {
  16341. front: {
  16342. height: math.unit(8 + 4 / 12, "feet"),
  16343. weight: math.unit(600, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/dragonien/front.svg",
  16347. extra: 100 / 94,
  16348. bottom: 3.3 / 103.3445
  16349. }
  16350. },
  16351. back: {
  16352. height: math.unit(8 + 4 / 12, "feet"),
  16353. weight: math.unit(600, "lb"),
  16354. name: "Back",
  16355. image: {
  16356. source: "./media/characters/dragonien/back.svg",
  16357. extra: 776 / 746,
  16358. bottom: 6.4 / 782.0616
  16359. }
  16360. },
  16361. foot: {
  16362. height: math.unit(1.54, "feet"),
  16363. name: "Foot",
  16364. image: {
  16365. source: "./media/characters/dragonien/foot.svg",
  16366. }
  16367. },
  16368. },
  16369. [
  16370. {
  16371. name: "Normal",
  16372. height: math.unit(8 + 4 / 12, "feet"),
  16373. default: true
  16374. },
  16375. {
  16376. name: "Macro",
  16377. height: math.unit(200, "feet")
  16378. },
  16379. {
  16380. name: "Megamacro",
  16381. height: math.unit(1, "mile")
  16382. },
  16383. {
  16384. name: "Gigamacro",
  16385. height: math.unit(1000, "miles")
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Desta" },
  16391. {
  16392. front: {
  16393. height: math.unit(5 + 2 / 12, "feet"),
  16394. weight: math.unit(110, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/desta/front.svg",
  16398. extra: 1482 / 1417
  16399. }
  16400. },
  16401. side: {
  16402. height: math.unit(5 + 2 / 12, "feet"),
  16403. weight: math.unit(110, "lb"),
  16404. name: "Side",
  16405. image: {
  16406. source: "./media/characters/desta/side.svg",
  16407. extra: 2579 / 2491,
  16408. bottom: 0.053
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Micro",
  16415. height: math.unit(6, "inches")
  16416. },
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(5 + 2 / 12, "feet"),
  16420. default: true
  16421. },
  16422. {
  16423. name: "Macro",
  16424. height: math.unit(62, "feet")
  16425. },
  16426. {
  16427. name: "Megamacro",
  16428. height: math.unit(1800, "feet")
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Storm Alystar" },
  16434. {
  16435. front: {
  16436. height: math.unit(10, "feet"),
  16437. weight: math.unit(700, "lb"),
  16438. name: "Front",
  16439. image: {
  16440. source: "./media/characters/storm-alystar/front.svg",
  16441. extra: 2112 / 1898,
  16442. bottom: 0.034
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Micro",
  16449. height: math.unit(3.5, "inches")
  16450. },
  16451. {
  16452. name: "Normal",
  16453. height: math.unit(10, "feet"),
  16454. default: true
  16455. },
  16456. {
  16457. name: "Macro",
  16458. height: math.unit(400, "feet")
  16459. },
  16460. {
  16461. name: "Deific",
  16462. height: math.unit(60, "miles")
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Ilia" },
  16468. {
  16469. front: {
  16470. height: math.unit(2.35, "meters"),
  16471. weight: math.unit(119, "kg"),
  16472. name: "Front",
  16473. image: {
  16474. source: "./media/characters/ilia/front.svg",
  16475. extra: 1285 / 1255,
  16476. bottom: 0.06
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(2.35, "meters")
  16484. },
  16485. {
  16486. name: "Macro",
  16487. height: math.unit(140, "meters"),
  16488. default: true
  16489. },
  16490. {
  16491. name: "Megamacro",
  16492. height: math.unit(100, "miles")
  16493. },
  16494. ]
  16495. ))
  16496. characterMakers.push(() => makeCharacter(
  16497. { name: "KingDead" },
  16498. {
  16499. front: {
  16500. height: math.unit(6 + 5 / 12, "feet"),
  16501. weight: math.unit(190, "lb"),
  16502. name: "Front",
  16503. image: {
  16504. source: "./media/characters/kingdead/front.svg",
  16505. extra: 1228 / 1177
  16506. }
  16507. },
  16508. },
  16509. [
  16510. {
  16511. name: "Micro",
  16512. height: math.unit(7, "inches")
  16513. },
  16514. {
  16515. name: "Normal",
  16516. height: math.unit(6 + 5 / 12, "feet")
  16517. },
  16518. {
  16519. name: "Macro",
  16520. height: math.unit(150, "feet"),
  16521. default: true
  16522. },
  16523. {
  16524. name: "Megamacro",
  16525. height: math.unit(200, "miles")
  16526. },
  16527. ]
  16528. ))
  16529. characterMakers.push(() => makeCharacter(
  16530. { name: "Kyrehx" },
  16531. {
  16532. front: {
  16533. height: math.unit(8, "feet"),
  16534. weight: math.unit(600, "lb"),
  16535. name: "Front",
  16536. image: {
  16537. source: "./media/characters/kyrehx/front.svg",
  16538. extra: 1195 / 1095,
  16539. bottom: 0.034
  16540. }
  16541. },
  16542. },
  16543. [
  16544. {
  16545. name: "Micro",
  16546. height: math.unit(2, "inches")
  16547. },
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(8, "feet"),
  16551. default: true
  16552. },
  16553. {
  16554. name: "Macro",
  16555. height: math.unit(255, "feet")
  16556. },
  16557. ]
  16558. ))
  16559. characterMakers.push(() => makeCharacter(
  16560. { name: "Xang" },
  16561. {
  16562. front: {
  16563. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16564. weight: math.unit(184, "lb"),
  16565. name: "Front",
  16566. image: {
  16567. source: "./media/characters/xang/front.svg",
  16568. extra: 845 / 755
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16576. default: true
  16577. },
  16578. {
  16579. name: "Macro",
  16580. height: math.unit(0.935 * 146, "feet")
  16581. },
  16582. {
  16583. name: "Megamacro",
  16584. height: math.unit(0.935 * 3, "miles")
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Doc Weardno" },
  16590. {
  16591. frontDressed: {
  16592. height: math.unit(5 + 7 / 12, "feet"),
  16593. weight: math.unit(140, "lb"),
  16594. name: "Front (Dressed)",
  16595. image: {
  16596. source: "./media/characters/doc-weardno/front-dressed.svg",
  16597. extra: 263 / 234
  16598. }
  16599. },
  16600. backDressed: {
  16601. height: math.unit(5 + 7 / 12, "feet"),
  16602. weight: math.unit(140, "lb"),
  16603. name: "Back (Dressed)",
  16604. image: {
  16605. source: "./media/characters/doc-weardno/back-dressed.svg",
  16606. extra: 266 / 238
  16607. }
  16608. },
  16609. front: {
  16610. height: math.unit(5 + 7 / 12, "feet"),
  16611. weight: math.unit(140, "lb"),
  16612. name: "Front",
  16613. image: {
  16614. source: "./media/characters/doc-weardno/front.svg",
  16615. extra: 254 / 233
  16616. }
  16617. },
  16618. },
  16619. [
  16620. {
  16621. name: "Micro",
  16622. height: math.unit(3, "inches")
  16623. },
  16624. {
  16625. name: "Normal",
  16626. height: math.unit(5 + 7 / 12, "feet"),
  16627. default: true
  16628. },
  16629. {
  16630. name: "Macro",
  16631. height: math.unit(25, "feet")
  16632. },
  16633. {
  16634. name: "Megamacro",
  16635. height: math.unit(2, "miles")
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Seth Whilst" },
  16641. {
  16642. front: {
  16643. height: math.unit(6 + 2 / 12, "feet"),
  16644. weight: math.unit(153, "lb"),
  16645. name: "Front",
  16646. image: {
  16647. source: "./media/characters/seth-whilst/front.svg",
  16648. bottom: 0.07
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Micro",
  16655. height: math.unit(5, "inches")
  16656. },
  16657. {
  16658. name: "Normal",
  16659. height: math.unit(6 + 2 / 12, "feet"),
  16660. default: true
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Pocket Jabari" },
  16666. {
  16667. front: {
  16668. height: math.unit(3, "inches"),
  16669. weight: math.unit(8, "grams"),
  16670. name: "Front",
  16671. image: {
  16672. source: "./media/characters/pocket-jabari/front.svg",
  16673. extra: 1024 / 974,
  16674. bottom: 0.039
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Minimicro",
  16681. height: math.unit(8, "mm")
  16682. },
  16683. {
  16684. name: "Micro",
  16685. height: math.unit(3, "inches"),
  16686. default: true
  16687. },
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(3, "feet")
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Sapphy" },
  16696. {
  16697. front: {
  16698. height: math.unit(15, "feet"),
  16699. weight: math.unit(3280, "lb"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/sapphy/front.svg",
  16703. extra: 671 / 577,
  16704. bottom: 0.085
  16705. }
  16706. },
  16707. back: {
  16708. height: math.unit(15, "feet"),
  16709. weight: math.unit(3280, "lb"),
  16710. name: "Back",
  16711. image: {
  16712. source: "./media/characters/sapphy/back.svg",
  16713. extra: 631 / 607,
  16714. bottom: 0.045
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Normal",
  16721. height: math.unit(15, "feet")
  16722. },
  16723. {
  16724. name: "Casual Macro",
  16725. height: math.unit(120, "feet")
  16726. },
  16727. {
  16728. name: "Macro",
  16729. height: math.unit(2150, "feet"),
  16730. default: true
  16731. },
  16732. {
  16733. name: "Megamacro",
  16734. height: math.unit(8, "miles")
  16735. },
  16736. {
  16737. name: "Galaxy Mom",
  16738. height: math.unit(6, "megalightyears")
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Kiro" },
  16744. {
  16745. front: {
  16746. height: math.unit(6, "feet"),
  16747. weight: math.unit(170, "lb"),
  16748. name: "Front",
  16749. image: {
  16750. source: "./media/characters/kiro/front.svg",
  16751. extra: 1064 / 1012,
  16752. bottom: 0.052
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Micro",
  16759. height: math.unit(6, "inches")
  16760. },
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(6, "feet"),
  16764. default: true
  16765. },
  16766. {
  16767. name: "Macro",
  16768. height: math.unit(72, "feet")
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Irishfox" },
  16774. {
  16775. front: {
  16776. height: math.unit(5 + 9 / 12, "feet"),
  16777. weight: math.unit(175, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/irishfox/front.svg",
  16781. extra: 1912 / 1680,
  16782. bottom: 0.02
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Nano",
  16789. height: math.unit(1, "mm")
  16790. },
  16791. {
  16792. name: "Micro",
  16793. height: math.unit(2, "inches")
  16794. },
  16795. {
  16796. name: "Normal",
  16797. height: math.unit(5 + 9 / 12, "feet"),
  16798. default: true
  16799. },
  16800. {
  16801. name: "Macro",
  16802. height: math.unit(45, "feet")
  16803. },
  16804. ]
  16805. ))
  16806. characterMakers.push(() => makeCharacter(
  16807. { name: "Aronai Sieyes" },
  16808. {
  16809. front: {
  16810. height: math.unit(6 + 1 / 12, "feet"),
  16811. weight: math.unit(150, "lb"),
  16812. name: "Front",
  16813. image: {
  16814. source: "./media/characters/aronai-sieyes/front.svg",
  16815. extra: 1556 / 1480,
  16816. bottom: 0.015
  16817. }
  16818. },
  16819. side: {
  16820. height: math.unit(6 + 1 / 12, "feet"),
  16821. weight: math.unit(150, "lb"),
  16822. name: "Side",
  16823. image: {
  16824. source: "./media/characters/aronai-sieyes/side.svg",
  16825. extra: 1433 / 1390,
  16826. bottom: 0.0393
  16827. }
  16828. },
  16829. back: {
  16830. height: math.unit(6 + 1 / 12, "feet"),
  16831. weight: math.unit(150, "lb"),
  16832. name: "Back",
  16833. image: {
  16834. source: "./media/characters/aronai-sieyes/back.svg",
  16835. extra: 1544 / 1494,
  16836. bottom: 0.02
  16837. }
  16838. },
  16839. frontClothed: {
  16840. height: math.unit(6 + 1 / 12, "feet"),
  16841. weight: math.unit(150, "lb"),
  16842. name: "Front (Clothed)",
  16843. image: {
  16844. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16845. extra: 1582 / 1527
  16846. }
  16847. },
  16848. feral: {
  16849. height: math.unit(18, "feet"),
  16850. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16851. name: "Feral",
  16852. image: {
  16853. source: "./media/characters/aronai-sieyes/feral.svg",
  16854. extra: 1530 / 1240,
  16855. bottom: 0.035
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Micro",
  16862. height: math.unit(2, "inches")
  16863. },
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(6 + 1 / 12, "feet"),
  16867. default: true
  16868. }
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Xuna" },
  16873. {
  16874. front: {
  16875. height: math.unit(12, "feet"),
  16876. weight: math.unit(410, "kg"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/xuna/front.svg",
  16880. extra: 2184 / 1980
  16881. }
  16882. },
  16883. side: {
  16884. height: math.unit(12, "feet"),
  16885. weight: math.unit(410, "kg"),
  16886. name: "Side",
  16887. image: {
  16888. source: "./media/characters/xuna/side.svg",
  16889. extra: 2184 / 1980
  16890. }
  16891. },
  16892. back: {
  16893. height: math.unit(12, "feet"),
  16894. weight: math.unit(410, "kg"),
  16895. name: "Back",
  16896. image: {
  16897. source: "./media/characters/xuna/back.svg",
  16898. extra: 2184 / 1980
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Nano glow",
  16905. height: math.unit(10, "nm")
  16906. },
  16907. {
  16908. name: "Micro floof",
  16909. height: math.unit(0.3, "m")
  16910. },
  16911. {
  16912. name: "Huggable softy boi",
  16913. height: math.unit(3.6576, "m"),
  16914. default: true
  16915. },
  16916. {
  16917. name: "Admirable floof",
  16918. height: math.unit(80, "meters")
  16919. },
  16920. {
  16921. name: "Gentle macro",
  16922. height: math.unit(300, "meters")
  16923. },
  16924. {
  16925. name: "Very careful floof",
  16926. height: math.unit(3200, "meters")
  16927. },
  16928. {
  16929. name: "The mega floof",
  16930. height: math.unit(36000, "meters")
  16931. },
  16932. {
  16933. name: "Giga-fur-Wicker",
  16934. height: math.unit(4800000, "meters")
  16935. },
  16936. {
  16937. name: "Licky world",
  16938. height: math.unit(20000000, "meters")
  16939. },
  16940. {
  16941. name: "Floofy cyan sun",
  16942. height: math.unit(1500000000, "meters")
  16943. },
  16944. {
  16945. name: "Milky Wicker",
  16946. height: math.unit(1000000000000000000000, "meters")
  16947. },
  16948. {
  16949. name: "The observing Wicker",
  16950. height: math.unit(999999999999999999999999999, "meters")
  16951. },
  16952. ]
  16953. ))
  16954. characterMakers.push(() => makeCharacter(
  16955. { name: "Arokha Sieyes" },
  16956. {
  16957. front: {
  16958. height: math.unit(5 + 9 / 12, "feet"),
  16959. weight: math.unit(150, "lb"),
  16960. name: "Front",
  16961. image: {
  16962. source: "./media/characters/arokha-sieyes/front.svg",
  16963. extra: 1425 / 1284,
  16964. bottom: 0.05
  16965. }
  16966. },
  16967. },
  16968. [
  16969. {
  16970. name: "Normal",
  16971. height: math.unit(5 + 9 / 12, "feet")
  16972. },
  16973. {
  16974. name: "Macro",
  16975. height: math.unit(30, "meters"),
  16976. default: true
  16977. },
  16978. ]
  16979. ))
  16980. characterMakers.push(() => makeCharacter(
  16981. { name: "Arokh Sieyes" },
  16982. {
  16983. front: {
  16984. height: math.unit(6, "feet"),
  16985. weight: math.unit(180, "lb"),
  16986. name: "Front",
  16987. image: {
  16988. source: "./media/characters/arokh-sieyes/front.svg",
  16989. extra: 1830 / 1769,
  16990. bottom: 0.01
  16991. }
  16992. },
  16993. },
  16994. [
  16995. {
  16996. name: "Normal",
  16997. height: math.unit(6, "feet")
  16998. },
  16999. {
  17000. name: "Macro",
  17001. height: math.unit(30, "meters"),
  17002. default: true
  17003. },
  17004. ]
  17005. ))
  17006. characterMakers.push(() => makeCharacter(
  17007. { name: "Goldeneye" },
  17008. {
  17009. side: {
  17010. height: math.unit(13 + 1 / 12, "feet"),
  17011. weight: math.unit(8.5, "tonnes"),
  17012. name: "Side",
  17013. image: {
  17014. source: "./media/characters/goldeneye/side.svg",
  17015. extra: 1182 / 778,
  17016. bottom: 0.067
  17017. }
  17018. },
  17019. paw: {
  17020. height: math.unit(3.4, "feet"),
  17021. name: "Paw",
  17022. image: {
  17023. source: "./media/characters/goldeneye/paw.svg"
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(13 + 1 / 12, "feet"),
  17031. default: true
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Leonardo Lycheborne" },
  17037. {
  17038. front: {
  17039. height: math.unit(6 + 1 / 12, "feet"),
  17040. weight: math.unit(210, "lb"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/leonardo-lycheborne/front.svg",
  17044. extra: 390 / 365,
  17045. bottom: 0.032
  17046. }
  17047. },
  17048. side: {
  17049. height: math.unit(6 + 1 / 12, "feet"),
  17050. weight: math.unit(210, "lb"),
  17051. name: "Side",
  17052. image: {
  17053. source: "./media/characters/leonardo-lycheborne/side.svg",
  17054. extra: 390 / 365,
  17055. bottom: 0.005
  17056. }
  17057. },
  17058. back: {
  17059. height: math.unit(6 + 1 / 12, "feet"),
  17060. weight: math.unit(210, "lb"),
  17061. name: "Back",
  17062. image: {
  17063. source: "./media/characters/leonardo-lycheborne/back.svg",
  17064. extra: 392 / 366,
  17065. bottom: 0.01
  17066. }
  17067. },
  17068. hand: {
  17069. height: math.unit(1.08, "feet"),
  17070. name: "Hand",
  17071. image: {
  17072. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17073. }
  17074. },
  17075. foot: {
  17076. height: math.unit(1.32, "feet"),
  17077. name: "Foot",
  17078. image: {
  17079. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17080. }
  17081. },
  17082. were: {
  17083. height: math.unit(20, "feet"),
  17084. weight: math.unit(7800, "lb"),
  17085. name: "Were",
  17086. image: {
  17087. source: "./media/characters/leonardo-lycheborne/were.svg",
  17088. extra: 308 / 294,
  17089. bottom: 0.048
  17090. }
  17091. },
  17092. feral: {
  17093. height: math.unit(7.5, "feet"),
  17094. weight: math.unit(600, "lb"),
  17095. name: "Feral",
  17096. image: {
  17097. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17098. extra: 210 / 186,
  17099. bottom: 0.108
  17100. }
  17101. },
  17102. taur: {
  17103. height: math.unit(11, "feet"),
  17104. weight: math.unit(3300, "lb"),
  17105. name: "Taur",
  17106. image: {
  17107. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17108. extra: 320 / 303,
  17109. bottom: 0.025
  17110. }
  17111. },
  17112. barghest: {
  17113. height: math.unit(11, "feet"),
  17114. weight: math.unit(1300, "lb"),
  17115. name: "Barghest",
  17116. image: {
  17117. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17118. extra: 323 / 302,
  17119. bottom: 0.027
  17120. }
  17121. },
  17122. dick: {
  17123. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17124. name: "Dick",
  17125. image: {
  17126. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17127. }
  17128. },
  17129. dickWere: {
  17130. height: math.unit((20) / 3.8, "feet"),
  17131. name: "Dick (Were)",
  17132. image: {
  17133. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17134. }
  17135. },
  17136. },
  17137. [
  17138. {
  17139. name: "Normal",
  17140. height: math.unit(6 + 1 / 12, "feet"),
  17141. default: true
  17142. },
  17143. ]
  17144. ))
  17145. characterMakers.push(() => makeCharacter(
  17146. { name: "Jet" },
  17147. {
  17148. front: {
  17149. height: math.unit(10, "feet"),
  17150. weight: math.unit(350, "lb"),
  17151. name: "Front",
  17152. image: {
  17153. source: "./media/characters/jet/front.svg",
  17154. extra: 2050 / 1980,
  17155. bottom: 0.013
  17156. }
  17157. },
  17158. back: {
  17159. height: math.unit(10, "feet"),
  17160. weight: math.unit(350, "lb"),
  17161. name: "Back",
  17162. image: {
  17163. source: "./media/characters/jet/back.svg",
  17164. extra: 2050 / 1980,
  17165. bottom: 0.013
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Micro",
  17172. height: math.unit(6, "inches")
  17173. },
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(10, "feet"),
  17177. default: true
  17178. },
  17179. {
  17180. name: "Macro",
  17181. height: math.unit(100, "feet")
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Tanarath" },
  17187. {
  17188. front: {
  17189. height: math.unit(15, "feet"),
  17190. weight: math.unit(2800, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/tanarath/front.svg",
  17194. extra: 2392 / 2220,
  17195. bottom: 0.03
  17196. }
  17197. },
  17198. back: {
  17199. height: math.unit(15, "feet"),
  17200. weight: math.unit(2800, "lb"),
  17201. name: "Back",
  17202. image: {
  17203. source: "./media/characters/tanarath/back.svg",
  17204. extra: 2392 / 2220,
  17205. bottom: 0.03
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(15, "feet"),
  17213. default: true
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Patty CattyBatty" },
  17219. {
  17220. front: {
  17221. height: math.unit(7 + 1 / 12, "feet"),
  17222. weight: math.unit(175, "lb"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/patty-cattybatty/front.svg",
  17226. extra: 908 / 874,
  17227. bottom: 0.025
  17228. }
  17229. },
  17230. },
  17231. [
  17232. {
  17233. name: "Micro",
  17234. height: math.unit(1, "inch")
  17235. },
  17236. {
  17237. name: "Normal",
  17238. height: math.unit(7 + 1 / 12, "feet")
  17239. },
  17240. {
  17241. name: "Mini Macro",
  17242. height: math.unit(155, "feet")
  17243. },
  17244. {
  17245. name: "Macro",
  17246. height: math.unit(1077, "feet")
  17247. },
  17248. {
  17249. name: "Mega Macro",
  17250. height: math.unit(47650, "feet"),
  17251. default: true
  17252. },
  17253. {
  17254. name: "Giga Macro",
  17255. height: math.unit(440, "miles")
  17256. },
  17257. {
  17258. name: "Tera Macro",
  17259. height: math.unit(8700, "miles")
  17260. },
  17261. {
  17262. name: "Planetary Macro",
  17263. height: math.unit(32700, "miles")
  17264. },
  17265. {
  17266. name: "Solar Macro",
  17267. height: math.unit(550000, "miles")
  17268. },
  17269. {
  17270. name: "Celestial Macro",
  17271. height: math.unit(2.5, "AU")
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Cappu" },
  17277. {
  17278. front: {
  17279. height: math.unit(4 + 5 / 12, "feet"),
  17280. weight: math.unit(90, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/cappu/front.svg",
  17284. extra: 1247 / 1152,
  17285. bottom: 0.012
  17286. }
  17287. },
  17288. },
  17289. [
  17290. {
  17291. name: "Normal",
  17292. height: math.unit(4 + 5 / 12, "feet"),
  17293. default: true
  17294. },
  17295. ]
  17296. ))
  17297. characterMakers.push(() => makeCharacter(
  17298. { name: "Sebi" },
  17299. {
  17300. frontDressed: {
  17301. height: math.unit(70, "cm"),
  17302. weight: math.unit(6, "kg"),
  17303. name: "Front (Dressed)",
  17304. image: {
  17305. source: "./media/characters/sebi/front-dressed.svg",
  17306. extra: 713.5 / 686.5,
  17307. bottom: 0.003
  17308. }
  17309. },
  17310. front: {
  17311. height: math.unit(70, "cm"),
  17312. weight: math.unit(5, "kg"),
  17313. name: "Front",
  17314. image: {
  17315. source: "./media/characters/sebi/front.svg",
  17316. extra: 713.5 / 686.5,
  17317. bottom: 0.003
  17318. }
  17319. }
  17320. },
  17321. [
  17322. {
  17323. name: "Normal",
  17324. height: math.unit(70, "cm"),
  17325. default: true
  17326. },
  17327. {
  17328. name: "Macro",
  17329. height: math.unit(8, "meters")
  17330. },
  17331. ]
  17332. ))
  17333. characterMakers.push(() => makeCharacter(
  17334. { name: "Typhek" },
  17335. {
  17336. front: {
  17337. height: math.unit(6, "feet"),
  17338. weight: math.unit(150, "lb"),
  17339. name: "Front",
  17340. image: {
  17341. source: "./media/characters/typhek/front.svg",
  17342. extra: 1948 / 1929,
  17343. bottom: 0.025
  17344. }
  17345. },
  17346. side: {
  17347. height: math.unit(6, "feet"),
  17348. weight: math.unit(150, "lb"),
  17349. name: "Side",
  17350. image: {
  17351. source: "./media/characters/typhek/side.svg",
  17352. extra: 2034 / 2010,
  17353. bottom: 0.003
  17354. }
  17355. },
  17356. back: {
  17357. height: math.unit(6, "feet"),
  17358. weight: math.unit(150, "lb"),
  17359. name: "Back",
  17360. image: {
  17361. source: "./media/characters/typhek/back.svg",
  17362. extra: 2005 / 1978,
  17363. bottom: 0.004
  17364. }
  17365. },
  17366. palm: {
  17367. height: math.unit(1.2, "feet"),
  17368. name: "Palm",
  17369. image: {
  17370. source: "./media/characters/typhek/palm.svg"
  17371. }
  17372. },
  17373. fist: {
  17374. height: math.unit(1.1, "feet"),
  17375. name: "Fist",
  17376. image: {
  17377. source: "./media/characters/typhek/fist.svg"
  17378. }
  17379. },
  17380. foot: {
  17381. height: math.unit(1.57, "feet"),
  17382. name: "Foot",
  17383. image: {
  17384. source: "./media/characters/typhek/foot.svg"
  17385. }
  17386. },
  17387. sole: {
  17388. height: math.unit(2.05, "feet"),
  17389. name: "Sole",
  17390. image: {
  17391. source: "./media/characters/typhek/sole.svg"
  17392. }
  17393. },
  17394. },
  17395. [
  17396. {
  17397. name: "Macro",
  17398. height: math.unit(40, "stories"),
  17399. default: true
  17400. },
  17401. {
  17402. name: "Megamacro",
  17403. height: math.unit(1, "mile")
  17404. },
  17405. {
  17406. name: "Gigamacro",
  17407. height: math.unit(4000, "solarradii")
  17408. },
  17409. {
  17410. name: "Universal",
  17411. height: math.unit(1.1, "universes")
  17412. }
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Kassy" },
  17417. {
  17418. side: {
  17419. height: math.unit(5 + 7 / 12, "feet"),
  17420. weight: math.unit(150, "lb"),
  17421. name: "Side",
  17422. image: {
  17423. source: "./media/characters/kassy/side.svg",
  17424. extra: 1280 / 1225,
  17425. bottom: 0.002
  17426. }
  17427. },
  17428. front: {
  17429. height: math.unit(5 + 7 / 12, "feet"),
  17430. weight: math.unit(150, "lb"),
  17431. name: "Front",
  17432. image: {
  17433. source: "./media/characters/kassy/front.svg",
  17434. extra: 1280 / 1225,
  17435. bottom: 0.025
  17436. }
  17437. },
  17438. back: {
  17439. height: math.unit(5 + 7 / 12, "feet"),
  17440. weight: math.unit(150, "lb"),
  17441. name: "Back",
  17442. image: {
  17443. source: "./media/characters/kassy/back.svg",
  17444. extra: 1280 / 1225,
  17445. bottom: 0.002
  17446. }
  17447. },
  17448. foot: {
  17449. height: math.unit(1.266, "feet"),
  17450. name: "Foot",
  17451. image: {
  17452. source: "./media/characters/kassy/foot.svg"
  17453. }
  17454. },
  17455. },
  17456. [
  17457. {
  17458. name: "Normal",
  17459. height: math.unit(5 + 7 / 12, "feet")
  17460. },
  17461. {
  17462. name: "Macro",
  17463. height: math.unit(137, "feet"),
  17464. default: true
  17465. },
  17466. {
  17467. name: "Megamacro",
  17468. height: math.unit(1, "mile")
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Neil" },
  17474. {
  17475. front: {
  17476. height: math.unit(6 + 1 / 12, "feet"),
  17477. weight: math.unit(200, "lb"),
  17478. name: "Front",
  17479. image: {
  17480. source: "./media/characters/neil/front.svg",
  17481. extra: 1326 / 1250,
  17482. bottom: 0.023
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(6 + 1 / 12, "feet"),
  17490. default: true
  17491. },
  17492. {
  17493. name: "Macro",
  17494. height: math.unit(200, "feet")
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Atticus" },
  17500. {
  17501. front: {
  17502. height: math.unit(5 + 9 / 12, "feet"),
  17503. weight: math.unit(190, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/atticus/front.svg",
  17507. extra: 2934 / 2785,
  17508. bottom: 0.025
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Normal",
  17515. height: math.unit(5 + 9 / 12, "feet"),
  17516. default: true
  17517. },
  17518. {
  17519. name: "Macro",
  17520. height: math.unit(180, "feet")
  17521. },
  17522. ]
  17523. ))
  17524. characterMakers.push(() => makeCharacter(
  17525. { name: "Milo" },
  17526. {
  17527. side: {
  17528. height: math.unit(9, "feet"),
  17529. weight: math.unit(650, "lb"),
  17530. name: "Side",
  17531. image: {
  17532. source: "./media/characters/milo/side.svg",
  17533. extra: 2644 / 2310,
  17534. bottom: 0.032
  17535. }
  17536. },
  17537. },
  17538. [
  17539. {
  17540. name: "Normal",
  17541. height: math.unit(9, "feet"),
  17542. default: true
  17543. },
  17544. {
  17545. name: "Macro",
  17546. height: math.unit(300, "feet")
  17547. },
  17548. ]
  17549. ))
  17550. characterMakers.push(() => makeCharacter(
  17551. { name: "Ijzer" },
  17552. {
  17553. side: {
  17554. height: math.unit(8, "meters"),
  17555. weight: math.unit(90000, "kg"),
  17556. name: "Side",
  17557. image: {
  17558. source: "./media/characters/ijzer/side.svg",
  17559. extra: 2756 / 1600,
  17560. bottom: 0.01
  17561. }
  17562. },
  17563. },
  17564. [
  17565. {
  17566. name: "Small",
  17567. height: math.unit(3, "meters")
  17568. },
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(8, "meters"),
  17572. default: true
  17573. },
  17574. {
  17575. name: "Normal+",
  17576. height: math.unit(10, "meters")
  17577. },
  17578. {
  17579. name: "Bigger",
  17580. height: math.unit(24, "meters")
  17581. },
  17582. {
  17583. name: "Huge",
  17584. height: math.unit(80, "meters")
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Luca Cervicum" },
  17590. {
  17591. front: {
  17592. height: math.unit(6 + 2 / 12, "feet"),
  17593. weight: math.unit(153, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/luca-cervicum/front.svg",
  17597. extra: 370 / 327,
  17598. bottom: 0.015
  17599. }
  17600. },
  17601. back: {
  17602. height: math.unit(6 + 2 / 12, "feet"),
  17603. weight: math.unit(153, "lb"),
  17604. name: "Back",
  17605. image: {
  17606. source: "./media/characters/luca-cervicum/back.svg",
  17607. extra: 367 / 333,
  17608. bottom: 0.005
  17609. }
  17610. },
  17611. frontGear: {
  17612. height: math.unit(6 + 2 / 12, "feet"),
  17613. weight: math.unit(173, "lb"),
  17614. name: "Front (Gear)",
  17615. image: {
  17616. source: "./media/characters/luca-cervicum/front-gear.svg",
  17617. extra: 377 / 333,
  17618. bottom: 0.006
  17619. }
  17620. },
  17621. },
  17622. [
  17623. {
  17624. name: "Normal",
  17625. height: math.unit(6 + 2 / 12, "feet"),
  17626. default: true
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Oliver" },
  17632. {
  17633. front: {
  17634. height: math.unit(6 + 1 / 12, "feet"),
  17635. weight: math.unit(304, "lb"),
  17636. name: "Front",
  17637. image: {
  17638. source: "./media/characters/oliver/front.svg",
  17639. extra: 157 / 143,
  17640. bottom: 0.08
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Normal",
  17647. height: math.unit(6 + 1 / 12, "feet"),
  17648. default: true
  17649. },
  17650. ]
  17651. ))
  17652. characterMakers.push(() => makeCharacter(
  17653. { name: "Shane" },
  17654. {
  17655. front: {
  17656. height: math.unit(5 + 7 / 12, "feet"),
  17657. weight: math.unit(140, "lb"),
  17658. name: "Front",
  17659. image: {
  17660. source: "./media/characters/shane/front.svg",
  17661. extra: 304 / 289,
  17662. bottom: 0.005
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(5 + 7 / 12, "feet"),
  17670. default: true
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Shin" },
  17676. {
  17677. front: {
  17678. height: math.unit(5 + 9 / 12, "feet"),
  17679. weight: math.unit(178, "lb"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/shin/front.svg",
  17683. extra: 159 / 151,
  17684. bottom: 0.015
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(5 + 9 / 12, "feet"),
  17692. default: true
  17693. },
  17694. ]
  17695. ))
  17696. characterMakers.push(() => makeCharacter(
  17697. { name: "Xerxes" },
  17698. {
  17699. front: {
  17700. height: math.unit(5 + 10 / 12, "feet"),
  17701. weight: math.unit(168, "lb"),
  17702. name: "Front",
  17703. image: {
  17704. source: "./media/characters/xerxes/front.svg",
  17705. extra: 282 / 260,
  17706. bottom: 0.045
  17707. }
  17708. },
  17709. },
  17710. [
  17711. {
  17712. name: "Normal",
  17713. height: math.unit(5 + 10 / 12, "feet"),
  17714. default: true
  17715. },
  17716. ]
  17717. ))
  17718. characterMakers.push(() => makeCharacter(
  17719. { name: "Chaska" },
  17720. {
  17721. front: {
  17722. height: math.unit(6 + 7 / 12, "feet"),
  17723. weight: math.unit(208, "lb"),
  17724. name: "Front",
  17725. image: {
  17726. source: "./media/characters/chaska/front.svg",
  17727. extra: 332 / 319,
  17728. bottom: 0.015
  17729. }
  17730. },
  17731. },
  17732. [
  17733. {
  17734. name: "Normal",
  17735. height: math.unit(6 + 7 / 12, "feet"),
  17736. default: true
  17737. },
  17738. ]
  17739. ))
  17740. characterMakers.push(() => makeCharacter(
  17741. { name: "Enuk" },
  17742. {
  17743. front: {
  17744. height: math.unit(5 + 8 / 12, "feet"),
  17745. weight: math.unit(208, "lb"),
  17746. name: "Front",
  17747. image: {
  17748. source: "./media/characters/enuk/front.svg",
  17749. extra: 437 / 406,
  17750. bottom: 0.02
  17751. }
  17752. },
  17753. },
  17754. [
  17755. {
  17756. name: "Normal",
  17757. height: math.unit(5 + 8 / 12, "feet"),
  17758. default: true
  17759. },
  17760. ]
  17761. ))
  17762. characterMakers.push(() => makeCharacter(
  17763. { name: "Bruun" },
  17764. {
  17765. front: {
  17766. height: math.unit(5 + 10 / 12, "feet"),
  17767. weight: math.unit(252, "lb"),
  17768. name: "Front",
  17769. image: {
  17770. source: "./media/characters/bruun/front.svg",
  17771. extra: 197 / 187,
  17772. bottom: 0.012
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Normal",
  17779. height: math.unit(5 + 10 / 12, "feet"),
  17780. default: true
  17781. },
  17782. ]
  17783. ))
  17784. characterMakers.push(() => makeCharacter(
  17785. { name: "Alexeev" },
  17786. {
  17787. front: {
  17788. height: math.unit(6 + 10 / 12, "feet"),
  17789. weight: math.unit(255, "lb"),
  17790. name: "Front",
  17791. image: {
  17792. source: "./media/characters/alexeev/front.svg",
  17793. extra: 213 / 200,
  17794. bottom: 0.05
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(6 + 10 / 12, "feet"),
  17802. default: true
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Evelyn" },
  17808. {
  17809. front: {
  17810. height: math.unit(2 + 8 / 12, "feet"),
  17811. weight: math.unit(22, "lb"),
  17812. name: "Front",
  17813. image: {
  17814. source: "./media/characters/evelyn/front.svg",
  17815. extra: 208 / 180
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Normal",
  17822. height: math.unit(2 + 8 / 12, "feet"),
  17823. default: true
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Inca" },
  17829. {
  17830. front: {
  17831. height: math.unit(5 + 9 / 12, "feet"),
  17832. weight: math.unit(139, "lb"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/inca/front.svg",
  17836. extra: 294 / 291,
  17837. bottom: 0.03
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(5 + 9 / 12, "feet"),
  17845. default: true
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Magdalene" },
  17851. {
  17852. front: {
  17853. height: math.unit(5 + 1 / 12, "feet"),
  17854. weight: math.unit(84, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/magdalene/front.svg",
  17858. extra: 293 / 273
  17859. }
  17860. },
  17861. },
  17862. [
  17863. {
  17864. name: "Normal",
  17865. height: math.unit(5 + 1 / 12, "feet"),
  17866. default: true
  17867. },
  17868. ]
  17869. ))
  17870. characterMakers.push(() => makeCharacter(
  17871. { name: "Mera" },
  17872. {
  17873. front: {
  17874. height: math.unit(6 + 3 / 12, "feet"),
  17875. weight: math.unit(185, "lb"),
  17876. name: "Front",
  17877. image: {
  17878. source: "./media/characters/mera/front.svg",
  17879. extra: 291 / 277,
  17880. bottom: 0.03
  17881. }
  17882. },
  17883. },
  17884. [
  17885. {
  17886. name: "Normal",
  17887. height: math.unit(6 + 3 / 12, "feet"),
  17888. default: true
  17889. },
  17890. ]
  17891. ))
  17892. characterMakers.push(() => makeCharacter(
  17893. { name: "Ceres" },
  17894. {
  17895. front: {
  17896. height: math.unit(6 + 7 / 12, "feet"),
  17897. weight: math.unit(160, "lb"),
  17898. name: "Front",
  17899. image: {
  17900. source: "./media/characters/ceres/front.svg",
  17901. extra: 1023 / 950,
  17902. bottom: 0.027
  17903. }
  17904. },
  17905. back: {
  17906. height: math.unit(6 + 7 / 12, "feet"),
  17907. weight: math.unit(160, "lb"),
  17908. name: "Back",
  17909. image: {
  17910. source: "./media/characters/ceres/back.svg",
  17911. extra: 1023 / 950
  17912. }
  17913. },
  17914. },
  17915. [
  17916. {
  17917. name: "Normal",
  17918. height: math.unit(6 + 7 / 12, "feet"),
  17919. default: true
  17920. },
  17921. ]
  17922. ))
  17923. characterMakers.push(() => makeCharacter(
  17924. { name: "Kris" },
  17925. {
  17926. front: {
  17927. height: math.unit(5 + 10 / 12, "feet"),
  17928. weight: math.unit(150, "lb"),
  17929. name: "Front",
  17930. image: {
  17931. source: "./media/characters/kris/front.svg",
  17932. extra: 885 / 803,
  17933. bottom: 0.03
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(5 + 10 / 12, "feet"),
  17941. default: true
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Taluthus" },
  17947. {
  17948. front: {
  17949. height: math.unit(7, "feet"),
  17950. weight: math.unit(120, "kg"),
  17951. name: "Front",
  17952. image: {
  17953. source: "./media/characters/taluthus/front.svg",
  17954. extra: 903 / 833,
  17955. bottom: 0.015
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Normal",
  17962. height: math.unit(7, "feet"),
  17963. default: true
  17964. },
  17965. {
  17966. name: "Macro",
  17967. height: math.unit(300, "feet")
  17968. },
  17969. ]
  17970. ))
  17971. characterMakers.push(() => makeCharacter(
  17972. { name: "Dawn" },
  17973. {
  17974. front: {
  17975. height: math.unit(5 + 9 / 12, "feet"),
  17976. weight: math.unit(145, "lb"),
  17977. name: "Front",
  17978. image: {
  17979. source: "./media/characters/dawn/front.svg",
  17980. extra: 2094 / 2016,
  17981. bottom: 0.025
  17982. }
  17983. },
  17984. back: {
  17985. height: math.unit(5 + 9 / 12, "feet"),
  17986. weight: math.unit(160, "lb"),
  17987. name: "Back",
  17988. image: {
  17989. source: "./media/characters/dawn/back.svg",
  17990. extra: 2112 / 2080,
  17991. bottom: 0.005
  17992. }
  17993. },
  17994. },
  17995. [
  17996. {
  17997. name: "Normal",
  17998. height: math.unit(6 + 7 / 12, "feet"),
  17999. default: true
  18000. },
  18001. ]
  18002. ))
  18003. characterMakers.push(() => makeCharacter(
  18004. { name: "Arador" },
  18005. {
  18006. anthro: {
  18007. height: math.unit(8 + 3 / 12, "feet"),
  18008. weight: math.unit(450, "lb"),
  18009. name: "Anthro",
  18010. image: {
  18011. source: "./media/characters/arador/anthro.svg",
  18012. extra: 1835 / 1718,
  18013. bottom: 0.025
  18014. }
  18015. },
  18016. feral: {
  18017. height: math.unit(4, "feet"),
  18018. weight: math.unit(200, "lb"),
  18019. name: "Feral",
  18020. image: {
  18021. source: "./media/characters/arador/feral.svg",
  18022. extra: 1683 / 1514,
  18023. bottom: 0.07
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Normal",
  18030. height: math.unit(8 + 3 / 12, "feet")
  18031. },
  18032. {
  18033. name: "Macro",
  18034. height: math.unit(82.5, "feet"),
  18035. default: true
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Dharsi" },
  18041. {
  18042. front: {
  18043. height: math.unit(5 + 10 / 12, "feet"),
  18044. weight: math.unit(125, "lb"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/dharsi/front.svg",
  18048. extra: 716 / 630,
  18049. bottom: 0.035
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Nano",
  18056. height: math.unit(100, "nm")
  18057. },
  18058. {
  18059. name: "Micro",
  18060. height: math.unit(2, "inches")
  18061. },
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(5 + 10 / 12, "feet"),
  18065. default: true
  18066. },
  18067. {
  18068. name: "Macro",
  18069. height: math.unit(1000, "feet")
  18070. },
  18071. {
  18072. name: "Megamacro",
  18073. height: math.unit(10, "miles")
  18074. },
  18075. {
  18076. name: "Gigamacro",
  18077. height: math.unit(3000, "miles")
  18078. },
  18079. {
  18080. name: "Teramacro",
  18081. height: math.unit(500000, "miles")
  18082. },
  18083. {
  18084. name: "Teramacro+",
  18085. height: math.unit(30, "galaxies")
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Deathy" },
  18091. {
  18092. front: {
  18093. height: math.unit(6, "feet"),
  18094. weight: math.unit(150, "lb"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/deathy/front.svg",
  18098. extra: 1552 / 1463,
  18099. bottom: 0.025
  18100. }
  18101. },
  18102. side: {
  18103. height: math.unit(6, "feet"),
  18104. weight: math.unit(150, "lb"),
  18105. name: "Side",
  18106. image: {
  18107. source: "./media/characters/deathy/side.svg",
  18108. extra: 1604 / 1455,
  18109. bottom: 0.025
  18110. }
  18111. },
  18112. back: {
  18113. height: math.unit(6, "feet"),
  18114. weight: math.unit(150, "lb"),
  18115. name: "Back",
  18116. image: {
  18117. source: "./media/characters/deathy/back.svg",
  18118. extra: 1580 / 1463,
  18119. bottom: 0.005
  18120. }
  18121. },
  18122. },
  18123. [
  18124. {
  18125. name: "Micro",
  18126. height: math.unit(5, "millimeters")
  18127. },
  18128. {
  18129. name: "Normal",
  18130. height: math.unit(6 + 5 / 12, "feet"),
  18131. default: true
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Juniper" },
  18137. {
  18138. front: {
  18139. height: math.unit(16, "feet"),
  18140. weight: math.unit(4000, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/juniper/front.svg",
  18144. bottom: 0.04
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(16, "feet"),
  18152. default: true
  18153. },
  18154. ]
  18155. ))
  18156. characterMakers.push(() => makeCharacter(
  18157. { name: "Hipster" },
  18158. {
  18159. front: {
  18160. height: math.unit(6, "feet"),
  18161. weight: math.unit(150, "lb"),
  18162. name: "Front",
  18163. image: {
  18164. source: "./media/characters/hipster/front.svg",
  18165. extra: 1312 / 1209,
  18166. bottom: 0.025
  18167. }
  18168. },
  18169. back: {
  18170. height: math.unit(6, "feet"),
  18171. weight: math.unit(150, "lb"),
  18172. name: "Back",
  18173. image: {
  18174. source: "./media/characters/hipster/back.svg",
  18175. extra: 1281 / 1196,
  18176. bottom: 0.01
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Micro",
  18183. height: math.unit(1, "mm")
  18184. },
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(4, "inches"),
  18188. default: true
  18189. },
  18190. {
  18191. name: "Macro",
  18192. height: math.unit(500, "feet")
  18193. },
  18194. {
  18195. name: "Megamacro",
  18196. height: math.unit(1000, "miles")
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Tendirmuldr" },
  18202. {
  18203. front: {
  18204. height: math.unit(6, "feet"),
  18205. weight: math.unit(150, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/tendirmuldr/front.svg",
  18209. extra: 1878 / 1772,
  18210. bottom: 0.015
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Megamacro",
  18217. height: math.unit(1500, "miles"),
  18218. default: true
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Mort" },
  18224. {
  18225. front: {
  18226. height: math.unit(14, "feet"),
  18227. weight: math.unit(12000, "lb"),
  18228. name: "Front",
  18229. image: {
  18230. source: "./media/characters/mort/front.svg",
  18231. extra: 365 / 318,
  18232. bottom: 0.01
  18233. }
  18234. },
  18235. side: {
  18236. height: math.unit(14, "feet"),
  18237. weight: math.unit(12000, "lb"),
  18238. name: "Side",
  18239. image: {
  18240. source: "./media/characters/mort/side.svg",
  18241. extra: 365 / 318,
  18242. bottom: 0.052
  18243. },
  18244. default: true
  18245. },
  18246. back: {
  18247. height: math.unit(14, "feet"),
  18248. weight: math.unit(12000, "lb"),
  18249. name: "Back",
  18250. image: {
  18251. source: "./media/characters/mort/back.svg",
  18252. extra: 371 / 332,
  18253. bottom: 0.18
  18254. }
  18255. },
  18256. },
  18257. [
  18258. {
  18259. name: "Normal",
  18260. height: math.unit(14, "feet"),
  18261. default: true
  18262. },
  18263. ]
  18264. ))
  18265. characterMakers.push(() => makeCharacter(
  18266. { name: "Lycoa" },
  18267. {
  18268. front: {
  18269. height: math.unit(8, "feet"),
  18270. weight: math.unit(1, "ton"),
  18271. name: "Front",
  18272. image: {
  18273. source: "./media/characters/lycoa/front.svg",
  18274. extra: 1875 / 1789,
  18275. bottom: 0.022
  18276. }
  18277. },
  18278. back: {
  18279. height: math.unit(8, "feet"),
  18280. weight: math.unit(1, "ton"),
  18281. name: "Back",
  18282. image: {
  18283. source: "./media/characters/lycoa/back.svg",
  18284. extra: 1835 / 1781,
  18285. bottom: 0.03
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Normal",
  18292. height: math.unit(8, "feet"),
  18293. default: true
  18294. },
  18295. {
  18296. name: "Macro",
  18297. height: math.unit(30, "feet")
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Naldara" },
  18303. {
  18304. front: {
  18305. height: math.unit(4 + 2 / 12, "feet"),
  18306. weight: math.unit(70, "lb"),
  18307. name: "Front",
  18308. image: {
  18309. source: "./media/characters/naldara/front.svg",
  18310. extra: 841 / 720,
  18311. bottom: 0.04
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(4 + 2 / 12, "feet"),
  18319. default: true
  18320. },
  18321. ]
  18322. ))
  18323. characterMakers.push(() => makeCharacter(
  18324. { name: "Briar" },
  18325. {
  18326. front: {
  18327. height: math.unit(13 + 7 / 12, "feet"),
  18328. weight: math.unit(1500, "lb"),
  18329. name: "Front",
  18330. image: {
  18331. source: "./media/characters/briar/front.svg",
  18332. extra: 626 / 596,
  18333. bottom: 0.08
  18334. }
  18335. },
  18336. },
  18337. [
  18338. {
  18339. name: "Normal",
  18340. height: math.unit(13 + 7 / 12, "feet"),
  18341. default: true
  18342. },
  18343. ]
  18344. ))
  18345. characterMakers.push(() => makeCharacter(
  18346. { name: "Vanguard" },
  18347. {
  18348. side: {
  18349. height: math.unit(10, "feet"),
  18350. weight: math.unit(500, "lb"),
  18351. name: "Side",
  18352. image: {
  18353. source: "./media/characters/vanguard/side.svg",
  18354. extra: 502 / 425,
  18355. bottom: 0.087
  18356. }
  18357. },
  18358. },
  18359. [
  18360. {
  18361. name: "Normal",
  18362. height: math.unit(10, "feet"),
  18363. default: true
  18364. },
  18365. ]
  18366. ))
  18367. characterMakers.push(() => makeCharacter(
  18368. { name: "Artemis" },
  18369. {
  18370. front: {
  18371. height: math.unit(7.5, "feet"),
  18372. weight: math.unit(2, "lb"),
  18373. name: "Front",
  18374. image: {
  18375. source: "./media/characters/artemis/front.svg",
  18376. extra: 1192 / 1075,
  18377. bottom: 0.07
  18378. }
  18379. },
  18380. },
  18381. [
  18382. {
  18383. name: "Normal",
  18384. height: math.unit(7.5, "feet"),
  18385. default: true
  18386. },
  18387. {
  18388. name: "Enlarged",
  18389. height: math.unit(12, "feet")
  18390. },
  18391. ]
  18392. ))
  18393. characterMakers.push(() => makeCharacter(
  18394. { name: "Kira" },
  18395. {
  18396. front: {
  18397. height: math.unit(5 + 3 / 12, "feet"),
  18398. weight: math.unit(160, "lb"),
  18399. name: "Front",
  18400. image: {
  18401. source: "./media/characters/kira/front.svg",
  18402. extra: 906 / 786,
  18403. bottom: 0.01
  18404. }
  18405. },
  18406. back: {
  18407. height: math.unit(5 + 3 / 12, "feet"),
  18408. weight: math.unit(160, "lb"),
  18409. name: "Back",
  18410. image: {
  18411. source: "./media/characters/kira/back.svg",
  18412. extra: 882 / 757,
  18413. bottom: 0.005
  18414. }
  18415. },
  18416. frontDressed: {
  18417. height: math.unit(5 + 3 / 12, "feet"),
  18418. weight: math.unit(160, "lb"),
  18419. name: "Front (Dressed)",
  18420. image: {
  18421. source: "./media/characters/kira/front-dressed.svg",
  18422. extra: 906 / 786,
  18423. bottom: 0.01
  18424. }
  18425. },
  18426. beans: {
  18427. height: math.unit(0.92, "feet"),
  18428. name: "Beans",
  18429. image: {
  18430. source: "./media/characters/kira/beans.svg"
  18431. }
  18432. },
  18433. },
  18434. [
  18435. {
  18436. name: "Normal",
  18437. height: math.unit(5 + 3 / 12, "feet"),
  18438. default: true
  18439. },
  18440. ]
  18441. ))
  18442. characterMakers.push(() => makeCharacter(
  18443. { name: "Scramble" },
  18444. {
  18445. front: {
  18446. height: math.unit(5 + 4 / 12, "feet"),
  18447. weight: math.unit(145, "lb"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/scramble/front.svg",
  18451. extra: 763 / 727,
  18452. bottom: 0.05
  18453. }
  18454. },
  18455. back: {
  18456. height: math.unit(5 + 4 / 12, "feet"),
  18457. weight: math.unit(145, "lb"),
  18458. name: "Back",
  18459. image: {
  18460. source: "./media/characters/scramble/back.svg",
  18461. extra: 826 / 737,
  18462. bottom: 0.002
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(5 + 4 / 12, "feet"),
  18470. default: true
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Biscuit" },
  18476. {
  18477. side: {
  18478. height: math.unit(6 + 2 / 12, "feet"),
  18479. weight: math.unit(190, "lb"),
  18480. name: "Side",
  18481. image: {
  18482. source: "./media/characters/biscuit/side.svg",
  18483. extra: 858 / 791,
  18484. bottom: 0.044
  18485. }
  18486. },
  18487. },
  18488. [
  18489. {
  18490. name: "Normal",
  18491. height: math.unit(6 + 2 / 12, "feet"),
  18492. default: true
  18493. },
  18494. ]
  18495. ))
  18496. characterMakers.push(() => makeCharacter(
  18497. { name: "Poffin" },
  18498. {
  18499. front: {
  18500. height: math.unit(5 + 2 / 12, "feet"),
  18501. weight: math.unit(120, "lb"),
  18502. name: "Front",
  18503. image: {
  18504. source: "./media/characters/poffin/front.svg",
  18505. extra: 786 / 680,
  18506. bottom: 0.005
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Normal",
  18513. height: math.unit(5 + 2 / 12, "feet"),
  18514. default: true
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Dhari" },
  18520. {
  18521. front: {
  18522. height: math.unit(6 + 3 / 12, "feet"),
  18523. weight: math.unit(519, "lb"),
  18524. name: "Front",
  18525. image: {
  18526. source: "./media/characters/dhari/front.svg",
  18527. extra: 1048 / 946,
  18528. bottom: 0.015
  18529. }
  18530. },
  18531. back: {
  18532. height: math.unit(6 + 3 / 12, "feet"),
  18533. weight: math.unit(519, "lb"),
  18534. name: "Back",
  18535. image: {
  18536. source: "./media/characters/dhari/back.svg",
  18537. extra: 1048 / 931,
  18538. bottom: 0.005
  18539. }
  18540. },
  18541. frontDressed: {
  18542. height: math.unit(6 + 3 / 12, "feet"),
  18543. weight: math.unit(519, "lb"),
  18544. name: "Front (Dressed)",
  18545. image: {
  18546. source: "./media/characters/dhari/front-dressed.svg",
  18547. extra: 1713 / 1546,
  18548. bottom: 0.02
  18549. }
  18550. },
  18551. backDressed: {
  18552. height: math.unit(6 + 3 / 12, "feet"),
  18553. weight: math.unit(519, "lb"),
  18554. name: "Back (Dressed)",
  18555. image: {
  18556. source: "./media/characters/dhari/back-dressed.svg",
  18557. extra: 1699 / 1537,
  18558. bottom: 0.01
  18559. }
  18560. },
  18561. maw: {
  18562. height: math.unit(0.95, "feet"),
  18563. name: "Maw",
  18564. image: {
  18565. source: "./media/characters/dhari/maw.svg"
  18566. }
  18567. },
  18568. wereFront: {
  18569. height: math.unit(12 + 8 / 12, "feet"),
  18570. weight: math.unit(4000, "lb"),
  18571. name: "Front (Were)",
  18572. image: {
  18573. source: "./media/characters/dhari/were-front.svg",
  18574. extra: 1065 / 969,
  18575. bottom: 0.015
  18576. }
  18577. },
  18578. wereBack: {
  18579. height: math.unit(12 + 8 / 12, "feet"),
  18580. weight: math.unit(4000, "lb"),
  18581. name: "Back (Were)",
  18582. image: {
  18583. source: "./media/characters/dhari/were-back.svg",
  18584. extra: 1065 / 969,
  18585. bottom: 0.012
  18586. }
  18587. },
  18588. wereMaw: {
  18589. height: math.unit(0.625, "meters"),
  18590. name: "Maw (Were)",
  18591. image: {
  18592. source: "./media/characters/dhari/were-maw.svg"
  18593. }
  18594. },
  18595. },
  18596. [
  18597. {
  18598. name: "Normal",
  18599. height: math.unit(6 + 3 / 12, "feet"),
  18600. default: true
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Rena Dyne" },
  18606. {
  18607. anthro: {
  18608. height: math.unit(5 + 7 / 12, "feet"),
  18609. weight: math.unit(175, "lb"),
  18610. name: "Anthro",
  18611. image: {
  18612. source: "./media/characters/rena-dyne/anthro.svg",
  18613. extra: 1849 / 1785,
  18614. bottom: 0.005
  18615. }
  18616. },
  18617. taur: {
  18618. height: math.unit(15 + 6 / 12, "feet"),
  18619. weight: math.unit(8000, "lb"),
  18620. name: "Taur",
  18621. image: {
  18622. source: "./media/characters/rena-dyne/taur.svg",
  18623. extra: 2315 / 2234,
  18624. bottom: 0.033
  18625. }
  18626. },
  18627. },
  18628. [
  18629. {
  18630. name: "Normal",
  18631. height: math.unit(5 + 7 / 12, "feet"),
  18632. default: true
  18633. },
  18634. ]
  18635. ))
  18636. characterMakers.push(() => makeCharacter(
  18637. { name: "Weremeep" },
  18638. {
  18639. front: {
  18640. height: math.unit(8, "feet"),
  18641. weight: math.unit(600, "lb"),
  18642. name: "Front",
  18643. image: {
  18644. source: "./media/characters/weremeep/front.svg",
  18645. extra: 967 / 862,
  18646. bottom: 0.01
  18647. }
  18648. },
  18649. },
  18650. [
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(8, "feet"),
  18654. default: true
  18655. },
  18656. {
  18657. name: "Lorg",
  18658. height: math.unit(12, "feet")
  18659. },
  18660. {
  18661. name: "Oh Lawd She Comin'",
  18662. height: math.unit(20, "feet")
  18663. },
  18664. ]
  18665. ))
  18666. characterMakers.push(() => makeCharacter(
  18667. { name: "Reza" },
  18668. {
  18669. front: {
  18670. height: math.unit(4, "feet"),
  18671. weight: math.unit(90, "lb"),
  18672. name: "Front",
  18673. image: {
  18674. source: "./media/characters/reza/front.svg",
  18675. extra: 1183 / 1111,
  18676. bottom: 0.017
  18677. }
  18678. },
  18679. back: {
  18680. height: math.unit(4, "feet"),
  18681. weight: math.unit(90, "lb"),
  18682. name: "Back",
  18683. image: {
  18684. source: "./media/characters/reza/back.svg",
  18685. extra: 1183 / 1111,
  18686. bottom: 0.01
  18687. }
  18688. },
  18689. drake: {
  18690. height: math.unit(30, "feet"),
  18691. weight: math.unit(246960, "lb"),
  18692. name: "Drake",
  18693. image: {
  18694. source: "./media/characters/reza/drake.svg",
  18695. extra: 2350/2024,
  18696. bottom: 60.7/2403
  18697. }
  18698. },
  18699. },
  18700. [
  18701. {
  18702. name: "Normal",
  18703. height: math.unit(4, "feet"),
  18704. default: true
  18705. },
  18706. ]
  18707. ))
  18708. characterMakers.push(() => makeCharacter(
  18709. { name: "Athea" },
  18710. {
  18711. side: {
  18712. height: math.unit(15, "feet"),
  18713. weight: math.unit(14, "tons"),
  18714. name: "Side",
  18715. image: {
  18716. source: "./media/characters/athea/side.svg",
  18717. extra: 960 / 540,
  18718. bottom: 0.003
  18719. }
  18720. },
  18721. sitting: {
  18722. height: math.unit(6 * 2.85, "feet"),
  18723. weight: math.unit(14, "tons"),
  18724. name: "Sitting",
  18725. image: {
  18726. source: "./media/characters/athea/sitting.svg",
  18727. extra: 621 / 581,
  18728. bottom: 0.075
  18729. }
  18730. },
  18731. maw: {
  18732. height: math.unit(7.59498031496063, "feet"),
  18733. name: "Maw",
  18734. image: {
  18735. source: "./media/characters/athea/maw.svg"
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Lap Cat",
  18742. height: math.unit(2.5, "feet")
  18743. },
  18744. {
  18745. name: "Minimacro",
  18746. height: math.unit(15, "feet"),
  18747. default: true
  18748. },
  18749. {
  18750. name: "Macro",
  18751. height: math.unit(120, "feet")
  18752. },
  18753. {
  18754. name: "Macro+",
  18755. height: math.unit(640, "feet")
  18756. },
  18757. {
  18758. name: "Colossus",
  18759. height: math.unit(2.2, "miles")
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Seroko" },
  18765. {
  18766. front: {
  18767. height: math.unit(8 + 8 / 12, "feet"),
  18768. weight: math.unit(130, "kg"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/seroko/front.svg",
  18772. extra: 1385 / 1280,
  18773. bottom: 0.025
  18774. }
  18775. },
  18776. back: {
  18777. height: math.unit(8 + 8 / 12, "feet"),
  18778. weight: math.unit(130, "kg"),
  18779. name: "Back",
  18780. image: {
  18781. source: "./media/characters/seroko/back.svg",
  18782. extra: 1369 / 1238,
  18783. bottom: 0.018
  18784. }
  18785. },
  18786. frontDressed: {
  18787. height: math.unit(8 + 8 / 12, "feet"),
  18788. weight: math.unit(130, "kg"),
  18789. name: "Front (Dressed)",
  18790. image: {
  18791. source: "./media/characters/seroko/front-dressed.svg",
  18792. extra: 1366 / 1275,
  18793. bottom: 0.03
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(8 + 8 / 12, "feet"),
  18801. default: true
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Quatzi" },
  18807. {
  18808. front: {
  18809. height: math.unit(5.5, "feet"),
  18810. weight: math.unit(160, "lb"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/quatzi/front.svg",
  18814. extra: 2346 / 2242,
  18815. bottom: 0.015
  18816. }
  18817. },
  18818. },
  18819. [
  18820. {
  18821. name: "Normal",
  18822. height: math.unit(5.5, "feet"),
  18823. default: true
  18824. },
  18825. {
  18826. name: "Big",
  18827. height: math.unit(7.7, "feet")
  18828. },
  18829. ]
  18830. ))
  18831. characterMakers.push(() => makeCharacter(
  18832. { name: "Sen" },
  18833. {
  18834. front: {
  18835. height: math.unit(5 + 11 / 12, "feet"),
  18836. weight: math.unit(180, "lb"),
  18837. name: "Front",
  18838. image: {
  18839. source: "./media/characters/sen/front.svg",
  18840. extra: 1321 / 1254,
  18841. bottom: 0.015
  18842. }
  18843. },
  18844. side: {
  18845. height: math.unit(5 + 11 / 12, "feet"),
  18846. weight: math.unit(180, "lb"),
  18847. name: "Side",
  18848. image: {
  18849. source: "./media/characters/sen/side.svg",
  18850. extra: 1321 / 1254,
  18851. bottom: 0.007
  18852. }
  18853. },
  18854. back: {
  18855. height: math.unit(5 + 11 / 12, "feet"),
  18856. weight: math.unit(180, "lb"),
  18857. name: "Back",
  18858. image: {
  18859. source: "./media/characters/sen/back.svg",
  18860. extra: 1321 / 1254
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Normal",
  18867. height: math.unit(5 + 11 / 12, "feet"),
  18868. default: true
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Fruity" },
  18874. {
  18875. front: {
  18876. height: math.unit(166.6, "cm"),
  18877. weight: math.unit(66.6, "kg"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/fruity/front.svg",
  18881. extra: 1510 / 1386,
  18882. bottom: 0.04
  18883. }
  18884. },
  18885. back: {
  18886. height: math.unit(166.6, "cm"),
  18887. weight: math.unit(66.6, "lb"),
  18888. name: "Back",
  18889. image: {
  18890. source: "./media/characters/fruity/back.svg",
  18891. extra: 1563 / 1435,
  18892. bottom: 0.005
  18893. }
  18894. },
  18895. },
  18896. [
  18897. {
  18898. name: "Normal",
  18899. height: math.unit(166.6, "cm"),
  18900. default: true
  18901. },
  18902. {
  18903. name: "Demonic",
  18904. height: math.unit(166.6, "feet")
  18905. },
  18906. ]
  18907. ))
  18908. characterMakers.push(() => makeCharacter(
  18909. { name: "Zost" },
  18910. {
  18911. side: {
  18912. height: math.unit(10, "feet"),
  18913. weight: math.unit(500, "lb"),
  18914. name: "Side",
  18915. image: {
  18916. source: "./media/characters/zost/side.svg",
  18917. extra: 966 / 880,
  18918. bottom: 0.075
  18919. }
  18920. },
  18921. mawFront: {
  18922. height: math.unit(1.08, "meters"),
  18923. name: "Maw (Front)",
  18924. image: {
  18925. source: "./media/characters/zost/maw-front.svg"
  18926. }
  18927. },
  18928. mawSide: {
  18929. height: math.unit(2.66, "feet"),
  18930. name: "Maw (Side)",
  18931. image: {
  18932. source: "./media/characters/zost/maw-side.svg"
  18933. }
  18934. },
  18935. },
  18936. [
  18937. {
  18938. name: "Normal",
  18939. height: math.unit(10, "feet"),
  18940. default: true
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Luci" },
  18946. {
  18947. front: {
  18948. height: math.unit(5 + 4 / 12, "feet"),
  18949. weight: math.unit(120, "lb"),
  18950. name: "Front",
  18951. image: {
  18952. source: "./media/characters/luci/front.svg",
  18953. extra: 1985 / 1884,
  18954. bottom: 0.04
  18955. }
  18956. },
  18957. back: {
  18958. height: math.unit(5 + 4 / 12, "feet"),
  18959. weight: math.unit(120, "lb"),
  18960. name: "Back",
  18961. image: {
  18962. source: "./media/characters/luci/back.svg",
  18963. extra: 1892 / 1791,
  18964. bottom: 0.002
  18965. }
  18966. },
  18967. },
  18968. [
  18969. {
  18970. name: "Normal",
  18971. height: math.unit(5 + 4 / 12, "feet"),
  18972. default: true
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "2th" },
  18978. {
  18979. front: {
  18980. height: math.unit(1500, "feet"),
  18981. weight: math.unit(3.8e6, "tons"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/2th/front.svg",
  18985. extra: 3489 / 3350,
  18986. bottom: 0.1
  18987. }
  18988. },
  18989. foot: {
  18990. height: math.unit(461, "feet"),
  18991. name: "Foot",
  18992. image: {
  18993. source: "./media/characters/2th/foot.svg"
  18994. }
  18995. },
  18996. },
  18997. [
  18998. {
  18999. name: "\"Micro\"",
  19000. height: math.unit(15 + 7 / 12, "feet")
  19001. },
  19002. {
  19003. name: "Normal",
  19004. height: math.unit(1500, "feet"),
  19005. default: true
  19006. },
  19007. {
  19008. name: "Macro",
  19009. height: math.unit(5000, "feet")
  19010. },
  19011. {
  19012. name: "Megamacro",
  19013. height: math.unit(15, "miles")
  19014. },
  19015. {
  19016. name: "Gigamacro",
  19017. height: math.unit(4000, "miles")
  19018. },
  19019. {
  19020. name: "Galactic",
  19021. height: math.unit(50, "AU")
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Amethyst" },
  19027. {
  19028. front: {
  19029. height: math.unit(5 + 6 / 12, "feet"),
  19030. weight: math.unit(220, "lb"),
  19031. name: "Front",
  19032. image: {
  19033. source: "./media/characters/amethyst/front.svg",
  19034. extra: 2078 / 2040,
  19035. bottom: 0.045
  19036. }
  19037. },
  19038. back: {
  19039. height: math.unit(5 + 6 / 12, "feet"),
  19040. weight: math.unit(220, "lb"),
  19041. name: "Back",
  19042. image: {
  19043. source: "./media/characters/amethyst/back.svg",
  19044. extra: 2021 / 1989,
  19045. bottom: 0.02
  19046. }
  19047. },
  19048. },
  19049. [
  19050. {
  19051. name: "Normal",
  19052. height: math.unit(5 + 6 / 12, "feet"),
  19053. default: true
  19054. },
  19055. ]
  19056. ))
  19057. characterMakers.push(() => makeCharacter(
  19058. { name: "Yumi Akiyama" },
  19059. {
  19060. front: {
  19061. height: math.unit(4 + 11 / 12, "feet"),
  19062. weight: math.unit(120, "lb"),
  19063. name: "Front",
  19064. image: {
  19065. source: "./media/characters/yumi-akiyama/front.svg",
  19066. extra: 1327 / 1235,
  19067. bottom: 0.02
  19068. }
  19069. },
  19070. back: {
  19071. height: math.unit(4 + 11 / 12, "feet"),
  19072. weight: math.unit(120, "lb"),
  19073. name: "Back",
  19074. image: {
  19075. source: "./media/characters/yumi-akiyama/back.svg",
  19076. extra: 1287 / 1245,
  19077. bottom: 0.002
  19078. }
  19079. },
  19080. },
  19081. [
  19082. {
  19083. name: "Galactic",
  19084. height: math.unit(50, "galaxies"),
  19085. default: true
  19086. },
  19087. {
  19088. name: "Universal",
  19089. height: math.unit(100, "universes")
  19090. },
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Rifter Yrmori" },
  19095. {
  19096. front: {
  19097. height: math.unit(8, "feet"),
  19098. weight: math.unit(500, "lb"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/rifter-yrmori/front.svg",
  19102. extra: 1180 / 1125,
  19103. bottom: 0.02
  19104. }
  19105. },
  19106. back: {
  19107. height: math.unit(8, "feet"),
  19108. weight: math.unit(500, "lb"),
  19109. name: "Back",
  19110. image: {
  19111. source: "./media/characters/rifter-yrmori/back.svg",
  19112. extra: 1190 / 1145,
  19113. bottom: 0.001
  19114. }
  19115. },
  19116. wings: {
  19117. height: math.unit(7.75, "feet"),
  19118. weight: math.unit(500, "lb"),
  19119. name: "Wings",
  19120. image: {
  19121. source: "./media/characters/rifter-yrmori/wings.svg",
  19122. extra: 1357 / 1285
  19123. }
  19124. },
  19125. maw: {
  19126. height: math.unit(0.8, "feet"),
  19127. name: "Maw",
  19128. image: {
  19129. source: "./media/characters/rifter-yrmori/maw.svg"
  19130. }
  19131. },
  19132. },
  19133. [
  19134. {
  19135. name: "Normal",
  19136. height: math.unit(8, "feet"),
  19137. default: true
  19138. },
  19139. {
  19140. name: "Macro",
  19141. height: math.unit(42, "meters")
  19142. },
  19143. ]
  19144. ))
  19145. characterMakers.push(() => makeCharacter(
  19146. { name: "Tahajin" },
  19147. {
  19148. were: {
  19149. height: math.unit(25 + 6 / 12, "feet"),
  19150. weight: math.unit(10000, "lb"),
  19151. name: "Were",
  19152. image: {
  19153. source: "./media/characters/tahajin/were.svg",
  19154. extra: 801 / 770,
  19155. bottom: 0.042
  19156. }
  19157. },
  19158. aquatic: {
  19159. height: math.unit(6 + 4 / 12, "feet"),
  19160. weight: math.unit(160, "lb"),
  19161. name: "Aquatic",
  19162. image: {
  19163. source: "./media/characters/tahajin/aquatic.svg",
  19164. extra: 572 / 542,
  19165. bottom: 0.04
  19166. }
  19167. },
  19168. chow: {
  19169. height: math.unit(8 + 11 / 12, "feet"),
  19170. weight: math.unit(450, "lb"),
  19171. name: "Chow",
  19172. image: {
  19173. source: "./media/characters/tahajin/chow.svg",
  19174. extra: 660 / 640,
  19175. bottom: 0.015
  19176. }
  19177. },
  19178. demiNaga: {
  19179. height: math.unit(6 + 8 / 12, "feet"),
  19180. weight: math.unit(300, "lb"),
  19181. name: "Demi Naga",
  19182. image: {
  19183. source: "./media/characters/tahajin/demi-naga.svg",
  19184. extra: 643 / 615,
  19185. bottom: 0.1
  19186. }
  19187. },
  19188. data: {
  19189. height: math.unit(5, "inches"),
  19190. weight: math.unit(0.1, "lb"),
  19191. name: "Data",
  19192. image: {
  19193. source: "./media/characters/tahajin/data.svg"
  19194. }
  19195. },
  19196. fluu: {
  19197. height: math.unit(5 + 7 / 12, "feet"),
  19198. weight: math.unit(140, "lb"),
  19199. name: "Fluu",
  19200. image: {
  19201. source: "./media/characters/tahajin/fluu.svg",
  19202. extra: 628 / 592,
  19203. bottom: 0.02
  19204. }
  19205. },
  19206. starWarrior: {
  19207. height: math.unit(4 + 5 / 12, "feet"),
  19208. weight: math.unit(50, "lb"),
  19209. name: "Star Warrior",
  19210. image: {
  19211. source: "./media/characters/tahajin/star-warrior.svg"
  19212. }
  19213. },
  19214. },
  19215. [
  19216. {
  19217. name: "Normal",
  19218. height: math.unit(25 + 6 / 12, "feet"),
  19219. default: true
  19220. },
  19221. ]
  19222. ))
  19223. characterMakers.push(() => makeCharacter(
  19224. { name: "Gabira" },
  19225. {
  19226. front: {
  19227. height: math.unit(8, "feet"),
  19228. weight: math.unit(350, "lb"),
  19229. name: "Front",
  19230. image: {
  19231. source: "./media/characters/gabira/front.svg",
  19232. extra: 608 / 580,
  19233. bottom: 0.03
  19234. }
  19235. },
  19236. back: {
  19237. height: math.unit(8, "feet"),
  19238. weight: math.unit(350, "lb"),
  19239. name: "Back",
  19240. image: {
  19241. source: "./media/characters/gabira/back.svg",
  19242. extra: 608 / 580,
  19243. bottom: 0.03
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(8, "feet"),
  19251. default: true
  19252. },
  19253. ]
  19254. ))
  19255. characterMakers.push(() => makeCharacter(
  19256. { name: "Sasha Katraine" },
  19257. {
  19258. front: {
  19259. height: math.unit(5 + 3 / 12, "feet"),
  19260. weight: math.unit(137, "lb"),
  19261. name: "Front",
  19262. image: {
  19263. source: "./media/characters/sasha-katraine/front.svg",
  19264. bottom: 0.045
  19265. }
  19266. },
  19267. },
  19268. [
  19269. {
  19270. name: "Micro",
  19271. height: math.unit(5, "inches")
  19272. },
  19273. {
  19274. name: "Normal",
  19275. height: math.unit(5 + 3 / 12, "feet"),
  19276. default: true
  19277. },
  19278. ]
  19279. ))
  19280. characterMakers.push(() => makeCharacter(
  19281. { name: "Der" },
  19282. {
  19283. side: {
  19284. height: math.unit(4, "inches"),
  19285. weight: math.unit(200, "grams"),
  19286. name: "Side",
  19287. image: {
  19288. source: "./media/characters/der/side.svg",
  19289. extra: 719 / 400,
  19290. bottom: 30.6 / 749.9187
  19291. }
  19292. },
  19293. },
  19294. [
  19295. {
  19296. name: "Micro",
  19297. height: math.unit(4, "inches"),
  19298. default: true
  19299. },
  19300. ]
  19301. ))
  19302. characterMakers.push(() => makeCharacter(
  19303. { name: "Fixerdragon" },
  19304. {
  19305. side: {
  19306. height: math.unit(30, "meters"),
  19307. weight: math.unit(700, "tonnes"),
  19308. name: "Side",
  19309. image: {
  19310. source: "./media/characters/fixerdragon/side.svg",
  19311. extra: (1293.0514 - 116.03) / 1106.86,
  19312. bottom: 116.03 / 1293.0514
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Planck",
  19319. height: math.unit(1.6e-35, "meters")
  19320. },
  19321. {
  19322. name: "Micro",
  19323. height: math.unit(0.4, "meters")
  19324. },
  19325. {
  19326. name: "Normal",
  19327. height: math.unit(30, "meters"),
  19328. default: true
  19329. },
  19330. {
  19331. name: "Megamacro",
  19332. height: math.unit(1.2, "megameters")
  19333. },
  19334. {
  19335. name: "Teramacro",
  19336. height: math.unit(130, "terameters")
  19337. },
  19338. {
  19339. name: "Yottamacro",
  19340. height: math.unit(6200, "yottameters")
  19341. },
  19342. ]
  19343. ));
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Kite" },
  19346. {
  19347. front: {
  19348. height: math.unit(8, "feet"),
  19349. weight: math.unit(250, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/kite/front.svg",
  19353. extra: 2796 / 2659,
  19354. bottom: 0.002
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(8, "feet"),
  19362. default: true
  19363. },
  19364. {
  19365. name: "Macro",
  19366. height: math.unit(360, "feet")
  19367. },
  19368. {
  19369. name: "Megamacro",
  19370. height: math.unit(1500, "feet")
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Poojawa Vynar" },
  19376. {
  19377. front: {
  19378. height: math.unit(5 + 10 / 12, "feet"),
  19379. weight: math.unit(150, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/poojawa-vynar/front.svg",
  19383. extra: (1506.1547 - 55) / 1356.6,
  19384. bottom: 55 / 1506.1547
  19385. }
  19386. },
  19387. frontTailless: {
  19388. height: math.unit(5 + 10 / 12, "feet"),
  19389. weight: math.unit(150, "lb"),
  19390. name: "Front (Tailless)",
  19391. image: {
  19392. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  19393. extra: (1506.1547 - 55) / 1356.6,
  19394. bottom: 55 / 1506.1547
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Normal",
  19401. height: math.unit(5 + 10 / 12, "feet"),
  19402. default: true
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Violette" },
  19408. {
  19409. front: {
  19410. height: math.unit(293, "meters"),
  19411. weight: math.unit(70400, "tons"),
  19412. name: "Front",
  19413. image: {
  19414. source: "./media/characters/violette/front.svg",
  19415. extra: 1227 / 1180,
  19416. bottom: 0.005
  19417. }
  19418. },
  19419. back: {
  19420. height: math.unit(293, "meters"),
  19421. weight: math.unit(70400, "tons"),
  19422. name: "Back",
  19423. image: {
  19424. source: "./media/characters/violette/back.svg",
  19425. extra: 1227 / 1180,
  19426. bottom: 0.005
  19427. }
  19428. },
  19429. },
  19430. [
  19431. {
  19432. name: "Macro",
  19433. height: math.unit(293, "meters"),
  19434. default: true
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Alessandra" },
  19440. {
  19441. front: {
  19442. height: math.unit(1050, "feet"),
  19443. weight: math.unit(200000, "tons"),
  19444. name: "Front",
  19445. image: {
  19446. source: "./media/characters/alessandra/front.svg",
  19447. extra: 960 / 912,
  19448. bottom: 0.06
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Macro",
  19455. height: math.unit(1050, "feet")
  19456. },
  19457. {
  19458. name: "Macro+",
  19459. height: math.unit(900, "meters"),
  19460. default: true
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  19466. {
  19467. front: {
  19468. height: math.unit(5, "feet"),
  19469. weight: math.unit(187, "lb"),
  19470. name: "Front",
  19471. image: {
  19472. source: "./media/characters/person/front.svg",
  19473. extra: 3087 / 2945,
  19474. bottom: 91 / 3181
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Micro",
  19481. height: math.unit(3, "inches")
  19482. },
  19483. {
  19484. name: "Normal",
  19485. height: math.unit(5, "feet"),
  19486. default: true
  19487. },
  19488. {
  19489. name: "Macro",
  19490. height: math.unit(90, "feet")
  19491. },
  19492. {
  19493. name: "Max Size",
  19494. height: math.unit(280, "feet")
  19495. },
  19496. ]
  19497. ))
  19498. characterMakers.push(() => makeCharacter(
  19499. { name: "Ty" },
  19500. {
  19501. front: {
  19502. height: math.unit(4.5, "meters"),
  19503. weight: math.unit(3200, "lb"),
  19504. name: "Front",
  19505. image: {
  19506. source: "./media/characters/ty/front.svg",
  19507. extra: 1038 / 960,
  19508. bottom: 31.156 / 1068
  19509. }
  19510. },
  19511. back: {
  19512. height: math.unit(4.5, "meters"),
  19513. weight: math.unit(3200, "lb"),
  19514. name: "Back",
  19515. image: {
  19516. source: "./media/characters/ty/back.svg",
  19517. extra: 1044 / 966,
  19518. bottom: 7.48 / 1049
  19519. }
  19520. },
  19521. },
  19522. [
  19523. {
  19524. name: "Normal",
  19525. height: math.unit(4.5, "meters"),
  19526. default: true
  19527. },
  19528. ]
  19529. ))
  19530. characterMakers.push(() => makeCharacter(
  19531. { name: "Rocky" },
  19532. {
  19533. front: {
  19534. height: math.unit(5 + 4 / 12, "feet"),
  19535. weight: math.unit(115, "lb"),
  19536. name: "Front",
  19537. image: {
  19538. source: "./media/characters/rocky/front.svg",
  19539. extra: 1012 / 975,
  19540. bottom: 54 / 1066
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Normal",
  19547. height: math.unit(5 + 4 / 12, "feet"),
  19548. default: true
  19549. },
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Ruin" },
  19554. {
  19555. upright: {
  19556. height: math.unit(6, "meters"),
  19557. weight: math.unit(4000, "kg"),
  19558. name: "Upright",
  19559. image: {
  19560. source: "./media/characters/ruin/upright.svg",
  19561. extra: 668 / 661,
  19562. bottom: 42 / 799.8396
  19563. }
  19564. },
  19565. },
  19566. [
  19567. {
  19568. name: "Normal",
  19569. height: math.unit(6, "meters"),
  19570. default: true
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Robin" },
  19576. {
  19577. front: {
  19578. height: math.unit(5, "feet"),
  19579. weight: math.unit(106, "lb"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/robin/front.svg",
  19583. extra: 862 / 799,
  19584. bottom: 42.4 / 914.8856
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Normal",
  19591. height: math.unit(5, "feet"),
  19592. default: true
  19593. },
  19594. ]
  19595. ))
  19596. characterMakers.push(() => makeCharacter(
  19597. { name: "Saian" },
  19598. {
  19599. side: {
  19600. height: math.unit(3, "feet"),
  19601. weight: math.unit(225, "lb"),
  19602. name: "Side",
  19603. image: {
  19604. source: "./media/characters/saian/side.svg",
  19605. extra: 566 / 356,
  19606. bottom: 79.7 / 643
  19607. }
  19608. },
  19609. maw: {
  19610. height: math.unit(2.85, "feet"),
  19611. name: "Maw",
  19612. image: {
  19613. source: "./media/characters/saian/maw.svg"
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(3, "feet"),
  19621. default: true
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Equus Silvermane" },
  19627. {
  19628. side: {
  19629. height: math.unit(8, "feet"),
  19630. weight: math.unit(300, "lb"),
  19631. name: "Side",
  19632. image: {
  19633. source: "./media/characters/equus-silvermane/side.svg",
  19634. extra: 2176 / 2050,
  19635. bottom: 65.7 / 2245
  19636. }
  19637. },
  19638. front: {
  19639. height: math.unit(8, "feet"),
  19640. weight: math.unit(300, "lb"),
  19641. name: "Front",
  19642. image: {
  19643. source: "./media/characters/equus-silvermane/front.svg",
  19644. extra: 4633 / 4400,
  19645. bottom: 71.3 / 4706.915
  19646. }
  19647. },
  19648. sideStepping: {
  19649. height: math.unit(8, "feet"),
  19650. weight: math.unit(300, "lb"),
  19651. name: "Side (Stepping)",
  19652. image: {
  19653. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19654. extra: 1968 / 1860,
  19655. bottom: 16.4 / 1989
  19656. }
  19657. },
  19658. },
  19659. [
  19660. {
  19661. name: "Normal",
  19662. height: math.unit(8, "feet")
  19663. },
  19664. {
  19665. name: "Minimacro",
  19666. height: math.unit(75, "feet"),
  19667. default: true
  19668. },
  19669. {
  19670. name: "Macro",
  19671. height: math.unit(150, "feet")
  19672. },
  19673. {
  19674. name: "Macro+",
  19675. height: math.unit(1000, "feet")
  19676. },
  19677. {
  19678. name: "Megamacro",
  19679. height: math.unit(1, "mile")
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Windar" },
  19685. {
  19686. side: {
  19687. height: math.unit(20, "feet"),
  19688. weight: math.unit(30000, "kg"),
  19689. name: "Side",
  19690. image: {
  19691. source: "./media/characters/windar/side.svg",
  19692. extra: 1491 / 1248,
  19693. bottom: 82.56 / 1568
  19694. }
  19695. },
  19696. },
  19697. [
  19698. {
  19699. name: "Normal",
  19700. height: math.unit(20, "feet"),
  19701. default: true
  19702. },
  19703. ]
  19704. ))
  19705. characterMakers.push(() => makeCharacter(
  19706. { name: "Melody" },
  19707. {
  19708. side: {
  19709. height: math.unit(15.66, "feet"),
  19710. weight: math.unit(150, "lb"),
  19711. name: "Side",
  19712. image: {
  19713. source: "./media/characters/melody/side.svg",
  19714. extra: 1097 / 944,
  19715. bottom: 11.8 / 1109
  19716. }
  19717. },
  19718. sideOutfit: {
  19719. height: math.unit(15.66, "feet"),
  19720. weight: math.unit(150, "lb"),
  19721. name: "Side (Outfit)",
  19722. image: {
  19723. source: "./media/characters/melody/side-outfit.svg",
  19724. extra: 1097 / 944,
  19725. bottom: 11.8 / 1109
  19726. }
  19727. },
  19728. },
  19729. [
  19730. {
  19731. name: "Normal",
  19732. height: math.unit(15.66, "feet"),
  19733. default: true
  19734. },
  19735. ]
  19736. ))
  19737. characterMakers.push(() => makeCharacter(
  19738. { name: "Windera" },
  19739. {
  19740. front: {
  19741. height: math.unit(8, "feet"),
  19742. weight: math.unit(325, "lb"),
  19743. name: "Front",
  19744. image: {
  19745. source: "./media/characters/windera/front.svg",
  19746. extra: 3180 / 2845,
  19747. bottom: 178 / 3365
  19748. }
  19749. },
  19750. },
  19751. [
  19752. {
  19753. name: "Normal",
  19754. height: math.unit(8, "feet"),
  19755. default: true
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Sonear" },
  19761. {
  19762. front: {
  19763. height: math.unit(28.75, "feet"),
  19764. weight: math.unit(2000, "kg"),
  19765. name: "Front",
  19766. image: {
  19767. source: "./media/characters/sonear/front.svg",
  19768. extra: 1041.1 / 964.9,
  19769. bottom: 53.7 / 1096.6
  19770. }
  19771. },
  19772. },
  19773. [
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(28.75, "feet"),
  19777. default: true
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Kanara" },
  19783. {
  19784. side: {
  19785. height: math.unit(25.5, "feet"),
  19786. weight: math.unit(23000, "kg"),
  19787. name: "Side",
  19788. image: {
  19789. source: "./media/characters/kanara/side.svg"
  19790. }
  19791. },
  19792. },
  19793. [
  19794. {
  19795. name: "Normal",
  19796. height: math.unit(25.5, "feet"),
  19797. default: true
  19798. },
  19799. ]
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Ereus" },
  19803. {
  19804. side: {
  19805. height: math.unit(10, "feet"),
  19806. weight: math.unit(1000, "kg"),
  19807. name: "Side",
  19808. image: {
  19809. source: "./media/characters/ereus/side.svg",
  19810. extra: 1157 / 959,
  19811. bottom: 153 / 1312.5
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Normal",
  19818. height: math.unit(10, "feet"),
  19819. default: true
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "E-ter" },
  19825. {
  19826. side: {
  19827. height: math.unit(4.5, "feet"),
  19828. weight: math.unit(500, "lb"),
  19829. name: "Side",
  19830. image: {
  19831. source: "./media/characters/e-ter/side.svg",
  19832. extra: 1550 / 1248,
  19833. bottom: 146 / 1694
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(4.5, "feet"),
  19841. default: true
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Yamie" },
  19847. {
  19848. side: {
  19849. height: math.unit(9.7, "feet"),
  19850. weight: math.unit(4000, "kg"),
  19851. name: "Side",
  19852. image: {
  19853. source: "./media/characters/yamie/side.svg"
  19854. }
  19855. },
  19856. },
  19857. [
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(9.7, "feet"),
  19861. default: true
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Anders" },
  19867. {
  19868. front: {
  19869. height: math.unit(50, "feet"),
  19870. weight: math.unit(50000, "kg"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/anders/front.svg",
  19874. extra: 570 / 539,
  19875. bottom: 14.7 / 586.7
  19876. }
  19877. },
  19878. },
  19879. [
  19880. {
  19881. name: "Large",
  19882. height: math.unit(50, "feet")
  19883. },
  19884. {
  19885. name: "Macro",
  19886. height: math.unit(2000, "feet"),
  19887. default: true
  19888. },
  19889. {
  19890. name: "Megamacro",
  19891. height: math.unit(12, "miles")
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Reban" },
  19897. {
  19898. front: {
  19899. height: math.unit(7 + 2 / 12, "feet"),
  19900. weight: math.unit(300, "lb"),
  19901. name: "Front",
  19902. image: {
  19903. source: "./media/characters/reban/front.svg",
  19904. extra: 516 / 487,
  19905. bottom: 42.82 / 558.356
  19906. }
  19907. },
  19908. dick: {
  19909. height: math.unit(7 / 5, "feet"),
  19910. name: "Dick",
  19911. image: {
  19912. source: "./media/characters/reban/dick.svg"
  19913. }
  19914. },
  19915. },
  19916. [
  19917. {
  19918. name: "Natural Height",
  19919. height: math.unit(7 + 2 / 12, "feet")
  19920. },
  19921. {
  19922. name: "Macro",
  19923. height: math.unit(500, "feet"),
  19924. default: true
  19925. },
  19926. {
  19927. name: "Canon Height",
  19928. height: math.unit(50, "AU")
  19929. },
  19930. ]
  19931. ))
  19932. characterMakers.push(() => makeCharacter(
  19933. { name: "Terrance Keayes" },
  19934. {
  19935. front: {
  19936. height: math.unit(6, "feet"),
  19937. weight: math.unit(150, "lb"),
  19938. name: "Front",
  19939. image: {
  19940. source: "./media/characters/terrance-keayes/front.svg",
  19941. extra: 1.005,
  19942. bottom: 151 / 1615
  19943. }
  19944. },
  19945. side: {
  19946. height: math.unit(6, "feet"),
  19947. weight: math.unit(150, "lb"),
  19948. name: "Side",
  19949. image: {
  19950. source: "./media/characters/terrance-keayes/side.svg",
  19951. extra: 1.005,
  19952. bottom: 129.4 / 1544
  19953. }
  19954. },
  19955. back: {
  19956. height: math.unit(6, "feet"),
  19957. weight: math.unit(150, "lb"),
  19958. name: "Back",
  19959. image: {
  19960. source: "./media/characters/terrance-keayes/back.svg",
  19961. extra: 1.005,
  19962. bottom: 58.4 / 1557.3
  19963. }
  19964. },
  19965. dick: {
  19966. height: math.unit(6 * 0.208, "feet"),
  19967. name: "Dick",
  19968. image: {
  19969. source: "./media/characters/terrance-keayes/dick.svg"
  19970. }
  19971. },
  19972. },
  19973. [
  19974. {
  19975. name: "Canon Height",
  19976. height: math.unit(35, "miles"),
  19977. default: true
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Ofelia" },
  19983. {
  19984. front: {
  19985. height: math.unit(6, "feet"),
  19986. weight: math.unit(150, "lb"),
  19987. name: "Front",
  19988. image: {
  19989. source: "./media/characters/ofelia/front.svg",
  19990. extra: 546 / 541,
  19991. bottom: 39 / 583
  19992. }
  19993. },
  19994. back: {
  19995. height: math.unit(6, "feet"),
  19996. weight: math.unit(150, "lb"),
  19997. name: "Back",
  19998. image: {
  19999. source: "./media/characters/ofelia/back.svg",
  20000. extra: 564 / 559.5,
  20001. bottom: 8.69 / 573.02
  20002. }
  20003. },
  20004. maw: {
  20005. height: math.unit(1, "feet"),
  20006. name: "Maw",
  20007. image: {
  20008. source: "./media/characters/ofelia/maw.svg"
  20009. }
  20010. },
  20011. foot: {
  20012. height: math.unit(1.949, "feet"),
  20013. name: "Foot",
  20014. image: {
  20015. source: "./media/characters/ofelia/foot.svg"
  20016. }
  20017. },
  20018. },
  20019. [
  20020. {
  20021. name: "Canon Height",
  20022. height: math.unit(2000, "miles"),
  20023. default: true
  20024. },
  20025. ]
  20026. ))
  20027. characterMakers.push(() => makeCharacter(
  20028. { name: "Samuel" },
  20029. {
  20030. front: {
  20031. height: math.unit(6, "feet"),
  20032. weight: math.unit(150, "lb"),
  20033. name: "Front",
  20034. image: {
  20035. source: "./media/characters/samuel/front.svg",
  20036. extra: 265 / 258,
  20037. bottom: 2 / 266.1566
  20038. }
  20039. },
  20040. },
  20041. [
  20042. {
  20043. name: "Macro",
  20044. height: math.unit(100, "feet"),
  20045. default: true
  20046. },
  20047. {
  20048. name: "Full Size",
  20049. height: math.unit(1000, "miles")
  20050. },
  20051. ]
  20052. ))
  20053. characterMakers.push(() => makeCharacter(
  20054. { name: "Beishir Kiel" },
  20055. {
  20056. front: {
  20057. height: math.unit(6, "feet"),
  20058. weight: math.unit(300, "lb"),
  20059. name: "Front",
  20060. image: {
  20061. source: "./media/characters/beishir-kiel/front.svg",
  20062. extra: 569 / 547,
  20063. bottom: 41.9 / 609
  20064. }
  20065. },
  20066. maw: {
  20067. height: math.unit(6 * 0.202, "feet"),
  20068. name: "Maw",
  20069. image: {
  20070. source: "./media/characters/beishir-kiel/maw.svg"
  20071. }
  20072. },
  20073. },
  20074. [
  20075. {
  20076. name: "Macro",
  20077. height: math.unit(300, "feet"),
  20078. default: true
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Logan Grey" },
  20084. {
  20085. front: {
  20086. height: math.unit(5 + 8 / 12, "feet"),
  20087. weight: math.unit(120, "lb"),
  20088. name: "Front",
  20089. image: {
  20090. source: "./media/characters/logan-grey/front.svg",
  20091. extra: 2539 / 2393,
  20092. bottom: 97.6 / 2636.37
  20093. }
  20094. },
  20095. frontAlt: {
  20096. height: math.unit(5 + 8 / 12, "feet"),
  20097. weight: math.unit(120, "lb"),
  20098. name: "Front (Alt)",
  20099. image: {
  20100. source: "./media/characters/logan-grey/front-alt.svg",
  20101. extra: 958 / 893,
  20102. bottom: 15 / 970.768
  20103. }
  20104. },
  20105. back: {
  20106. height: math.unit(5 + 8 / 12, "feet"),
  20107. weight: math.unit(120, "lb"),
  20108. name: "Back",
  20109. image: {
  20110. source: "./media/characters/logan-grey/back.svg",
  20111. extra: 958 / 893,
  20112. bottom: 2.1881 / 970.9788
  20113. }
  20114. },
  20115. dick: {
  20116. height: math.unit(1.437, "feet"),
  20117. name: "Dick",
  20118. image: {
  20119. source: "./media/characters/logan-grey/dick.svg"
  20120. }
  20121. },
  20122. },
  20123. [
  20124. {
  20125. name: "Normal",
  20126. height: math.unit(5 + 8 / 12, "feet")
  20127. },
  20128. {
  20129. name: "The 500 Foot Femboy",
  20130. height: math.unit(500, "feet"),
  20131. default: true
  20132. },
  20133. {
  20134. name: "Megmacro",
  20135. height: math.unit(20, "miles")
  20136. },
  20137. ]
  20138. ))
  20139. characterMakers.push(() => makeCharacter(
  20140. { name: "Draganta" },
  20141. {
  20142. front: {
  20143. height: math.unit(8 + 2 / 12, "feet"),
  20144. weight: math.unit(275, "lb"),
  20145. name: "Front",
  20146. image: {
  20147. source: "./media/characters/draganta/front.svg",
  20148. extra: 1177 / 1135,
  20149. bottom: 33.46 / 1212.1
  20150. }
  20151. },
  20152. },
  20153. [
  20154. {
  20155. name: "Normal",
  20156. height: math.unit(8 + 6 / 12, "feet"),
  20157. default: true
  20158. },
  20159. {
  20160. name: "Macro",
  20161. height: math.unit(150, "feet")
  20162. },
  20163. {
  20164. name: "Megamacro",
  20165. height: math.unit(1000, "miles")
  20166. },
  20167. ]
  20168. ))
  20169. characterMakers.push(() => makeCharacter(
  20170. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20171. {
  20172. front: {
  20173. height: math.unit(1.72, "m"),
  20174. weight: math.unit(80, "lb"),
  20175. name: "Front",
  20176. image: {
  20177. source: "./media/characters/voski/front.svg",
  20178. extra: 2076.22 / 2022.4,
  20179. bottom: 102.7 / 2177.3866
  20180. }
  20181. },
  20182. frontNsfw: {
  20183. height: math.unit(1.72, "m"),
  20184. weight: math.unit(80, "lb"),
  20185. name: "Front (NSFW)",
  20186. image: {
  20187. source: "./media/characters/voski/front-nsfw.svg",
  20188. extra: 2076.22 / 2022.4,
  20189. bottom: 102.7 / 2177.3866
  20190. }
  20191. },
  20192. back: {
  20193. height: math.unit(1.72, "m"),
  20194. weight: math.unit(80, "lb"),
  20195. name: "Back",
  20196. image: {
  20197. source: "./media/characters/voski/back.svg",
  20198. extra: 2104 / 2051,
  20199. bottom: 10.45 / 2113.63
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(1.72, "m")
  20207. },
  20208. {
  20209. name: "Macro",
  20210. height: math.unit(55, "m"),
  20211. default: true
  20212. },
  20213. {
  20214. name: "Macro+",
  20215. height: math.unit(300, "m")
  20216. },
  20217. {
  20218. name: "Macro++",
  20219. height: math.unit(700, "m")
  20220. },
  20221. {
  20222. name: "Macro+++",
  20223. height: math.unit(4500, "m")
  20224. },
  20225. {
  20226. name: "Macro++++",
  20227. height: math.unit(45, "km")
  20228. },
  20229. {
  20230. name: "Macro+++++",
  20231. height: math.unit(1220, "km")
  20232. },
  20233. ]
  20234. ))
  20235. characterMakers.push(() => makeCharacter(
  20236. { name: "Icowom Lee" },
  20237. {
  20238. front: {
  20239. height: math.unit(2.3, "m"),
  20240. weight: math.unit(304, "kg"),
  20241. name: "Front",
  20242. image: {
  20243. source: "./media/characters/icowom-lee/front.svg",
  20244. extra: 3076 / 2933,
  20245. bottom: 51.4 / 3125.1889
  20246. }
  20247. },
  20248. },
  20249. [
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(2.3, "meters"),
  20253. default: true
  20254. },
  20255. {
  20256. name: "Macro",
  20257. height: math.unit(94, "meters"),
  20258. default: true
  20259. },
  20260. ]
  20261. ))
  20262. characterMakers.push(() => makeCharacter(
  20263. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  20264. {
  20265. front: {
  20266. height: math.unit(22, "meters"),
  20267. weight: math.unit(21000, "kg"),
  20268. name: "Front",
  20269. image: {
  20270. source: "./media/characters/shock-diamond/front.svg",
  20271. extra: 2204 / 2053,
  20272. bottom: 65 / 2239.47
  20273. }
  20274. },
  20275. frontNude: {
  20276. height: math.unit(22, "meters"),
  20277. weight: math.unit(21000, "kg"),
  20278. name: "Front (Nude)",
  20279. image: {
  20280. source: "./media/characters/shock-diamond/front-nude.svg",
  20281. extra: 2514 / 2285,
  20282. bottom: 13 / 2527.56
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Normal",
  20289. height: math.unit(3, "meters")
  20290. },
  20291. {
  20292. name: "Macro",
  20293. height: math.unit(22, "meters"),
  20294. default: true
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Rory" },
  20300. {
  20301. front: {
  20302. height: math.unit(5 + 4 / 12, "feet"),
  20303. weight: math.unit(120, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/rory/front.svg",
  20307. extra: 589 / 556,
  20308. bottom: 45.7 / 635.76
  20309. }
  20310. },
  20311. frontNude: {
  20312. height: math.unit(5 + 4 / 12, "feet"),
  20313. weight: math.unit(120, "lb"),
  20314. name: "Front (Nude)",
  20315. image: {
  20316. source: "./media/characters/rory/front-nude.svg",
  20317. extra: 589 / 556,
  20318. bottom: 45.7 / 635.76
  20319. }
  20320. },
  20321. side: {
  20322. height: math.unit(5 + 4 / 12, "feet"),
  20323. weight: math.unit(120, "lb"),
  20324. name: "Side",
  20325. image: {
  20326. source: "./media/characters/rory/side.svg",
  20327. extra: 597 / 564,
  20328. bottom: 55 / 653
  20329. }
  20330. },
  20331. back: {
  20332. height: math.unit(5 + 4 / 12, "feet"),
  20333. weight: math.unit(120, "lb"),
  20334. name: "Back",
  20335. image: {
  20336. source: "./media/characters/rory/back.svg",
  20337. extra: 620 / 585,
  20338. bottom: 8.86 / 630.43
  20339. }
  20340. },
  20341. dick: {
  20342. height: math.unit(0.86, "feet"),
  20343. name: "Dick",
  20344. image: {
  20345. source: "./media/characters/rory/dick.svg"
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(5 + 4 / 12, "feet"),
  20353. default: true
  20354. },
  20355. {
  20356. name: "Macro",
  20357. height: math.unit(100, "feet")
  20358. },
  20359. {
  20360. name: "Macro+",
  20361. height: math.unit(140, "feet")
  20362. },
  20363. {
  20364. name: "Macro++",
  20365. height: math.unit(300, "feet")
  20366. },
  20367. ]
  20368. ))
  20369. characterMakers.push(() => makeCharacter(
  20370. { name: "Sprisk" },
  20371. {
  20372. front: {
  20373. height: math.unit(5 + 9 / 12, "feet"),
  20374. weight: math.unit(190, "lb"),
  20375. name: "Front",
  20376. image: {
  20377. source: "./media/characters/sprisk/front.svg",
  20378. extra: 1225 / 1180,
  20379. bottom: 42.7 / 1266.4
  20380. }
  20381. },
  20382. frontNsfw: {
  20383. height: math.unit(5 + 9 / 12, "feet"),
  20384. weight: math.unit(190, "lb"),
  20385. name: "Front (NSFW)",
  20386. image: {
  20387. source: "./media/characters/sprisk/front-nsfw.svg",
  20388. extra: 1225 / 1180,
  20389. bottom: 42.7 / 1266.4
  20390. }
  20391. },
  20392. back: {
  20393. height: math.unit(5 + 9 / 12, "feet"),
  20394. weight: math.unit(190, "lb"),
  20395. name: "Back",
  20396. image: {
  20397. source: "./media/characters/sprisk/back.svg",
  20398. extra: 1247 / 1200,
  20399. bottom: 5.6 / 1253.04
  20400. }
  20401. },
  20402. },
  20403. [
  20404. {
  20405. name: "Tiny",
  20406. height: math.unit(2, "inches")
  20407. },
  20408. {
  20409. name: "Normal",
  20410. height: math.unit(5 + 9 / 12, "feet"),
  20411. default: true
  20412. },
  20413. {
  20414. name: "Mini Macro",
  20415. height: math.unit(18, "feet")
  20416. },
  20417. {
  20418. name: "Macro",
  20419. height: math.unit(100, "feet")
  20420. },
  20421. {
  20422. name: "MACRO",
  20423. height: math.unit(50, "miles")
  20424. },
  20425. {
  20426. name: "M A C R O",
  20427. height: math.unit(300, "miles")
  20428. },
  20429. ]
  20430. ))
  20431. characterMakers.push(() => makeCharacter(
  20432. { name: "Bunsen" },
  20433. {
  20434. side: {
  20435. height: math.unit(15.6, "meters"),
  20436. weight: math.unit(700000, "kg"),
  20437. name: "Side",
  20438. image: {
  20439. source: "./media/characters/bunsen/side.svg",
  20440. extra: 1644 / 358
  20441. }
  20442. },
  20443. foot: {
  20444. height: math.unit(1.611 * 1644 / 358, "meter"),
  20445. name: "Foot",
  20446. image: {
  20447. source: "./media/characters/bunsen/foot.svg"
  20448. }
  20449. },
  20450. },
  20451. [
  20452. {
  20453. name: "Small",
  20454. height: math.unit(10, "feet")
  20455. },
  20456. {
  20457. name: "Normal",
  20458. height: math.unit(15.6, "meters"),
  20459. default: true
  20460. },
  20461. ]
  20462. ))
  20463. characterMakers.push(() => makeCharacter(
  20464. { name: "Sesh" },
  20465. {
  20466. front: {
  20467. height: math.unit(4 + 11 / 12, "feet"),
  20468. weight: math.unit(140, "lb"),
  20469. name: "Front",
  20470. image: {
  20471. source: "./media/characters/sesh/front.svg",
  20472. extra: 3420 / 3231,
  20473. bottom: 72 / 3949.5
  20474. }
  20475. },
  20476. },
  20477. [
  20478. {
  20479. name: "Normal",
  20480. height: math.unit(4 + 11 / 12, "feet")
  20481. },
  20482. {
  20483. name: "Grown",
  20484. height: math.unit(15, "feet"),
  20485. default: true
  20486. },
  20487. {
  20488. name: "Macro",
  20489. height: math.unit(1500, "feet")
  20490. },
  20491. {
  20492. name: "Megamacro",
  20493. height: math.unit(30, "miles")
  20494. },
  20495. {
  20496. name: "Continental",
  20497. height: math.unit(3000, "miles")
  20498. },
  20499. {
  20500. name: "Gravity Mass",
  20501. height: math.unit(300000, "miles")
  20502. },
  20503. {
  20504. name: "Planet Buster",
  20505. height: math.unit(30000000, "miles")
  20506. },
  20507. {
  20508. name: "Big",
  20509. height: math.unit(3000000000, "miles")
  20510. },
  20511. ]
  20512. ))
  20513. characterMakers.push(() => makeCharacter(
  20514. { name: "Pepper" },
  20515. {
  20516. front: {
  20517. height: math.unit(9, "feet"),
  20518. weight: math.unit(350, "lb"),
  20519. name: "Front",
  20520. image: {
  20521. source: "./media/characters/pepper/front.svg",
  20522. extra: 1448/1312,
  20523. bottom: 9.4/1457.88
  20524. }
  20525. },
  20526. back: {
  20527. height: math.unit(9, "feet"),
  20528. weight: math.unit(350, "lb"),
  20529. name: "Back",
  20530. image: {
  20531. source: "./media/characters/pepper/back.svg",
  20532. extra: 1423/1300,
  20533. bottom: 4.6/1429
  20534. }
  20535. },
  20536. maw: {
  20537. height: math.unit(0.932, "feet"),
  20538. name: "Maw",
  20539. image: {
  20540. source: "./media/characters/pepper/maw.svg"
  20541. }
  20542. },
  20543. },
  20544. [
  20545. {
  20546. name: "Normal",
  20547. height: math.unit(9, "feet"),
  20548. default: true
  20549. },
  20550. ]
  20551. ))
  20552. characterMakers.push(() => makeCharacter(
  20553. { name: "Maelstrom" },
  20554. {
  20555. front: {
  20556. height: math.unit(6, "feet"),
  20557. weight: math.unit(150, "lb"),
  20558. name: "Front",
  20559. image: {
  20560. source: "./media/characters/maelstrom/front.svg",
  20561. extra: 2100/1883,
  20562. bottom: 94/2196.7
  20563. }
  20564. },
  20565. },
  20566. [
  20567. {
  20568. name: "Less Kaiju",
  20569. height: math.unit(200, "feet")
  20570. },
  20571. {
  20572. name: "Kaiju",
  20573. height: math.unit(400, "feet"),
  20574. default: true
  20575. },
  20576. {
  20577. name: "Kaiju-er",
  20578. height: math.unit(600, "feet")
  20579. },
  20580. ]
  20581. ))
  20582. characterMakers.push(() => makeCharacter(
  20583. { name: "Lexir" },
  20584. {
  20585. front: {
  20586. height: math.unit(6 + 5/12, "feet"),
  20587. weight: math.unit(180, "lb"),
  20588. name: "Front",
  20589. image: {
  20590. source: "./media/characters/lexir/front.svg",
  20591. extra: 180/172,
  20592. bottom: 12/192
  20593. }
  20594. },
  20595. back: {
  20596. height: math.unit(6 + 5/12, "feet"),
  20597. weight: math.unit(180, "lb"),
  20598. name: "Back",
  20599. image: {
  20600. source: "./media/characters/lexir/back.svg",
  20601. extra: 183.84/175.5,
  20602. bottom: 3.1/187
  20603. }
  20604. },
  20605. },
  20606. [
  20607. {
  20608. name: "Very Smal",
  20609. height: math.unit(1, "nm")
  20610. },
  20611. {
  20612. name: "Normal",
  20613. height: math.unit(6 + 5/12, "feet"),
  20614. default: true
  20615. },
  20616. {
  20617. name: "Macro",
  20618. height: math.unit(1, "mile")
  20619. },
  20620. {
  20621. name: "Megamacro",
  20622. height: math.unit(50, "miles")
  20623. },
  20624. ]
  20625. ))
  20626. characterMakers.push(() => makeCharacter(
  20627. { name: "Maksio" },
  20628. {
  20629. front: {
  20630. height: math.unit(1.5, "meters"),
  20631. weight: math.unit(100, "lb"),
  20632. name: "Front",
  20633. image: {
  20634. source: "./media/characters/maksio/front.svg",
  20635. extra: 1549/1531,
  20636. bottom: 123.7/1674.5429
  20637. }
  20638. },
  20639. back: {
  20640. height: math.unit(1.5, "meters"),
  20641. weight: math.unit(100, "lb"),
  20642. name: "Back",
  20643. image: {
  20644. source: "./media/characters/maksio/back.svg",
  20645. extra: 1541/1509,
  20646. bottom: 97/1639
  20647. }
  20648. },
  20649. hand: {
  20650. height: math.unit(0.621, "feet"),
  20651. name: "Hand",
  20652. image: {
  20653. source: "./media/characters/maksio/hand.svg"
  20654. }
  20655. },
  20656. foot: {
  20657. height: math.unit(1.611, "feet"),
  20658. name: "Foot",
  20659. image: {
  20660. source: "./media/characters/maksio/foot.svg"
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Shrunken",
  20667. height: math.unit(10, "cm")
  20668. },
  20669. {
  20670. name: "Normal",
  20671. height: math.unit(150, "cm"),
  20672. default: true
  20673. },
  20674. ]
  20675. ))
  20676. characterMakers.push(() => makeCharacter(
  20677. { name: "Erza Bear" },
  20678. {
  20679. front: {
  20680. height: math.unit(100, "feet"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/erza-bear/front.svg",
  20684. extra: 2449/2390,
  20685. bottom: 46/2494
  20686. }
  20687. },
  20688. back: {
  20689. height: math.unit(100, "feet"),
  20690. name: "Back",
  20691. image: {
  20692. source: "./media/characters/erza-bear/back.svg",
  20693. extra: 2489/2430,
  20694. bottom: 85.4/2480
  20695. }
  20696. },
  20697. tail: {
  20698. height: math.unit(42, "feet"),
  20699. name: "Tail",
  20700. image: {
  20701. source: "./media/characters/erza-bear/tail.svg"
  20702. }
  20703. },
  20704. tongue: {
  20705. height: math.unit(8, "feet"),
  20706. name: "Tongue",
  20707. image: {
  20708. source: "./media/characters/erza-bear/tongue.svg"
  20709. }
  20710. },
  20711. dick: {
  20712. height: math.unit(10.5, "feet"),
  20713. name: "Dick",
  20714. image: {
  20715. source: "./media/characters/erza-bear/dick.svg"
  20716. }
  20717. },
  20718. dickVertical: {
  20719. height: math.unit(16.9, "feet"),
  20720. name: "Dick (Vertical)",
  20721. image: {
  20722. source: "./media/characters/erza-bear/dick-vertical.svg"
  20723. }
  20724. },
  20725. },
  20726. [
  20727. {
  20728. name: "Macro",
  20729. height: math.unit(100, "feet"),
  20730. default: true
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(172, "cm"),
  20739. weight: math.unit(73, "kg"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/violet-flor/front.svg",
  20743. extra: 1530/1442,
  20744. bottom: 61.9/1588.8
  20745. }
  20746. },
  20747. back: {
  20748. height: math.unit(180, "cm"),
  20749. weight: math.unit(73, "kg"),
  20750. name: "Back",
  20751. image: {
  20752. source: "./media/characters/violet-flor/back.svg",
  20753. extra: 1692/1630,
  20754. bottom: 20/1712
  20755. }
  20756. },
  20757. },
  20758. [
  20759. {
  20760. name: "Normal",
  20761. height: math.unit(172, "cm"),
  20762. default: true
  20763. },
  20764. ]
  20765. ))
  20766. characterMakers.push(() => makeCharacter(
  20767. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  20768. {
  20769. front: {
  20770. height: math.unit(6, "feet"),
  20771. weight: math.unit(220, "lb"),
  20772. name: "Front",
  20773. image: {
  20774. source: "./media/characters/lynn-rhea/front.svg",
  20775. extra: 310/273
  20776. }
  20777. },
  20778. back: {
  20779. height: math.unit(6, "feet"),
  20780. weight: math.unit(220, "lb"),
  20781. name: "Back",
  20782. image: {
  20783. source: "./media/characters/lynn-rhea/back.svg",
  20784. extra: 310/273
  20785. }
  20786. },
  20787. dicks: {
  20788. height: math.unit(0.9, "feet"),
  20789. name: "Dicks",
  20790. image: {
  20791. source: "./media/characters/lynn-rhea/dicks.svg"
  20792. }
  20793. },
  20794. slit: {
  20795. height: math.unit(0.4, "feet"),
  20796. name: "Slit",
  20797. image: {
  20798. source: "./media/characters/lynn-rhea/slit.svg"
  20799. }
  20800. },
  20801. },
  20802. [
  20803. {
  20804. name: "Micro",
  20805. height: math.unit(1, "inch")
  20806. },
  20807. {
  20808. name: "Macro",
  20809. height: math.unit(60, "feet"),
  20810. default: true
  20811. },
  20812. {
  20813. name: "Megamacro",
  20814. height: math.unit(2, "miles")
  20815. },
  20816. {
  20817. name: "Gigamacro",
  20818. height: math.unit(3, "earths")
  20819. },
  20820. {
  20821. name: "Galactic",
  20822. height: math.unit(0.8, "galaxies")
  20823. },
  20824. ]
  20825. ))
  20826. characterMakers.push(() => makeCharacter(
  20827. { name: "Valathos" },
  20828. {
  20829. front: {
  20830. height: math.unit(1600, "feet"),
  20831. weight: math.unit(85758785169, "kg"),
  20832. name: "Front",
  20833. image: {
  20834. source: "./media/characters/valathos/front.svg",
  20835. extra: 1451/1339
  20836. }
  20837. },
  20838. },
  20839. [
  20840. {
  20841. name: "Macro",
  20842. height: math.unit(1600, "feet"),
  20843. default: true
  20844. },
  20845. ]
  20846. ))
  20847. characterMakers.push(() => makeCharacter(
  20848. { name: "Azula" },
  20849. {
  20850. front: {
  20851. height: math.unit(7 + 5/12, "feet"),
  20852. weight: math.unit(300, "lb"),
  20853. name: "Front",
  20854. image: {
  20855. source: "./media/characters/azula/front.svg",
  20856. extra: 3208/2880,
  20857. bottom: 80.2/3277
  20858. }
  20859. },
  20860. back: {
  20861. height: math.unit(7 + 5/12, "feet"),
  20862. weight: math.unit(300, "lb"),
  20863. name: "Back",
  20864. image: {
  20865. source: "./media/characters/azula/back.svg",
  20866. extra: 3169/2822,
  20867. bottom: 150.6/3321
  20868. }
  20869. },
  20870. },
  20871. [
  20872. {
  20873. name: "Normal",
  20874. height: math.unit(7 + 5/12, "feet"),
  20875. default: true
  20876. },
  20877. {
  20878. name: "Big",
  20879. height: math.unit(20, "feet")
  20880. },
  20881. ]
  20882. ))
  20883. characterMakers.push(() => makeCharacter(
  20884. { name: "Rupert" },
  20885. {
  20886. front: {
  20887. height: math.unit(5 + 1/12, "feet"),
  20888. weight: math.unit(110, "lb"),
  20889. name: "Front",
  20890. image: {
  20891. source: "./media/characters/rupert/front.svg",
  20892. extra: 1549/1495,
  20893. bottom: 54.2/1604.4
  20894. }
  20895. },
  20896. },
  20897. [
  20898. {
  20899. name: "Normal",
  20900. height: math.unit(5 + 1/12, "feet"),
  20901. default: true
  20902. },
  20903. ]
  20904. ))
  20905. characterMakers.push(() => makeCharacter(
  20906. { name: "Sheera Castellar" },
  20907. {
  20908. front: {
  20909. height: math.unit(8 + 4/12, "feet"),
  20910. weight: math.unit(350, "lb"),
  20911. name: "Front",
  20912. image: {
  20913. source: "./media/characters/sheera-castellar/front.svg",
  20914. extra: 1957/1894,
  20915. bottom: 26.97/1975.017
  20916. }
  20917. },
  20918. side: {
  20919. height: math.unit(8 + 4/12, "feet"),
  20920. weight: math.unit(350, "lb"),
  20921. name: "Side",
  20922. image: {
  20923. source: "./media/characters/sheera-castellar/side.svg",
  20924. extra: 1957/1894
  20925. }
  20926. },
  20927. back: {
  20928. height: math.unit(8 + 4/12, "feet"),
  20929. weight: math.unit(350, "lb"),
  20930. name: "Back",
  20931. image: {
  20932. source: "./media/characters/sheera-castellar/back.svg",
  20933. extra: 1957/1894
  20934. }
  20935. },
  20936. angled: {
  20937. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20938. weight: math.unit(350, "lb"),
  20939. name: "Angled",
  20940. image: {
  20941. source: "./media/characters/sheera-castellar/angled.svg",
  20942. extra: 1807/1707,
  20943. bottom: 68/1875
  20944. }
  20945. },
  20946. genitals: {
  20947. height: math.unit(2.2, "feet"),
  20948. name: "Genitals",
  20949. image: {
  20950. source: "./media/characters/sheera-castellar/genitals.svg"
  20951. }
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(8 + 4/12, "feet")
  20958. },
  20959. {
  20960. name: "Macro",
  20961. height: math.unit(150, "feet"),
  20962. default: true
  20963. },
  20964. {
  20965. name: "Macro+",
  20966. height: math.unit(800, "feet")
  20967. },
  20968. ]
  20969. ))
  20970. characterMakers.push(() => makeCharacter(
  20971. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  20972. {
  20973. front: {
  20974. height: math.unit(6, "feet"),
  20975. weight: math.unit(150, "lb"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/jaipur/front.svg",
  20979. extra: 3860/3731,
  20980. bottom: 287/4140
  20981. }
  20982. },
  20983. back: {
  20984. height: math.unit(6, "feet"),
  20985. weight: math.unit(150, "lb"),
  20986. name: "Back",
  20987. image: {
  20988. source: "./media/characters/jaipur/back.svg",
  20989. extra: 4060/3930,
  20990. bottom: 151/4200
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(1.85, "meters"),
  20998. default: true
  20999. },
  21000. {
  21001. name: "Macro",
  21002. height: math.unit(150, "meters")
  21003. },
  21004. {
  21005. name: "Macro+",
  21006. height: math.unit(0.5, "miles")
  21007. },
  21008. {
  21009. name: "Macro++",
  21010. height: math.unit(2.5, "miles")
  21011. },
  21012. {
  21013. name: "Macro+++",
  21014. height: math.unit(12, "miles")
  21015. },
  21016. {
  21017. name: "Macro++++",
  21018. height: math.unit(120, "miles")
  21019. },
  21020. {
  21021. name: "Macro+++++",
  21022. height: math.unit(1200, "miles")
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Sheila (Wolf)" },
  21028. {
  21029. front: {
  21030. height: math.unit(6, "feet"),
  21031. weight: math.unit(150, "lb"),
  21032. name: "Front",
  21033. image: {
  21034. source: "./media/characters/sheila-wolf/front.svg",
  21035. extra: 1931/1808,
  21036. bottom: 29.5/1960
  21037. }
  21038. },
  21039. dick: {
  21040. height: math.unit(1.464, "feet"),
  21041. name: "Dick",
  21042. image: {
  21043. source: "./media/characters/sheila-wolf/dick.svg"
  21044. }
  21045. },
  21046. muzzle: {
  21047. height: math.unit(0.513, "feet"),
  21048. name: "Muzzle",
  21049. image: {
  21050. source: "./media/characters/sheila-wolf/muzzle.svg"
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Macro",
  21057. height: math.unit(70, "feet"),
  21058. default: true
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21064. {
  21065. front: {
  21066. height: math.unit(32, "meters"),
  21067. weight: math.unit(300000, "kg"),
  21068. name: "Front",
  21069. image: {
  21070. source: "./media/characters/almor/front.svg",
  21071. extra: 1408/1322,
  21072. bottom: 94.6/1506.5
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Macro",
  21079. height: math.unit(32, "meters"),
  21080. default: true
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Silver" },
  21086. {
  21087. front: {
  21088. height: math.unit(7, "feet"),
  21089. weight: math.unit(200, "lb"),
  21090. name: "Front",
  21091. image: {
  21092. source: "./media/characters/silver/front.svg",
  21093. extra: 472.1/450.5,
  21094. bottom: 26.5/499.424
  21095. }
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(7, "feet"),
  21102. default: true
  21103. },
  21104. {
  21105. name: "Macro",
  21106. height: math.unit(800, "feet")
  21107. },
  21108. {
  21109. name: "Megamacro",
  21110. height: math.unit(250, "miles")
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Pliskin" },
  21116. {
  21117. front: {
  21118. height: math.unit(6, "feet"),
  21119. weight: math.unit(150, "lb"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/pliskin/front.svg",
  21123. extra: 1469/1359,
  21124. bottom: 70/1540
  21125. }
  21126. },
  21127. },
  21128. [
  21129. {
  21130. name: "Micro",
  21131. height: math.unit(3, "inches")
  21132. },
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(5 + 11/12, "feet"),
  21136. default: true
  21137. },
  21138. {
  21139. name: "Macro",
  21140. height: math.unit(120, "feet")
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Sammy" },
  21146. {
  21147. front: {
  21148. height: math.unit(6, "feet"),
  21149. weight: math.unit(150, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/sammy/front.svg",
  21153. extra: 1193/1089,
  21154. bottom: 30.5/1226
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Macro",
  21161. height: math.unit(1700, "feet"),
  21162. default: true
  21163. },
  21164. {
  21165. name: "Examacro",
  21166. height: math.unit(2.5e9, "lightyears")
  21167. },
  21168. ]
  21169. ))
  21170. characterMakers.push(() => makeCharacter(
  21171. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21172. {
  21173. front: {
  21174. height: math.unit(21, "meters"),
  21175. weight: math.unit(12, "tonnes"),
  21176. name: "Front",
  21177. image: {
  21178. source: "./media/characters/kuru/front.svg",
  21179. extra: 4301/3785,
  21180. bottom: 371.3/4691
  21181. }
  21182. },
  21183. },
  21184. [
  21185. {
  21186. name: "Macro",
  21187. height: math.unit(21, "meters"),
  21188. default: true
  21189. },
  21190. ]
  21191. ))
  21192. characterMakers.push(() => makeCharacter(
  21193. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  21194. {
  21195. front: {
  21196. height: math.unit(23, "meters"),
  21197. weight: math.unit(12.2, "tonnes"),
  21198. name: "Front",
  21199. image: {
  21200. source: "./media/characters/rakka/front.svg",
  21201. extra: 4670/4169,
  21202. bottom: 301/4968.7
  21203. }
  21204. },
  21205. },
  21206. [
  21207. {
  21208. name: "Macro",
  21209. height: math.unit(23, "meters"),
  21210. default: true
  21211. },
  21212. ]
  21213. ))
  21214. characterMakers.push(() => makeCharacter(
  21215. { name: "Rhys (Feline)" },
  21216. {
  21217. front: {
  21218. height: math.unit(6, "feet"),
  21219. weight: math.unit(150, "lb"),
  21220. name: "Front",
  21221. image: {
  21222. source: "./media/characters/rhys-feline/front.svg",
  21223. extra: 2488/2308,
  21224. bottom: 35.67/2519.19
  21225. }
  21226. },
  21227. },
  21228. [
  21229. {
  21230. name: "Really Small",
  21231. height: math.unit(1, "nm")
  21232. },
  21233. {
  21234. name: "Micro",
  21235. height: math.unit(4, "inches")
  21236. },
  21237. {
  21238. name: "Normal",
  21239. height: math.unit(4 + 10/12, "feet"),
  21240. default: true
  21241. },
  21242. {
  21243. name: "Macro",
  21244. height: math.unit(100, "feet")
  21245. },
  21246. {
  21247. name: "Megamacto",
  21248. height: math.unit(50, "miles")
  21249. },
  21250. ]
  21251. ))
  21252. characterMakers.push(() => makeCharacter(
  21253. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  21254. {
  21255. side: {
  21256. height: math.unit(30, "feet"),
  21257. weight: math.unit(35000, "kg"),
  21258. name: "Side",
  21259. image: {
  21260. source: "./media/characters/alydar/side.svg",
  21261. extra: 234/222,
  21262. bottom: 6.5/241
  21263. }
  21264. },
  21265. front: {
  21266. height: math.unit(30, "feet"),
  21267. weight: math.unit(35000, "kg"),
  21268. name: "Front",
  21269. image: {
  21270. source: "./media/characters/alydar/front.svg",
  21271. extra: 223.37/210.2,
  21272. bottom: 22.3/246.76
  21273. }
  21274. },
  21275. top: {
  21276. height: math.unit(64.54, "feet"),
  21277. weight: math.unit(35000, "kg"),
  21278. name: "Top",
  21279. image: {
  21280. source: "./media/characters/alydar/top.svg"
  21281. }
  21282. },
  21283. anthro: {
  21284. height: math.unit(30, "feet"),
  21285. weight: math.unit(9000, "kg"),
  21286. name: "Anthro",
  21287. image: {
  21288. source: "./media/characters/alydar/anthro.svg",
  21289. extra: 432/421,
  21290. bottom: 7.18/440
  21291. }
  21292. },
  21293. maw: {
  21294. height: math.unit(11.693, "feet"),
  21295. name: "Maw",
  21296. image: {
  21297. source: "./media/characters/alydar/maw.svg"
  21298. }
  21299. },
  21300. head: {
  21301. height: math.unit(11.693, "feet"),
  21302. name: "Head",
  21303. image: {
  21304. source: "./media/characters/alydar/head.svg"
  21305. }
  21306. },
  21307. headAlt: {
  21308. height: math.unit(12.861, "feet"),
  21309. name: "Head (Alt)",
  21310. image: {
  21311. source: "./media/characters/alydar/head-alt.svg"
  21312. }
  21313. },
  21314. wing: {
  21315. height: math.unit(20.712, "feet"),
  21316. name: "Wing",
  21317. image: {
  21318. source: "./media/characters/alydar/wing.svg"
  21319. }
  21320. },
  21321. wingFeather: {
  21322. height: math.unit(9.662, "feet"),
  21323. name: "Wing Feather",
  21324. image: {
  21325. source: "./media/characters/alydar/wing-feather.svg"
  21326. }
  21327. },
  21328. countourFeather: {
  21329. height: math.unit(4.154, "feet"),
  21330. name: "Contour Feather",
  21331. image: {
  21332. source: "./media/characters/alydar/contour-feather.svg"
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Diplomatic",
  21339. height: math.unit(13, "feet"),
  21340. default: true
  21341. },
  21342. {
  21343. name: "Small",
  21344. height: math.unit(30, "feet")
  21345. },
  21346. {
  21347. name: "Normal",
  21348. height: math.unit(95, "feet"),
  21349. default: true
  21350. },
  21351. {
  21352. name: "Large",
  21353. height: math.unit(285, "feet")
  21354. },
  21355. {
  21356. name: "Incomprehensible",
  21357. height: math.unit(450, "megameters")
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Selicia" },
  21363. {
  21364. side: {
  21365. height: math.unit(11, "feet"),
  21366. weight: math.unit(1750, "kg"),
  21367. name: "Side",
  21368. image: {
  21369. source: "./media/characters/selicia/side.svg",
  21370. extra: 440/396,
  21371. bottom: 24.8/465.979
  21372. }
  21373. },
  21374. maw: {
  21375. height: math.unit(4.665, "feet"),
  21376. name: "Maw",
  21377. image: {
  21378. source: "./media/characters/selicia/maw.svg"
  21379. }
  21380. },
  21381. },
  21382. [
  21383. {
  21384. name: "Normal",
  21385. height: math.unit(11, "feet"),
  21386. default: true
  21387. },
  21388. ]
  21389. ))
  21390. characterMakers.push(() => makeCharacter(
  21391. { name: "Layla" },
  21392. {
  21393. side: {
  21394. height: math.unit(2 + 6 /12, "feet"),
  21395. weight: math.unit(30, "lb"),
  21396. name: "Side",
  21397. image: {
  21398. source: "./media/characters/layla/side.svg",
  21399. extra: 244/188,
  21400. bottom: 18.2/262.1
  21401. }
  21402. },
  21403. back: {
  21404. height: math.unit(2 + 6 /12, "feet"),
  21405. weight: math.unit(30, "lb"),
  21406. name: "Back",
  21407. image: {
  21408. source: "./media/characters/layla/back.svg",
  21409. extra: 308/241.5,
  21410. bottom: 8.9/316.8
  21411. }
  21412. },
  21413. cumming: {
  21414. height: math.unit(2 + 6 /12, "feet"),
  21415. weight: math.unit(30, "lb"),
  21416. name: "Cumming",
  21417. image: {
  21418. source: "./media/characters/layla/cumming.svg",
  21419. extra: 342/279,
  21420. bottom: 595/938
  21421. }
  21422. },
  21423. dickFlaccid: {
  21424. height: math.unit(2.595, "feet"),
  21425. name: "Flaccid Genitals",
  21426. image: {
  21427. source: "./media/characters/layla/dick-flaccid.svg"
  21428. }
  21429. },
  21430. dickErect: {
  21431. height: math.unit(2.359, "feet"),
  21432. name: "Erect Genitals",
  21433. image: {
  21434. source: "./media/characters/layla/dick-erect.svg"
  21435. }
  21436. },
  21437. },
  21438. [
  21439. {
  21440. name: "Micro",
  21441. height: math.unit(1, "inch")
  21442. },
  21443. {
  21444. name: "Small",
  21445. height: math.unit(1, "foot")
  21446. },
  21447. {
  21448. name: "Normal",
  21449. height: math.unit(2 + 6/12, "feet"),
  21450. default: true
  21451. },
  21452. {
  21453. name: "Macro",
  21454. height: math.unit(200, "feet")
  21455. },
  21456. {
  21457. name: "Megamacro",
  21458. height: math.unit(1000, "miles")
  21459. },
  21460. {
  21461. name: "Planetary",
  21462. height: math.unit(8000, "miles")
  21463. },
  21464. {
  21465. name: "True Layla",
  21466. height: math.unit(200000*7, "multiverses")
  21467. },
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Knox" },
  21472. {
  21473. back: {
  21474. height: math.unit(10.5, "feet"),
  21475. weight: math.unit(800, "lb"),
  21476. name: "Back",
  21477. image: {
  21478. source: "./media/characters/knox/back.svg",
  21479. extra: 1486/1089,
  21480. bottom: 107/1601.4
  21481. }
  21482. },
  21483. side: {
  21484. height: math.unit(10.5, "feet"),
  21485. weight: math.unit(800, "lb"),
  21486. name: "Side",
  21487. image: {
  21488. source: "./media/characters/knox/side.svg",
  21489. extra: 244/218,
  21490. bottom: 14/260
  21491. }
  21492. },
  21493. },
  21494. [
  21495. {
  21496. name: "Compact",
  21497. height: math.unit(10.5, "feet"),
  21498. default: true
  21499. },
  21500. {
  21501. name: "Dynamax",
  21502. height: math.unit(210, "feet")
  21503. },
  21504. {
  21505. name: "Full Macro",
  21506. height: math.unit(850, "feet")
  21507. },
  21508. ]
  21509. ))
  21510. characterMakers.push(() => makeCharacter(
  21511. { name: "Shin (Pikachu)" },
  21512. {
  21513. front: {
  21514. height: math.unit(6, "feet"),
  21515. weight: math.unit(152, "lb"),
  21516. name: "Front",
  21517. image: {
  21518. source: "./media/characters/shin-pikachu/front.svg",
  21519. extra: 1574/1480,
  21520. bottom: 53.3/1626
  21521. }
  21522. },
  21523. hand: {
  21524. height: math.unit(1.055, "feet"),
  21525. name: "Hand",
  21526. image: {
  21527. source: "./media/characters/shin-pikachu/hand.svg"
  21528. }
  21529. },
  21530. foot: {
  21531. height: math.unit(1.1, "feet"),
  21532. name: "Foot",
  21533. image: {
  21534. source: "./media/characters/shin-pikachu/foot.svg"
  21535. }
  21536. },
  21537. collar: {
  21538. height: math.unit(0.386, "feet"),
  21539. name: "Collar",
  21540. image: {
  21541. source: "./media/characters/shin-pikachu/collar.svg"
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Smallest",
  21548. height: math.unit(0.5, "inches")
  21549. },
  21550. {
  21551. name: "Micro",
  21552. height: math.unit(6, "inches")
  21553. },
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(6, "feet"),
  21557. default: true
  21558. },
  21559. {
  21560. name: "Macro",
  21561. height: math.unit(150, "feet")
  21562. },
  21563. ]
  21564. ))
  21565. characterMakers.push(() => makeCharacter(
  21566. { name: "Kayda" },
  21567. {
  21568. front: {
  21569. height: math.unit(28, "feet"),
  21570. weight: math.unit(10500, "lb"),
  21571. name: "Front",
  21572. image: {
  21573. source: "./media/characters/kayda/front.svg",
  21574. extra: 1536/1428,
  21575. bottom: 68.7/1603
  21576. }
  21577. },
  21578. back: {
  21579. height: math.unit(28, "feet"),
  21580. weight: math.unit(10500, "lb"),
  21581. name: "Back",
  21582. image: {
  21583. source: "./media/characters/kayda/back.svg",
  21584. extra: 1557/1464,
  21585. bottom: 39.5/1597.49
  21586. }
  21587. },
  21588. dick: {
  21589. height: math.unit(3.858, "feet"),
  21590. name: "Dick",
  21591. image: {
  21592. source: "./media/characters/kayda/dick.svg"
  21593. }
  21594. },
  21595. },
  21596. [
  21597. {
  21598. name: "Macro",
  21599. height: math.unit(28, "feet"),
  21600. default: true
  21601. },
  21602. ]
  21603. ))
  21604. characterMakers.push(() => makeCharacter(
  21605. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  21606. {
  21607. front: {
  21608. height: math.unit(10 + 11/12, "feet"),
  21609. weight: math.unit(1400, "lb"),
  21610. name: "Front",
  21611. image: {
  21612. source: "./media/characters/brian/front.svg",
  21613. extra: 737/692,
  21614. bottom: 55.4/785
  21615. }
  21616. },
  21617. },
  21618. [
  21619. {
  21620. name: "Normal",
  21621. height: math.unit(10 + 11/12, "feet"),
  21622. default: true
  21623. },
  21624. ]
  21625. ))
  21626. characterMakers.push(() => makeCharacter(
  21627. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  21628. {
  21629. front: {
  21630. height: math.unit(5 + 8/12, "feet"),
  21631. weight: math.unit(140, "lb"),
  21632. name: "Front",
  21633. image: {
  21634. source: "./media/characters/khemri/front.svg",
  21635. extra: 4780/4059,
  21636. bottom: 80.1/4859.25
  21637. }
  21638. },
  21639. },
  21640. [
  21641. {
  21642. name: "Micro",
  21643. height: math.unit(6, "inches")
  21644. },
  21645. {
  21646. name: "Normal",
  21647. height: math.unit(5 + 8/12, "feet"),
  21648. default: true
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Felix Braveheart" },
  21654. {
  21655. front: {
  21656. height: math.unit(13, "feet"),
  21657. weight: math.unit(1700, "lb"),
  21658. name: "Front",
  21659. image: {
  21660. source: "./media/characters/felix-braveheart/front.svg",
  21661. extra: 1222/1157,
  21662. bottom: 53.2/1280
  21663. }
  21664. },
  21665. back: {
  21666. height: math.unit(13, "feet"),
  21667. weight: math.unit(1700, "lb"),
  21668. name: "Back",
  21669. image: {
  21670. source: "./media/characters/felix-braveheart/back.svg",
  21671. extra: 1277/1203,
  21672. bottom: 50.2/1327
  21673. }
  21674. },
  21675. feral: {
  21676. height: math.unit(6, "feet"),
  21677. weight: math.unit(400, "lb"),
  21678. name: "Feral",
  21679. image: {
  21680. source: "./media/characters/felix-braveheart/feral.svg",
  21681. extra: 682/625,
  21682. bottom: 6.9/688
  21683. }
  21684. },
  21685. },
  21686. [
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(13, "feet"),
  21690. default: true
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Shadow Blade" },
  21696. {
  21697. side: {
  21698. height: math.unit(5 + 11/12, "feet"),
  21699. weight: math.unit(1400, "lb"),
  21700. name: "Side",
  21701. image: {
  21702. source: "./media/characters/shadow-blade/side.svg",
  21703. extra: 1726/1267,
  21704. bottom: 58.4/1785
  21705. }
  21706. },
  21707. },
  21708. [
  21709. {
  21710. name: "Normal",
  21711. height: math.unit(5 + 11/12, "feet"),
  21712. default: true
  21713. },
  21714. ]
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Karla Halldor" },
  21718. {
  21719. front: {
  21720. height: math.unit(1 + 6/12, "feet"),
  21721. weight: math.unit(25, "lb"),
  21722. name: "Front",
  21723. image: {
  21724. source: "./media/characters/karla-halldor/front.svg",
  21725. extra: 1459/1383,
  21726. bottom: 12/1472
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Normal",
  21733. height: math.unit(1 + 6/12, "feet"),
  21734. default: true
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Ariam" },
  21740. {
  21741. front: {
  21742. height: math.unit(6 + 2/12, "feet"),
  21743. weight: math.unit(160, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/ariam/front.svg",
  21747. extra: 714/617,
  21748. bottom: 23.4/737,
  21749. }
  21750. },
  21751. squatting: {
  21752. height: math.unit(4.1, "feet"),
  21753. weight: math.unit(160, "lb"),
  21754. name: "Squatting",
  21755. image: {
  21756. source: "./media/characters/ariam/squatting.svg",
  21757. extra: 2617/2112,
  21758. bottom: 61.2/2681,
  21759. }
  21760. },
  21761. },
  21762. [
  21763. {
  21764. name: "Normal",
  21765. height: math.unit(6 + 2/12, "feet"),
  21766. default: true
  21767. },
  21768. {
  21769. name: "Normal+",
  21770. height: math.unit(4, "meters")
  21771. },
  21772. {
  21773. name: "Macro",
  21774. height: math.unit(50, "meters")
  21775. },
  21776. {
  21777. name: "Macro+",
  21778. height: math.unit(100, "meters")
  21779. },
  21780. {
  21781. name: "Megamacro",
  21782. height: math.unit(20, "km")
  21783. },
  21784. ]
  21785. ))
  21786. characterMakers.push(() => makeCharacter(
  21787. { name: "Qodri Class-of-'Fortwelve-Six" },
  21788. {
  21789. front: {
  21790. height: math.unit(1.67, "meters"),
  21791. weight: math.unit(140, "lb"),
  21792. name: "Front",
  21793. image: {
  21794. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21795. extra: 438/410,
  21796. bottom: 0.75/439
  21797. }
  21798. },
  21799. },
  21800. [
  21801. {
  21802. name: "Shrunken",
  21803. height: math.unit(7.6, "cm")
  21804. },
  21805. {
  21806. name: "Human Scale",
  21807. height: math.unit(1.67, "meters")
  21808. },
  21809. {
  21810. name: "Wolxi Scale",
  21811. height: math.unit(36.7, "meters"),
  21812. default: true
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Izue Two-Mothers" },
  21818. {
  21819. front: {
  21820. height: math.unit(1.73, "meters"),
  21821. weight: math.unit(240, "lb"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/izue-two-mothers/front.svg",
  21825. extra: 469/437,
  21826. bottom: 1.24/470.6
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Shrunken",
  21833. height: math.unit(7.86, "cm")
  21834. },
  21835. {
  21836. name: "Human Scale",
  21837. height: math.unit(1.73, "meters")
  21838. },
  21839. {
  21840. name: "Wolxi Scale",
  21841. height: math.unit(38, "meters"),
  21842. default: true
  21843. },
  21844. ]
  21845. ))
  21846. characterMakers.push(() => makeCharacter(
  21847. { name: "Teeku Love-Shack" },
  21848. {
  21849. front: {
  21850. height: math.unit(1.55, "meters"),
  21851. weight: math.unit(120, "lb"),
  21852. name: "Front",
  21853. image: {
  21854. source: "./media/characters/teeku-love-shack/front.svg",
  21855. extra: 387/362,
  21856. bottom: 1.51/388
  21857. }
  21858. },
  21859. },
  21860. [
  21861. {
  21862. name: "Shrunken",
  21863. height: math.unit(7, "cm")
  21864. },
  21865. {
  21866. name: "Human Scale",
  21867. height: math.unit(1.55, "meters")
  21868. },
  21869. {
  21870. name: "Wolxi Scale",
  21871. height: math.unit(34.1, "meters"),
  21872. default: true
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Dejma the Red" },
  21878. {
  21879. front: {
  21880. height: math.unit(1.83, "meters"),
  21881. weight: math.unit(135, "lb"),
  21882. name: "Front",
  21883. image: {
  21884. source: "./media/characters/dejma-the-red/front.svg",
  21885. extra: 480/458,
  21886. bottom: 1.8/482
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Shrunken",
  21893. height: math.unit(8.3, "cm")
  21894. },
  21895. {
  21896. name: "Human Scale",
  21897. height: math.unit(1.83, "meters")
  21898. },
  21899. {
  21900. name: "Wolxi Scale",
  21901. height: math.unit(40, "meters"),
  21902. default: true
  21903. },
  21904. ]
  21905. ))
  21906. characterMakers.push(() => makeCharacter(
  21907. { name: "Aki" },
  21908. {
  21909. front: {
  21910. height: math.unit(1.78, "meters"),
  21911. weight: math.unit(65, "kg"),
  21912. name: "Front",
  21913. image: {
  21914. source: "./media/characters/aki/front.svg",
  21915. extra: 452/415
  21916. }
  21917. },
  21918. frontNsfw: {
  21919. height: math.unit(1.78, "meters"),
  21920. weight: math.unit(65, "kg"),
  21921. name: "Front (NSFW)",
  21922. image: {
  21923. source: "./media/characters/aki/front-nsfw.svg",
  21924. extra: 452/415
  21925. }
  21926. },
  21927. back: {
  21928. height: math.unit(1.78, "meters"),
  21929. weight: math.unit(65, "kg"),
  21930. name: "Back",
  21931. image: {
  21932. source: "./media/characters/aki/back.svg",
  21933. extra: 452/415
  21934. }
  21935. },
  21936. rump: {
  21937. height: math.unit(2.05, "feet"),
  21938. name: "Rump",
  21939. image: {
  21940. source: "./media/characters/aki/rump.svg"
  21941. }
  21942. },
  21943. dick: {
  21944. height: math.unit(0.95, "feet"),
  21945. name: "Dick",
  21946. image: {
  21947. source: "./media/characters/aki/dick.svg"
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Micro",
  21954. height: math.unit(15, "cm")
  21955. },
  21956. {
  21957. name: "Normal",
  21958. height: math.unit(178, "cm"),
  21959. default: true
  21960. },
  21961. {
  21962. name: "Macro",
  21963. height: math.unit(214, "m")
  21964. },
  21965. {
  21966. name: "Macro+",
  21967. height: math.unit(534, "m")
  21968. },
  21969. ]
  21970. ))
  21971. characterMakers.push(() => makeCharacter(
  21972. { name: "Ari" },
  21973. {
  21974. front: {
  21975. height: math.unit(5 + 5/12, "feet"),
  21976. weight: math.unit(120, "lb"),
  21977. name: "Front",
  21978. image: {
  21979. source: "./media/characters/ari/front.svg",
  21980. extra: 714.5/682,
  21981. bottom: 8/722.5
  21982. }
  21983. },
  21984. },
  21985. [
  21986. {
  21987. name: "Normal",
  21988. height: math.unit(5 + 5/12, "feet")
  21989. },
  21990. {
  21991. name: "Macro",
  21992. height: math.unit(100, "feet"),
  21993. default: true
  21994. },
  21995. {
  21996. name: "Megamacro",
  21997. height: math.unit(100, "miles")
  21998. },
  21999. {
  22000. name: "Gigamacro",
  22001. height: math.unit(80000, "miles")
  22002. },
  22003. ]
  22004. ))
  22005. characterMakers.push(() => makeCharacter(
  22006. { name: "Bolt" },
  22007. {
  22008. side: {
  22009. height: math.unit(9, "feet"),
  22010. weight: math.unit(400, "kg"),
  22011. name: "Side",
  22012. image: {
  22013. source: "./media/characters/bolt/side.svg",
  22014. extra: 1126/896,
  22015. bottom: 60/1187.3,
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Micro",
  22022. height: math.unit(5, "inches")
  22023. },
  22024. {
  22025. name: "Normal",
  22026. height: math.unit(9, "feet"),
  22027. default: true
  22028. },
  22029. {
  22030. name: "Macro",
  22031. height: math.unit(700, "feet")
  22032. },
  22033. {
  22034. name: "Max Size",
  22035. height: math.unit(1.52e22, "yottameters")
  22036. },
  22037. ]
  22038. ))
  22039. characterMakers.push(() => makeCharacter(
  22040. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22041. {
  22042. front: {
  22043. height: math.unit(4.53, "meters"),
  22044. weight: math.unit(3, "tons"),
  22045. name: "Front",
  22046. image: {
  22047. source: "./media/characters/draekon-sylviar/front.svg",
  22048. extra: 1228/1068,
  22049. bottom: 41/1270
  22050. }
  22051. },
  22052. tail: {
  22053. height: math.unit(1.772, "meter"),
  22054. name: "Tail",
  22055. image: {
  22056. source: "./media/characters/draekon-sylviar/tail.svg"
  22057. }
  22058. },
  22059. head: {
  22060. height: math.unit(1.331, "meter"),
  22061. name: "Head",
  22062. image: {
  22063. source: "./media/characters/draekon-sylviar/head.svg"
  22064. }
  22065. },
  22066. hand: {
  22067. height: math.unit(0.564, "meter"),
  22068. name: "Hand",
  22069. image: {
  22070. source: "./media/characters/draekon-sylviar/hand.svg"
  22071. }
  22072. },
  22073. foot: {
  22074. height: math.unit(0.621, "meter"),
  22075. name: "Foot",
  22076. image: {
  22077. source: "./media/characters/draekon-sylviar/foot.svg",
  22078. bottom: 32/324
  22079. }
  22080. },
  22081. dick: {
  22082. height: math.unit(61, "cm"),
  22083. name: "Dick",
  22084. image: {
  22085. source: "./media/characters/draekon-sylviar/dick.svg"
  22086. }
  22087. },
  22088. dickseparated: {
  22089. height: math.unit(61, "cm"),
  22090. name: "Dick-separated",
  22091. image: {
  22092. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22093. }
  22094. },
  22095. },
  22096. [
  22097. {
  22098. name: "Small",
  22099. height: math.unit(4.53/2, "meters"),
  22100. default: true
  22101. },
  22102. {
  22103. name: "Normal",
  22104. height: math.unit(4.53, "meters"),
  22105. default: true
  22106. },
  22107. {
  22108. name: "Large",
  22109. height: math.unit(4.53*2, "meters"),
  22110. },
  22111. ]
  22112. ))
  22113. characterMakers.push(() => makeCharacter(
  22114. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22115. {
  22116. front: {
  22117. height: math.unit(6 + 2/12, "feet"),
  22118. weight: math.unit(180, "lb"),
  22119. name: "Front",
  22120. image: {
  22121. source: "./media/characters/brawler/front.svg",
  22122. extra: 3301/3027,
  22123. bottom: 138/3439
  22124. }
  22125. },
  22126. },
  22127. [
  22128. {
  22129. name: "Normal",
  22130. height: math.unit(6 + 2/12, "feet"),
  22131. default: true
  22132. },
  22133. ]
  22134. ))
  22135. characterMakers.push(() => makeCharacter(
  22136. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22137. {
  22138. front: {
  22139. height: math.unit(11, "feet"),
  22140. weight: math.unit(1000, "lb"),
  22141. name: "Front",
  22142. image: {
  22143. source: "./media/characters/alex/front.svg",
  22144. bottom: 44.5/620
  22145. }
  22146. },
  22147. },
  22148. [
  22149. {
  22150. name: "Micro",
  22151. height: math.unit(5, "inches")
  22152. },
  22153. {
  22154. name: "Normal",
  22155. height: math.unit(11, "feet"),
  22156. default: true
  22157. },
  22158. {
  22159. name: "Macro",
  22160. height: math.unit(9.5e9, "feet")
  22161. },
  22162. {
  22163. name: "Max Size",
  22164. height: math.unit(1.4e283, "yottameters")
  22165. },
  22166. ]
  22167. ))
  22168. characterMakers.push(() => makeCharacter(
  22169. { name: "Zenari" },
  22170. {
  22171. female: {
  22172. height: math.unit(29.9, "m"),
  22173. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  22174. name: "Female",
  22175. image: {
  22176. source: "./media/characters/zenari/female.svg",
  22177. extra: 3281.6/3217,
  22178. bottom: 72.2/3353
  22179. }
  22180. },
  22181. male: {
  22182. height: math.unit(27.7, "m"),
  22183. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  22184. name: "Male",
  22185. image: {
  22186. source: "./media/characters/zenari/male.svg",
  22187. extra: 3008/2991,
  22188. bottom: 54.6/3069
  22189. }
  22190. },
  22191. },
  22192. [
  22193. {
  22194. name: "Macro",
  22195. height: math.unit(29.7, "meters"),
  22196. default: true
  22197. },
  22198. ]
  22199. ))
  22200. characterMakers.push(() => makeCharacter(
  22201. { name: "Mactarian" },
  22202. {
  22203. female: {
  22204. height: math.unit(23.8, "m"),
  22205. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22206. name: "Female",
  22207. image: {
  22208. source: "./media/characters/mactarian/female.svg",
  22209. extra: 2662/2569,
  22210. bottom: 73/2736
  22211. }
  22212. },
  22213. male: {
  22214. height: math.unit(23.8, "m"),
  22215. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22216. name: "Male",
  22217. image: {
  22218. source: "./media/characters/mactarian/male.svg",
  22219. extra: 2673/2600,
  22220. bottom: 76/2750
  22221. }
  22222. },
  22223. },
  22224. [
  22225. {
  22226. name: "Macro",
  22227. height: math.unit(23.8, "meters"),
  22228. default: true
  22229. },
  22230. ]
  22231. ))
  22232. characterMakers.push(() => makeCharacter(
  22233. { name: "Umok" },
  22234. {
  22235. female: {
  22236. height: math.unit(19.3, "m"),
  22237. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  22238. name: "Female",
  22239. image: {
  22240. source: "./media/characters/umok/female.svg",
  22241. extra: 2186/2078,
  22242. bottom: 87/2277
  22243. }
  22244. },
  22245. male: {
  22246. height: math.unit(19.5, "m"),
  22247. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  22248. name: "Male",
  22249. image: {
  22250. source: "./media/characters/umok/male.svg",
  22251. extra: 2233/2140,
  22252. bottom: 24.4/2258
  22253. }
  22254. },
  22255. },
  22256. [
  22257. {
  22258. name: "Macro",
  22259. height: math.unit(19.3, "meters"),
  22260. default: true
  22261. },
  22262. ]
  22263. ))
  22264. characterMakers.push(() => makeCharacter(
  22265. { name: "Joraxian" },
  22266. {
  22267. female: {
  22268. height: math.unit(26.15, "m"),
  22269. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  22270. name: "Female",
  22271. image: {
  22272. source: "./media/characters/joraxian/female.svg",
  22273. extra: 2943/2831,
  22274. bottom: 27/2972
  22275. }
  22276. },
  22277. male: {
  22278. height: math.unit(25.4, "m"),
  22279. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  22280. name: "Male",
  22281. image: {
  22282. source: "./media/characters/joraxian/male.svg",
  22283. extra: 2835/2741,
  22284. bottom: 27/2862
  22285. }
  22286. },
  22287. },
  22288. [
  22289. {
  22290. name: "Macro",
  22291. height: math.unit(26.15, "meters"),
  22292. default: true
  22293. },
  22294. ]
  22295. ))
  22296. characterMakers.push(() => makeCharacter(
  22297. { name: "Sthara" },
  22298. {
  22299. female: {
  22300. height: math.unit(21.6, "m"),
  22301. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  22302. name: "Female",
  22303. image: {
  22304. source: "./media/characters/sthara/female.svg",
  22305. extra: 2516/2347,
  22306. bottom: 21.5/2537
  22307. }
  22308. },
  22309. male: {
  22310. height: math.unit(24, "m"),
  22311. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  22312. name: "Male",
  22313. image: {
  22314. source: "./media/characters/sthara/male.svg",
  22315. extra: 2732/2607,
  22316. bottom: 23/2732
  22317. }
  22318. },
  22319. },
  22320. [
  22321. {
  22322. name: "Macro",
  22323. height: math.unit(21.6, "meters"),
  22324. default: true
  22325. },
  22326. ]
  22327. ))
  22328. characterMakers.push(() => makeCharacter(
  22329. { name: "Luka Bryzant" },
  22330. {
  22331. front: {
  22332. height: math.unit(6 + 4/12, "feet"),
  22333. weight: math.unit(175, "lb"),
  22334. name: "Front",
  22335. image: {
  22336. source: "./media/characters/luka-bryzant/front.svg",
  22337. extra: 311/289,
  22338. bottom: 4/315
  22339. }
  22340. },
  22341. back: {
  22342. height: math.unit(6 + 4/12, "feet"),
  22343. weight: math.unit(175, "lb"),
  22344. name: "Back",
  22345. image: {
  22346. source: "./media/characters/luka-bryzant/back.svg",
  22347. extra: 311/289,
  22348. bottom: 3.8/313.7
  22349. }
  22350. },
  22351. },
  22352. [
  22353. {
  22354. name: "Micro",
  22355. height: math.unit(10, "inches")
  22356. },
  22357. {
  22358. name: "Normal",
  22359. height: math.unit(6 + 4/12, "feet"),
  22360. default: true
  22361. },
  22362. {
  22363. name: "Large",
  22364. height: math.unit(12, "feet")
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Aman Aquila" },
  22370. {
  22371. front: {
  22372. height: math.unit(5 + 7/12, "feet"),
  22373. weight: math.unit(185, "lb"),
  22374. name: "Front",
  22375. image: {
  22376. source: "./media/characters/aman-aquila/front.svg",
  22377. extra: 1013/976,
  22378. bottom: 45.6/1057
  22379. }
  22380. },
  22381. side: {
  22382. height: math.unit(5 + 7/12, "feet"),
  22383. weight: math.unit(185, "lb"),
  22384. name: "Side",
  22385. image: {
  22386. source: "./media/characters/aman-aquila/side.svg",
  22387. extra: 1054/1011,
  22388. bottom: 15/1070
  22389. }
  22390. },
  22391. back: {
  22392. height: math.unit(5 + 7/12, "feet"),
  22393. weight: math.unit(185, "lb"),
  22394. name: "Back",
  22395. image: {
  22396. source: "./media/characters/aman-aquila/back.svg",
  22397. extra: 1026/970,
  22398. bottom: 12/1039
  22399. }
  22400. },
  22401. head: {
  22402. height: math.unit(1.211, "feet"),
  22403. name: "Head",
  22404. image: {
  22405. source: "./media/characters/aman-aquila/head.svg",
  22406. }
  22407. },
  22408. },
  22409. [
  22410. {
  22411. name: "Minimicro",
  22412. height: math.unit(0.057, "inches")
  22413. },
  22414. {
  22415. name: "Micro",
  22416. height: math.unit(7, "inches")
  22417. },
  22418. {
  22419. name: "Mini",
  22420. height: math.unit(3 + 7/12, "feet")
  22421. },
  22422. {
  22423. name: "Normal",
  22424. height: math.unit(5 + 7/12, "feet"),
  22425. default: true
  22426. },
  22427. {
  22428. name: "Macro",
  22429. height: math.unit(157 + 7/12, "feet")
  22430. },
  22431. {
  22432. name: "Megamacro",
  22433. height: math.unit(1557 + 7/12, "feet")
  22434. },
  22435. {
  22436. name: "Gigamacro",
  22437. height: math.unit(15557 + 7/12, "feet")
  22438. },
  22439. ]
  22440. ))
  22441. characterMakers.push(() => makeCharacter(
  22442. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  22443. {
  22444. front: {
  22445. height: math.unit(3 + 2/12, "inches"),
  22446. weight: math.unit(0.3, "ounces"),
  22447. name: "Front",
  22448. image: {
  22449. source: "./media/characters/hiphae/front.svg",
  22450. extra: 1931/1683,
  22451. bottom: 24/1955
  22452. }
  22453. },
  22454. },
  22455. [
  22456. {
  22457. name: "Normal",
  22458. height: math.unit(3 + 1/2, "inches"),
  22459. default: true
  22460. },
  22461. ]
  22462. ))
  22463. characterMakers.push(() => makeCharacter(
  22464. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  22465. {
  22466. front: {
  22467. height: math.unit(5 + 10/12, "feet"),
  22468. weight: math.unit(165, "lb"),
  22469. name: "Front",
  22470. image: {
  22471. source: "./media/characters/nicky/front.svg",
  22472. extra: 3144/2886,
  22473. bottom: 45.6/3192
  22474. }
  22475. },
  22476. back: {
  22477. height: math.unit(5 + 10/12, "feet"),
  22478. weight: math.unit(165, "lb"),
  22479. name: "Back",
  22480. image: {
  22481. source: "./media/characters/nicky/back.svg",
  22482. extra: 3055/2804,
  22483. bottom: 28.4/3087
  22484. }
  22485. },
  22486. frontclothed: {
  22487. height: math.unit(5 + 10/12, "feet"),
  22488. weight: math.unit(165, "lb"),
  22489. name: "Front-clothed",
  22490. image: {
  22491. source: "./media/characters/nicky/front-clothed.svg",
  22492. extra: 3184.9/2926.9,
  22493. bottom: 86.5/3239.9
  22494. }
  22495. },
  22496. foot: {
  22497. height: math.unit(1.16, "feet"),
  22498. name: "Foot",
  22499. image: {
  22500. source: "./media/characters/nicky/foot.svg"
  22501. }
  22502. },
  22503. feet: {
  22504. height: math.unit(1.34, "feet"),
  22505. name: "Feet",
  22506. image: {
  22507. source: "./media/characters/nicky/feet.svg"
  22508. }
  22509. },
  22510. maw: {
  22511. height: math.unit(0.9, "feet"),
  22512. name: "Maw",
  22513. image: {
  22514. source: "./media/characters/nicky/maw.svg"
  22515. }
  22516. },
  22517. },
  22518. [
  22519. {
  22520. name: "Normal",
  22521. height: math.unit(5 + 10/12, "feet"),
  22522. default: true
  22523. },
  22524. {
  22525. name: "Macro",
  22526. height: math.unit(60, "feet")
  22527. },
  22528. {
  22529. name: "Megamacro",
  22530. height: math.unit(1, "mile")
  22531. },
  22532. ]
  22533. ))
  22534. characterMakers.push(() => makeCharacter(
  22535. { name: "Blair" },
  22536. {
  22537. side: {
  22538. height: math.unit(10, "feet"),
  22539. weight: math.unit(600, "lb"),
  22540. name: "Side",
  22541. image: {
  22542. source: "./media/characters/blair/side.svg",
  22543. bottom: 16.6/475,
  22544. extra: 458/431
  22545. }
  22546. },
  22547. },
  22548. [
  22549. {
  22550. name: "Micro",
  22551. height: math.unit(8, "inches")
  22552. },
  22553. {
  22554. name: "Normal",
  22555. height: math.unit(10, "feet"),
  22556. default: true
  22557. },
  22558. {
  22559. name: "Macro",
  22560. height: math.unit(180, "feet")
  22561. },
  22562. ]
  22563. ))
  22564. characterMakers.push(() => makeCharacter(
  22565. { name: "Fisher" },
  22566. {
  22567. front: {
  22568. height: math.unit(5 + 4/12, "feet"),
  22569. weight: math.unit(125, "lb"),
  22570. name: "Front",
  22571. image: {
  22572. source: "./media/characters/fisher/front.svg",
  22573. extra: 444/390,
  22574. bottom: 2/444.8
  22575. }
  22576. },
  22577. },
  22578. [
  22579. {
  22580. name: "Micro",
  22581. height: math.unit(4, "inches")
  22582. },
  22583. {
  22584. name: "Normal",
  22585. height: math.unit(5 + 4/12, "feet"),
  22586. default: true
  22587. },
  22588. {
  22589. name: "Macro",
  22590. height: math.unit(100, "feet")
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Gliss" },
  22596. {
  22597. front: {
  22598. height: math.unit(6.71, "feet"),
  22599. weight: math.unit(200, "lb"),
  22600. capacity: math.unit(1000000, "people"),
  22601. name: "Front",
  22602. image: {
  22603. source: "./media/characters/gliss/front.svg",
  22604. extra: 2347/2231,
  22605. bottom: 113/2462
  22606. }
  22607. },
  22608. hammerspaceSize: {
  22609. height: math.unit(6.71*717, "feet"),
  22610. weight: math.unit(200, "lb"),
  22611. capacity: math.unit(1000000, "people"),
  22612. name: "Hammerspace Size",
  22613. image: {
  22614. source: "./media/characters/gliss/front.svg",
  22615. extra: 2347/2231,
  22616. bottom: 113/2462
  22617. }
  22618. },
  22619. },
  22620. [
  22621. {
  22622. name: "Normal",
  22623. height: math.unit(6.71, "feet"),
  22624. default: true
  22625. },
  22626. ]
  22627. ))
  22628. characterMakers.push(() => makeCharacter(
  22629. { name: "Dune Anderson" },
  22630. {
  22631. side: {
  22632. height: math.unit(1.44, "m"),
  22633. weight: math.unit(80, "kg"),
  22634. name: "Side",
  22635. image: {
  22636. source: "./media/characters/dune-anderson/side.svg",
  22637. bottom: 49/1426
  22638. }
  22639. },
  22640. },
  22641. [
  22642. {
  22643. name: "Wolf-sized",
  22644. height: math.unit(1.44, "meters")
  22645. },
  22646. {
  22647. name: "Normal",
  22648. height: math.unit(5.05, "meters"),
  22649. default: true
  22650. },
  22651. {
  22652. name: "Big",
  22653. height: math.unit(14.4, "meters")
  22654. },
  22655. {
  22656. name: "Huge",
  22657. height: math.unit(144, "meters")
  22658. },
  22659. ]
  22660. ))
  22661. characterMakers.push(() => makeCharacter(
  22662. { name: "Hind" },
  22663. {
  22664. front: {
  22665. height: math.unit(7, "feet"),
  22666. weight: math.unit(425, "lb"),
  22667. name: "Front",
  22668. image: {
  22669. source: "./media/characters/hind/front.svg",
  22670. extra: 2091/1860,
  22671. bottom: 129/2220
  22672. }
  22673. },
  22674. back: {
  22675. height: math.unit(7, "feet"),
  22676. weight: math.unit(425, "lb"),
  22677. name: "Back",
  22678. image: {
  22679. source: "./media/characters/hind/back.svg",
  22680. extra: 2091/1860,
  22681. bottom: 24.6/2309
  22682. }
  22683. },
  22684. tail: {
  22685. height: math.unit(2.8, "feet"),
  22686. name: "Tail",
  22687. image: {
  22688. source: "./media/characters/hind/tail.svg"
  22689. }
  22690. },
  22691. head: {
  22692. height: math.unit(2.55, "feet"),
  22693. name: "Head",
  22694. image: {
  22695. source: "./media/characters/hind/head.svg"
  22696. }
  22697. },
  22698. },
  22699. [
  22700. {
  22701. name: "XS",
  22702. height: math.unit(0.7, "feet")
  22703. },
  22704. {
  22705. name: "Normal",
  22706. height: math.unit(7, "feet"),
  22707. default: true
  22708. },
  22709. {
  22710. name: "XL",
  22711. height: math.unit(70, "feet")
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Dylan (Skaven)" },
  22717. {
  22718. front: {
  22719. height: math.unit(6, "feet"),
  22720. weight: math.unit(150, "lb"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/dylan-skaven/front.svg",
  22724. extra: 2318/2063,
  22725. bottom: 93.4/2410
  22726. }
  22727. },
  22728. },
  22729. [
  22730. {
  22731. name: "Nano",
  22732. height: math.unit(1, "mm")
  22733. },
  22734. {
  22735. name: "Micro",
  22736. height: math.unit(1, "cm")
  22737. },
  22738. {
  22739. name: "Normal",
  22740. height: math.unit(2.1, "meters"),
  22741. default: true
  22742. },
  22743. ]
  22744. ))
  22745. characterMakers.push(() => makeCharacter(
  22746. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  22747. {
  22748. front: {
  22749. height: math.unit(7 + 5/12, "feet"),
  22750. weight: math.unit(357, "lb"),
  22751. name: "Front",
  22752. image: {
  22753. source: "./media/characters/solex-draconov/front.svg",
  22754. extra: 1993/1865,
  22755. bottom: 117/2111
  22756. }
  22757. },
  22758. },
  22759. [
  22760. {
  22761. name: "Natural Height",
  22762. height: math.unit(7 + 5/12, "feet"),
  22763. default: true
  22764. },
  22765. {
  22766. name: "Macro",
  22767. height: math.unit(350, "feet")
  22768. },
  22769. {
  22770. name: "Macro+",
  22771. height: math.unit(1000, "feet")
  22772. },
  22773. {
  22774. name: "Megamacro",
  22775. height: math.unit(20, "km")
  22776. },
  22777. {
  22778. name: "Megamacro+",
  22779. height: math.unit(1000, "km")
  22780. },
  22781. {
  22782. name: "Gigamacro",
  22783. height: math.unit(2.5, "Gm")
  22784. },
  22785. {
  22786. name: "Teramacro",
  22787. height: math.unit(15, "Tm")
  22788. },
  22789. {
  22790. name: "Galactic",
  22791. height: math.unit(30, "Zm")
  22792. },
  22793. {
  22794. name: "Universal",
  22795. height: math.unit(21000, "Ym")
  22796. },
  22797. {
  22798. name: "Omniversal",
  22799. height: math.unit(9.861e50, "Ym")
  22800. },
  22801. {
  22802. name: "Existential",
  22803. height: math.unit(1e300, "meters")
  22804. },
  22805. ]
  22806. ))
  22807. characterMakers.push(() => makeCharacter(
  22808. { name: "Mandarax" },
  22809. {
  22810. side: {
  22811. height: math.unit(25, "feet"),
  22812. weight: math.unit(90000, "lb"),
  22813. name: "Side",
  22814. image: {
  22815. source: "./media/characters/mandarax/side.svg",
  22816. extra: 614/332,
  22817. bottom: 55/630
  22818. }
  22819. },
  22820. head: {
  22821. height: math.unit(11.4, "feet"),
  22822. name: "Head",
  22823. image: {
  22824. source: "./media/characters/mandarax/head.svg"
  22825. }
  22826. },
  22827. belly: {
  22828. height: math.unit(33, "feet"),
  22829. name: "Belly",
  22830. capacity: math.unit(500, "people"),
  22831. image: {
  22832. source: "./media/characters/mandarax/belly.svg"
  22833. }
  22834. },
  22835. dick: {
  22836. height: math.unit(8.46, "feet"),
  22837. name: "Dick",
  22838. image: {
  22839. source: "./media/characters/mandarax/dick.svg"
  22840. }
  22841. },
  22842. top: {
  22843. height: math.unit(28, "meters"),
  22844. name: "Top",
  22845. image: {
  22846. source: "./media/characters/mandarax/top.svg"
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Normal",
  22853. height: math.unit(25, "feet"),
  22854. default: true
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(5, "feet"),
  22863. weight: math.unit(90, "lb"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/pixil/front.svg",
  22867. extra: 2000/1618,
  22868. bottom: 12.3/2011
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Normal",
  22875. height: math.unit(5, "feet"),
  22876. default: true
  22877. },
  22878. {
  22879. name: "Megamacro",
  22880. height: math.unit(10, "miles"),
  22881. },
  22882. ]
  22883. ))
  22884. characterMakers.push(() => makeCharacter(
  22885. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  22886. {
  22887. front: {
  22888. height: math.unit(7 + 2/12, "feet"),
  22889. weight: math.unit(200, "lb"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/angel/front.svg",
  22893. extra: 1830/1737,
  22894. bottom: 22.6/1854,
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Normal",
  22901. height: math.unit(7 + 2/12, "feet"),
  22902. default: true
  22903. },
  22904. {
  22905. name: "Macro",
  22906. height: math.unit(1000, "feet")
  22907. },
  22908. {
  22909. name: "Megamacro",
  22910. height: math.unit(2, "miles")
  22911. },
  22912. {
  22913. name: "Gigamacro",
  22914. height: math.unit(20, "earths")
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(5, "feet"),
  22923. weight: math.unit(180, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/mekana/front.svg",
  22927. extra: 1671/1605,
  22928. bottom: 3.5/1691
  22929. }
  22930. },
  22931. side: {
  22932. height: math.unit(5, "feet"),
  22933. weight: math.unit(180, "lb"),
  22934. name: "Side",
  22935. image: {
  22936. source: "./media/characters/mekana/side.svg",
  22937. extra: 1671/1605,
  22938. bottom: 3.5/1691
  22939. }
  22940. },
  22941. back: {
  22942. height: math.unit(5, "feet"),
  22943. weight: math.unit(180, "lb"),
  22944. name: "Back",
  22945. image: {
  22946. source: "./media/characters/mekana/back.svg",
  22947. extra: 1671/1605,
  22948. bottom: 3.5/1691
  22949. }
  22950. },
  22951. },
  22952. [
  22953. {
  22954. name: "Normal",
  22955. height: math.unit(5, "feet"),
  22956. default: true
  22957. },
  22958. ]
  22959. ))
  22960. characterMakers.push(() => makeCharacter(
  22961. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  22962. {
  22963. front: {
  22964. height: math.unit(4 + 6/12, "feet"),
  22965. weight: math.unit(80, "lb"),
  22966. name: "Front",
  22967. image: {
  22968. source: "./media/characters/pixie/front.svg",
  22969. extra: 1924/1825,
  22970. bottom: 22.4/1946
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Normal",
  22977. height: math.unit(4 + 6/12, "feet"),
  22978. default: true
  22979. },
  22980. {
  22981. name: "Macro",
  22982. height: math.unit(40, "feet")
  22983. },
  22984. ]
  22985. ))
  22986. //characters
  22987. function makeCharacters() {
  22988. const results = [];
  22989. characterMakers.forEach(character => {
  22990. results.push(character());
  22991. });
  22992. return results;
  22993. }