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.
 
 
 

23710 lines
570 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: "Leaf-Nosed 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. "rodent"
  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. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. }
  560. function getSpeciesInfo(speciesList) {
  561. let result = new Set();
  562. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  563. result.add(entry)
  564. });
  565. return Array.from(result);
  566. };
  567. function getSpeciesInfoHelper(species) {
  568. if (!speciesData[species]) {
  569. console.warn(species + " doesn't exist");
  570. return [];
  571. }
  572. if (speciesData[species].parents) {
  573. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  574. } else {
  575. return [species];
  576. }
  577. }
  578. characterMakers.push(() => makeCharacter(
  579. {
  580. name: "Fen",
  581. species: ["crux"],
  582. description: {
  583. title: "Bio",
  584. text: "Very furry. Sheds on everything."
  585. },
  586. tags: [
  587. "anthro"
  588. ]
  589. },
  590. {
  591. back: {
  592. height: math.unit(2.2428, "meter"),
  593. weight: math.unit(124.738, "kg"),
  594. name: "Back",
  595. image: {
  596. source: "./media/characters/fen/back.svg",
  597. extra: 1025 / 935,
  598. bottom: 0.01
  599. },
  600. info: {
  601. description: {
  602. mode: "append",
  603. text: "\n\nHe is not currently looking at you."
  604. }
  605. }
  606. },
  607. full: {
  608. height: math.unit(1.34, "meter"),
  609. weight: math.unit(225, "kg"),
  610. name: "Full",
  611. image: {
  612. source: "./media/characters/fen/full.svg"
  613. },
  614. info: {
  615. description: {
  616. mode: "append",
  617. text: "\n\nMunch."
  618. }
  619. }
  620. },
  621. kneeling: {
  622. height: math.unit(5.4, "feet"),
  623. weight: math.unit(124.738, "kg"),
  624. name: "Kneeling",
  625. image: {
  626. source: "./media/characters/fen/kneeling.svg",
  627. extra: 563 / 507
  628. }
  629. },
  630. goo: {
  631. height: math.unit(2.8, "feet"),
  632. weight: math.unit(125, "kg"),
  633. capacity: math.unit(1, "people"),
  634. name: "Goo",
  635. image: {
  636. source: "./media/characters/fen/goo.svg",
  637. bottom: 116/613
  638. }
  639. },
  640. lounging: {
  641. height: math.unit(6.5, "feet"),
  642. weight: math.unit(125, "kg"),
  643. name: "Lounging",
  644. image: {
  645. source: "./media/characters/fen/lounging.svg"
  646. }
  647. },
  648. },
  649. [
  650. {
  651. name: "Normal",
  652. height: math.unit(2.2428, "meter")
  653. },
  654. {
  655. name: "Big",
  656. height: math.unit(12, "feet")
  657. },
  658. {
  659. name: "Minimacro",
  660. height: math.unit(40, "feet"),
  661. default: true,
  662. info: {
  663. description: {
  664. mode: "append",
  665. text: "\n\nTOO DAMN BIG"
  666. }
  667. }
  668. },
  669. {
  670. name: "Macro",
  671. height: math.unit(100, "feet"),
  672. info: {
  673. description: {
  674. mode: "append",
  675. text: "\n\nTOO DAMN BIG"
  676. }
  677. }
  678. },
  679. {
  680. name: "Macro+",
  681. height: math.unit(300, "feet")
  682. },
  683. {
  684. name: "Megamacro",
  685. height: math.unit(2, "miles")
  686. }
  687. ]
  688. ))
  689. characterMakers.push(() => makeCharacter(
  690. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  691. {
  692. front: {
  693. height: math.unit(183, "cm"),
  694. weight: math.unit(80, "kg"),
  695. name: "Front",
  696. image: {
  697. source: "./media/characters/sofia-fluttertail/front.svg",
  698. bottom: 0.01,
  699. extra: 2154 / 2081
  700. }
  701. },
  702. frontAlt: {
  703. height: math.unit(183, "cm"),
  704. weight: math.unit(80, "kg"),
  705. name: "Front (alt)",
  706. image: {
  707. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  708. }
  709. },
  710. back: {
  711. height: math.unit(183, "cm"),
  712. weight: math.unit(80, "kg"),
  713. name: "Back",
  714. image: {
  715. source: "./media/characters/sofia-fluttertail/back.svg"
  716. }
  717. },
  718. kneeling: {
  719. height: math.unit(125, "cm"),
  720. weight: math.unit(80, "kg"),
  721. name: "Kneeling",
  722. image: {
  723. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  724. extra: 1033/977,
  725. bottom: 23.7/1057
  726. }
  727. },
  728. maw: {
  729. height: math.unit(183 / 5, "cm"),
  730. name: "Maw",
  731. image: {
  732. source: "./media/characters/sofia-fluttertail/maw.svg"
  733. }
  734. },
  735. mawcloseup: {
  736. height: math.unit(183 / 5 * 0.41, "cm"),
  737. name: "Maw (Closeup)",
  738. image: {
  739. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  740. }
  741. },
  742. },
  743. [
  744. {
  745. name: "Normal",
  746. height: math.unit(1.83, "meter")
  747. },
  748. {
  749. name: "Size Thief",
  750. height: math.unit(18, "feet")
  751. },
  752. {
  753. name: "50 Foot Collie",
  754. height: math.unit(50, "feet")
  755. },
  756. {
  757. name: "Macro",
  758. height: math.unit(96, "feet"),
  759. default: true
  760. },
  761. {
  762. name: "Megamerger",
  763. height: math.unit(650, "feet")
  764. },
  765. ]
  766. ))
  767. characterMakers.push(() => makeCharacter(
  768. { name: "March", species: ["dragon"], tags: ["anthro"] },
  769. {
  770. front: {
  771. height: math.unit(7, "feet"),
  772. weight: math.unit(100, "kg"),
  773. name: "Front",
  774. image: {
  775. source: "./media/characters/march/front.svg",
  776. extra: 1,
  777. bottom: 0.015
  778. }
  779. },
  780. foot: {
  781. height: math.unit(0.9, "feet"),
  782. name: "Foot",
  783. image: {
  784. source: "./media/characters/march/foot.svg"
  785. }
  786. },
  787. },
  788. [
  789. {
  790. name: "Normal",
  791. height: math.unit(7.9, "feet")
  792. },
  793. {
  794. name: "Macro",
  795. height: math.unit(220, "meters")
  796. },
  797. {
  798. name: "Megamacro",
  799. height: math.unit(2.98, "km"),
  800. default: true
  801. },
  802. {
  803. name: "Gigamacro",
  804. height: math.unit(15963, "km")
  805. },
  806. {
  807. name: "Teramacro",
  808. height: math.unit(2980000000, "km")
  809. },
  810. {
  811. name: "Examacro",
  812. height: math.unit(250, "parsecs")
  813. },
  814. ]
  815. ))
  816. characterMakers.push(() => makeCharacter(
  817. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  818. {
  819. front: {
  820. height: math.unit(6, "feet"),
  821. weight: math.unit(60, "kg"),
  822. name: "Front",
  823. image: {
  824. source: "./media/characters/noir/front.svg",
  825. extra: 1,
  826. bottom: 0.032
  827. }
  828. },
  829. },
  830. [
  831. {
  832. name: "Normal",
  833. height: math.unit(6.6, "feet")
  834. },
  835. {
  836. name: "Macro",
  837. height: math.unit(500, "feet")
  838. },
  839. {
  840. name: "Megamacro",
  841. height: math.unit(2.5, "km"),
  842. default: true
  843. },
  844. {
  845. name: "Gigamacro",
  846. height: math.unit(22500, "km")
  847. },
  848. {
  849. name: "Teramacro",
  850. height: math.unit(2500000000, "km")
  851. },
  852. {
  853. name: "Examacro",
  854. height: math.unit(200, "parsecs")
  855. },
  856. ]
  857. ))
  858. characterMakers.push(() => makeCharacter(
  859. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  860. {
  861. front: {
  862. height: math.unit(7, "feet"),
  863. weight: math.unit(100, "kg"),
  864. name: "Front",
  865. image: {
  866. source: "./media/characters/okuri/front.svg",
  867. extra: 1,
  868. bottom: 0.037
  869. }
  870. },
  871. back: {
  872. height: math.unit(7, "feet"),
  873. weight: math.unit(100, "kg"),
  874. name: "Back",
  875. image: {
  876. source: "./media/characters/okuri/back.svg",
  877. extra: 1,
  878. bottom: 0.007
  879. }
  880. },
  881. },
  882. [
  883. {
  884. name: "Megamacro",
  885. height: math.unit(100, "miles"),
  886. default: true
  887. },
  888. ]
  889. ))
  890. characterMakers.push(() => makeCharacter(
  891. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  892. {
  893. front: {
  894. height: math.unit(7, "feet"),
  895. weight: math.unit(100, "kg"),
  896. name: "Front",
  897. image: {
  898. source: "./media/characters/manny/front.svg",
  899. extra: 1,
  900. bottom: 0.06
  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/manny/back.svg",
  909. extra: 1,
  910. bottom: 0.014
  911. }
  912. },
  913. },
  914. [
  915. {
  916. name: "Normal",
  917. height: math.unit(7, "feet"),
  918. },
  919. {
  920. name: "Macro",
  921. height: math.unit(78, "feet"),
  922. default: true
  923. },
  924. {
  925. name: "Macro+",
  926. height: math.unit(300, "meters")
  927. },
  928. {
  929. name: "Macro++",
  930. height: math.unit(2400, "meters")
  931. },
  932. {
  933. name: "Megamacro",
  934. height: math.unit(5167, "meters")
  935. },
  936. {
  937. name: "Gigamacro",
  938. height: math.unit(41769, "miles")
  939. },
  940. ]
  941. ))
  942. characterMakers.push(() => makeCharacter(
  943. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  944. {
  945. front: {
  946. height: math.unit(7, "feet"),
  947. weight: math.unit(100, "kg"),
  948. name: "Front",
  949. image: {
  950. source: "./media/characters/adake/front-1.svg"
  951. }
  952. },
  953. frontAlt: {
  954. height: math.unit(7, "feet"),
  955. weight: math.unit(100, "kg"),
  956. name: "Front (Alt)",
  957. image: {
  958. source: "./media/characters/adake/front-2.svg",
  959. extra: 1,
  960. bottom: 0.01
  961. }
  962. },
  963. back: {
  964. height: math.unit(7, "feet"),
  965. weight: math.unit(100, "kg"),
  966. name: "Back",
  967. image: {
  968. source: "./media/characters/adake/back.svg",
  969. }
  970. },
  971. kneel: {
  972. height: math.unit(5.385, "feet"),
  973. weight: math.unit(100, "kg"),
  974. name: "Kneeling",
  975. image: {
  976. source: "./media/characters/adake/kneel.svg",
  977. bottom: 0.052
  978. }
  979. },
  980. },
  981. [
  982. {
  983. name: "Normal",
  984. height: math.unit(7, "feet"),
  985. },
  986. {
  987. name: "Macro",
  988. height: math.unit(78, "feet"),
  989. default: true
  990. },
  991. {
  992. name: "Macro+",
  993. height: math.unit(300, "meters")
  994. },
  995. {
  996. name: "Macro++",
  997. height: math.unit(2400, "meters")
  998. },
  999. {
  1000. name: "Megamacro",
  1001. height: math.unit(5167, "meters")
  1002. },
  1003. {
  1004. name: "Gigamacro",
  1005. height: math.unit(41769, "miles")
  1006. },
  1007. ]
  1008. ))
  1009. characterMakers.push(() => makeCharacter(
  1010. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1011. {
  1012. front: {
  1013. height: math.unit(1.65, "meters"),
  1014. weight: math.unit(50, "kg"),
  1015. name: "Front",
  1016. image: {
  1017. source: "./media/characters/elijah/front.svg",
  1018. extra: 858/830,
  1019. bottom: 95.5/953.8559
  1020. }
  1021. },
  1022. back: {
  1023. height: math.unit(1.65, "meters"),
  1024. weight: math.unit(50, "kg"),
  1025. name: "Back",
  1026. image: {
  1027. source: "./media/characters/elijah/back.svg",
  1028. extra: 895/850,
  1029. bottom: 5.3/897.956
  1030. }
  1031. },
  1032. frontNsfw: {
  1033. height: math.unit(1.65, "meters"),
  1034. weight: math.unit(50, "kg"),
  1035. name: "Front (NSFW)",
  1036. image: {
  1037. source: "./media/characters/elijah/front-nsfw.svg",
  1038. extra: 858/830,
  1039. bottom: 95.5/953.8559
  1040. }
  1041. },
  1042. backNsfw: {
  1043. height: math.unit(1.65, "meters"),
  1044. weight: math.unit(50, "kg"),
  1045. name: "Back (NSFW)",
  1046. image: {
  1047. source: "./media/characters/elijah/back-nsfw.svg",
  1048. extra: 895/850,
  1049. bottom: 5.3/897.956
  1050. }
  1051. },
  1052. dick: {
  1053. height: math.unit(1, "feet"),
  1054. name: "Dick",
  1055. image: {
  1056. source: "./media/characters/elijah/dick.svg"
  1057. }
  1058. },
  1059. beakOpen: {
  1060. height: math.unit(1.25, "feet"),
  1061. name: "Beak (Open)",
  1062. image: {
  1063. source: "./media/characters/elijah/beak-open.svg"
  1064. }
  1065. },
  1066. beakShut: {
  1067. height: math.unit(1.25, "feet"),
  1068. name: "Beak (Shut)",
  1069. image: {
  1070. source: "./media/characters/elijah/beak-shut.svg"
  1071. }
  1072. },
  1073. footFlexing: {
  1074. height: math.unit(1.61, "feet"),
  1075. name: "Foot (Flexing)",
  1076. image: {
  1077. source: "./media/characters/elijah/foot-flexing.svg"
  1078. }
  1079. },
  1080. footStepping: {
  1081. height: math.unit(1.44, "feet"),
  1082. name: "Foot (Stepping)",
  1083. image: {
  1084. source: "./media/characters/elijah/foot-stepping.svg"
  1085. }
  1086. },
  1087. plantigradeLeg: {
  1088. height: math.unit(2.34, "feet"),
  1089. name: "Plantigrade Leg",
  1090. image: {
  1091. source: "./media/characters/elijah/plantigrade-leg.svg"
  1092. }
  1093. },
  1094. plantigradeFootLeft: {
  1095. height: math.unit(0.9, "feet"),
  1096. name: "Plantigrade Foot (Left)",
  1097. image: {
  1098. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1099. }
  1100. },
  1101. plantigradeFootRight: {
  1102. height: math.unit(0.9, "feet"),
  1103. name: "Plantigrade Foot (Right)",
  1104. image: {
  1105. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1106. }
  1107. },
  1108. },
  1109. [
  1110. {
  1111. name: "Normal",
  1112. height: math.unit(1.65, "meters")
  1113. },
  1114. {
  1115. name: "Macro",
  1116. height: math.unit(55, "meters"),
  1117. default: true
  1118. },
  1119. {
  1120. name: "Macro+",
  1121. height: math.unit(105, "meters")
  1122. },
  1123. ]
  1124. ))
  1125. characterMakers.push(() => makeCharacter(
  1126. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1127. {
  1128. front: {
  1129. height: math.unit(11, "feet"),
  1130. weight: math.unit(80, "kg"),
  1131. name: "Front",
  1132. image: {
  1133. source: "./media/characters/rai/front.svg",
  1134. extra: 1,
  1135. bottom: 0.03
  1136. }
  1137. },
  1138. side: {
  1139. height: math.unit(11, "feet"),
  1140. weight: math.unit(80, "kg"),
  1141. name: "Side",
  1142. image: {
  1143. source: "./media/characters/rai/side.svg"
  1144. }
  1145. },
  1146. back: {
  1147. height: math.unit(11, "feet"),
  1148. weight: math.unit(80, "lb"),
  1149. name: "Back",
  1150. image: {
  1151. source: "./media/characters/rai/back.svg",
  1152. extra: 1,
  1153. bottom: 0.01
  1154. }
  1155. },
  1156. feral: {
  1157. height: math.unit(11, "feet"),
  1158. weight: math.unit(800, "lb"),
  1159. name: "Feral",
  1160. image: {
  1161. source: "./media/characters/rai/feral.svg",
  1162. extra: 1050 / 659,
  1163. bottom: 0.07
  1164. }
  1165. },
  1166. dragon: {
  1167. height: math.unit(23, "feet"),
  1168. weight: math.unit(50000, "lb"),
  1169. name: "Dragon",
  1170. image: {
  1171. source: "./media/characters/rai/dragon.svg",
  1172. extra: 2498/2030,
  1173. bottom: 85.2/2584
  1174. }
  1175. },
  1176. maw: {
  1177. height: math.unit(6 / 3.81416, "feet"),
  1178. name: "Maw",
  1179. image: {
  1180. source: "./media/characters/rai/maw.svg"
  1181. }
  1182. },
  1183. },
  1184. [
  1185. {
  1186. name: "Normal",
  1187. height: math.unit(11, "feet")
  1188. },
  1189. {
  1190. name: "Macro",
  1191. height: math.unit(302, "feet"),
  1192. default: true
  1193. },
  1194. ]
  1195. ))
  1196. characterMakers.push(() => makeCharacter(
  1197. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1198. {
  1199. frontDressed: {
  1200. height: math.unit(216, "feet"),
  1201. weight: math.unit(7000000, "lb"),
  1202. name: "Front (Dressed)",
  1203. image: {
  1204. source: "./media/characters/jazzy/front-dressed.svg",
  1205. extra: 2738/2651,
  1206. bottom: 41.8/2786
  1207. }
  1208. },
  1209. backDressed: {
  1210. height: math.unit(216, "feet"),
  1211. weight: math.unit(7000000, "lb"),
  1212. name: "Back (Dressed)",
  1213. image: {
  1214. source: "./media/characters/jazzy/back-dressed.svg",
  1215. extra: 2775/2673,
  1216. bottom: 36.8/2817
  1217. }
  1218. },
  1219. front: {
  1220. height: math.unit(216, "feet"),
  1221. weight: math.unit(7000000, "lb"),
  1222. name: "Front",
  1223. image: {
  1224. source: "./media/characters/jazzy/front.svg",
  1225. extra: 2738/2651,
  1226. bottom: 41.8/2786
  1227. }
  1228. },
  1229. back: {
  1230. height: math.unit(216, "feet"),
  1231. weight: math.unit(7000000, "lb"),
  1232. name: "Back",
  1233. image: {
  1234. source: "./media/characters/jazzy/back.svg",
  1235. extra: 2775/2673,
  1236. bottom: 36.8/2817
  1237. }
  1238. },
  1239. maw: {
  1240. height: math.unit(20, "feet"),
  1241. name: "Maw",
  1242. image: {
  1243. source: "./media/characters/jazzy/maw.svg"
  1244. }
  1245. },
  1246. paws: {
  1247. height: math.unit(27.5, "feet"),
  1248. name: "Paws",
  1249. image: {
  1250. source: "./media/characters/jazzy/paws.svg"
  1251. }
  1252. },
  1253. eye: {
  1254. height: math.unit(4.4, "feet"),
  1255. name: "Eye",
  1256. image: {
  1257. source: "./media/characters/jazzy/eye.svg"
  1258. }
  1259. },
  1260. droneOffense: {
  1261. height: math.unit(9.5, "inches"),
  1262. name: "Drone (Offense)",
  1263. image: {
  1264. source: "./media/characters/jazzy/drone-offense.svg"
  1265. }
  1266. },
  1267. droneRecon: {
  1268. height: math.unit(9.5, "inches"),
  1269. name: "Drone (Recon)",
  1270. image: {
  1271. source: "./media/characters/jazzy/drone-recon.svg"
  1272. }
  1273. },
  1274. droneDefense: {
  1275. height: math.unit(9.5, "inches"),
  1276. name: "Drone (Defense)",
  1277. image: {
  1278. source: "./media/characters/jazzy/drone-defense.svg"
  1279. }
  1280. },
  1281. },
  1282. [
  1283. {
  1284. name: "Macro",
  1285. height: math.unit(216, "feet"),
  1286. default: true
  1287. },
  1288. ]
  1289. ))
  1290. characterMakers.push(() => makeCharacter(
  1291. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1292. {
  1293. front: {
  1294. height: math.unit(7, "feet"),
  1295. weight: math.unit(80, "kg"),
  1296. name: "Front",
  1297. image: {
  1298. source: "./media/characters/flamm/front.svg",
  1299. extra: 1794 / 1677,
  1300. bottom: 31.7 / 1828.5
  1301. }
  1302. },
  1303. },
  1304. [
  1305. {
  1306. name: "Normal",
  1307. height: math.unit(9.5, "feet")
  1308. },
  1309. {
  1310. name: "Macro",
  1311. height: math.unit(200, "feet"),
  1312. default: true
  1313. },
  1314. ]
  1315. ))
  1316. characterMakers.push(() => makeCharacter(
  1317. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1318. {
  1319. front: {
  1320. height: math.unit(7, "feet"),
  1321. weight: math.unit(80, "kg"),
  1322. name: "Front",
  1323. image: {
  1324. source: "./media/characters/zephiro/front.svg",
  1325. extra: 2309 / 2162,
  1326. bottom: 0.069
  1327. }
  1328. },
  1329. side: {
  1330. height: math.unit(7, "feet"),
  1331. weight: math.unit(80, "kg"),
  1332. name: "Side",
  1333. image: {
  1334. source: "./media/characters/zephiro/side.svg",
  1335. extra: 2403 / 2279,
  1336. bottom: 0.015
  1337. }
  1338. },
  1339. back: {
  1340. height: math.unit(7, "feet"),
  1341. weight: math.unit(80, "kg"),
  1342. name: "Back",
  1343. image: {
  1344. source: "./media/characters/zephiro/back.svg",
  1345. extra: 2373 / 2244,
  1346. bottom: 0.013
  1347. }
  1348. },
  1349. },
  1350. [
  1351. {
  1352. name: "Micro",
  1353. height: math.unit(3, "inches")
  1354. },
  1355. {
  1356. name: "Normal",
  1357. height: math.unit(5 + 3 / 12, "feet"),
  1358. default: true
  1359. },
  1360. {
  1361. name: "Macro",
  1362. height: math.unit(118, "feet")
  1363. },
  1364. ]
  1365. ))
  1366. characterMakers.push(() => makeCharacter(
  1367. { name: "Fory", species: ["weasel"], tags: ["anthro"] },
  1368. {
  1369. front: {
  1370. height: math.unit(5, "feet"),
  1371. weight: math.unit(90, "kg"),
  1372. name: "Front",
  1373. image: {
  1374. source: "./media/characters/fory/front.svg",
  1375. extra: 2862 / 2674,
  1376. bottom: 180 / 3043.8
  1377. }
  1378. },
  1379. back: {
  1380. height: math.unit(5, "feet"),
  1381. weight: math.unit(90, "kg"),
  1382. name: "Back",
  1383. image: {
  1384. source: "./media/characters/fory/back.svg",
  1385. extra: 2962 / 2791,
  1386. bottom: 106 / 3071.8
  1387. }
  1388. },
  1389. foot: {
  1390. height: math.unit(2.14, "feet"),
  1391. name: "Foot",
  1392. image: {
  1393. source: "./media/characters/fory/foot.svg"
  1394. }
  1395. },
  1396. },
  1397. [
  1398. {
  1399. name: "Normal",
  1400. height: math.unit(5, "feet")
  1401. },
  1402. {
  1403. name: "Macro",
  1404. height: math.unit(50, "feet"),
  1405. default: true
  1406. },
  1407. {
  1408. name: "Megamacro",
  1409. height: math.unit(10, "miles")
  1410. },
  1411. {
  1412. name: "Gigamacro",
  1413. height: math.unit(5, "earths")
  1414. },
  1415. ]
  1416. ))
  1417. characterMakers.push(() => makeCharacter(
  1418. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  1419. {
  1420. front: {
  1421. height: math.unit(7, "feet"),
  1422. weight: math.unit(90, "kg"),
  1423. name: "Front",
  1424. image: {
  1425. source: "./media/characters/kurrikage/front.svg",
  1426. extra: 1,
  1427. bottom: 0.035
  1428. }
  1429. },
  1430. back: {
  1431. height: math.unit(7, "feet"),
  1432. weight: math.unit(90, "lb"),
  1433. name: "Back",
  1434. image: {
  1435. source: "./media/characters/kurrikage/back.svg"
  1436. }
  1437. },
  1438. paw: {
  1439. height: math.unit(1.5, "feet"),
  1440. name: "Paw",
  1441. image: {
  1442. source: "./media/characters/kurrikage/paw.svg"
  1443. }
  1444. },
  1445. staff: {
  1446. height: math.unit(6.7, "feet"),
  1447. name: "Staff",
  1448. image: {
  1449. source: "./media/characters/kurrikage/staff.svg"
  1450. }
  1451. },
  1452. peek: {
  1453. height: math.unit(1.05, "feet"),
  1454. name: "Peeking",
  1455. image: {
  1456. source: "./media/characters/kurrikage/peek.svg",
  1457. bottom: 0.08
  1458. }
  1459. },
  1460. },
  1461. [
  1462. {
  1463. name: "Normal",
  1464. height: math.unit(12, "feet"),
  1465. default: true
  1466. },
  1467. {
  1468. name: "Big",
  1469. height: math.unit(20, "feet")
  1470. },
  1471. {
  1472. name: "Macro",
  1473. height: math.unit(500, "feet")
  1474. },
  1475. {
  1476. name: "Megamacro",
  1477. height: math.unit(20, "miles")
  1478. },
  1479. ]
  1480. ))
  1481. characterMakers.push(() => makeCharacter(
  1482. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  1483. {
  1484. front: {
  1485. height: math.unit(6, "feet"),
  1486. weight: math.unit(75, "kg"),
  1487. name: "Front",
  1488. image: {
  1489. source: "./media/characters/shingo/front.svg",
  1490. extra: 3511 / 3338,
  1491. bottom: 0.005
  1492. }
  1493. },
  1494. },
  1495. [
  1496. {
  1497. name: "Micro",
  1498. height: math.unit(4, "inches")
  1499. },
  1500. {
  1501. name: "Normal",
  1502. height: math.unit(6, "feet"),
  1503. default: true
  1504. },
  1505. {
  1506. name: "Macro",
  1507. height: math.unit(108, "feet")
  1508. }
  1509. ]
  1510. ))
  1511. characterMakers.push(() => makeCharacter(
  1512. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  1513. {
  1514. side: {
  1515. height: math.unit(6, "feet"),
  1516. weight: math.unit(75, "kg"),
  1517. name: "Side",
  1518. image: {
  1519. source: "./media/characters/aigey/side.svg"
  1520. }
  1521. },
  1522. },
  1523. [
  1524. {
  1525. name: "Macro",
  1526. height: math.unit(200, "feet"),
  1527. default: true
  1528. },
  1529. {
  1530. name: "Megamacro",
  1531. height: math.unit(100, "miles")
  1532. },
  1533. ]
  1534. )
  1535. )
  1536. characterMakers.push(() => makeCharacter(
  1537. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  1538. {
  1539. front: {
  1540. height: math.unit(5 + 5 / 12, "feet"),
  1541. weight: math.unit(75, "kg"),
  1542. name: "Front",
  1543. image: {
  1544. source: "./media/characters/natasha/front.svg",
  1545. extra: 859/824,
  1546. bottom: 23/879.6
  1547. }
  1548. },
  1549. frontNsfw: {
  1550. height: math.unit(5 + 5 / 12, "feet"),
  1551. weight: math.unit(75, "kg"),
  1552. name: "Front (NSFW)",
  1553. image: {
  1554. source: "./media/characters/natasha/front-nsfw.svg",
  1555. extra: 859/824,
  1556. bottom: 23/879.6
  1557. }
  1558. },
  1559. frontErect: {
  1560. height: math.unit(5 + 5 / 12, "feet"),
  1561. weight: math.unit(75, "kg"),
  1562. name: "Front (Erect)",
  1563. image: {
  1564. source: "./media/characters/natasha/front-erect.svg",
  1565. extra: 859/824,
  1566. bottom: 23/879.6
  1567. }
  1568. },
  1569. back: {
  1570. height: math.unit(5 + 5 / 12, "feet"),
  1571. weight: math.unit(75, "kg"),
  1572. name: "Back",
  1573. image: {
  1574. source: "./media/characters/natasha/back.svg",
  1575. extra: 887.9/852.6,
  1576. bottom: 9.7/896.4
  1577. }
  1578. },
  1579. backAlt: {
  1580. height: math.unit(5 + 5 / 12, "feet"),
  1581. weight: math.unit(75, "kg"),
  1582. name: "Back (Alt)",
  1583. image: {
  1584. source: "./media/characters/natasha/back-alt.svg",
  1585. extra: 1236.7/1192,
  1586. bottom: 22.3/1258.2
  1587. }
  1588. },
  1589. dick: {
  1590. height: math.unit(1.772, "feet"),
  1591. name: "Dick",
  1592. image: {
  1593. source: "./media/characters/natasha/dick.svg"
  1594. }
  1595. },
  1596. },
  1597. [
  1598. {
  1599. name: "Normal",
  1600. height: math.unit(5 + 5 / 12, "feet")
  1601. },
  1602. {
  1603. name: "Large",
  1604. height: math.unit(12, "feet")
  1605. },
  1606. {
  1607. name: "Macro",
  1608. height: math.unit(100, "feet"),
  1609. default: true
  1610. },
  1611. {
  1612. name: "Macro+",
  1613. height: math.unit(260, "feet")
  1614. },
  1615. {
  1616. name: "Macro++",
  1617. height: math.unit(1, "mile")
  1618. },
  1619. ]
  1620. ))
  1621. characterMakers.push(() => makeCharacter(
  1622. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  1623. {
  1624. front: {
  1625. height: math.unit(6, "feet"),
  1626. weight: math.unit(75, "kg"),
  1627. name: "Front",
  1628. image: {
  1629. source: "./media/characters/malik/front.svg"
  1630. }
  1631. },
  1632. side: {
  1633. height: math.unit(6, "feet"),
  1634. weight: math.unit(75, "kg"),
  1635. name: "Side",
  1636. image: {
  1637. source: "./media/characters/malik/side.svg",
  1638. extra: 1.1539
  1639. }
  1640. },
  1641. back: {
  1642. height: math.unit(6, "feet"),
  1643. weight: math.unit(75, "kg"),
  1644. name: "Back",
  1645. image: {
  1646. source: "./media/characters/malik/back.svg"
  1647. }
  1648. },
  1649. },
  1650. [
  1651. {
  1652. name: "Macro",
  1653. height: math.unit(156, "feet"),
  1654. default: true
  1655. },
  1656. {
  1657. name: "Macro+",
  1658. height: math.unit(1188, "feet")
  1659. },
  1660. ]
  1661. ))
  1662. characterMakers.push(() => makeCharacter(
  1663. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  1664. {
  1665. front: {
  1666. height: math.unit(6, "feet"),
  1667. weight: math.unit(75, "kg"),
  1668. name: "Front",
  1669. image: {
  1670. source: "./media/characters/sefer/front.svg"
  1671. }
  1672. },
  1673. back: {
  1674. height: math.unit(6, "feet"),
  1675. weight: math.unit(75, "kg"),
  1676. name: "Back",
  1677. image: {
  1678. source: "./media/characters/sefer/back.svg"
  1679. }
  1680. },
  1681. },
  1682. [
  1683. {
  1684. name: "Normal",
  1685. height: math.unit(6, "feet"),
  1686. default: true
  1687. },
  1688. ]
  1689. ))
  1690. characterMakers.push(() => makeCharacter(
  1691. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  1692. {
  1693. body: {
  1694. height: math.unit(2.2428, "meter"),
  1695. weight: math.unit(124.738, "kg"),
  1696. name: "Body",
  1697. image: {
  1698. extra: 1225 / 1050,
  1699. source: "./media/characters/north/front.svg"
  1700. }
  1701. }
  1702. },
  1703. [
  1704. {
  1705. name: "Micro",
  1706. height: math.unit(4, "inches")
  1707. },
  1708. {
  1709. name: "Macro",
  1710. height: math.unit(63, "meters")
  1711. },
  1712. {
  1713. name: "Megamacro",
  1714. height: math.unit(101, "miles"),
  1715. default: true
  1716. }
  1717. ]
  1718. ))
  1719. characterMakers.push(() => makeCharacter(
  1720. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  1721. {
  1722. angled: {
  1723. height: math.unit(4, "meter"),
  1724. weight: math.unit(150, "kg"),
  1725. name: "Angled",
  1726. image: {
  1727. source: "./media/characters/talan/angled-sfw.svg",
  1728. bottom: 29 / 3734
  1729. }
  1730. },
  1731. angledNsfw: {
  1732. height: math.unit(4, "meter"),
  1733. weight: math.unit(150, "kg"),
  1734. name: "Angled (NSFW)",
  1735. image: {
  1736. source: "./media/characters/talan/angled-nsfw.svg",
  1737. bottom: 29 / 3734
  1738. }
  1739. },
  1740. frontNsfw: {
  1741. height: math.unit(4, "meter"),
  1742. weight: math.unit(150, "kg"),
  1743. name: "Front (NSFW)",
  1744. image: {
  1745. source: "./media/characters/talan/front-nsfw.svg",
  1746. bottom: 29 / 3734
  1747. }
  1748. },
  1749. sideNsfw: {
  1750. height: math.unit(4, "meter"),
  1751. weight: math.unit(150, "kg"),
  1752. name: "Side (NSFW)",
  1753. image: {
  1754. source: "./media/characters/talan/side-nsfw.svg",
  1755. bottom: 29 / 3734
  1756. }
  1757. },
  1758. back: {
  1759. height: math.unit(4, "meter"),
  1760. weight: math.unit(150, "kg"),
  1761. name: "Back",
  1762. image: {
  1763. source: "./media/characters/talan/back.svg"
  1764. }
  1765. },
  1766. dickBottom: {
  1767. height: math.unit(0.621, "meter"),
  1768. name: "Dick (Bottom)",
  1769. image: {
  1770. source: "./media/characters/talan/dick-bottom.svg"
  1771. }
  1772. },
  1773. dickTop: {
  1774. height: math.unit(0.621, "meter"),
  1775. name: "Dick (Top)",
  1776. image: {
  1777. source: "./media/characters/talan/dick-top.svg"
  1778. }
  1779. },
  1780. dickSide: {
  1781. height: math.unit(0.305, "meter"),
  1782. name: "Dick (Side)",
  1783. image: {
  1784. source: "./media/characters/talan/dick-side.svg"
  1785. }
  1786. },
  1787. dickFront: {
  1788. height: math.unit(0.305, "meter"),
  1789. name: "Dick (Front)",
  1790. image: {
  1791. source: "./media/characters/talan/dick-front.svg"
  1792. }
  1793. },
  1794. },
  1795. [
  1796. {
  1797. name: "Normal",
  1798. height: math.unit(4, "meters")
  1799. },
  1800. {
  1801. name: "Macro",
  1802. height: math.unit(100, "meters")
  1803. },
  1804. {
  1805. name: "Megamacro",
  1806. height: math.unit(2, "miles"),
  1807. default: true
  1808. },
  1809. {
  1810. name: "Gigamacro",
  1811. height: math.unit(5000, "miles")
  1812. },
  1813. {
  1814. name: "Teramacro",
  1815. height: math.unit(100, "parsecs")
  1816. }
  1817. ]
  1818. ))
  1819. characterMakers.push(() => makeCharacter(
  1820. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  1821. {
  1822. front: {
  1823. height: math.unit(2, "meter"),
  1824. weight: math.unit(90, "kg"),
  1825. name: "Front",
  1826. image: {
  1827. source: "./media/characters/gael'rathus/front.svg"
  1828. }
  1829. },
  1830. frontAlt: {
  1831. height: math.unit(2, "meter"),
  1832. weight: math.unit(90, "kg"),
  1833. name: "Front (alt)",
  1834. image: {
  1835. source: "./media/characters/gael'rathus/front-alt.svg"
  1836. }
  1837. },
  1838. frontAlt2: {
  1839. height: math.unit(2, "meter"),
  1840. weight: math.unit(90, "kg"),
  1841. name: "Front (alt 2)",
  1842. image: {
  1843. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1844. }
  1845. }
  1846. },
  1847. [
  1848. {
  1849. name: "Normal",
  1850. height: math.unit(9, "feet"),
  1851. default: true
  1852. },
  1853. {
  1854. name: "Large",
  1855. height: math.unit(25, "feet")
  1856. },
  1857. {
  1858. name: "Macro",
  1859. height: math.unit(0.25, "miles")
  1860. },
  1861. {
  1862. name: "Megamacro",
  1863. height: math.unit(10, "miles")
  1864. }
  1865. ]
  1866. ))
  1867. characterMakers.push(() => makeCharacter(
  1868. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  1869. {
  1870. side: {
  1871. height: math.unit(2, "meter"),
  1872. weight: math.unit(140, "kg"),
  1873. name: "Side",
  1874. image: {
  1875. source: "./media/characters/sosha/side.svg",
  1876. bottom: 0.042
  1877. }
  1878. },
  1879. },
  1880. [
  1881. {
  1882. name: "Normal",
  1883. height: math.unit(12, "feet"),
  1884. default: true
  1885. }
  1886. ]
  1887. ))
  1888. characterMakers.push(() => makeCharacter(
  1889. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  1890. {
  1891. side: {
  1892. height: math.unit(5 + 5 / 12, "feet"),
  1893. weight: math.unit(170, "kg"),
  1894. name: "Side",
  1895. image: {
  1896. source: "./media/characters/runnola/side.svg",
  1897. extra: 741 / 448,
  1898. bottom: 0.05
  1899. }
  1900. },
  1901. },
  1902. [
  1903. {
  1904. name: "Small",
  1905. height: math.unit(3, "feet")
  1906. },
  1907. {
  1908. name: "Normal",
  1909. height: math.unit(5 + 5 / 12, "feet"),
  1910. default: true
  1911. },
  1912. {
  1913. name: "Big",
  1914. height: math.unit(10, "feet")
  1915. },
  1916. ]
  1917. ))
  1918. characterMakers.push(() => makeCharacter(
  1919. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  1920. {
  1921. front: {
  1922. height: math.unit(2, "meter"),
  1923. weight: math.unit(50, "kg"),
  1924. name: "Front",
  1925. image: {
  1926. source: "./media/characters/kurribird/front.svg",
  1927. bottom: 0.015
  1928. }
  1929. },
  1930. frontAlt: {
  1931. height: math.unit(1.5, "meter"),
  1932. weight: math.unit(50, "kg"),
  1933. name: "Front (Alt)",
  1934. image: {
  1935. source: "./media/characters/kurribird/front-alt.svg",
  1936. extra: 1.45
  1937. }
  1938. },
  1939. },
  1940. [
  1941. {
  1942. name: "Normal",
  1943. height: math.unit(7, "feet")
  1944. },
  1945. {
  1946. name: "Big",
  1947. height: math.unit(12, "feet"),
  1948. default: true
  1949. },
  1950. {
  1951. name: "Macro",
  1952. height: math.unit(1500, "feet")
  1953. },
  1954. {
  1955. name: "Megamacro",
  1956. height: math.unit(2, "miles")
  1957. }
  1958. ]
  1959. ))
  1960. characterMakers.push(() => makeCharacter(
  1961. { name: "Elbial", species: ["goat", "lion", "demon"], tags: ["anthro"] },
  1962. {
  1963. front: {
  1964. height: math.unit(2, "meter"),
  1965. weight: math.unit(80, "kg"),
  1966. name: "Front",
  1967. image: {
  1968. source: "./media/characters/elbial/front.svg",
  1969. extra: 1643 / 1556,
  1970. bottom: 60.2 / 1696
  1971. }
  1972. },
  1973. side: {
  1974. height: math.unit(2, "meter"),
  1975. weight: math.unit(80, "kg"),
  1976. name: "Side",
  1977. image: {
  1978. source: "./media/characters/elbial/side.svg",
  1979. extra: 1630 / 1565,
  1980. bottom: 71.5 / 1697
  1981. }
  1982. },
  1983. back: {
  1984. height: math.unit(2, "meter"),
  1985. weight: math.unit(80, "kg"),
  1986. name: "Back",
  1987. image: {
  1988. source: "./media/characters/elbial/back.svg",
  1989. extra: 1668 / 1595,
  1990. bottom: 5.6 / 1672
  1991. }
  1992. },
  1993. frontDressed: {
  1994. height: math.unit(2, "meter"),
  1995. weight: math.unit(80, "kg"),
  1996. name: "Front (Dressed)",
  1997. image: {
  1998. source: "./media/characters/elbial/front-dressed.svg",
  1999. extra: 1653 / 1584,
  2000. bottom: 57 / 1708
  2001. }
  2002. },
  2003. genitals: {
  2004. height: math.unit(2 / 3.367, "meter"),
  2005. name: "Genitals",
  2006. image: {
  2007. source: "./media/characters/elbial/genitals.svg"
  2008. }
  2009. },
  2010. },
  2011. [
  2012. {
  2013. name: "Large",
  2014. height: math.unit(100, "feet")
  2015. },
  2016. {
  2017. name: "Macro",
  2018. height: math.unit(500, "feet"),
  2019. default: true
  2020. },
  2021. {
  2022. name: "Megamacro",
  2023. height: math.unit(10, "miles")
  2024. },
  2025. {
  2026. name: "Gigamacro",
  2027. height: math.unit(25000, "miles")
  2028. },
  2029. {
  2030. name: "Full-Size",
  2031. height: math.unit(8000000, "gigaparsecs")
  2032. }
  2033. ]
  2034. ))
  2035. characterMakers.push(() => makeCharacter(
  2036. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2037. {
  2038. front: {
  2039. height: math.unit(2, "meter"),
  2040. weight: math.unit(60, "kg"),
  2041. name: "Front",
  2042. image: {
  2043. source: "./media/characters/noah/front.svg"
  2044. }
  2045. },
  2046. talons: {
  2047. height: math.unit(0.315, "meter"),
  2048. name: "Talons",
  2049. image: {
  2050. source: "./media/characters/noah/talons.svg"
  2051. }
  2052. }
  2053. },
  2054. [
  2055. {
  2056. name: "Large",
  2057. height: math.unit(50, "feet")
  2058. },
  2059. {
  2060. name: "Macro",
  2061. height: math.unit(750, "feet"),
  2062. default: true
  2063. },
  2064. {
  2065. name: "Megamacro",
  2066. height: math.unit(50, "miles")
  2067. },
  2068. {
  2069. name: "Gigamacro",
  2070. height: math.unit(100000, "miles")
  2071. },
  2072. {
  2073. name: "Full-Size",
  2074. height: math.unit(3000000000, "miles")
  2075. }
  2076. ]
  2077. ))
  2078. characterMakers.push(() => makeCharacter(
  2079. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2080. {
  2081. front: {
  2082. height: math.unit(2, "meter"),
  2083. weight: math.unit(80, "kg"),
  2084. name: "Front",
  2085. image: {
  2086. source: "./media/characters/natalya/front.svg"
  2087. }
  2088. },
  2089. back: {
  2090. height: math.unit(2, "meter"),
  2091. weight: math.unit(80, "kg"),
  2092. name: "Back",
  2093. image: {
  2094. source: "./media/characters/natalya/back.svg"
  2095. }
  2096. }
  2097. },
  2098. [
  2099. {
  2100. name: "Normal",
  2101. height: math.unit(150, "feet"),
  2102. default: true
  2103. },
  2104. {
  2105. name: "Megamacro",
  2106. height: math.unit(5, "miles")
  2107. },
  2108. {
  2109. name: "Full-Size",
  2110. height: math.unit(600, "kiloparsecs")
  2111. }
  2112. ]
  2113. ))
  2114. characterMakers.push(() => makeCharacter(
  2115. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2116. {
  2117. front: {
  2118. height: math.unit(2, "meter"),
  2119. weight: math.unit(50, "kg"),
  2120. name: "Front",
  2121. image: {
  2122. source: "./media/characters/erestrebah/front.svg",
  2123. extra: 208 / 193,
  2124. bottom: 0.055
  2125. }
  2126. },
  2127. back: {
  2128. height: math.unit(2, "meter"),
  2129. weight: math.unit(50, "kg"),
  2130. name: "Back",
  2131. image: {
  2132. source: "./media/characters/erestrebah/back.svg",
  2133. extra: 1.3
  2134. }
  2135. }
  2136. },
  2137. [
  2138. {
  2139. name: "Normal",
  2140. height: math.unit(10, "feet")
  2141. },
  2142. {
  2143. name: "Large",
  2144. height: math.unit(50, "feet"),
  2145. default: true
  2146. },
  2147. {
  2148. name: "Macro",
  2149. height: math.unit(300, "feet")
  2150. },
  2151. {
  2152. name: "Macro+",
  2153. height: math.unit(750, "feet")
  2154. },
  2155. {
  2156. name: "Megamacro",
  2157. height: math.unit(3, "miles")
  2158. }
  2159. ]
  2160. ))
  2161. characterMakers.push(() => makeCharacter(
  2162. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2163. {
  2164. front: {
  2165. height: math.unit(2, "meter"),
  2166. weight: math.unit(80, "kg"),
  2167. name: "Front",
  2168. image: {
  2169. source: "./media/characters/jennifer/front.svg",
  2170. bottom: 0.11,
  2171. extra: 1.16
  2172. }
  2173. },
  2174. frontAlt: {
  2175. height: math.unit(2, "meter"),
  2176. weight: math.unit(80, "kg"),
  2177. name: "Front (Alt)",
  2178. image: {
  2179. source: "./media/characters/jennifer/front-alt.svg"
  2180. }
  2181. }
  2182. },
  2183. [
  2184. {
  2185. name: "Canon Height",
  2186. height: math.unit(120, "feet"),
  2187. default: true
  2188. },
  2189. {
  2190. name: "Macro+",
  2191. height: math.unit(300, "feet")
  2192. },
  2193. {
  2194. name: "Megamacro",
  2195. height: math.unit(20000, "feet")
  2196. }
  2197. ]
  2198. ))
  2199. characterMakers.push(() => makeCharacter(
  2200. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2201. {
  2202. front: {
  2203. height: math.unit(2, "meter"),
  2204. weight: math.unit(50, "kg"),
  2205. name: "Front",
  2206. image: {
  2207. source: "./media/characters/kalista/front.svg",
  2208. extra: 1947 / 1700,
  2209. bottom: 76.6/1412.98
  2210. }
  2211. },
  2212. back: {
  2213. height: math.unit(2, "meter"),
  2214. weight: math.unit(50, "kg"),
  2215. name: "Back",
  2216. image: {
  2217. source: "./media/characters/kalista/back.svg",
  2218. extra: 1366 / 1156,
  2219. bottom: 33.9/1362.78
  2220. }
  2221. }
  2222. },
  2223. [
  2224. {
  2225. name: "Uncomfortably Small",
  2226. height: math.unit(10, "feet")
  2227. },
  2228. {
  2229. name: "Small",
  2230. height: math.unit(30, "feet")
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(100, "feet"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Macro+",
  2239. height: math.unit(2000, "feet")
  2240. },
  2241. {
  2242. name: "True Form",
  2243. height: math.unit(8924, "miles")
  2244. }
  2245. ]
  2246. ))
  2247. characterMakers.push(() => makeCharacter(
  2248. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2249. {
  2250. front: {
  2251. height: math.unit(2, "meter"),
  2252. weight: math.unit(120, "kg"),
  2253. name: "Front",
  2254. image: {
  2255. source: "./media/characters/ggv/front.svg"
  2256. }
  2257. },
  2258. side: {
  2259. height: math.unit(2, "meter"),
  2260. weight: math.unit(120, "kg"),
  2261. name: "Side",
  2262. image: {
  2263. source: "./media/characters/ggv/side.svg"
  2264. }
  2265. }
  2266. },
  2267. [
  2268. {
  2269. name: "Extremely Puny",
  2270. height: math.unit(9 + 5 / 12, "feet")
  2271. },
  2272. {
  2273. name: "Horribly Small",
  2274. height: math.unit(47.7, "miles"),
  2275. default: true
  2276. },
  2277. {
  2278. name: "Reasonably Sized",
  2279. height: math.unit(25000, "parsecs")
  2280. },
  2281. {
  2282. name: "Slightly Uncompressed",
  2283. height: math.unit(7.77e31, "parsecs")
  2284. },
  2285. {
  2286. name: "Omniversal",
  2287. height: math.unit(1e300, "meters")
  2288. },
  2289. ]
  2290. ))
  2291. characterMakers.push(() => makeCharacter(
  2292. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2293. {
  2294. front: {
  2295. height: math.unit(2, "meter"),
  2296. weight: math.unit(75, "lb"),
  2297. name: "Front",
  2298. image: {
  2299. source: "./media/characters/napalm/front.svg"
  2300. }
  2301. },
  2302. back: {
  2303. height: math.unit(2, "meter"),
  2304. weight: math.unit(75, "lb"),
  2305. name: "Back",
  2306. image: {
  2307. source: "./media/characters/napalm/back.svg"
  2308. }
  2309. }
  2310. },
  2311. [
  2312. {
  2313. name: "Standard",
  2314. height: math.unit(55, "feet"),
  2315. default: true
  2316. }
  2317. ]
  2318. ))
  2319. characterMakers.push(() => makeCharacter(
  2320. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2321. {
  2322. front: {
  2323. height: math.unit(7 + 5 / 6, "feet"),
  2324. weight: math.unit(325, "lb"),
  2325. name: "Front",
  2326. image: {
  2327. source: "./media/characters/asana/front.svg",
  2328. extra: 1128 / 1068
  2329. }
  2330. },
  2331. back: {
  2332. height: math.unit(7 + 5 / 6, "feet"),
  2333. weight: math.unit(325, "lb"),
  2334. name: "Back",
  2335. image: {
  2336. source: "./media/characters/asana/back.svg",
  2337. extra: 1128 / 1068
  2338. }
  2339. },
  2340. },
  2341. [
  2342. {
  2343. name: "Standard",
  2344. height: math.unit(7 + 5 / 6, "feet"),
  2345. default: true
  2346. },
  2347. {
  2348. name: "Large",
  2349. height: math.unit(10, "meters")
  2350. },
  2351. {
  2352. name: "Macro",
  2353. height: math.unit(2500, "meters")
  2354. },
  2355. {
  2356. name: "Megamacro",
  2357. height: math.unit(5e6, "meters")
  2358. },
  2359. {
  2360. name: "Examacro",
  2361. height: math.unit(5e12, "lightyears")
  2362. },
  2363. {
  2364. name: "Max Size",
  2365. height: math.unit(1e31, "lightyears")
  2366. }
  2367. ]
  2368. ))
  2369. characterMakers.push(() => makeCharacter(
  2370. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  2371. {
  2372. front: {
  2373. height: math.unit(2, "meter"),
  2374. weight: math.unit(60, "kg"),
  2375. name: "Front",
  2376. image: {
  2377. source: "./media/characters/ebony/front.svg",
  2378. bottom: 0.03,
  2379. extra: 1045 / 810 + 0.03
  2380. }
  2381. },
  2382. side: {
  2383. height: math.unit(2, "meter"),
  2384. weight: math.unit(60, "kg"),
  2385. name: "Side",
  2386. image: {
  2387. source: "./media/characters/ebony/side.svg",
  2388. bottom: 0.03,
  2389. extra: 1045 / 810 + 0.03
  2390. }
  2391. },
  2392. back: {
  2393. height: math.unit(2, "meter"),
  2394. weight: math.unit(60, "kg"),
  2395. name: "Back",
  2396. image: {
  2397. source: "./media/characters/ebony/back.svg",
  2398. bottom: 0.01,
  2399. extra: 1045 / 810 + 0.01
  2400. }
  2401. },
  2402. },
  2403. [
  2404. // TODO check why I did this lol
  2405. {
  2406. name: "Standard",
  2407. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  2408. default: true
  2409. },
  2410. {
  2411. name: "Macro",
  2412. height: math.unit(200, "feet")
  2413. },
  2414. {
  2415. name: "Gigamacro",
  2416. height: math.unit(13000, "km")
  2417. }
  2418. ]
  2419. ))
  2420. characterMakers.push(() => makeCharacter(
  2421. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  2422. {
  2423. front: {
  2424. height: math.unit(6, "feet"),
  2425. weight: math.unit(175, "lb"),
  2426. name: "Front",
  2427. image: {
  2428. source: "./media/characters/mountain/front.svg"
  2429. }
  2430. },
  2431. back: {
  2432. height: math.unit(6, "feet"),
  2433. weight: math.unit(175, "lb"),
  2434. name: "Back",
  2435. image: {
  2436. source: "./media/characters/mountain/back.svg"
  2437. }
  2438. },
  2439. },
  2440. [
  2441. {
  2442. name: "Large",
  2443. height: math.unit(20, "meters")
  2444. },
  2445. {
  2446. name: "Macro",
  2447. height: math.unit(300, "meters")
  2448. },
  2449. {
  2450. name: "Gigamacro",
  2451. height: math.unit(10000, "km"),
  2452. default: true
  2453. },
  2454. {
  2455. name: "Examacro",
  2456. height: math.unit(10e9, "lightyears")
  2457. }
  2458. ]
  2459. ))
  2460. characterMakers.push(() => makeCharacter(
  2461. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  2462. {
  2463. front: {
  2464. height: math.unit(8, "feet"),
  2465. weight: math.unit(500, "lb"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/rick/front.svg"
  2469. }
  2470. }
  2471. },
  2472. [
  2473. {
  2474. name: "Normal",
  2475. height: math.unit(8, "feet"),
  2476. default: true
  2477. },
  2478. {
  2479. name: "Macro",
  2480. height: math.unit(5, "km")
  2481. }
  2482. ]
  2483. ))
  2484. characterMakers.push(() => makeCharacter(
  2485. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  2486. {
  2487. front: {
  2488. height: math.unit(8, "feet"),
  2489. weight: math.unit(120, "lb"),
  2490. name: "Front",
  2491. image: {
  2492. source: "./media/characters/ona/front.svg"
  2493. }
  2494. },
  2495. frontAlt: {
  2496. height: math.unit(8, "feet"),
  2497. weight: math.unit(120, "lb"),
  2498. name: "Front (Alt)",
  2499. image: {
  2500. source: "./media/characters/ona/front-alt.svg"
  2501. }
  2502. },
  2503. back: {
  2504. height: math.unit(8, "feet"),
  2505. weight: math.unit(120, "lb"),
  2506. name: "Back",
  2507. image: {
  2508. source: "./media/characters/ona/back.svg"
  2509. }
  2510. },
  2511. foot: {
  2512. height: math.unit(1.1, "feet"),
  2513. name: "Foot",
  2514. image: {
  2515. source: "./media/characters/ona/foot.svg"
  2516. }
  2517. }
  2518. },
  2519. [
  2520. {
  2521. name: "Megamacro",
  2522. height: math.unit(70, "km"),
  2523. default: true
  2524. },
  2525. {
  2526. name: "Gigamacro",
  2527. height: math.unit(681818, "miles")
  2528. },
  2529. {
  2530. name: "Examacro",
  2531. height: math.unit(3800000, "lightyears")
  2532. },
  2533. ]
  2534. ))
  2535. characterMakers.push(() => makeCharacter(
  2536. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  2537. {
  2538. front: {
  2539. height: math.unit(12, "feet"),
  2540. weight: math.unit(3000, "lb"),
  2541. name: "Front",
  2542. image: {
  2543. source: "./media/characters/mech/front.svg",
  2544. bottom: 0.025,
  2545. }
  2546. },
  2547. back: {
  2548. height: math.unit(12, "feet"),
  2549. weight: math.unit(3000, "lb"),
  2550. name: "Back",
  2551. image: {
  2552. source: "./media/characters/mech/back.svg",
  2553. bottom: 0.03,
  2554. }
  2555. }
  2556. },
  2557. [
  2558. {
  2559. name: "Normal",
  2560. height: math.unit(12, "feet")
  2561. },
  2562. {
  2563. name: "Macro",
  2564. height: math.unit(300, "feet"),
  2565. default: true
  2566. },
  2567. {
  2568. name: "Macro+",
  2569. height: math.unit(1500, "feet")
  2570. },
  2571. ]
  2572. ))
  2573. characterMakers.push(() => makeCharacter(
  2574. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  2575. {
  2576. front: {
  2577. height: math.unit(1.3, "meter"),
  2578. weight: math.unit(30, "kg"),
  2579. name: "Front",
  2580. image: {
  2581. source: "./media/characters/gregory/front.svg",
  2582. }
  2583. }
  2584. },
  2585. [
  2586. {
  2587. name: "Normal",
  2588. height: math.unit(1.3, "meter"),
  2589. default: true
  2590. },
  2591. {
  2592. name: "Macro",
  2593. height: math.unit(20, "meter")
  2594. }
  2595. ]
  2596. ))
  2597. characterMakers.push(() => makeCharacter(
  2598. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  2599. {
  2600. front: {
  2601. height: math.unit(2.8, "meter"),
  2602. weight: math.unit(200, "kg"),
  2603. name: "Front",
  2604. image: {
  2605. source: "./media/characters/elory/front.svg",
  2606. }
  2607. }
  2608. },
  2609. [
  2610. {
  2611. name: "Normal",
  2612. height: math.unit(2.8, "meter"),
  2613. default: true
  2614. },
  2615. {
  2616. name: "Macro",
  2617. height: math.unit(38, "meter")
  2618. }
  2619. ]
  2620. ))
  2621. characterMakers.push(() => makeCharacter(
  2622. { name: "Angelpatamon", species: ["patamon"], tags: ["anthro"] },
  2623. {
  2624. front: {
  2625. height: math.unit(470, "feet"),
  2626. weight: math.unit(924, "tons"),
  2627. name: "Front",
  2628. image: {
  2629. source: "./media/characters/angelpatamon/front.svg",
  2630. }
  2631. }
  2632. },
  2633. [
  2634. {
  2635. name: "Normal",
  2636. height: math.unit(470, "feet"),
  2637. default: true
  2638. },
  2639. {
  2640. name: "Deity Size I",
  2641. height: math.unit(28651.2, "km")
  2642. },
  2643. {
  2644. name: "Deity Size II",
  2645. height: math.unit(171907.2, "km")
  2646. }
  2647. ]
  2648. ))
  2649. characterMakers.push(() => makeCharacter(
  2650. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  2651. {
  2652. side: {
  2653. height: math.unit(7.2, "meter"),
  2654. weight: math.unit(8.2, "tons"),
  2655. name: "Side",
  2656. image: {
  2657. source: "./media/characters/cryae/side.svg",
  2658. extra: 3500 / 1500
  2659. }
  2660. }
  2661. },
  2662. [
  2663. {
  2664. name: "Normal",
  2665. height: math.unit(7.2, "meter"),
  2666. default: true
  2667. }
  2668. ]
  2669. ))
  2670. characterMakers.push(() => makeCharacter(
  2671. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  2672. {
  2673. front: {
  2674. height: math.unit(6, "feet"),
  2675. weight: math.unit(175, "lb"),
  2676. name: "Front",
  2677. image: {
  2678. source: "./media/characters/xera/front.svg",
  2679. extra: 2300 / 2061
  2680. }
  2681. },
  2682. side: {
  2683. height: math.unit(6, "feet"),
  2684. weight: math.unit(175, "lb"),
  2685. name: "Side",
  2686. image: {
  2687. source: "./media/characters/xera/side.svg",
  2688. extra: 2300 / 2061
  2689. }
  2690. },
  2691. back: {
  2692. height: math.unit(6, "feet"),
  2693. weight: math.unit(175, "lb"),
  2694. name: "Back",
  2695. image: {
  2696. source: "./media/characters/xera/back.svg"
  2697. }
  2698. },
  2699. },
  2700. [
  2701. {
  2702. name: "Small",
  2703. height: math.unit(10, "feet")
  2704. },
  2705. {
  2706. name: "Macro",
  2707. height: math.unit(500, "meters"),
  2708. default: true
  2709. },
  2710. {
  2711. name: "Macro+",
  2712. height: math.unit(10, "km")
  2713. },
  2714. {
  2715. name: "Gigamacro",
  2716. height: math.unit(25000, "km")
  2717. },
  2718. {
  2719. name: "Teramacro",
  2720. height: math.unit(3e6, "km")
  2721. }
  2722. ]
  2723. ))
  2724. characterMakers.push(() => makeCharacter(
  2725. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  2726. {
  2727. front: {
  2728. height: math.unit(6, "feet"),
  2729. weight: math.unit(175, "lb"),
  2730. name: "Front",
  2731. image: {
  2732. source: "./media/characters/nebula/front.svg",
  2733. extra: 2600 / 2450
  2734. }
  2735. }
  2736. },
  2737. [
  2738. {
  2739. name: "Small",
  2740. height: math.unit(4.5, "meters")
  2741. },
  2742. {
  2743. name: "Macro",
  2744. height: math.unit(1500, "meters"),
  2745. default: true
  2746. },
  2747. {
  2748. name: "Megamacro",
  2749. height: math.unit(150, "km")
  2750. },
  2751. {
  2752. name: "Gigamacro",
  2753. height: math.unit(27000, "km")
  2754. }
  2755. ]
  2756. ))
  2757. characterMakers.push(() => makeCharacter(
  2758. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  2759. {
  2760. front: {
  2761. height: math.unit(6, "feet"),
  2762. weight: math.unit(225, "lb"),
  2763. name: "Front",
  2764. image: {
  2765. source: "./media/characters/abysgar/front.svg"
  2766. }
  2767. }
  2768. },
  2769. [
  2770. {
  2771. name: "Small",
  2772. height: math.unit(4.5, "meters")
  2773. },
  2774. {
  2775. name: "Macro",
  2776. height: math.unit(1250, "meters"),
  2777. default: true
  2778. },
  2779. {
  2780. name: "Megamacro",
  2781. height: math.unit(125, "km")
  2782. },
  2783. {
  2784. name: "Gigamacro",
  2785. height: math.unit(26000, "km")
  2786. }
  2787. ]
  2788. ))
  2789. characterMakers.push(() => makeCharacter(
  2790. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  2791. {
  2792. front: {
  2793. height: math.unit(6, "feet"),
  2794. weight: math.unit(180, "lb"),
  2795. name: "Front",
  2796. image: {
  2797. source: "./media/characters/yakuz/front.svg"
  2798. }
  2799. }
  2800. },
  2801. [
  2802. {
  2803. name: "Small",
  2804. height: math.unit(5, "meters")
  2805. },
  2806. {
  2807. name: "Macro",
  2808. height: math.unit(1500, "meters"),
  2809. default: true
  2810. },
  2811. {
  2812. name: "Megamacro",
  2813. height: math.unit(200, "km")
  2814. },
  2815. {
  2816. name: "Gigamacro",
  2817. height: math.unit(100000, "km")
  2818. }
  2819. ]
  2820. ))
  2821. characterMakers.push(() => makeCharacter(
  2822. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  2823. {
  2824. front: {
  2825. height: math.unit(6, "feet"),
  2826. weight: math.unit(175, "lb"),
  2827. name: "Front",
  2828. image: {
  2829. source: "./media/characters/mirova/front.svg"
  2830. }
  2831. }
  2832. },
  2833. [
  2834. {
  2835. name: "Small",
  2836. height: math.unit(5, "meters")
  2837. },
  2838. {
  2839. name: "Macro",
  2840. height: math.unit(900, "meters"),
  2841. default: true
  2842. },
  2843. {
  2844. name: "Megamacro",
  2845. height: math.unit(135, "km")
  2846. },
  2847. {
  2848. name: "Gigamacro",
  2849. height: math.unit(20000, "km")
  2850. }
  2851. ]
  2852. ))
  2853. characterMakers.push(() => makeCharacter(
  2854. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  2855. {
  2856. side: {
  2857. height: math.unit(28.35, "feet"),
  2858. weight: math.unit(99.75, "tons"),
  2859. name: "Side",
  2860. image: {
  2861. source: "./media/characters/asana-mech/side.svg"
  2862. }
  2863. }
  2864. },
  2865. [
  2866. {
  2867. name: "Normal",
  2868. height: math.unit(28.35, "feet"),
  2869. default: true
  2870. },
  2871. {
  2872. name: "Macro",
  2873. height: math.unit(2500, "feet")
  2874. },
  2875. {
  2876. name: "Megamacro",
  2877. height: math.unit(25, "miles")
  2878. },
  2879. {
  2880. name: "Examacro",
  2881. height: math.unit(6e8, "lightyears")
  2882. },
  2883. ]
  2884. ))
  2885. characterMakers.push(() => makeCharacter(
  2886. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  2887. {
  2888. front: {
  2889. height: math.unit(2, "meters"),
  2890. weight: math.unit(70, "kg"),
  2891. name: "Front",
  2892. image: {
  2893. source: "./media/characters/ashtrek/front.svg",
  2894. extra: 560 / 524,
  2895. bottom: 0.01
  2896. }
  2897. },
  2898. frontArmor: {
  2899. height: math.unit(2, "meters"),
  2900. weight: math.unit(76, "kg"),
  2901. name: "Front (Armor)",
  2902. image: {
  2903. source: "./media/characters/ashtrek/front-armor.svg",
  2904. extra: 561 / 527,
  2905. bottom: 0.01
  2906. }
  2907. },
  2908. side: {
  2909. height: math.unit(2, "meters"),
  2910. weight: math.unit(70, "kg"),
  2911. name: "Side",
  2912. image: {
  2913. source: "./media/characters/ashtrek/side.svg",
  2914. extra: 1717 / 1609,
  2915. bottom: 0.005
  2916. }
  2917. },
  2918. back: {
  2919. height: math.unit(2, "meters"),
  2920. weight: math.unit(70, "kg"),
  2921. name: "Back",
  2922. image: {
  2923. source: "./media/characters/ashtrek/back.svg",
  2924. extra: 1570 / 1501
  2925. }
  2926. },
  2927. },
  2928. [
  2929. {
  2930. name: "DEFCON 5",
  2931. height: math.unit(5, "meters")
  2932. },
  2933. {
  2934. name: "DEFCON 4",
  2935. height: math.unit(500, "meters"),
  2936. default: true
  2937. },
  2938. {
  2939. name: "DEFCON 3",
  2940. height: math.unit(5, "km")
  2941. },
  2942. {
  2943. name: "DEFCON 2",
  2944. height: math.unit(500, "km")
  2945. },
  2946. {
  2947. name: "DEFCON 1",
  2948. height: math.unit(500000, "km")
  2949. },
  2950. {
  2951. name: "DEFCON 0",
  2952. height: math.unit(3, "gigaparsecs")
  2953. },
  2954. ]
  2955. ))
  2956. characterMakers.push(() => makeCharacter(
  2957. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  2958. {
  2959. front: {
  2960. height: math.unit(2, "meters"),
  2961. weight: math.unit(76, "kg"),
  2962. name: "Front",
  2963. image: {
  2964. source: "./media/characters/gale/front.svg"
  2965. }
  2966. },
  2967. frontAlt1: {
  2968. height: math.unit(2, "meters"),
  2969. weight: math.unit(76, "kg"),
  2970. name: "Front (Alt 1)",
  2971. image: {
  2972. source: "./media/characters/gale/front-alt-1.svg"
  2973. }
  2974. },
  2975. frontAlt2: {
  2976. height: math.unit(2, "meters"),
  2977. weight: math.unit(76, "kg"),
  2978. name: "Front (Alt 2)",
  2979. image: {
  2980. source: "./media/characters/gale/front-alt-2.svg"
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(7, "feet")
  2988. },
  2989. {
  2990. name: "Macro",
  2991. height: math.unit(150, "feet"),
  2992. default: true
  2993. },
  2994. {
  2995. name: "Macro+",
  2996. height: math.unit(300, "feet")
  2997. },
  2998. ]
  2999. ))
  3000. characterMakers.push(() => makeCharacter(
  3001. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3002. {
  3003. front: {
  3004. height: math.unit(2, "meters"),
  3005. weight: math.unit(76, "kg"),
  3006. name: "Front",
  3007. image: {
  3008. source: "./media/characters/draylen/front.svg"
  3009. }
  3010. }
  3011. },
  3012. [
  3013. {
  3014. name: "Macro",
  3015. height: math.unit(150, "feet"),
  3016. default: true
  3017. }
  3018. ]
  3019. ))
  3020. characterMakers.push(() => makeCharacter(
  3021. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3022. {
  3023. front: {
  3024. height: math.unit(7 + 9 / 12, "feet"),
  3025. weight: math.unit(379, "lbs"),
  3026. name: "Front",
  3027. image: {
  3028. source: "./media/characters/chez/front.svg"
  3029. }
  3030. },
  3031. side: {
  3032. height: math.unit(7 + 9 / 12, "feet"),
  3033. weight: math.unit(379, "lbs"),
  3034. name: "Side",
  3035. image: {
  3036. source: "./media/characters/chez/side.svg"
  3037. }
  3038. }
  3039. },
  3040. [
  3041. {
  3042. name: "Normal",
  3043. height: math.unit(7 + 9 / 12, "feet"),
  3044. default: true
  3045. },
  3046. {
  3047. name: "God King",
  3048. height: math.unit(9750000, "meters")
  3049. }
  3050. ]
  3051. ))
  3052. characterMakers.push(() => makeCharacter(
  3053. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3054. {
  3055. front: {
  3056. height: math.unit(6, "feet"),
  3057. weight: math.unit(275, "lbs"),
  3058. name: "Front",
  3059. image: {
  3060. source: "./media/characters/kaylum/front.svg",
  3061. bottom: 0.01,
  3062. extra: 1166 / 1031
  3063. }
  3064. },
  3065. frontWingless: {
  3066. height: math.unit(6, "feet"),
  3067. weight: math.unit(275, "lbs"),
  3068. name: "Front (Wingless)",
  3069. image: {
  3070. source: "./media/characters/kaylum/front-wingless.svg",
  3071. bottom: 0.01,
  3072. extra: 1117 / 1031
  3073. }
  3074. }
  3075. },
  3076. [
  3077. {
  3078. name: "Normal",
  3079. height: math.unit(3.05, "meters")
  3080. },
  3081. {
  3082. name: "Master",
  3083. height: math.unit(5.5, "meters")
  3084. },
  3085. {
  3086. name: "Rampage",
  3087. height: math.unit(19, "meters")
  3088. },
  3089. {
  3090. name: "Macro Lite",
  3091. height: math.unit(37, "meters")
  3092. },
  3093. {
  3094. name: "Hyper Predator",
  3095. height: math.unit(61, "meters")
  3096. },
  3097. {
  3098. name: "Macro",
  3099. height: math.unit(138, "meters"),
  3100. default: true
  3101. }
  3102. ]
  3103. ))
  3104. characterMakers.push(() => makeCharacter(
  3105. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3106. {
  3107. front: {
  3108. height: math.unit(6, "feet"),
  3109. weight: math.unit(150, "lbs"),
  3110. name: "Front",
  3111. image: {
  3112. source: "./media/characters/geta/front.svg"
  3113. }
  3114. }
  3115. },
  3116. [
  3117. {
  3118. name: "Micro",
  3119. height: math.unit(3, "inches"),
  3120. default: true
  3121. },
  3122. {
  3123. name: "Normal",
  3124. height: math.unit(5 + 5 / 12, "feet")
  3125. }
  3126. ]
  3127. ))
  3128. characterMakers.push(() => makeCharacter(
  3129. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3130. {
  3131. front: {
  3132. height: math.unit(6, "feet"),
  3133. weight: math.unit(300, "lbs"),
  3134. name: "Front",
  3135. image: {
  3136. source: "./media/characters/tyrnn/front.svg"
  3137. }
  3138. }
  3139. },
  3140. [
  3141. {
  3142. name: "Main Height",
  3143. height: math.unit(355, "feet"),
  3144. default: true
  3145. },
  3146. {
  3147. name: "Fave. Height",
  3148. height: math.unit(2400, "feet")
  3149. }
  3150. ]
  3151. ))
  3152. characterMakers.push(() => makeCharacter(
  3153. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3154. {
  3155. front: {
  3156. height: math.unit(6, "feet"),
  3157. weight: math.unit(300, "lbs"),
  3158. name: "Front",
  3159. image: {
  3160. source: "./media/characters/appledectomy/front.svg"
  3161. }
  3162. }
  3163. },
  3164. [
  3165. {
  3166. name: "Macro",
  3167. height: math.unit(2500, "feet")
  3168. },
  3169. {
  3170. name: "Megamacro",
  3171. height: math.unit(50, "miles"),
  3172. default: true
  3173. },
  3174. {
  3175. name: "Gigamacro",
  3176. height: math.unit(5000, "miles")
  3177. },
  3178. {
  3179. name: "Teramacro",
  3180. height: math.unit(250000, "miles")
  3181. },
  3182. ]
  3183. ))
  3184. characterMakers.push(() => makeCharacter(
  3185. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3186. {
  3187. front: {
  3188. height: math.unit(6, "feet"),
  3189. weight: math.unit(200, "lbs"),
  3190. name: "Front",
  3191. image: {
  3192. source: "./media/characters/vulpes/front.svg",
  3193. extra: 573 / 543,
  3194. bottom: 0.033
  3195. }
  3196. },
  3197. side: {
  3198. height: math.unit(6, "feet"),
  3199. weight: math.unit(200, "lbs"),
  3200. name: "Side",
  3201. image: {
  3202. source: "./media/characters/vulpes/side.svg",
  3203. extra: 573 / 543,
  3204. bottom: 0.01
  3205. }
  3206. },
  3207. back: {
  3208. height: math.unit(6, "feet"),
  3209. weight: math.unit(200, "lbs"),
  3210. name: "Back",
  3211. image: {
  3212. source: "./media/characters/vulpes/back.svg",
  3213. extra: 573 / 543,
  3214. }
  3215. },
  3216. feet: {
  3217. height: math.unit(1.276, "feet"),
  3218. name: "Feet",
  3219. image: {
  3220. source: "./media/characters/vulpes/feet.svg"
  3221. }
  3222. },
  3223. maw: {
  3224. height: math.unit(1.18, "feet"),
  3225. name: "Maw",
  3226. image: {
  3227. source: "./media/characters/vulpes/maw.svg"
  3228. }
  3229. },
  3230. },
  3231. [
  3232. {
  3233. name: "Micro",
  3234. height: math.unit(2, "inches")
  3235. },
  3236. {
  3237. name: "Normal",
  3238. height: math.unit(6.3, "feet")
  3239. },
  3240. {
  3241. name: "Macro",
  3242. height: math.unit(850, "feet")
  3243. },
  3244. {
  3245. name: "Megamacro",
  3246. height: math.unit(7500, "feet"),
  3247. default: true
  3248. },
  3249. {
  3250. name: "Gigamacro",
  3251. height: math.unit(570000, "miles")
  3252. }
  3253. ]
  3254. ))
  3255. characterMakers.push(() => makeCharacter(
  3256. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3257. {
  3258. front: {
  3259. height: math.unit(6, "feet"),
  3260. weight: math.unit(210, "lbs"),
  3261. name: "Front",
  3262. image: {
  3263. source: "./media/characters/rain-fallen/front.svg"
  3264. }
  3265. },
  3266. side: {
  3267. height: math.unit(6, "feet"),
  3268. weight: math.unit(210, "lbs"),
  3269. name: "Side",
  3270. image: {
  3271. source: "./media/characters/rain-fallen/side.svg"
  3272. }
  3273. },
  3274. back: {
  3275. height: math.unit(6, "feet"),
  3276. weight: math.unit(210, "lbs"),
  3277. name: "Back",
  3278. image: {
  3279. source: "./media/characters/rain-fallen/back.svg"
  3280. }
  3281. },
  3282. feral: {
  3283. height: math.unit(9, "feet"),
  3284. weight: math.unit(700, "lbs"),
  3285. name: "Feral",
  3286. image: {
  3287. source: "./media/characters/rain-fallen/feral.svg"
  3288. }
  3289. },
  3290. },
  3291. [
  3292. {
  3293. name: "Normal",
  3294. height: math.unit(5, "meter")
  3295. },
  3296. {
  3297. name: "Macro",
  3298. height: math.unit(150, "meter"),
  3299. default: true
  3300. },
  3301. {
  3302. name: "Megamacro",
  3303. height: math.unit(278e6, "meter")
  3304. },
  3305. {
  3306. name: "Gigamacro",
  3307. height: math.unit(2e9, "meter")
  3308. },
  3309. {
  3310. name: "Teramacro",
  3311. height: math.unit(8e12, "meter")
  3312. },
  3313. {
  3314. name: "Devourer",
  3315. height: math.unit(14, "zettameters")
  3316. },
  3317. {
  3318. name: "Scarlet King",
  3319. height: math.unit(18, "yottameters")
  3320. },
  3321. {
  3322. name: "Void",
  3323. height: math.unit(6.66e66, "yottameters")
  3324. }
  3325. ]
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  3329. {
  3330. standing: {
  3331. height: math.unit(6, "feet"),
  3332. weight: math.unit(180, "lbs"),
  3333. name: "Standing",
  3334. image: {
  3335. source: "./media/characters/zaakira/standing.svg"
  3336. }
  3337. },
  3338. laying: {
  3339. height: math.unit(3, "feet"),
  3340. weight: math.unit(180, "lbs"),
  3341. name: "Laying",
  3342. image: {
  3343. source: "./media/characters/zaakira/laying.svg"
  3344. }
  3345. },
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(12, "feet")
  3351. },
  3352. {
  3353. name: "Macro",
  3354. height: math.unit(279, "feet"),
  3355. default: true
  3356. }
  3357. ]
  3358. ))
  3359. characterMakers.push(() => makeCharacter(
  3360. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  3361. {
  3362. front: {
  3363. height: math.unit(6, "feet"),
  3364. weight: math.unit(250, "lbs"),
  3365. name: "Front",
  3366. image: {
  3367. source: "./media/characters/sigvald/front.svg",
  3368. extra: 1000 / 850
  3369. }
  3370. },
  3371. back: {
  3372. height: math.unit(6, "feet"),
  3373. weight: math.unit(250, "lbs"),
  3374. name: "Back",
  3375. image: {
  3376. source: "./media/characters/sigvald/back.svg"
  3377. }
  3378. },
  3379. },
  3380. [
  3381. {
  3382. name: "Normal",
  3383. height: math.unit(8, "feet")
  3384. },
  3385. {
  3386. name: "Large",
  3387. height: math.unit(12, "feet")
  3388. },
  3389. {
  3390. name: "Larger",
  3391. height: math.unit(20, "feet")
  3392. },
  3393. {
  3394. name: "Macro",
  3395. height: math.unit(150, "feet")
  3396. },
  3397. {
  3398. name: "Macro+",
  3399. height: math.unit(200, "feet"),
  3400. default: true
  3401. },
  3402. ]
  3403. ))
  3404. characterMakers.push(() => makeCharacter(
  3405. { name: "Scott", species: ["fox"], tags: ["taur"] },
  3406. {
  3407. side: {
  3408. height: math.unit(12, "feet"),
  3409. weight: math.unit(2000, "kg"),
  3410. name: "Side",
  3411. image: {
  3412. source: "./media/characters/scott/side.svg",
  3413. extra: 754/724,
  3414. bottom: 0.069
  3415. }
  3416. },
  3417. upright: {
  3418. height: math.unit(12, "feet"),
  3419. weight: math.unit(2000, "kg"),
  3420. name: "Upright",
  3421. image: {
  3422. source: "./media/characters/scott/upright.svg",
  3423. extra: 3881/3722,
  3424. bottom: 0.05
  3425. }
  3426. },
  3427. },
  3428. [
  3429. {
  3430. name: "Normal",
  3431. height: math.unit(12, "feet"),
  3432. default: true
  3433. },
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  3438. {
  3439. side: {
  3440. height: math.unit(8, "meters"),
  3441. weight: math.unit(84755, "lbs"),
  3442. name: "Side",
  3443. image: {
  3444. source: "./media/characters/tobias/side.svg",
  3445. extra: 1474 / 1096,
  3446. bottom: 38.9 / 1513.1235
  3447. }
  3448. },
  3449. },
  3450. [
  3451. {
  3452. name: "Normal",
  3453. height: math.unit(8, "meters"),
  3454. default: true
  3455. },
  3456. ]
  3457. ))
  3458. characterMakers.push(() => makeCharacter(
  3459. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  3460. {
  3461. front: {
  3462. height: math.unit(5.5, "feet"),
  3463. weight: math.unit(400, "lbs"),
  3464. name: "Front",
  3465. image: {
  3466. source: "./media/characters/kieran/front.svg",
  3467. extra: 2694/2364,
  3468. bottom: 217/2908
  3469. }
  3470. },
  3471. side: {
  3472. height: math.unit(5.5, "feet"),
  3473. weight: math.unit(400, "lbs"),
  3474. name: "Side",
  3475. image: {
  3476. source: "./media/characters/kieran/side.svg",
  3477. extra: 875/777,
  3478. bottom: 84.6/959
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(5.5, "feet"),
  3486. default: true
  3487. },
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  3492. {
  3493. side: {
  3494. height: math.unit(2, "meters"),
  3495. weight: math.unit(70, "kg"),
  3496. name: "Side",
  3497. image: {
  3498. source: "./media/characters/sanya/side.svg",
  3499. bottom: 0.02,
  3500. extra: 1.02
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Small",
  3507. height: math.unit(2, "meters")
  3508. },
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(3, "meters")
  3512. },
  3513. {
  3514. name: "Macro",
  3515. height: math.unit(16, "meters"),
  3516. default: true
  3517. },
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  3522. {
  3523. side: {
  3524. height: math.unit(2, "meters"),
  3525. weight: math.unit(120, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/miranda/front.svg",
  3529. extra: 10.6 / 10
  3530. }
  3531. },
  3532. },
  3533. [
  3534. {
  3535. name: "Normal",
  3536. height: math.unit(10, "feet"),
  3537. default: true
  3538. }
  3539. ]
  3540. ))
  3541. characterMakers.push(() => makeCharacter(
  3542. { name: "James", species: ["deer"], tags: ["anthro"] },
  3543. {
  3544. side: {
  3545. height: math.unit(2, "meters"),
  3546. weight: math.unit(100, "kg"),
  3547. name: "Front",
  3548. image: {
  3549. source: "./media/characters/james/front.svg",
  3550. extra: 10 / 8.5
  3551. }
  3552. },
  3553. },
  3554. [
  3555. {
  3556. name: "Normal",
  3557. height: math.unit(8.5, "feet"),
  3558. default: true
  3559. }
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Heather", species: ["cow"], tags: ["taur"] },
  3564. {
  3565. side: {
  3566. height: math.unit(9.5, "feet"),
  3567. weight: math.unit(2500, "lbs"),
  3568. name: "Side",
  3569. image: {
  3570. source: "./media/characters/heather/side.svg"
  3571. }
  3572. },
  3573. },
  3574. [
  3575. {
  3576. name: "Normal",
  3577. height: math.unit(9.5, "feet"),
  3578. default: true
  3579. }
  3580. ]
  3581. ))
  3582. characterMakers.push(() => makeCharacter(
  3583. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  3584. {
  3585. side: {
  3586. height: math.unit(6.5, "feet"),
  3587. weight: math.unit(400, "lbs"),
  3588. name: "Side",
  3589. image: {
  3590. source: "./media/characters/lukas/side.svg",
  3591. extra: 7.25 / 6.5
  3592. }
  3593. },
  3594. },
  3595. [
  3596. {
  3597. name: "Normal",
  3598. height: math.unit(6.5, "feet"),
  3599. default: true
  3600. }
  3601. ]
  3602. ))
  3603. characterMakers.push(() => makeCharacter(
  3604. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  3605. {
  3606. side: {
  3607. height: math.unit(5, "feet"),
  3608. weight: math.unit(3000, "lbs"),
  3609. name: "Side",
  3610. image: {
  3611. source: "./media/characters/louise/side.svg"
  3612. }
  3613. },
  3614. },
  3615. [
  3616. {
  3617. name: "Normal",
  3618. height: math.unit(5, "feet"),
  3619. default: true
  3620. }
  3621. ]
  3622. ))
  3623. characterMakers.push(() => makeCharacter(
  3624. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  3625. {
  3626. side: {
  3627. height: math.unit(6, "feet"),
  3628. weight: math.unit(150, "lbs"),
  3629. name: "Side",
  3630. image: {
  3631. source: "./media/characters/ramona/side.svg"
  3632. }
  3633. },
  3634. },
  3635. [
  3636. {
  3637. name: "Normal",
  3638. height: math.unit(5.3, "meters"),
  3639. default: true
  3640. },
  3641. {
  3642. name: "Macro",
  3643. height: math.unit(20, "stories")
  3644. },
  3645. {
  3646. name: "Macro+",
  3647. height: math.unit(50, "stories")
  3648. },
  3649. ]
  3650. ))
  3651. characterMakers.push(() => makeCharacter(
  3652. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  3653. {
  3654. standing: {
  3655. height: math.unit(5.75, "feet"),
  3656. weight: math.unit(160, "lbs"),
  3657. name: "Standing",
  3658. image: {
  3659. source: "./media/characters/deerpuff/standing.svg",
  3660. extra: 682 / 624
  3661. }
  3662. },
  3663. sitting: {
  3664. height: math.unit(5.75 / 1.79, "feet"),
  3665. weight: math.unit(160, "lbs"),
  3666. name: "Sitting",
  3667. image: {
  3668. source: "./media/characters/deerpuff/sitting.svg",
  3669. bottom: 44 / 400,
  3670. extra: 1
  3671. }
  3672. },
  3673. taurLaying: {
  3674. height: math.unit(6, "feet"),
  3675. weight: math.unit(400, "lbs"),
  3676. name: "Taur (Laying)",
  3677. image: {
  3678. source: "./media/characters/deerpuff/taur-laying.svg"
  3679. }
  3680. },
  3681. },
  3682. [
  3683. {
  3684. name: "Puffball",
  3685. height: math.unit(6, "inches")
  3686. },
  3687. {
  3688. name: "Normalpuff",
  3689. height: math.unit(5.75, "feet")
  3690. },
  3691. {
  3692. name: "Macropuff",
  3693. height: math.unit(1500, "feet"),
  3694. default: true
  3695. },
  3696. {
  3697. name: "Megapuff",
  3698. height: math.unit(500, "miles")
  3699. },
  3700. {
  3701. name: "Gigapuff",
  3702. height: math.unit(250000, "miles")
  3703. },
  3704. {
  3705. name: "Omegapuff",
  3706. height: math.unit(1000, "lightyears")
  3707. },
  3708. ]
  3709. ))
  3710. characterMakers.push(() => makeCharacter(
  3711. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  3712. {
  3713. stomping: {
  3714. height: math.unit(6, "feet"),
  3715. weight: math.unit(170, "lbs"),
  3716. name: "Stomping",
  3717. image: {
  3718. source: "./media/characters/vivian/stomping.svg"
  3719. }
  3720. },
  3721. sitting: {
  3722. height: math.unit(6 / 1.75, "feet"),
  3723. weight: math.unit(170, "lbs"),
  3724. name: "Sitting",
  3725. image: {
  3726. source: "./media/characters/vivian/sitting.svg",
  3727. bottom: 1 / 6.4,
  3728. extra: 1,
  3729. }
  3730. },
  3731. },
  3732. [
  3733. {
  3734. name: "Normal",
  3735. height: math.unit(7, "feet"),
  3736. default: true
  3737. },
  3738. {
  3739. name: "Macro",
  3740. height: math.unit(10, "stories")
  3741. },
  3742. {
  3743. name: "Macro+",
  3744. height: math.unit(30, "stories")
  3745. },
  3746. {
  3747. name: "Megamacro",
  3748. height: math.unit(10, "miles")
  3749. },
  3750. {
  3751. name: "Megamacro+",
  3752. height: math.unit(2750000, "meters")
  3753. },
  3754. ]
  3755. ))
  3756. characterMakers.push(() => makeCharacter(
  3757. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  3758. {
  3759. front: {
  3760. height: math.unit(6, "feet"),
  3761. weight: math.unit(160, "lbs"),
  3762. name: "Front",
  3763. image: {
  3764. source: "./media/characters/prince/front.svg",
  3765. extra: 3400 / 3000
  3766. }
  3767. },
  3768. jumping: {
  3769. height: math.unit(6, "feet"),
  3770. weight: math.unit(160, "lbs"),
  3771. name: "Jumping",
  3772. image: {
  3773. source: "./media/characters/prince/jump.svg",
  3774. extra: 2555 / 2134
  3775. }
  3776. },
  3777. },
  3778. [
  3779. {
  3780. name: "Normal",
  3781. height: math.unit(7.75, "feet"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Not cute",
  3786. height: math.unit(17, "feet")
  3787. },
  3788. {
  3789. name: "I said NOT",
  3790. height: math.unit(91, "feet")
  3791. },
  3792. {
  3793. name: "Please stop",
  3794. height: math.unit(560, "feet")
  3795. },
  3796. {
  3797. name: "What have you done",
  3798. height: math.unit(2200, "feet")
  3799. },
  3800. {
  3801. name: "Deer God",
  3802. height: math.unit(3.6, "miles")
  3803. },
  3804. ]
  3805. ))
  3806. characterMakers.push(() => makeCharacter(
  3807. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  3808. {
  3809. standing: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(300, "lbs"),
  3812. name: "Standing",
  3813. image: {
  3814. source: "./media/characters/psymon/standing.svg",
  3815. extra: 1888 / 1810,
  3816. bottom: 0.05
  3817. }
  3818. },
  3819. slithering: {
  3820. height: math.unit(6, "feet"),
  3821. weight: math.unit(300, "lbs"),
  3822. name: "Slithering",
  3823. image: {
  3824. source: "./media/characters/psymon/slithering.svg",
  3825. extra: 1330 / 1224
  3826. }
  3827. },
  3828. slitheringAlt: {
  3829. height: math.unit(6, "feet"),
  3830. weight: math.unit(300, "lbs"),
  3831. name: "Slithering (Alt)",
  3832. image: {
  3833. source: "./media/characters/psymon/slithering-alt.svg",
  3834. extra: 1330 / 1224
  3835. }
  3836. },
  3837. },
  3838. [
  3839. {
  3840. name: "Normal",
  3841. height: math.unit(11.25, "feet"),
  3842. default: true
  3843. },
  3844. {
  3845. name: "Large",
  3846. height: math.unit(27, "feet")
  3847. },
  3848. {
  3849. name: "Giant",
  3850. height: math.unit(87, "feet")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(365, "feet")
  3855. },
  3856. {
  3857. name: "Megamacro",
  3858. height: math.unit(3, "miles")
  3859. },
  3860. {
  3861. name: "World Serpent",
  3862. height: math.unit(8000, "miles")
  3863. },
  3864. ]
  3865. ))
  3866. characterMakers.push(() => makeCharacter(
  3867. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  3868. {
  3869. front: {
  3870. height: math.unit(6, "feet"),
  3871. weight: math.unit(180, "lbs"),
  3872. name: "Front",
  3873. image: {
  3874. source: "./media/characters/daimos/front.svg",
  3875. extra: 4160 / 3897,
  3876. bottom: 0.021
  3877. }
  3878. }
  3879. },
  3880. [
  3881. {
  3882. name: "Normal",
  3883. height: math.unit(8, "feet"),
  3884. default: true
  3885. },
  3886. {
  3887. name: "Big Dog",
  3888. height: math.unit(22, "feet")
  3889. },
  3890. {
  3891. name: "Macro",
  3892. height: math.unit(127, "feet")
  3893. },
  3894. {
  3895. name: "Megamacro",
  3896. height: math.unit(3600, "feet")
  3897. },
  3898. ]
  3899. ))
  3900. characterMakers.push(() => makeCharacter(
  3901. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  3902. {
  3903. side: {
  3904. height: math.unit(6, "feet"),
  3905. weight: math.unit(180, "lbs"),
  3906. name: "Side",
  3907. image: {
  3908. source: "./media/characters/blake/side.svg",
  3909. extra: 1212 / 1120,
  3910. bottom: 0.05
  3911. }
  3912. },
  3913. crouched: {
  3914. height: math.unit(6 * 0.57, "feet"),
  3915. weight: math.unit(180, "lbs"),
  3916. name: "Crouched",
  3917. image: {
  3918. source: "./media/characters/blake/crouched.svg",
  3919. extra: 840 / 587,
  3920. bottom: 0.04
  3921. }
  3922. },
  3923. bent: {
  3924. height: math.unit(6 * 0.75, "feet"),
  3925. weight: math.unit(180, "lbs"),
  3926. name: "Bent",
  3927. image: {
  3928. source: "./media/characters/blake/bent.svg",
  3929. extra: 592 / 544,
  3930. bottom: 0.035
  3931. }
  3932. },
  3933. },
  3934. [
  3935. {
  3936. name: "Normal",
  3937. height: math.unit(8 + 1 / 6, "feet"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Big Backside",
  3942. height: math.unit(37, "feet")
  3943. },
  3944. {
  3945. name: "Subway Shredder",
  3946. height: math.unit(72, "feet")
  3947. },
  3948. {
  3949. name: "City Carver",
  3950. height: math.unit(1675, "feet")
  3951. },
  3952. {
  3953. name: "Tectonic Tweaker",
  3954. height: math.unit(2300, "miles")
  3955. },
  3956. ]
  3957. ))
  3958. characterMakers.push(() => makeCharacter(
  3959. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  3960. {
  3961. front: {
  3962. height: math.unit(6, "feet"),
  3963. weight: math.unit(180, "lbs"),
  3964. name: "Front",
  3965. image: {
  3966. source: "./media/characters/guisetto/front.svg",
  3967. extra: 856 / 817,
  3968. bottom: 0.06
  3969. }
  3970. },
  3971. airborne: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(180, "lbs"),
  3974. name: "Airborne",
  3975. image: {
  3976. source: "./media/characters/guisetto/airborne.svg",
  3977. extra: 584 / 525
  3978. }
  3979. },
  3980. },
  3981. [
  3982. {
  3983. name: "Normal",
  3984. height: math.unit(10 + 11 / 12, "feet"),
  3985. default: true
  3986. },
  3987. {
  3988. name: "Large",
  3989. height: math.unit(35, "feet")
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(475, "feet")
  3994. },
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  3999. {
  4000. front: {
  4001. height: math.unit(6, "feet"),
  4002. weight: math.unit(180, "lbs"),
  4003. name: "Front",
  4004. image: {
  4005. source: "./media/characters/luxor/front.svg",
  4006. extra: 2940 / 2152
  4007. }
  4008. },
  4009. back: {
  4010. height: math.unit(6, "feet"),
  4011. weight: math.unit(180, "lbs"),
  4012. name: "Back",
  4013. image: {
  4014. source: "./media/characters/luxor/back.svg",
  4015. extra: 1083 / 960
  4016. }
  4017. },
  4018. },
  4019. [
  4020. {
  4021. name: "Normal",
  4022. height: math.unit(5 + 5 / 6, "feet"),
  4023. default: true
  4024. },
  4025. {
  4026. name: "Lamp",
  4027. height: math.unit(50, "feet")
  4028. },
  4029. {
  4030. name: "Lämp",
  4031. height: math.unit(300, "feet")
  4032. },
  4033. {
  4034. name: "The sun is a lamp",
  4035. height: math.unit(250000, "miles")
  4036. },
  4037. ]
  4038. ))
  4039. characterMakers.push(() => makeCharacter(
  4040. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4041. {
  4042. front: {
  4043. height: math.unit(6, "feet"),
  4044. weight: math.unit(50, "lbs"),
  4045. name: "Front",
  4046. image: {
  4047. source: "./media/characters/huoyan/front.svg"
  4048. }
  4049. },
  4050. side: {
  4051. height: math.unit(6, "feet"),
  4052. weight: math.unit(180, "lbs"),
  4053. name: "Side",
  4054. image: {
  4055. source: "./media/characters/huoyan/side.svg"
  4056. }
  4057. },
  4058. },
  4059. [
  4060. {
  4061. name: "Chef",
  4062. height: math.unit(9, "feet")
  4063. },
  4064. {
  4065. name: "Normal",
  4066. height: math.unit(65, "feet"),
  4067. default: true
  4068. },
  4069. {
  4070. name: "Macro",
  4071. height: math.unit(780, "feet")
  4072. },
  4073. {
  4074. name: "Flaming Mountain",
  4075. height: math.unit(4.8, "miles")
  4076. },
  4077. {
  4078. name: "Celestial",
  4079. height: math.unit(765000, "miles")
  4080. },
  4081. ]
  4082. ))
  4083. characterMakers.push(() => makeCharacter(
  4084. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4085. {
  4086. front: {
  4087. height: math.unit(5 + 3 / 4, "feet"),
  4088. weight: math.unit(120, "lbs"),
  4089. name: "Front",
  4090. image: {
  4091. source: "./media/characters/tails/front.svg"
  4092. }
  4093. }
  4094. },
  4095. [
  4096. {
  4097. name: "Normal",
  4098. height: math.unit(5 + 3 / 4, "feet"),
  4099. default: true
  4100. }
  4101. ]
  4102. ))
  4103. characterMakers.push(() => makeCharacter(
  4104. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4105. {
  4106. front: {
  4107. height: math.unit(4, "feet"),
  4108. weight: math.unit(50, "lbs"),
  4109. name: "Front",
  4110. image: {
  4111. source: "./media/characters/rainy/front.svg"
  4112. }
  4113. }
  4114. },
  4115. [
  4116. {
  4117. name: "Macro",
  4118. height: math.unit(800, "feet"),
  4119. default: true
  4120. }
  4121. ]
  4122. ))
  4123. characterMakers.push(() => makeCharacter(
  4124. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4125. {
  4126. front: {
  4127. height: math.unit(6, "feet"),
  4128. weight: math.unit(150, "lbs"),
  4129. name: "Front",
  4130. image: {
  4131. source: "./media/characters/rainier/front.svg"
  4132. }
  4133. }
  4134. },
  4135. [
  4136. {
  4137. name: "Micro",
  4138. height: math.unit(2, "mm"),
  4139. default: true
  4140. }
  4141. ]
  4142. ))
  4143. characterMakers.push(() => makeCharacter(
  4144. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4145. {
  4146. front: {
  4147. height: math.unit(6, "feet"),
  4148. weight: math.unit(180, "lbs"),
  4149. name: "Front",
  4150. image: {
  4151. source: "./media/characters/andy/front.svg"
  4152. }
  4153. }
  4154. },
  4155. [
  4156. {
  4157. name: "Normal",
  4158. height: math.unit(8, "feet"),
  4159. default: true
  4160. },
  4161. {
  4162. name: "Macro",
  4163. height: math.unit(1000, "feet")
  4164. },
  4165. {
  4166. name: "Megamacro",
  4167. height: math.unit(5, "miles")
  4168. },
  4169. {
  4170. name: "Gigamacro",
  4171. height: math.unit(5000, "miles")
  4172. },
  4173. ]
  4174. ))
  4175. characterMakers.push(() => makeCharacter(
  4176. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4177. {
  4178. front: {
  4179. height: math.unit(6, "feet"),
  4180. weight: math.unit(210, "lbs"),
  4181. name: "Front",
  4182. image: {
  4183. source: "./media/characters/cimmaron/front-sfw.svg",
  4184. extra: 701 / 676,
  4185. bottom: 0.046
  4186. }
  4187. },
  4188. back: {
  4189. height: math.unit(6, "feet"),
  4190. weight: math.unit(210, "lbs"),
  4191. name: "Back",
  4192. image: {
  4193. source: "./media/characters/cimmaron/back-sfw.svg",
  4194. extra: 701 / 676,
  4195. bottom: 0.046
  4196. }
  4197. },
  4198. frontNsfw: {
  4199. height: math.unit(6, "feet"),
  4200. weight: math.unit(210, "lbs"),
  4201. name: "Front (NSFW)",
  4202. image: {
  4203. source: "./media/characters/cimmaron/front-nsfw.svg",
  4204. extra: 701 / 676,
  4205. bottom: 0.046
  4206. }
  4207. },
  4208. backNsfw: {
  4209. height: math.unit(6, "feet"),
  4210. weight: math.unit(210, "lbs"),
  4211. name: "Back (NSFW)",
  4212. image: {
  4213. source: "./media/characters/cimmaron/back-nsfw.svg",
  4214. extra: 701 / 676,
  4215. bottom: 0.046
  4216. }
  4217. },
  4218. dick: {
  4219. height: math.unit(1.714, "feet"),
  4220. name: "Dick",
  4221. image: {
  4222. source: "./media/characters/cimmaron/dick.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(6, "feet"),
  4230. default: true
  4231. },
  4232. {
  4233. name: "Macro Mayor",
  4234. height: math.unit(350, "meters")
  4235. },
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4240. {
  4241. front: {
  4242. height: math.unit(6, "feet"),
  4243. weight: math.unit(200, "lbs"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/akari/front.svg",
  4247. extra: 962 / 901,
  4248. bottom: 0.04
  4249. }
  4250. }
  4251. },
  4252. [
  4253. {
  4254. name: "Micro",
  4255. height: math.unit(5, "inches"),
  4256. default: true
  4257. },
  4258. {
  4259. name: "Normal",
  4260. height: math.unit(7, "feet")
  4261. },
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(6, "feet"),
  4269. weight: math.unit(140, "lbs"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/cynosura/front.svg",
  4273. extra: 896 / 847
  4274. }
  4275. },
  4276. back: {
  4277. height: math.unit(6, "feet"),
  4278. weight: math.unit(140, "lbs"),
  4279. name: "Back",
  4280. image: {
  4281. source: "./media/characters/cynosura/back.svg",
  4282. extra: 1365 / 1250
  4283. }
  4284. },
  4285. },
  4286. [
  4287. {
  4288. name: "Micro",
  4289. height: math.unit(4, "inches")
  4290. },
  4291. {
  4292. name: "Normal",
  4293. height: math.unit(5.75, "feet"),
  4294. default: true
  4295. },
  4296. {
  4297. name: "Tall",
  4298. height: math.unit(10, "feet")
  4299. },
  4300. {
  4301. name: "Big",
  4302. height: math.unit(20, "feet")
  4303. },
  4304. {
  4305. name: "Macro",
  4306. height: math.unit(50, "feet")
  4307. },
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4312. {
  4313. front: {
  4314. height: math.unit(6, "feet"),
  4315. weight: math.unit(170, "lbs"),
  4316. name: "Front",
  4317. image: {
  4318. source: "./media/characters/gin/front.svg",
  4319. extra: 1.053,
  4320. bottom: 0.025
  4321. }
  4322. },
  4323. foot: {
  4324. height: math.unit(6 / 4.25, "feet"),
  4325. name: "Foot",
  4326. image: {
  4327. source: "./media/characters/gin/foot.svg"
  4328. }
  4329. },
  4330. sole: {
  4331. height: math.unit(6 / 4.40, "feet"),
  4332. name: "Sole",
  4333. image: {
  4334. source: "./media/characters/gin/sole.svg"
  4335. }
  4336. },
  4337. },
  4338. [
  4339. {
  4340. name: "Normal",
  4341. height: math.unit(13 + 2/12, "feet")
  4342. },
  4343. {
  4344. name: "Macro",
  4345. height: math.unit(1500, "feet")
  4346. },
  4347. {
  4348. name: "Megamacro",
  4349. height: math.unit(200, "miles"),
  4350. default: true
  4351. },
  4352. {
  4353. name: "Gigamacro",
  4354. height: math.unit(500, "megameters")
  4355. },
  4356. {
  4357. name: "Teramacro",
  4358. height: math.unit(15, "lightyears")
  4359. }
  4360. ]
  4361. ))
  4362. characterMakers.push(() => makeCharacter(
  4363. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  4364. {
  4365. front: {
  4366. height: math.unit(6 + 1 / 6, "feet"),
  4367. weight: math.unit(178, "lbs"),
  4368. name: "Front",
  4369. image: {
  4370. source: "./media/characters/guy/front.svg"
  4371. }
  4372. }
  4373. },
  4374. [
  4375. {
  4376. name: "Normal",
  4377. height: math.unit(6 + 1 / 6, "feet"),
  4378. default: true
  4379. },
  4380. {
  4381. name: "Large",
  4382. height: math.unit(25 + 7 / 12, "feet")
  4383. },
  4384. {
  4385. name: "Macro",
  4386. height: math.unit(60 + 9 / 12, "feet")
  4387. },
  4388. {
  4389. name: "Macro+",
  4390. height: math.unit(246, "feet")
  4391. },
  4392. {
  4393. name: "Macro++",
  4394. height: math.unit(878, "feet")
  4395. }
  4396. ]
  4397. ))
  4398. characterMakers.push(() => makeCharacter(
  4399. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  4400. {
  4401. front: {
  4402. height: math.unit(9, "feet"),
  4403. weight: math.unit(800, "lbs"),
  4404. name: "Front",
  4405. image: {
  4406. source: "./media/characters/tiberius/front.svg",
  4407. extra: 2295 / 2071
  4408. }
  4409. },
  4410. back: {
  4411. height: math.unit(9, "feet"),
  4412. weight: math.unit(800, "lbs"),
  4413. name: "Back",
  4414. image: {
  4415. source: "./media/characters/tiberius/back.svg",
  4416. extra: 2373 / 2160
  4417. }
  4418. },
  4419. },
  4420. [
  4421. {
  4422. name: "Normal",
  4423. height: math.unit(9, "feet"),
  4424. default: true
  4425. }
  4426. ]
  4427. ))
  4428. characterMakers.push(() => makeCharacter(
  4429. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  4430. {
  4431. front: {
  4432. height: math.unit(6, "feet"),
  4433. weight: math.unit(600, "lbs"),
  4434. name: "Front",
  4435. image: {
  4436. source: "./media/characters/surgo/front.svg",
  4437. extra: 3591 / 2227
  4438. }
  4439. },
  4440. back: {
  4441. height: math.unit(6, "feet"),
  4442. weight: math.unit(600, "lbs"),
  4443. name: "Back",
  4444. image: {
  4445. source: "./media/characters/surgo/back.svg",
  4446. extra: 3557 / 2228
  4447. }
  4448. },
  4449. laying: {
  4450. height: math.unit(6 * 0.85, "feet"),
  4451. weight: math.unit(600, "lbs"),
  4452. name: "Laying",
  4453. image: {
  4454. source: "./media/characters/surgo/laying.svg"
  4455. }
  4456. },
  4457. },
  4458. [
  4459. {
  4460. name: "Normal",
  4461. height: math.unit(6, "feet"),
  4462. default: true
  4463. }
  4464. ]
  4465. ))
  4466. characterMakers.push(() => makeCharacter(
  4467. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  4468. {
  4469. side: {
  4470. height: math.unit(6, "feet"),
  4471. weight: math.unit(150, "lbs"),
  4472. name: "Side",
  4473. image: {
  4474. source: "./media/characters/cibus/side.svg",
  4475. extra: 800 / 400
  4476. }
  4477. },
  4478. },
  4479. [
  4480. {
  4481. name: "Normal",
  4482. height: math.unit(6, "feet"),
  4483. default: true
  4484. }
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(6, "feet"),
  4492. weight: math.unit(240, "lbs"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/nibbles/front.svg"
  4496. }
  4497. },
  4498. side: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(240, "lbs"),
  4501. name: "Side",
  4502. image: {
  4503. source: "./media/characters/nibbles/side.svg"
  4504. }
  4505. },
  4506. },
  4507. [
  4508. {
  4509. name: "Normal",
  4510. height: math.unit(9, "feet"),
  4511. default: true
  4512. }
  4513. ]
  4514. ))
  4515. characterMakers.push(() => makeCharacter(
  4516. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  4517. {
  4518. side: {
  4519. height: math.unit(5 + 1 / 6, "feet"),
  4520. weight: math.unit(130, "lbs"),
  4521. name: "Side",
  4522. image: {
  4523. source: "./media/characters/rikky/side.svg"
  4524. }
  4525. },
  4526. },
  4527. [
  4528. {
  4529. name: "Normal",
  4530. height: math.unit(5 + 1 / 6, "feet")
  4531. },
  4532. {
  4533. name: "Macro",
  4534. height: math.unit(152, "feet"),
  4535. default: true
  4536. },
  4537. {
  4538. name: "Megamacro",
  4539. height: math.unit(7, "miles")
  4540. }
  4541. ]
  4542. ))
  4543. characterMakers.push(() => makeCharacter(
  4544. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  4545. {
  4546. side: {
  4547. height: math.unit(370, "cm"),
  4548. weight: math.unit(350, "lbs"),
  4549. name: "Side",
  4550. image: {
  4551. source: "./media/characters/malfressa/side.svg"
  4552. }
  4553. },
  4554. walking: {
  4555. height: math.unit(370, "cm"),
  4556. weight: math.unit(350, "lbs"),
  4557. name: "Walking",
  4558. image: {
  4559. source: "./media/characters/malfressa/walking.svg"
  4560. }
  4561. },
  4562. feral: {
  4563. height: math.unit(2500, "cm"),
  4564. weight: math.unit(100000, "lbs"),
  4565. name: "Feral",
  4566. image: {
  4567. source: "./media/characters/malfressa/feral.svg",
  4568. extra: 2108 / 837,
  4569. bottom: 0.02
  4570. }
  4571. },
  4572. },
  4573. [
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(370, "cm")
  4577. },
  4578. {
  4579. name: "Macro",
  4580. height: math.unit(300, "meters"),
  4581. default: true
  4582. }
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  4587. {
  4588. front: {
  4589. height: math.unit(6, "feet"),
  4590. weight: math.unit(60, "kg"),
  4591. name: "Front",
  4592. image: {
  4593. source: "./media/characters/jaro/front.svg"
  4594. }
  4595. },
  4596. back: {
  4597. height: math.unit(6, "feet"),
  4598. weight: math.unit(60, "kg"),
  4599. name: "Back",
  4600. image: {
  4601. source: "./media/characters/jaro/back.svg"
  4602. }
  4603. },
  4604. },
  4605. [
  4606. {
  4607. name: "Micro",
  4608. height: math.unit(7, "inches")
  4609. },
  4610. {
  4611. name: "Normal",
  4612. height: math.unit(5.5, "feet"),
  4613. default: true
  4614. },
  4615. {
  4616. name: "Minimacro",
  4617. height: math.unit(20, "feet")
  4618. },
  4619. {
  4620. name: "Macro",
  4621. height: math.unit(200, "meters")
  4622. }
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  4627. {
  4628. front: {
  4629. height: math.unit(6, "feet"),
  4630. weight: math.unit(195, "lb"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/rogue/front.svg"
  4634. }
  4635. },
  4636. },
  4637. [
  4638. {
  4639. name: "Macro",
  4640. height: math.unit(90, "feet"),
  4641. default: true
  4642. },
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  4647. {
  4648. front: {
  4649. height: math.unit(5 + 8 / 12, "feet"),
  4650. weight: math.unit(140, "lb"),
  4651. name: "Front",
  4652. image: {
  4653. source: "./media/characters/piper/front.svg",
  4654. extra: 3928 / 3681
  4655. }
  4656. },
  4657. },
  4658. [
  4659. {
  4660. name: "Micro",
  4661. height: math.unit(2, "inches")
  4662. },
  4663. {
  4664. name: "Normal",
  4665. height: math.unit(5 + 8 / 12, "feet")
  4666. },
  4667. {
  4668. name: "Macro",
  4669. height: math.unit(250, "feet"),
  4670. default: true
  4671. },
  4672. {
  4673. name: "Megamacro",
  4674. height: math.unit(7, "miles")
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(6, "feet"),
  4683. weight: math.unit(220, "lb"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/gemini/front.svg"
  4687. }
  4688. },
  4689. back: {
  4690. height: math.unit(6, "feet"),
  4691. weight: math.unit(220, "lb"),
  4692. name: "Back",
  4693. image: {
  4694. source: "./media/characters/gemini/back.svg"
  4695. }
  4696. },
  4697. kneeling: {
  4698. height: math.unit(6 / 1.5, "feet"),
  4699. weight: math.unit(220, "lb"),
  4700. name: "Kneeling",
  4701. image: {
  4702. source: "./media/characters/gemini/kneeling.svg",
  4703. bottom: 0.02
  4704. }
  4705. },
  4706. },
  4707. [
  4708. {
  4709. name: "Macro",
  4710. height: math.unit(300, "meters"),
  4711. default: true
  4712. },
  4713. {
  4714. name: "Megamacro",
  4715. height: math.unit(6900, "meters")
  4716. },
  4717. ]
  4718. ))
  4719. characterMakers.push(() => makeCharacter(
  4720. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  4721. {
  4722. anthro: {
  4723. height: math.unit(2.35, "meters"),
  4724. weight: math.unit(73, "kg"),
  4725. name: "Anthro",
  4726. image: {
  4727. source: "./media/characters/alicia/anthro.svg"
  4728. }
  4729. },
  4730. feral: {
  4731. height: math.unit(1.69, "meters"),
  4732. weight: math.unit(73, "kg"),
  4733. name: "Feral",
  4734. image: {
  4735. source: "./media/characters/alicia/feral.svg"
  4736. }
  4737. },
  4738. },
  4739. [
  4740. {
  4741. name: "Normal",
  4742. height: math.unit(2.35, "meters")
  4743. },
  4744. {
  4745. name: "Macro",
  4746. height: math.unit(60, "meters"),
  4747. default: true
  4748. },
  4749. {
  4750. name: "Megamacro",
  4751. height: math.unit(10000, "kilometers")
  4752. },
  4753. ]
  4754. ))
  4755. characterMakers.push(() => makeCharacter(
  4756. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  4757. {
  4758. front: {
  4759. height: math.unit(7, "feet"),
  4760. weight: math.unit(250, "lbs"),
  4761. name: "Front",
  4762. image: {
  4763. source: "./media/characters/archy/front.svg"
  4764. }
  4765. }
  4766. },
  4767. [
  4768. {
  4769. name: "Micro",
  4770. height: math.unit(1, "inch")
  4771. },
  4772. {
  4773. name: "Shorty",
  4774. height: math.unit(5, "feet")
  4775. },
  4776. {
  4777. name: "Normal",
  4778. height: math.unit(7, "feet")
  4779. },
  4780. {
  4781. name: "Macro",
  4782. height: math.unit(600, "meters"),
  4783. default: true
  4784. },
  4785. {
  4786. name: "Megamacro",
  4787. height: math.unit(1, "mile")
  4788. },
  4789. ]
  4790. ))
  4791. characterMakers.push(() => makeCharacter(
  4792. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  4793. {
  4794. front: {
  4795. height: math.unit(1.65, "meters"),
  4796. weight: math.unit(74, "kg"),
  4797. name: "Front",
  4798. image: {
  4799. source: "./media/characters/berri/front.svg"
  4800. }
  4801. }
  4802. },
  4803. [
  4804. {
  4805. name: "Normal",
  4806. height: math.unit(1.65, "meters")
  4807. },
  4808. {
  4809. name: "Macro",
  4810. height: math.unit(60, "m"),
  4811. default: true
  4812. },
  4813. {
  4814. name: "Megamacro",
  4815. height: math.unit(9.213, "km")
  4816. },
  4817. {
  4818. name: "Planet Eater",
  4819. height: math.unit(489, "megameters")
  4820. },
  4821. {
  4822. name: "Teramacro",
  4823. height: math.unit(2471635000000, "meters")
  4824. },
  4825. {
  4826. name: "Examacro",
  4827. height: math.unit(8.0624e+26, "meters")
  4828. }
  4829. ]
  4830. ))
  4831. characterMakers.push(() => makeCharacter(
  4832. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  4833. {
  4834. front: {
  4835. height: math.unit(1.72, "meters"),
  4836. weight: math.unit(68, "kg"),
  4837. name: "Front",
  4838. image: {
  4839. source: "./media/characters/lexi/front.svg"
  4840. }
  4841. }
  4842. },
  4843. [
  4844. {
  4845. name: "Very Smol",
  4846. height: math.unit(10, "mm")
  4847. },
  4848. {
  4849. name: "Micro",
  4850. height: math.unit(6.8, "cm"),
  4851. default: true
  4852. },
  4853. {
  4854. name: "Normal",
  4855. height: math.unit(1.72, "m")
  4856. }
  4857. ]
  4858. ))
  4859. characterMakers.push(() => makeCharacter(
  4860. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  4861. {
  4862. front: {
  4863. height: math.unit(1.69, "meters"),
  4864. weight: math.unit(68, "kg"),
  4865. name: "Front",
  4866. image: {
  4867. source: "./media/characters/martin/front.svg",
  4868. extra: 596 / 581
  4869. }
  4870. }
  4871. },
  4872. [
  4873. {
  4874. name: "Micro",
  4875. height: math.unit(6.85, "cm"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Normal",
  4880. height: math.unit(1.69, "m")
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Juno", species: ["shiba-inu"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(1.69, "meters"),
  4889. weight: math.unit(68, "kg"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/juno/front.svg"
  4893. }
  4894. }
  4895. },
  4896. [
  4897. {
  4898. name: "Micro",
  4899. height: math.unit(7, "cm")
  4900. },
  4901. {
  4902. name: "Normal",
  4903. height: math.unit(1.89, "m")
  4904. },
  4905. {
  4906. name: "Macro",
  4907. height: math.unit(353, "meters"),
  4908. default: true
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Samantha", species: ["canine"], tags: ["anthro"] },
  4914. {
  4915. front: {
  4916. height: math.unit(1.93, "meters"),
  4917. weight: math.unit(83, "kg"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/samantha/front.svg"
  4921. }
  4922. },
  4923. frontClothed: {
  4924. height: math.unit(1.93, "meters"),
  4925. weight: math.unit(83, "kg"),
  4926. name: "Front (Clothed)",
  4927. image: {
  4928. source: "./media/characters/samantha/front-clothed.svg"
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(1.93, "meters"),
  4933. weight: math.unit(83, "kg"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/samantha/back.svg"
  4937. }
  4938. },
  4939. },
  4940. [
  4941. {
  4942. name: "Normal",
  4943. height: math.unit(1.93, "m")
  4944. },
  4945. {
  4946. name: "Macro",
  4947. height: math.unit(74, "meters"),
  4948. default: true
  4949. },
  4950. {
  4951. name: "Macro+",
  4952. height: math.unit(223, "meters"),
  4953. },
  4954. {
  4955. name: "Megamacro",
  4956. height: math.unit(8381, "meters"),
  4957. },
  4958. {
  4959. name: "Megamacro+",
  4960. height: math.unit(12000, "kilometers")
  4961. },
  4962. ]
  4963. ))
  4964. characterMakers.push(() => makeCharacter(
  4965. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  4966. {
  4967. front: {
  4968. height: math.unit(1.92, "meters"),
  4969. weight: math.unit(80, "kg"),
  4970. name: "Front",
  4971. image: {
  4972. source: "./media/characters/dr-clay/front.svg"
  4973. }
  4974. },
  4975. frontClothed: {
  4976. height: math.unit(1.92, "meters"),
  4977. weight: math.unit(80, "kg"),
  4978. name: "Front (Clothed)",
  4979. image: {
  4980. source: "./media/characters/dr-clay/front-clothed.svg"
  4981. }
  4982. }
  4983. },
  4984. [
  4985. {
  4986. name: "Normal",
  4987. height: math.unit(1.92, "m")
  4988. },
  4989. {
  4990. name: "Macro",
  4991. height: math.unit(214, "meters"),
  4992. default: true
  4993. },
  4994. {
  4995. name: "Macro+",
  4996. height: math.unit(12.237, "meters"),
  4997. },
  4998. {
  4999. name: "Megamacro",
  5000. height: math.unit(557, "megameters"),
  5001. },
  5002. {
  5003. name: "Unimaginable",
  5004. height: math.unit(120e9, "lightyears")
  5005. },
  5006. ]
  5007. ))
  5008. characterMakers.push(() => makeCharacter(
  5009. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5010. {
  5011. front: {
  5012. height: math.unit(2, "meters"),
  5013. weight: math.unit(80, "kg"),
  5014. name: "Front",
  5015. image: {
  5016. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5017. }
  5018. }
  5019. },
  5020. [
  5021. {
  5022. name: "Teramacro",
  5023. height: math.unit(500000, "lightyears"),
  5024. default: true
  5025. },
  5026. ]
  5027. ))
  5028. characterMakers.push(() => makeCharacter(
  5029. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5030. {
  5031. front: {
  5032. height: math.unit(2, "meters"),
  5033. weight: math.unit(150, "kg"),
  5034. name: "Front",
  5035. image: {
  5036. source: "./media/characters/vemus/front.svg",
  5037. extra: 2384 / 2084,
  5038. bottom: 0.0123
  5039. }
  5040. }
  5041. },
  5042. [
  5043. {
  5044. name: "Normal",
  5045. height: math.unit(3.75, "meters"),
  5046. default: true
  5047. },
  5048. {
  5049. name: "Big",
  5050. height: math.unit(8, "meters")
  5051. },
  5052. {
  5053. name: "Macro",
  5054. height: math.unit(100, "meters")
  5055. },
  5056. {
  5057. name: "Macro+",
  5058. height: math.unit(1500, "meters")
  5059. },
  5060. {
  5061. name: "Stellar",
  5062. height: math.unit(14e8, "meters")
  5063. },
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5068. {
  5069. front: {
  5070. height: math.unit(2, "meters"),
  5071. weight: math.unit(70, "kg"),
  5072. name: "Front",
  5073. image: {
  5074. source: "./media/characters/beherit/front.svg",
  5075. extra: 1408 / 1242
  5076. }
  5077. }
  5078. },
  5079. [
  5080. {
  5081. name: "Normal",
  5082. height: math.unit(6, "feet")
  5083. },
  5084. {
  5085. name: "Lorg",
  5086. height: math.unit(25, "feet"),
  5087. default: true
  5088. },
  5089. {
  5090. name: "Lorger",
  5091. height: math.unit(75, "feet")
  5092. },
  5093. {
  5094. name: "Macro",
  5095. height: math.unit(200, "meters")
  5096. },
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5101. {
  5102. front: {
  5103. height: math.unit(2, "meters"),
  5104. weight: math.unit(150, "kg"),
  5105. name: "Front",
  5106. image: {
  5107. source: "./media/characters/everett/front.svg",
  5108. extra: 2038 / 1737,
  5109. bottom: 0.03
  5110. }
  5111. },
  5112. paw: {
  5113. height: math.unit(2 / 3.6, "meters"),
  5114. name: "Paw",
  5115. image: {
  5116. source: "./media/characters/everett/paw.svg"
  5117. }
  5118. },
  5119. },
  5120. [
  5121. {
  5122. name: "Normal",
  5123. height: math.unit(15, "feet"),
  5124. default: true
  5125. },
  5126. {
  5127. name: "Lorg",
  5128. height: math.unit(70, "feet"),
  5129. default: true
  5130. },
  5131. {
  5132. name: "Lorger",
  5133. height: math.unit(250, "feet")
  5134. },
  5135. {
  5136. name: "Macro",
  5137. height: math.unit(500, "meters")
  5138. },
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5143. {
  5144. front: {
  5145. height: math.unit(2, "meters"),
  5146. weight: math.unit(86, "kg"),
  5147. name: "Front",
  5148. image: {
  5149. source: "./media/characters/rose-lion/front.svg"
  5150. }
  5151. },
  5152. bent: {
  5153. height: math.unit(2 / 1.4288, "meters"),
  5154. weight: math.unit(86, "kg"),
  5155. name: "Bent",
  5156. image: {
  5157. source: "./media/characters/rose-lion/bent.svg"
  5158. }
  5159. }
  5160. },
  5161. [
  5162. {
  5163. name: "Mini-Micro",
  5164. height: math.unit(1, "cm")
  5165. },
  5166. {
  5167. name: "Micro",
  5168. height: math.unit(3.5, "inches"),
  5169. default: true
  5170. },
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(6 + 1 / 6, "feet")
  5174. },
  5175. {
  5176. name: "Mini-Macro",
  5177. height: math.unit(9 + 10 / 12, "feet")
  5178. },
  5179. ]
  5180. ))
  5181. characterMakers.push(() => makeCharacter(
  5182. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5183. {
  5184. front: {
  5185. height: math.unit(2, "meters"),
  5186. weight: math.unit(350, "lbs"),
  5187. name: "Front",
  5188. image: {
  5189. source: "./media/characters/regal/front.svg"
  5190. }
  5191. },
  5192. back: {
  5193. height: math.unit(2, "meters"),
  5194. weight: math.unit(350, "lbs"),
  5195. name: "Back",
  5196. image: {
  5197. source: "./media/characters/regal/back.svg"
  5198. }
  5199. },
  5200. },
  5201. [
  5202. {
  5203. name: "Macro",
  5204. height: math.unit(350, "feet"),
  5205. default: true
  5206. }
  5207. ]
  5208. ))
  5209. characterMakers.push(() => makeCharacter(
  5210. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5211. {
  5212. front: {
  5213. height: math.unit(4 + 11 / 12, "feet"),
  5214. weight: math.unit(100, "lbs"),
  5215. name: "Front",
  5216. image: {
  5217. source: "./media/characters/opal/front.svg"
  5218. }
  5219. },
  5220. frontAlt: {
  5221. height: math.unit(4 + 11 / 12, "feet"),
  5222. weight: math.unit(100, "lbs"),
  5223. name: "Front (Alt)",
  5224. image: {
  5225. source: "./media/characters/opal/front-alt.svg"
  5226. }
  5227. },
  5228. },
  5229. [
  5230. {
  5231. name: "Small",
  5232. height: math.unit(4 + 11 / 12, "feet")
  5233. },
  5234. {
  5235. name: "Normal",
  5236. height: math.unit(20, "feet"),
  5237. default: true
  5238. },
  5239. {
  5240. name: "Macro",
  5241. height: math.unit(120, "feet")
  5242. },
  5243. {
  5244. name: "Megamacro",
  5245. height: math.unit(80, "miles")
  5246. },
  5247. {
  5248. name: "True Size",
  5249. height: math.unit(100000, "lightyears")
  5250. },
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  5255. {
  5256. front: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(200, "lbs"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/vector-wuff/front.svg"
  5262. }
  5263. }
  5264. },
  5265. [
  5266. {
  5267. name: "Normal",
  5268. height: math.unit(2.8, "meters")
  5269. },
  5270. {
  5271. name: "Macro",
  5272. height: math.unit(450, "meters"),
  5273. default: true
  5274. },
  5275. {
  5276. name: "Megamacro",
  5277. height: math.unit(15, "kilometers")
  5278. }
  5279. ]
  5280. ))
  5281. characterMakers.push(() => makeCharacter(
  5282. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  5283. {
  5284. front: {
  5285. height: math.unit(6, "feet"),
  5286. weight: math.unit(256, "lbs"),
  5287. name: "Front",
  5288. image: {
  5289. source: "./media/characters/dannik/front.svg"
  5290. }
  5291. }
  5292. },
  5293. [
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(69.57, "meters"),
  5297. default: true
  5298. },
  5299. ]
  5300. ))
  5301. characterMakers.push(() => makeCharacter(
  5302. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  5303. {
  5304. front: {
  5305. height: math.unit(6, "feet"),
  5306. weight: math.unit(120, "lbs"),
  5307. name: "Front",
  5308. image: {
  5309. source: "./media/characters/azura-saharah/front.svg"
  5310. }
  5311. },
  5312. back: {
  5313. height: math.unit(6, "feet"),
  5314. weight: math.unit(120, "lbs"),
  5315. name: "Back",
  5316. image: {
  5317. source: "./media/characters/azura-saharah/back.svg"
  5318. }
  5319. },
  5320. },
  5321. [
  5322. {
  5323. name: "Macro",
  5324. height: math.unit(100, "feet"),
  5325. default: true
  5326. },
  5327. ]
  5328. ))
  5329. characterMakers.push(() => makeCharacter(
  5330. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  5331. {
  5332. side: {
  5333. height: math.unit(5 + 4 / 12, "feet"),
  5334. weight: math.unit(163, "lbs"),
  5335. name: "Side",
  5336. image: {
  5337. source: "./media/characters/kennedy/side.svg"
  5338. }
  5339. }
  5340. },
  5341. [
  5342. {
  5343. name: "Standard Doggo",
  5344. height: math.unit(5 + 4 / 12, "feet")
  5345. },
  5346. {
  5347. name: "Big Doggo",
  5348. height: math.unit(25 + 3 / 12, "feet"),
  5349. default: true
  5350. },
  5351. ]
  5352. ))
  5353. characterMakers.push(() => makeCharacter(
  5354. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  5355. {
  5356. front: {
  5357. height: math.unit(6, "feet"),
  5358. weight: math.unit(90, "lbs"),
  5359. name: "Front",
  5360. image: {
  5361. source: "./media/characters/odi-lunar/front.svg"
  5362. }
  5363. }
  5364. },
  5365. [
  5366. {
  5367. name: "Micro",
  5368. height: math.unit(3, "inches"),
  5369. default: true
  5370. },
  5371. {
  5372. name: "Normal",
  5373. height: math.unit(5.5, "feet")
  5374. }
  5375. ]
  5376. ))
  5377. characterMakers.push(() => makeCharacter(
  5378. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  5379. {
  5380. back: {
  5381. height: math.unit(6, "feet"),
  5382. weight: math.unit(220, "lbs"),
  5383. name: "Back",
  5384. image: {
  5385. source: "./media/characters/mandake/back.svg"
  5386. }
  5387. }
  5388. },
  5389. [
  5390. {
  5391. name: "Normal",
  5392. height: math.unit(7, "feet"),
  5393. default: true
  5394. },
  5395. {
  5396. name: "Macro",
  5397. height: math.unit(78, "feet")
  5398. },
  5399. {
  5400. name: "Macro+",
  5401. height: math.unit(300, "meters")
  5402. },
  5403. {
  5404. name: "Macro++",
  5405. height: math.unit(2400, "feet")
  5406. },
  5407. {
  5408. name: "Megamacro",
  5409. height: math.unit(5167, "meters")
  5410. },
  5411. {
  5412. name: "Gigamacro",
  5413. height: math.unit(41769, "miles")
  5414. },
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  5419. {
  5420. front: {
  5421. height: math.unit(6, "feet"),
  5422. weight: math.unit(120, "lbs"),
  5423. name: "Front",
  5424. image: {
  5425. source: "./media/characters/yozey/front.svg"
  5426. }
  5427. },
  5428. frontAlt: {
  5429. height: math.unit(6, "feet"),
  5430. weight: math.unit(120, "lbs"),
  5431. name: "Front (Alt)",
  5432. image: {
  5433. source: "./media/characters/yozey/front-alt.svg"
  5434. }
  5435. },
  5436. side: {
  5437. height: math.unit(6, "feet"),
  5438. weight: math.unit(120, "lbs"),
  5439. name: "Side",
  5440. image: {
  5441. source: "./media/characters/yozey/side.svg"
  5442. }
  5443. },
  5444. },
  5445. [
  5446. {
  5447. name: "Micro",
  5448. height: math.unit(3, "inches"),
  5449. default: true
  5450. },
  5451. {
  5452. name: "Normal",
  5453. height: math.unit(6, "feet")
  5454. }
  5455. ]
  5456. ))
  5457. characterMakers.push(() => makeCharacter(
  5458. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  5459. {
  5460. front: {
  5461. height: math.unit(6, "feet"),
  5462. weight: math.unit(103, "lbs"),
  5463. name: "Front",
  5464. image: {
  5465. source: "./media/characters/valeska-voss/front.svg"
  5466. }
  5467. }
  5468. },
  5469. [
  5470. {
  5471. name: "Mini-Sized Sub",
  5472. height: math.unit(3.1, "inches")
  5473. },
  5474. {
  5475. name: "Mid-Sized Sub",
  5476. height: math.unit(6.2, "inches")
  5477. },
  5478. {
  5479. name: "Full-Sized Sub",
  5480. height: math.unit(9.3, "inches")
  5481. },
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(5 + 2 / 12, "foot"),
  5485. default: true
  5486. },
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  5491. {
  5492. front: {
  5493. height: math.unit(6, "feet"),
  5494. weight: math.unit(160, "lbs"),
  5495. name: "Front",
  5496. image: {
  5497. source: "./media/characters/gene-zeta/front.svg",
  5498. bottom: 0.03,
  5499. extra: 1
  5500. }
  5501. }
  5502. },
  5503. [
  5504. {
  5505. name: "Normal",
  5506. height: math.unit(6.25, "foot"),
  5507. default: true
  5508. },
  5509. ]
  5510. ))
  5511. characterMakers.push(() => makeCharacter(
  5512. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  5513. {
  5514. front: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(350, "lbs"),
  5517. name: "Front",
  5518. image: {
  5519. source: "./media/characters/razinox/front.svg",
  5520. extra: 1686 / 1548,
  5521. bottom: 28.2/1868
  5522. }
  5523. },
  5524. back: {
  5525. height: math.unit(6, "feet"),
  5526. weight: math.unit(350, "lbs"),
  5527. name: "Back",
  5528. image: {
  5529. source: "./media/characters/razinox/back.svg",
  5530. extra: 1660 / 1590,
  5531. bottom: 15/1665
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(10 + 8 / 12, "foot")
  5539. },
  5540. {
  5541. name: "Minimacro",
  5542. height: math.unit(15, "foot")
  5543. },
  5544. {
  5545. name: "Macro",
  5546. height: math.unit(60, "foot"),
  5547. default: true
  5548. },
  5549. {
  5550. name: "Megamacro",
  5551. height: math.unit(5, "miles")
  5552. },
  5553. {
  5554. name: "Gigamacro",
  5555. height: math.unit(6000, "miles")
  5556. },
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  5561. {
  5562. front: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(150, "lbs"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/cobalt/front.svg"
  5568. }
  5569. }
  5570. },
  5571. [
  5572. {
  5573. name: "Normal",
  5574. height: math.unit(8 + 1 / 12, "foot")
  5575. },
  5576. {
  5577. name: "Macro",
  5578. height: math.unit(111, "foot"),
  5579. default: true
  5580. },
  5581. {
  5582. name: "Supracosmic",
  5583. height: math.unit(1e42, "feet")
  5584. },
  5585. ]
  5586. ))
  5587. characterMakers.push(() => makeCharacter(
  5588. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  5589. {
  5590. front: {
  5591. height: math.unit(6, "feet"),
  5592. weight: math.unit(140, "lbs"),
  5593. name: "Front",
  5594. image: {
  5595. source: "./media/characters/amanda/front.svg"
  5596. }
  5597. }
  5598. },
  5599. [
  5600. {
  5601. name: "Micro",
  5602. height: math.unit(5, "inches"),
  5603. default: true
  5604. },
  5605. ]
  5606. ))
  5607. characterMakers.push(() => makeCharacter(
  5608. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  5609. {
  5610. front: {
  5611. height: math.unit(5.59, "feet"),
  5612. weight: math.unit(250, "lbs"),
  5613. name: "Front",
  5614. image: {
  5615. source: "./media/characters/teal/front.svg"
  5616. }
  5617. },
  5618. frontAlt: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(250, "lbs"),
  5621. name: "Front (Alt)",
  5622. image: {
  5623. source: "./media/characters/teal/front-alt.svg",
  5624. bottom: 0.04,
  5625. extra: 1
  5626. }
  5627. },
  5628. },
  5629. [
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(12, "feet"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(300, "feet")
  5638. },
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  5643. {
  5644. frontCat: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(180, "lbs"),
  5647. name: "Front (Cat)",
  5648. image: {
  5649. source: "./media/characters/ravin-amulet/front-cat.svg"
  5650. }
  5651. },
  5652. frontCatAlt: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(180, "lbs"),
  5655. name: "Front (Alt, Cat)",
  5656. image: {
  5657. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5658. }
  5659. },
  5660. frontWerewolf: {
  5661. height: math.unit(6 * 1.2, "feet"),
  5662. weight: math.unit(225, "lbs"),
  5663. name: "Front (Werewolf)",
  5664. image: {
  5665. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5666. }
  5667. },
  5668. backWerewolf: {
  5669. height: math.unit(6 * 1.2, "feet"),
  5670. weight: math.unit(225, "lbs"),
  5671. name: "Back (Werewolf)",
  5672. image: {
  5673. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5674. }
  5675. },
  5676. },
  5677. [
  5678. {
  5679. name: "Nano",
  5680. height: math.unit(1, "micrometer")
  5681. },
  5682. {
  5683. name: "Micro",
  5684. height: math.unit(1, "inch")
  5685. },
  5686. {
  5687. name: "Normal",
  5688. height: math.unit(6, "feet"),
  5689. default: true
  5690. },
  5691. {
  5692. name: "Macro",
  5693. height: math.unit(60, "feet")
  5694. }
  5695. ]
  5696. ))
  5697. characterMakers.push(() => makeCharacter(
  5698. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  5699. {
  5700. front: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(165, "lbs"),
  5703. name: "Front",
  5704. image: {
  5705. source: "./media/characters/fluoresce/front.svg"
  5706. }
  5707. }
  5708. },
  5709. [
  5710. {
  5711. name: "Micro",
  5712. height: math.unit(6, "cm")
  5713. },
  5714. {
  5715. name: "Normal",
  5716. height: math.unit(5 + 7 / 12, "feet"),
  5717. default: true
  5718. },
  5719. {
  5720. name: "Macro",
  5721. height: math.unit(56, "feet")
  5722. },
  5723. {
  5724. name: "Megamacro",
  5725. height: math.unit(1.9, "miles")
  5726. },
  5727. ]
  5728. ))
  5729. characterMakers.push(() => makeCharacter(
  5730. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  5731. {
  5732. front: {
  5733. height: math.unit(9 + 6 / 12, "feet"),
  5734. weight: math.unit(523, "lbs"),
  5735. name: "Side",
  5736. image: {
  5737. source: "./media/characters/aurora/side.svg"
  5738. }
  5739. }
  5740. },
  5741. [
  5742. {
  5743. name: "Normal",
  5744. height: math.unit(9 + 6 / 12, "feet")
  5745. },
  5746. {
  5747. name: "Macro",
  5748. height: math.unit(96, "feet"),
  5749. default: true
  5750. },
  5751. {
  5752. name: "Macro+",
  5753. height: math.unit(243, "feet")
  5754. },
  5755. ]
  5756. ))
  5757. characterMakers.push(() => makeCharacter(
  5758. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  5759. {
  5760. front: {
  5761. height: math.unit(194, "cm"),
  5762. weight: math.unit(90, "kg"),
  5763. name: "Front",
  5764. image: {
  5765. source: "./media/characters/ranek/front.svg"
  5766. }
  5767. },
  5768. side: {
  5769. height: math.unit(194, "cm"),
  5770. weight: math.unit(90, "kg"),
  5771. name: "Side",
  5772. image: {
  5773. source: "./media/characters/ranek/side.svg"
  5774. }
  5775. },
  5776. back: {
  5777. height: math.unit(194, "cm"),
  5778. weight: math.unit(90, "kg"),
  5779. name: "Back",
  5780. image: {
  5781. source: "./media/characters/ranek/back.svg"
  5782. }
  5783. },
  5784. feral: {
  5785. height: math.unit(30, "cm"),
  5786. weight: math.unit(1.6, "lbs"),
  5787. name: "Feral",
  5788. image: {
  5789. source: "./media/characters/ranek/feral.svg"
  5790. }
  5791. },
  5792. },
  5793. [
  5794. {
  5795. name: "Normal",
  5796. height: math.unit(194, "cm"),
  5797. default: true
  5798. },
  5799. {
  5800. name: "Macro",
  5801. height: math.unit(100, "meters")
  5802. },
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  5807. {
  5808. front: {
  5809. height: math.unit(5 + 6 / 12, "feet"),
  5810. weight: math.unit(153, "lbs"),
  5811. name: "Front",
  5812. image: {
  5813. source: "./media/characters/andrew-cooper/front.svg"
  5814. }
  5815. },
  5816. },
  5817. [
  5818. {
  5819. name: "Nano",
  5820. height: math.unit(1, "mm")
  5821. },
  5822. {
  5823. name: "Micro",
  5824. height: math.unit(2, "inches")
  5825. },
  5826. {
  5827. name: "Normal",
  5828. height: math.unit(5 + 6 / 12, "feet"),
  5829. default: true
  5830. }
  5831. ]
  5832. ))
  5833. characterMakers.push(() => makeCharacter(
  5834. { name: "Akane Sato" },
  5835. {
  5836. front: {
  5837. height: math.unit(6, "feet"),
  5838. weight: math.unit(180, "lbs"),
  5839. name: "Front",
  5840. image: {
  5841. source: "./media/characters/akane-sato/front.svg",
  5842. extra: 1219 / 1140
  5843. }
  5844. },
  5845. back: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(180, "lbs"),
  5848. name: "Back",
  5849. image: {
  5850. source: "./media/characters/akane-sato/back.svg",
  5851. extra: 1219 / 1170
  5852. }
  5853. },
  5854. },
  5855. [
  5856. {
  5857. name: "Normal",
  5858. height: math.unit(2.5, "meters")
  5859. },
  5860. {
  5861. name: "Macro",
  5862. height: math.unit(250, "meters"),
  5863. default: true
  5864. },
  5865. {
  5866. name: "Megamacro",
  5867. height: math.unit(25, "km")
  5868. },
  5869. ]
  5870. ))
  5871. characterMakers.push(() => makeCharacter(
  5872. { name: "Rook" },
  5873. {
  5874. front: {
  5875. height: math.unit(6, "feet"),
  5876. weight: math.unit(65, "kg"),
  5877. name: "Front",
  5878. image: {
  5879. source: "./media/characters/rook/front.svg",
  5880. extra: 960/950
  5881. }
  5882. }
  5883. },
  5884. [
  5885. {
  5886. name: "Normal",
  5887. height: math.unit(8.8, "feet")
  5888. },
  5889. {
  5890. name: "Macro",
  5891. height: math.unit(88, "feet"),
  5892. default: true
  5893. },
  5894. {
  5895. name: "Megamacro",
  5896. height: math.unit(8, "miles")
  5897. },
  5898. ]
  5899. ))
  5900. characterMakers.push(() => makeCharacter(
  5901. { name: "Prodigy" },
  5902. {
  5903. front: {
  5904. height: math.unit(12 + 2 / 12, "feet"),
  5905. weight: math.unit(808, "lbs"),
  5906. name: "Front",
  5907. image: {
  5908. source: "./media/characters/prodigy/front.svg"
  5909. }
  5910. }
  5911. },
  5912. [
  5913. {
  5914. name: "Normal",
  5915. height: math.unit(12 + 2 / 12, "feet"),
  5916. default: true
  5917. },
  5918. {
  5919. name: "Macro",
  5920. height: math.unit(143, "feet")
  5921. },
  5922. {
  5923. name: "Macro+",
  5924. height: math.unit(400, "feet")
  5925. },
  5926. ]
  5927. ))
  5928. characterMakers.push(() => makeCharacter(
  5929. { name: "Daniel" },
  5930. {
  5931. front: {
  5932. height: math.unit(6, "feet"),
  5933. weight: math.unit(225, "lbs"),
  5934. name: "Front",
  5935. image: {
  5936. source: "./media/characters/daniel/front.svg"
  5937. }
  5938. },
  5939. leaning: {
  5940. height: math.unit(6, "feet"),
  5941. weight: math.unit(225, "lbs"),
  5942. name: "Leaning",
  5943. image: {
  5944. source: "./media/characters/daniel/leaning.svg"
  5945. }
  5946. },
  5947. },
  5948. [
  5949. {
  5950. name: "Macro",
  5951. height: math.unit(1000, "feet"),
  5952. default: true
  5953. },
  5954. ]
  5955. ))
  5956. characterMakers.push(() => makeCharacter(
  5957. { name: "Chiros" },
  5958. {
  5959. front: {
  5960. height: math.unit(6, "feet"),
  5961. weight: math.unit(88, "lbs"),
  5962. name: "Front",
  5963. image: {
  5964. source: "./media/characters/chiros/front.svg",
  5965. extra: 306 / 226
  5966. }
  5967. },
  5968. side: {
  5969. height: math.unit(6, "feet"),
  5970. weight: math.unit(88, "lbs"),
  5971. name: "Side",
  5972. image: {
  5973. source: "./media/characters/chiros/side.svg",
  5974. extra: 306 / 226
  5975. }
  5976. },
  5977. },
  5978. [
  5979. {
  5980. name: "Normal",
  5981. height: math.unit(6, "cm"),
  5982. default: true
  5983. },
  5984. ]
  5985. ))
  5986. characterMakers.push(() => makeCharacter(
  5987. { name: "Selka" },
  5988. {
  5989. front: {
  5990. height: math.unit(6, "feet"),
  5991. weight: math.unit(100, "lbs"),
  5992. name: "Front",
  5993. image: {
  5994. source: "./media/characters/selka/front.svg",
  5995. extra: 947 / 887
  5996. }
  5997. }
  5998. },
  5999. [
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(5, "cm"),
  6003. default: true
  6004. },
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Verin" },
  6009. {
  6010. front: {
  6011. height: math.unit(8 + 3 / 12, "feet"),
  6012. weight: math.unit(424, "lbs"),
  6013. name: "Front",
  6014. image: {
  6015. source: "./media/characters/verin/front.svg",
  6016. extra: 1845 / 1550
  6017. }
  6018. },
  6019. frontArmored: {
  6020. height: math.unit(8 + 3 / 12, "feet"),
  6021. weight: math.unit(424, "lbs"),
  6022. name: "Front (Armored)",
  6023. image: {
  6024. source: "./media/characters/verin/front-armor.svg",
  6025. extra: 1845 / 1550,
  6026. bottom: 0.01
  6027. }
  6028. },
  6029. back: {
  6030. height: math.unit(8 + 3 / 12, "feet"),
  6031. weight: math.unit(424, "lbs"),
  6032. name: "Back",
  6033. image: {
  6034. source: "./media/characters/verin/back.svg",
  6035. bottom: 0.1,
  6036. extra: 1
  6037. }
  6038. },
  6039. foot: {
  6040. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6041. name: "Foot",
  6042. image: {
  6043. source: "./media/characters/verin/foot.svg"
  6044. }
  6045. },
  6046. },
  6047. [
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(8 + 3 / 12, "feet")
  6051. },
  6052. {
  6053. name: "Minimacro",
  6054. height: math.unit(21, "feet"),
  6055. default: true
  6056. },
  6057. {
  6058. name: "Macro",
  6059. height: math.unit(626, "feet")
  6060. },
  6061. ]
  6062. ))
  6063. characterMakers.push(() => makeCharacter(
  6064. { name: "Sovrim Terraquian" },
  6065. {
  6066. front: {
  6067. height: math.unit(2.718, "meters"),
  6068. weight: math.unit(150, "lbs"),
  6069. name: "Front",
  6070. image: {
  6071. source: "./media/characters/sovrim-terraquian/front.svg"
  6072. }
  6073. },
  6074. back: {
  6075. height: math.unit(2.718, "meters"),
  6076. weight: math.unit(150, "lbs"),
  6077. name: "Back",
  6078. image: {
  6079. source: "./media/characters/sovrim-terraquian/back.svg"
  6080. }
  6081. }
  6082. },
  6083. [
  6084. {
  6085. name: "Micro",
  6086. height: math.unit(2, "inches")
  6087. },
  6088. {
  6089. name: "Small",
  6090. height: math.unit(1, "meter")
  6091. },
  6092. {
  6093. name: "Normal",
  6094. height: math.unit(Math.E, "meters"),
  6095. default: true
  6096. },
  6097. {
  6098. name: "Macro",
  6099. height: math.unit(20, "meters")
  6100. },
  6101. {
  6102. name: "Macro+",
  6103. height: math.unit(400, "meters")
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Reece Silvermane" },
  6109. {
  6110. front: {
  6111. height: math.unit(7, "feet"),
  6112. weight: math.unit(489, "lbs"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/reece-silvermane/front.svg",
  6116. bottom: 0.02,
  6117. extra: 1
  6118. }
  6119. },
  6120. },
  6121. [
  6122. {
  6123. name: "Macro",
  6124. height: math.unit(1.5, "miles"),
  6125. default: true
  6126. },
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Kane" },
  6131. {
  6132. front: {
  6133. height: math.unit(6, "feet"),
  6134. weight: math.unit(78, "kg"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/kane/front.svg",
  6138. extra: 978 / 899
  6139. }
  6140. },
  6141. },
  6142. [
  6143. {
  6144. name: "Normal",
  6145. height: math.unit(2.1, "m"),
  6146. },
  6147. {
  6148. name: "Macro",
  6149. height: math.unit(1, "km"),
  6150. default: true
  6151. },
  6152. ]
  6153. ))
  6154. characterMakers.push(() => makeCharacter(
  6155. { name: "Tegon" },
  6156. {
  6157. front: {
  6158. height: math.unit(6, "feet"),
  6159. weight: math.unit(200, "kg"),
  6160. name: "Front",
  6161. image: {
  6162. source: "./media/characters/tegon/front.svg",
  6163. bottom: 0.01,
  6164. extra: 1
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Micro",
  6171. height: math.unit(1, "inch")
  6172. },
  6173. {
  6174. name: "Normal",
  6175. height: math.unit(6 + 3 / 12, "feet"),
  6176. default: true
  6177. },
  6178. {
  6179. name: "Macro",
  6180. height: math.unit(300, "feet")
  6181. },
  6182. {
  6183. name: "Megamacro",
  6184. height: math.unit(69, "miles")
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Arcturax" },
  6190. {
  6191. side: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(2304, "lbs"),
  6194. name: "Side",
  6195. image: {
  6196. source: "./media/characters/arcturax/side.svg",
  6197. extra: 790 / 376,
  6198. bottom: 0.01
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Micro",
  6205. height: math.unit(2, "inch")
  6206. },
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(6, "feet")
  6210. },
  6211. {
  6212. name: "Macro",
  6213. height: math.unit(39, "feet"),
  6214. default: true
  6215. },
  6216. {
  6217. name: "Megamacro",
  6218. height: math.unit(7, "miles")
  6219. },
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "Sentri" },
  6224. {
  6225. front: {
  6226. height: math.unit(6, "feet"),
  6227. weight: math.unit(50, "lbs"),
  6228. name: "Front",
  6229. image: {
  6230. source: "./media/characters/sentri/front.svg",
  6231. extra: 1750 / 1570,
  6232. bottom: 0.025
  6233. }
  6234. },
  6235. frontAlt: {
  6236. height: math.unit(6, "feet"),
  6237. weight: math.unit(50, "lbs"),
  6238. name: "Front (Alt)",
  6239. image: {
  6240. source: "./media/characters/sentri/front-alt.svg",
  6241. extra: 1750 / 1570,
  6242. bottom: 0.025
  6243. }
  6244. },
  6245. },
  6246. [
  6247. {
  6248. name: "Normal",
  6249. height: math.unit(15, "feet"),
  6250. default: true
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(2500, "feet")
  6255. }
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "Corvin" },
  6260. {
  6261. front: {
  6262. height: math.unit(5 + 8 / 12, "feet"),
  6263. weight: math.unit(130, "lbs"),
  6264. name: "Front",
  6265. image: {
  6266. source: "./media/characters/corvin/front.svg",
  6267. extra: 1803 / 1629
  6268. }
  6269. },
  6270. frontShirt: {
  6271. height: math.unit(5 + 8 / 12, "feet"),
  6272. weight: math.unit(130, "lbs"),
  6273. name: "Front (Shirt)",
  6274. image: {
  6275. source: "./media/characters/corvin/front-shirt.svg",
  6276. extra: 1803 / 1629
  6277. }
  6278. },
  6279. frontPoncho: {
  6280. height: math.unit(5 + 8 / 12, "feet"),
  6281. weight: math.unit(130, "lbs"),
  6282. name: "Front (Poncho)",
  6283. image: {
  6284. source: "./media/characters/corvin/front-poncho.svg",
  6285. extra: 1803 / 1629
  6286. }
  6287. },
  6288. side: {
  6289. height: math.unit(5 + 8 / 12, "feet"),
  6290. weight: math.unit(130, "lbs"),
  6291. name: "Side",
  6292. image: {
  6293. source: "./media/characters/corvin/side.svg",
  6294. extra: 1012 / 945
  6295. }
  6296. },
  6297. back: {
  6298. height: math.unit(5 + 8 / 12, "feet"),
  6299. weight: math.unit(130, "lbs"),
  6300. name: "Back",
  6301. image: {
  6302. source: "./media/characters/corvin/back.svg",
  6303. extra: 1803 / 1629
  6304. }
  6305. },
  6306. },
  6307. [
  6308. {
  6309. name: "Micro",
  6310. height: math.unit(3, "inches")
  6311. },
  6312. {
  6313. name: "Normal",
  6314. height: math.unit(5 + 8 / 12, "feet")
  6315. },
  6316. {
  6317. name: "Macro",
  6318. height: math.unit(300, "feet"),
  6319. default: true
  6320. },
  6321. {
  6322. name: "Megamacro",
  6323. height: math.unit(500, "miles")
  6324. }
  6325. ]
  6326. ))
  6327. characterMakers.push(() => makeCharacter(
  6328. { name: "Q" },
  6329. {
  6330. front: {
  6331. height: math.unit(6, "feet"),
  6332. weight: math.unit(135, "lbs"),
  6333. name: "Front",
  6334. image: {
  6335. source: "./media/characters/q/front.svg",
  6336. extra: 854 / 752,
  6337. bottom: 0.005
  6338. }
  6339. },
  6340. back: {
  6341. height: math.unit(6, "feet"),
  6342. weight: math.unit(130, "lbs"),
  6343. name: "Back",
  6344. image: {
  6345. source: "./media/characters/q/back.svg",
  6346. extra: 854 / 752
  6347. }
  6348. },
  6349. },
  6350. [
  6351. {
  6352. name: "Macro",
  6353. height: math.unit(90, "feet"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Extra Macro",
  6358. height: math.unit(300, "feet"),
  6359. },
  6360. {
  6361. name: "BIG WALF",
  6362. height: math.unit(750, "feet"),
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Carley" },
  6368. {
  6369. front: {
  6370. height: math.unit(6, "feet"),
  6371. weight: math.unit(150, "lbs"),
  6372. name: "Front",
  6373. image: {
  6374. source: "./media/characters/carley/front.svg",
  6375. extra: 3927 / 3540,
  6376. bottom: 0.03
  6377. }
  6378. }
  6379. },
  6380. [
  6381. {
  6382. name: "Normal",
  6383. height: math.unit(6 + 3 / 12, "feet")
  6384. },
  6385. {
  6386. name: "Macro",
  6387. height: math.unit(185, "feet"),
  6388. default: true
  6389. },
  6390. {
  6391. name: "Megamacro",
  6392. height: math.unit(8, "miles"),
  6393. },
  6394. ]
  6395. ))
  6396. characterMakers.push(() => makeCharacter(
  6397. { name: "Citrine" },
  6398. {
  6399. front: {
  6400. height: math.unit(3, "feet"),
  6401. weight: math.unit(28, "lbs"),
  6402. name: "Front",
  6403. image: {
  6404. source: "./media/characters/citrine/front.svg"
  6405. }
  6406. }
  6407. },
  6408. [
  6409. {
  6410. name: "Normal",
  6411. height: math.unit(3, "feet"),
  6412. default: true
  6413. }
  6414. ]
  6415. ))
  6416. characterMakers.push(() => makeCharacter(
  6417. { name: "Aura Starwind" },
  6418. {
  6419. front: {
  6420. height: math.unit(14, "feet"),
  6421. weight: math.unit(1450, "kg"),
  6422. capacity: math.unit(15, "people"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/aura-starwind/front.svg",
  6426. extra: 1455 / 1335
  6427. }
  6428. },
  6429. side: {
  6430. height: math.unit(14, "feet"),
  6431. weight: math.unit(1450, "kg"),
  6432. capacity: math.unit(15, "people"),
  6433. name: "Side",
  6434. image: {
  6435. source: "./media/characters/aura-starwind/side.svg",
  6436. extra: 1654 / 1497
  6437. }
  6438. },
  6439. taur: {
  6440. height: math.unit(18, "feet"),
  6441. weight: math.unit(5500, "kg"),
  6442. capacity: math.unit(50, "people"),
  6443. name: "Taur",
  6444. image: {
  6445. source: "./media/characters/aura-starwind/taur.svg",
  6446. extra: 1760 / 1650
  6447. }
  6448. },
  6449. feral: {
  6450. height: math.unit(46, "feet"),
  6451. weight: math.unit(25000, "kg"),
  6452. capacity: math.unit(120, "people"),
  6453. name: "Feral",
  6454. image: {
  6455. source: "./media/characters/aura-starwind/feral.svg"
  6456. }
  6457. },
  6458. },
  6459. [
  6460. {
  6461. name: "Normal",
  6462. height: math.unit(14, "feet"),
  6463. default: true
  6464. },
  6465. {
  6466. name: "Macro",
  6467. height: math.unit(50, "meters")
  6468. },
  6469. {
  6470. name: "Megamacro",
  6471. height: math.unit(5000, "meters")
  6472. },
  6473. {
  6474. name: "Gigamacro",
  6475. height: math.unit(100000, "kilometers")
  6476. },
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Rivet" },
  6481. {
  6482. front: {
  6483. height: math.unit(2 + 7 / 12, "feet"),
  6484. weight: math.unit(32, "lbs"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/rivet/front.svg",
  6488. extra: 1716 / 1658,
  6489. bottom: 0.03
  6490. }
  6491. },
  6492. foot: {
  6493. height: math.unit(0.551, "feet"),
  6494. name: "Rivet's Foot",
  6495. image: {
  6496. source: "./media/characters/rivet/foot.svg"
  6497. },
  6498. rename: true
  6499. }
  6500. },
  6501. [
  6502. {
  6503. name: "Micro",
  6504. height: math.unit(1.5, "inches"),
  6505. },
  6506. {
  6507. name: "Normal",
  6508. height: math.unit(2 + 7 / 12, "feet"),
  6509. default: true
  6510. },
  6511. {
  6512. name: "Macro",
  6513. height: math.unit(85, "feet")
  6514. },
  6515. {
  6516. name: "Megamacro",
  6517. height: math.unit(2.2, "km")
  6518. }
  6519. ]
  6520. ))
  6521. characterMakers.push(() => makeCharacter(
  6522. { name: "Coffee" },
  6523. {
  6524. front: {
  6525. height: math.unit(5 + 9 / 12, "feet"),
  6526. weight: math.unit(150, "lbs"),
  6527. name: "Front",
  6528. image: {
  6529. source: "./media/characters/coffee/front.svg",
  6530. extra: 3666 / 3032,
  6531. bottom: 0.04
  6532. }
  6533. },
  6534. foot: {
  6535. height: math.unit(1.29, "feet"),
  6536. name: "Foot",
  6537. image: {
  6538. source: "./media/characters/coffee/foot.svg"
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Micro",
  6545. height: math.unit(2, "inches"),
  6546. },
  6547. {
  6548. name: "Normal",
  6549. height: math.unit(5 + 9 / 12, "feet"),
  6550. default: true
  6551. },
  6552. {
  6553. name: "Macro",
  6554. height: math.unit(800, "feet")
  6555. },
  6556. {
  6557. name: "Megamacro",
  6558. height: math.unit(25, "miles")
  6559. }
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Chari-Gal" },
  6564. {
  6565. front: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(200, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/chari-gal/front.svg",
  6571. extra: 1568 / 1385,
  6572. bottom: 0.047
  6573. }
  6574. },
  6575. gigantamax: {
  6576. height: math.unit(6 * 16, "feet"),
  6577. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  6578. name: "Gigantamax",
  6579. image: {
  6580. source: "./media/characters/chari-gal/gigantamax.svg",
  6581. extra: 1124 / 888,
  6582. bottom: 0.03
  6583. }
  6584. },
  6585. },
  6586. [
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(5 + 7 / 12, "feet")
  6590. },
  6591. {
  6592. name: "Macro",
  6593. height: math.unit(200, "feet"),
  6594. default: true
  6595. }
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Nova" },
  6600. {
  6601. front: {
  6602. height: math.unit(6, "feet"),
  6603. weight: math.unit(150, "lbs"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/nova/front.svg",
  6607. extra: 5000 / 4722,
  6608. bottom: 0.02
  6609. }
  6610. }
  6611. },
  6612. [
  6613. {
  6614. name: "Micro-",
  6615. height: math.unit(0.8, "inches")
  6616. },
  6617. {
  6618. name: "Micro",
  6619. height: math.unit(2, "inches"),
  6620. default: true
  6621. },
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Argent" },
  6626. {
  6627. front: {
  6628. height: math.unit(3 + 1 / 12, "feet"),
  6629. weight: math.unit(21.7, "lbs"),
  6630. name: "Front",
  6631. image: {
  6632. source: "./media/characters/argent/front.svg",
  6633. extra: 1565 / 1416,
  6634. bottom: 0.01
  6635. }
  6636. }
  6637. },
  6638. [
  6639. {
  6640. name: "Micro",
  6641. height: math.unit(2, "inches")
  6642. },
  6643. {
  6644. name: "Normal",
  6645. height: math.unit(3 + 1 / 12, "feet"),
  6646. default: true
  6647. },
  6648. {
  6649. name: "Macro",
  6650. height: math.unit(120, "feet")
  6651. },
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Mira al-Cul" },
  6656. {
  6657. lamp: {
  6658. height: math.unit(7 * 1559 / 989, "feet"),
  6659. name: "Magic Lamp",
  6660. image: {
  6661. source: "./media/characters/mira-al-cul/lamp.svg",
  6662. extra: 1617 / 1559
  6663. }
  6664. },
  6665. front: {
  6666. height: math.unit(7, "feet"),
  6667. name: "Front",
  6668. image: {
  6669. source: "./media/characters/mira-al-cul/front.svg",
  6670. extra: 1044 / 990
  6671. }
  6672. },
  6673. },
  6674. [
  6675. {
  6676. name: "Heavily Restricted",
  6677. height: math.unit(7 * 1559 / 989, "feet")
  6678. },
  6679. {
  6680. name: "Freshly Freed",
  6681. height: math.unit(50 * 1559 / 989, "feet")
  6682. },
  6683. {
  6684. name: "World Encompassing",
  6685. height: math.unit(10000 * 1559 / 989, "miles")
  6686. },
  6687. {
  6688. name: "Galactic",
  6689. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6690. },
  6691. {
  6692. name: "Palmed Universe",
  6693. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "Multiversal Matriarch",
  6698. height: math.unit(8.87e10, "yottameters")
  6699. },
  6700. {
  6701. name: "Void Mother",
  6702. height: math.unit(3.14e110, "yottaparsecs")
  6703. },
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Kuro-shi Uchū" },
  6708. {
  6709. front: {
  6710. height: math.unit(17 + 1 / 12, "feet"),
  6711. weight: math.unit(476.2 * 5, "lbs"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/kuro-shi-uchū/front.svg",
  6715. extra: 2329 / 1835,
  6716. bottom: 0.02
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Micro",
  6723. height: math.unit(2, "inches")
  6724. },
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(12, "meters")
  6728. },
  6729. {
  6730. name: "Planetary",
  6731. height: math.unit(0.00929, "AU"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Universal",
  6736. height: math.unit(20, "gigaparsecs")
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Katherine" },
  6742. {
  6743. front: {
  6744. height: math.unit(5 + 2 / 12, "feet"),
  6745. weight: math.unit(120, "lbs"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/katherine/front.svg",
  6749. extra: 2075 / 1969
  6750. }
  6751. },
  6752. dress: {
  6753. height: math.unit(5 + 2 / 12, "feet"),
  6754. weight: math.unit(120, "lbs"),
  6755. name: "Dress",
  6756. image: {
  6757. source: "./media/characters/katherine/dress.svg",
  6758. extra: 2258 / 2064
  6759. }
  6760. },
  6761. },
  6762. [
  6763. {
  6764. name: "Micro",
  6765. height: math.unit(1, "inches"),
  6766. default: true
  6767. },
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(5 + 2 / 12, "feet")
  6771. },
  6772. {
  6773. name: "Macro",
  6774. height: math.unit(100, "meters")
  6775. },
  6776. {
  6777. name: "Megamacro",
  6778. height: math.unit(80, "miles")
  6779. },
  6780. ]
  6781. ))
  6782. characterMakers.push(() => makeCharacter(
  6783. { name: "Yevis" },
  6784. {
  6785. front: {
  6786. height: math.unit(7 + 8 / 12, "feet"),
  6787. weight: math.unit(250, "lbs"),
  6788. name: "Front",
  6789. image: {
  6790. source: "./media/characters/yevis/front.svg",
  6791. extra: 1938 / 1755
  6792. }
  6793. }
  6794. },
  6795. [
  6796. {
  6797. name: "Mortal",
  6798. height: math.unit(7 + 8 / 12, "feet")
  6799. },
  6800. {
  6801. name: "Battle",
  6802. height: math.unit(25 + 11 / 12, "feet")
  6803. },
  6804. {
  6805. name: "Wrath",
  6806. height: math.unit(1654 + 11 / 12, "feet")
  6807. },
  6808. {
  6809. name: "Planet Destroyer",
  6810. height: math.unit(12000, "miles")
  6811. },
  6812. {
  6813. name: "Galaxy Conqueror",
  6814. height: math.unit(1.45, "zettameters"),
  6815. default: true
  6816. },
  6817. {
  6818. name: "Universal War",
  6819. height: math.unit(184, "gigaparsecs")
  6820. },
  6821. {
  6822. name: "Eternity War",
  6823. height: math.unit(1.98e55, "yottaparsecs")
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Xavier" },
  6829. {
  6830. front: {
  6831. height: math.unit(5 + 8 / 12, "feet"),
  6832. weight: math.unit(63, "kg"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/xavier/front.svg",
  6836. extra: 944 / 883
  6837. }
  6838. },
  6839. frontStretch: {
  6840. height: math.unit(5 + 8 / 12, "feet"),
  6841. weight: math.unit(63, "kg"),
  6842. name: "Stretching",
  6843. image: {
  6844. source: "./media/characters/xavier/front-stretch.svg",
  6845. extra: 962 / 820
  6846. }
  6847. },
  6848. },
  6849. [
  6850. {
  6851. name: "Normal",
  6852. height: math.unit(5 + 8 / 12, "feet")
  6853. },
  6854. {
  6855. name: "Macro",
  6856. height: math.unit(100, "meters"),
  6857. default: true
  6858. },
  6859. {
  6860. name: "McLargeHuge",
  6861. height: math.unit(10, "miles")
  6862. },
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Joshii" },
  6867. {
  6868. front: {
  6869. height: math.unit(5 + 5 / 12, "feet"),
  6870. weight: math.unit(150, "lb"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/joshii/front.svg"
  6874. }
  6875. },
  6876. foot: {
  6877. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6878. name: "Foot",
  6879. image: {
  6880. source: "./media/characters/joshii/foot.svg"
  6881. }
  6882. },
  6883. },
  6884. [
  6885. {
  6886. name: "Micro",
  6887. height: math.unit(2, "inches")
  6888. },
  6889. {
  6890. name: "Normal",
  6891. height: math.unit(5 + 5 / 12, "feet"),
  6892. default: true
  6893. },
  6894. {
  6895. name: "Macro",
  6896. height: math.unit(785, "feet")
  6897. },
  6898. {
  6899. name: "Megamacro",
  6900. height: math.unit(24.5, "miles")
  6901. },
  6902. ]
  6903. ))
  6904. characterMakers.push(() => makeCharacter(
  6905. { name: "Goddess Elizabeth" },
  6906. {
  6907. front: {
  6908. height: math.unit(6, "feet"),
  6909. weight: math.unit(150, "lb"),
  6910. name: "Front",
  6911. image: {
  6912. source: "./media/characters/goddess-elizabeth/front.svg",
  6913. extra: 1800 / 1525,
  6914. bottom: 0.005
  6915. }
  6916. },
  6917. foot: {
  6918. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6919. name: "Foot",
  6920. image: {
  6921. source: "./media/characters/goddess-elizabeth/foot.svg"
  6922. }
  6923. },
  6924. mouth: {
  6925. height: math.unit(6, "feet"),
  6926. name: "Mouth",
  6927. image: {
  6928. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6929. }
  6930. },
  6931. },
  6932. [
  6933. {
  6934. name: "Micro",
  6935. height: math.unit(12, "feet")
  6936. },
  6937. {
  6938. name: "Normal",
  6939. height: math.unit(80, "miles"),
  6940. default: true
  6941. },
  6942. {
  6943. name: "Macro",
  6944. height: math.unit(15000, "parsecs")
  6945. },
  6946. ]
  6947. ))
  6948. characterMakers.push(() => makeCharacter(
  6949. { name: "Kara" },
  6950. {
  6951. front: {
  6952. height: math.unit(5 + 9 / 12, "feet"),
  6953. weight: math.unit(144, "lb"),
  6954. name: "Front",
  6955. image: {
  6956. source: "./media/characters/kara/front.svg"
  6957. }
  6958. },
  6959. feet: {
  6960. height: math.unit(6 / 6.765, "feet"),
  6961. name: "Kara's Feet",
  6962. rename: true,
  6963. image: {
  6964. source: "./media/characters/kara/feet.svg"
  6965. }
  6966. },
  6967. },
  6968. [
  6969. {
  6970. name: "Normal",
  6971. height: math.unit(5 + 9 / 12, "feet")
  6972. },
  6973. {
  6974. name: "Macro",
  6975. height: math.unit(174, "feet"),
  6976. default: true
  6977. },
  6978. ]
  6979. ))
  6980. characterMakers.push(() => makeCharacter(
  6981. { name: "Tyrone" },
  6982. {
  6983. front: {
  6984. height: math.unit(18, "feet"),
  6985. weight: math.unit(4050, "lb"),
  6986. name: "Front",
  6987. image: {
  6988. source: "./media/characters/tyrone/front.svg",
  6989. extra: 2520 / 2402,
  6990. bottom: 0.025
  6991. }
  6992. },
  6993. },
  6994. [
  6995. {
  6996. name: "Normal",
  6997. height: math.unit(18, "feet"),
  6998. default: true
  6999. },
  7000. {
  7001. name: "Macro",
  7002. height: math.unit(300, "feet")
  7003. },
  7004. ]
  7005. ))
  7006. characterMakers.push(() => makeCharacter(
  7007. { name: "Danny" },
  7008. {
  7009. front: {
  7010. height: math.unit(7 + 8 / 12, "feet"),
  7011. weight: math.unit(120, "lb"),
  7012. name: "Front",
  7013. image: {
  7014. source: "./media/characters/danny/front.svg",
  7015. extra: 1490 / 1350
  7016. }
  7017. },
  7018. back: {
  7019. height: math.unit(7 + 8 / 12, "feet"),
  7020. weight: math.unit(120, "lb"),
  7021. name: "Back",
  7022. image: {
  7023. source: "./media/characters/danny/back.svg",
  7024. extra: 1490 / 1350
  7025. }
  7026. },
  7027. },
  7028. [
  7029. {
  7030. name: "Normal",
  7031. height: math.unit(7 + 8 / 12, "feet"),
  7032. default: true
  7033. },
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Mallow" },
  7038. {
  7039. front: {
  7040. height: math.unit(3.5, "inches"),
  7041. weight: math.unit(19, "grams"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/mallow/front.svg",
  7045. extra: 471 / 431
  7046. }
  7047. },
  7048. back: {
  7049. height: math.unit(3.5, "inches"),
  7050. weight: math.unit(19, "grams"),
  7051. name: "Back",
  7052. image: {
  7053. source: "./media/characters/mallow/back.svg",
  7054. extra: 471 / 431
  7055. }
  7056. },
  7057. },
  7058. [
  7059. {
  7060. name: "Normal",
  7061. height: math.unit(3.5, "inches"),
  7062. default: true
  7063. },
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Starry Aqua" },
  7068. {
  7069. front: {
  7070. height: math.unit(9, "feet"),
  7071. weight: math.unit(230, "kg"),
  7072. name: "Front",
  7073. image: {
  7074. source: "./media/characters/starry-aqua/front.svg"
  7075. }
  7076. },
  7077. back: {
  7078. height: math.unit(9, "feet"),
  7079. weight: math.unit(230, "kg"),
  7080. name: "Back",
  7081. image: {
  7082. source: "./media/characters/starry-aqua/back.svg"
  7083. }
  7084. },
  7085. hand: {
  7086. height: math.unit(9 * 0.1168, "feet"),
  7087. name: "Hand",
  7088. image: {
  7089. source: "./media/characters/starry-aqua/hand.svg"
  7090. }
  7091. },
  7092. foot: {
  7093. height: math.unit(9 * 0.18, "feet"),
  7094. name: "Foot",
  7095. image: {
  7096. source: "./media/characters/starry-aqua/foot.svg"
  7097. }
  7098. }
  7099. },
  7100. [
  7101. {
  7102. name: "Micro",
  7103. height: math.unit(3, "inches")
  7104. },
  7105. {
  7106. name: "Normal",
  7107. height: math.unit(9, "feet")
  7108. },
  7109. {
  7110. name: "Macro",
  7111. height: math.unit(300, "feet"),
  7112. default: true
  7113. },
  7114. {
  7115. name: "Megamacro",
  7116. height: math.unit(3200, "feet")
  7117. }
  7118. ]
  7119. ))
  7120. characterMakers.push(() => makeCharacter(
  7121. { name: "Luka" },
  7122. {
  7123. front: {
  7124. height: math.unit(6, "feet"),
  7125. weight: math.unit(230, "lb"),
  7126. name: "Front",
  7127. image: {
  7128. source: "./media/characters/luka/front.svg",
  7129. extra: 1,
  7130. bottom: 0.025
  7131. }
  7132. },
  7133. },
  7134. [
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(12 + 8 / 12, "feet"),
  7138. default: true
  7139. },
  7140. {
  7141. name: "Minimacro",
  7142. height: math.unit(20, "feet")
  7143. },
  7144. {
  7145. name: "Macro",
  7146. height: math.unit(250, "feet")
  7147. },
  7148. {
  7149. name: "Megamacro",
  7150. height: math.unit(5, "miles")
  7151. },
  7152. {
  7153. name: "Gigamacro",
  7154. height: math.unit(8000, "miles")
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Natalie Nightring" },
  7160. {
  7161. front: {
  7162. height: math.unit(6, "feet"),
  7163. weight: math.unit(150, "lb"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/natalie-nightring/front.svg",
  7167. extra: 1,
  7168. bottom: 0.06
  7169. }
  7170. },
  7171. },
  7172. [
  7173. {
  7174. name: "Uh Oh",
  7175. height: math.unit(0.1, "mm")
  7176. },
  7177. {
  7178. name: "Small",
  7179. height: math.unit(3, "inches")
  7180. },
  7181. {
  7182. name: "Human Scale",
  7183. height: math.unit(6, "feet")
  7184. },
  7185. {
  7186. name: "Librarian",
  7187. height: math.unit(50, "feet"),
  7188. default: true
  7189. },
  7190. {
  7191. name: "Immense",
  7192. height: math.unit(200, "miles")
  7193. },
  7194. ]
  7195. ))
  7196. characterMakers.push(() => makeCharacter(
  7197. { name: "Danni Rosie" },
  7198. {
  7199. front: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(180, "lbs"),
  7202. name: "Front",
  7203. image: {
  7204. source: "./media/characters/danni-rosie/front.svg",
  7205. extra: 1260 / 1128,
  7206. bottom: 0.022
  7207. }
  7208. },
  7209. },
  7210. [
  7211. {
  7212. name: "Micro",
  7213. height: math.unit(2, "inches"),
  7214. default: true
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Samantha Kruse" },
  7220. {
  7221. front: {
  7222. height: math.unit(5 + 9 / 12, "feet"),
  7223. weight: math.unit(220, "lb"),
  7224. name: "Front",
  7225. image: {
  7226. source: "./media/characters/samantha-kruse/front.svg",
  7227. extra: (985 / 935),
  7228. bottom: 0.03
  7229. }
  7230. },
  7231. frontUndressed: {
  7232. height: math.unit(5 + 9 / 12, "feet"),
  7233. weight: math.unit(220, "lb"),
  7234. name: "Front (Undressed)",
  7235. image: {
  7236. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7237. extra: (973 / 923),
  7238. bottom: 0.025
  7239. }
  7240. },
  7241. fat: {
  7242. height: math.unit(5 + 9 / 12, "feet"),
  7243. weight: math.unit(900, "lb"),
  7244. name: "Front (Fat)",
  7245. image: {
  7246. source: "./media/characters/samantha-kruse/fat.svg",
  7247. extra: 2688 / 2561
  7248. }
  7249. },
  7250. },
  7251. [
  7252. {
  7253. name: "Normal",
  7254. height: math.unit(5 + 9 / 12, "feet"),
  7255. default: true
  7256. }
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Amelia Rosie" },
  7261. {
  7262. back: {
  7263. height: math.unit(5 + 4 / 12, "feet"),
  7264. weight: math.unit(4963, "lb"),
  7265. name: "Back",
  7266. image: {
  7267. source: "./media/characters/amelia-rosie/back.svg",
  7268. extra: 1113 / 963,
  7269. bottom: 0.01
  7270. }
  7271. },
  7272. },
  7273. [
  7274. {
  7275. name: "Level 0",
  7276. height: math.unit(5 + 4 / 12, "feet")
  7277. },
  7278. {
  7279. name: "Level 1",
  7280. height: math.unit(164597, "feet"),
  7281. default: true
  7282. },
  7283. {
  7284. name: "Level 2",
  7285. height: math.unit(956243, "miles")
  7286. },
  7287. {
  7288. name: "Level 3",
  7289. height: math.unit(29421709423, "miles")
  7290. },
  7291. {
  7292. name: "Level 4",
  7293. height: math.unit(154, "lightyears")
  7294. },
  7295. {
  7296. name: "Level 5",
  7297. height: math.unit(4738272, "lightyears")
  7298. },
  7299. {
  7300. name: "Level 6",
  7301. height: math.unit(145787152896, "lightyears")
  7302. },
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Rook Kitara" },
  7307. {
  7308. front: {
  7309. height: math.unit(5 + 11 / 12, "feet"),
  7310. weight: math.unit(65, "kg"),
  7311. name: "Front",
  7312. image: {
  7313. source: "./media/characters/rook-kitara/front.svg",
  7314. extra: 1347 / 1274,
  7315. bottom: 0.005
  7316. }
  7317. },
  7318. },
  7319. [
  7320. {
  7321. name: "Totally Unfair",
  7322. height: math.unit(1.8, "mm")
  7323. },
  7324. {
  7325. name: "Lap Rookie",
  7326. height: math.unit(1.4, "feet")
  7327. },
  7328. {
  7329. name: "Normal",
  7330. height: math.unit(5 + 11 / 12, "feet"),
  7331. default: true
  7332. },
  7333. {
  7334. name: "How Did This Happen",
  7335. height: math.unit(80, "miles")
  7336. }
  7337. ]
  7338. ))
  7339. characterMakers.push(() => makeCharacter(
  7340. { name: "Pisces" },
  7341. {
  7342. front: {
  7343. height: math.unit(7, "feet"),
  7344. weight: math.unit(300, "lb"),
  7345. name: "Front",
  7346. image: {
  7347. source: "./media/characters/pisces/front.svg",
  7348. extra: 2255 / 2115,
  7349. bottom: 0.03
  7350. }
  7351. },
  7352. back: {
  7353. height: math.unit(7, "feet"),
  7354. weight: math.unit(300, "lb"),
  7355. name: "Back",
  7356. image: {
  7357. source: "./media/characters/pisces/back.svg",
  7358. extra: 2146 / 2055,
  7359. bottom: 0.04
  7360. }
  7361. },
  7362. },
  7363. [
  7364. {
  7365. name: "Normal",
  7366. height: math.unit(7, "feet"),
  7367. default: true
  7368. },
  7369. {
  7370. name: "Swimming Pool",
  7371. height: math.unit(12.2, "meters")
  7372. },
  7373. {
  7374. name: "Olympic Swimming Pool",
  7375. height: math.unit(56.3, "meters")
  7376. },
  7377. {
  7378. name: "Lake Superior",
  7379. height: math.unit(93900, "meters")
  7380. },
  7381. {
  7382. name: "Mediterranean Sea",
  7383. height: math.unit(644457, "meters")
  7384. },
  7385. {
  7386. name: "World's Oceans",
  7387. height: math.unit(4567491, "meters")
  7388. },
  7389. ]
  7390. ))
  7391. characterMakers.push(() => makeCharacter(
  7392. { name: "Zelas" },
  7393. {
  7394. front: {
  7395. height: math.unit(2.3, "meters"),
  7396. weight: math.unit(120, "kg"),
  7397. name: "Front",
  7398. image: {
  7399. source: "./media/characters/zelas/front.svg"
  7400. }
  7401. },
  7402. side: {
  7403. height: math.unit(2.3, "meters"),
  7404. weight: math.unit(120, "kg"),
  7405. name: "Side",
  7406. image: {
  7407. source: "./media/characters/zelas/side.svg"
  7408. }
  7409. },
  7410. back: {
  7411. height: math.unit(2.3, "meters"),
  7412. weight: math.unit(120, "kg"),
  7413. name: "Back",
  7414. image: {
  7415. source: "./media/characters/zelas/back.svg"
  7416. }
  7417. },
  7418. foot: {
  7419. height: math.unit(1.116, "feet"),
  7420. name: "Foot",
  7421. image: {
  7422. source: "./media/characters/zelas/foot.svg"
  7423. }
  7424. },
  7425. },
  7426. [
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(2.3, "meters")
  7430. },
  7431. {
  7432. name: "Macro",
  7433. height: math.unit(30, "meters"),
  7434. default: true
  7435. },
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Talbot" },
  7440. {
  7441. front: {
  7442. height: math.unit(1, "inch"),
  7443. weight: math.unit(0.21, "grams"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/talbot/front.svg",
  7447. extra: 594 / 544
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Micro",
  7454. height: math.unit(1, "inch"),
  7455. default: true
  7456. },
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Fliss" },
  7461. {
  7462. front: {
  7463. height: math.unit(3 + 3 / 12, "feet"),
  7464. weight: math.unit(51.8, "lb"),
  7465. name: "Front",
  7466. image: {
  7467. source: "./media/characters/fliss/front.svg",
  7468. extra: 840 / 640
  7469. }
  7470. },
  7471. },
  7472. [
  7473. {
  7474. name: "Teeny Tiny",
  7475. height: math.unit(1, "mm")
  7476. },
  7477. {
  7478. name: "Small",
  7479. height: math.unit(1, "inch"),
  7480. default: true
  7481. },
  7482. {
  7483. name: "Standard Sylveon",
  7484. height: math.unit(3 + 3 / 12, "feet")
  7485. },
  7486. {
  7487. name: "Large Nuisance",
  7488. height: math.unit(33, "feet")
  7489. },
  7490. {
  7491. name: "City Filler",
  7492. height: math.unit(3000, "feet")
  7493. },
  7494. {
  7495. name: "New Horizon",
  7496. height: math.unit(6000, "miles")
  7497. },
  7498. ]
  7499. ))
  7500. characterMakers.push(() => makeCharacter(
  7501. { name: "Fleta" },
  7502. {
  7503. front: {
  7504. height: math.unit(5, "cm"),
  7505. weight: math.unit(1.94, "g"),
  7506. name: "Front",
  7507. image: {
  7508. source: "./media/characters/fleta/front.svg",
  7509. extra: 835 / 803
  7510. }
  7511. },
  7512. back: {
  7513. height: math.unit(5, "cm"),
  7514. weight: math.unit(1.94, "g"),
  7515. name: "Back",
  7516. image: {
  7517. source: "./media/characters/fleta/back.svg",
  7518. extra: 835 / 803
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Micro",
  7525. height: math.unit(5, "cm"),
  7526. default: true
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Dominic" },
  7532. {
  7533. front: {
  7534. height: math.unit(6, "feet"),
  7535. weight: math.unit(225, "lb"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/dominic/front.svg",
  7539. extra: 1770 / 1620,
  7540. bottom: 0.025
  7541. }
  7542. },
  7543. back: {
  7544. height: math.unit(6, "feet"),
  7545. weight: math.unit(225, "lb"),
  7546. name: "Back",
  7547. image: {
  7548. source: "./media/characters/dominic/back.svg",
  7549. extra: 1745 / 1620,
  7550. bottom: 0.065
  7551. }
  7552. },
  7553. },
  7554. [
  7555. {
  7556. name: "Nano",
  7557. height: math.unit(0.1, "mm")
  7558. },
  7559. {
  7560. name: "Micro-",
  7561. height: math.unit(1, "mm")
  7562. },
  7563. {
  7564. name: "Micro",
  7565. height: math.unit(4, "inches")
  7566. },
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(6 + 4 / 12, "feet"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Macro",
  7574. height: math.unit(115, "feet")
  7575. },
  7576. {
  7577. name: "Macro+",
  7578. height: math.unit(955, "feet")
  7579. },
  7580. {
  7581. name: "Megamacro",
  7582. height: math.unit(8990, "feet")
  7583. },
  7584. {
  7585. name: "Gigmacro",
  7586. height: math.unit(9310, "miles")
  7587. },
  7588. {
  7589. name: "Teramacro",
  7590. height: math.unit(1567005010, "miles")
  7591. },
  7592. {
  7593. name: "Examacro",
  7594. height: math.unit(1425, "parsecs")
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Major Colonel" },
  7600. {
  7601. front: {
  7602. height: math.unit(400, "feet"),
  7603. weight: math.unit(44444444, "lb"),
  7604. name: "Front",
  7605. image: {
  7606. source: "./media/characters/major-colonel/front.svg"
  7607. }
  7608. },
  7609. back: {
  7610. height: math.unit(400, "feet"),
  7611. weight: math.unit(44444444, "lb"),
  7612. name: "Back",
  7613. image: {
  7614. source: "./media/characters/major-colonel/back.svg"
  7615. }
  7616. },
  7617. },
  7618. [
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(400, "feet"),
  7622. default: true
  7623. },
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Axel Lycan" },
  7628. {
  7629. front: {
  7630. height: math.unit(6, "feet"),
  7631. weight: math.unit(120, "lb"),
  7632. name: "Front",
  7633. image: {
  7634. source: "./media/characters/axel-lycan/front.svg",
  7635. extra: 1,
  7636. bottom: 0.08
  7637. }
  7638. },
  7639. },
  7640. [
  7641. {
  7642. name: "Macro",
  7643. height: math.unit(1, "km"),
  7644. default: true
  7645. },
  7646. ]
  7647. ))
  7648. characterMakers.push(() => makeCharacter(
  7649. { name: "Vanrel (Hyena)" },
  7650. {
  7651. front: {
  7652. height: math.unit(5 + 9 / 12, "feet"),
  7653. weight: math.unit(175, "lb"),
  7654. name: "Front",
  7655. image: {
  7656. source: "./media/characters/vanrel-hyena/front.svg",
  7657. extra: 1086 / 1010,
  7658. bottom: 0.04
  7659. }
  7660. },
  7661. },
  7662. [
  7663. {
  7664. name: "Normal",
  7665. height: math.unit(5 + 9 / 12, "feet"),
  7666. default: true
  7667. },
  7668. ]
  7669. ))
  7670. characterMakers.push(() => makeCharacter(
  7671. { name: "Abbott Absol" },
  7672. {
  7673. front: {
  7674. height: math.unit(6, "feet"),
  7675. weight: math.unit(103, "lb"),
  7676. name: "Front",
  7677. image: {
  7678. source: "./media/characters/abbott-absol/front.svg",
  7679. extra: 2010 / 1842
  7680. }
  7681. },
  7682. },
  7683. [
  7684. {
  7685. name: "Megamicro",
  7686. height: math.unit(0.1, "mm")
  7687. },
  7688. {
  7689. name: "Micro",
  7690. height: math.unit(1, "inch")
  7691. },
  7692. {
  7693. name: "Normal",
  7694. height: math.unit(6, "feet"),
  7695. default: true
  7696. },
  7697. ]
  7698. ))
  7699. characterMakers.push(() => makeCharacter(
  7700. { name: "Hector" },
  7701. {
  7702. front: {
  7703. height: math.unit(6, "feet"),
  7704. weight: math.unit(264, "lb"),
  7705. name: "Front",
  7706. image: {
  7707. source: "./media/characters/hector/front.svg",
  7708. extra: 2280 / 2130,
  7709. bottom: 0.07
  7710. }
  7711. },
  7712. },
  7713. [
  7714. {
  7715. name: "Normal",
  7716. height: math.unit(12.25, "foot"),
  7717. default: true
  7718. },
  7719. {
  7720. name: "Macro",
  7721. height: math.unit(160, "feet")
  7722. },
  7723. ]
  7724. ))
  7725. characterMakers.push(() => makeCharacter(
  7726. { name: "Sal" },
  7727. {
  7728. front: {
  7729. height: math.unit(6, "feet"),
  7730. weight: math.unit(150, "lb"),
  7731. name: "Front",
  7732. image: {
  7733. source: "./media/characters/sal/front.svg",
  7734. extra: 1846 / 1699,
  7735. bottom: 0.04
  7736. }
  7737. },
  7738. },
  7739. [
  7740. {
  7741. name: "Megamacro",
  7742. height: math.unit(10, "miles"),
  7743. default: true
  7744. },
  7745. ]
  7746. ))
  7747. characterMakers.push(() => makeCharacter(
  7748. { name: "Ranger" },
  7749. {
  7750. front: {
  7751. height: math.unit(3, "meters"),
  7752. weight: math.unit(450, "kg"),
  7753. name: "front",
  7754. image: {
  7755. source: "./media/characters/ranger/front.svg",
  7756. extra: 2401 / 2243,
  7757. bottom: 0.05
  7758. }
  7759. },
  7760. },
  7761. [
  7762. {
  7763. name: "Normal",
  7764. height: math.unit(3, "meters"),
  7765. default: true
  7766. },
  7767. ]
  7768. ))
  7769. characterMakers.push(() => makeCharacter(
  7770. { name: "Theresa" },
  7771. {
  7772. front: {
  7773. height: math.unit(14, "feet"),
  7774. weight: math.unit(800, "kg"),
  7775. name: "Front",
  7776. image: {
  7777. source: "./media/characters/theresa/front.svg",
  7778. extra: 3575 / 3346,
  7779. bottom: 0.03
  7780. }
  7781. },
  7782. },
  7783. [
  7784. {
  7785. name: "Normal",
  7786. height: math.unit(14, "feet"),
  7787. default: true
  7788. },
  7789. ]
  7790. ))
  7791. characterMakers.push(() => makeCharacter(
  7792. { name: "Ine" },
  7793. {
  7794. front: {
  7795. height: math.unit(6, "feet"),
  7796. weight: math.unit(3, "kg"),
  7797. name: "Front",
  7798. image: {
  7799. source: "./media/characters/ine/front.svg",
  7800. extra: 678 / 539,
  7801. bottom: 0.023
  7802. }
  7803. },
  7804. },
  7805. [
  7806. {
  7807. name: "Normal",
  7808. height: math.unit(2.265, "feet"),
  7809. default: true
  7810. },
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Vial" },
  7815. {
  7816. front: {
  7817. height: math.unit(5, "feet"),
  7818. weight: math.unit(30, "kg"),
  7819. name: "Front",
  7820. image: {
  7821. source: "./media/characters/vial/front.svg",
  7822. extra: 1365 / 1277,
  7823. bottom: 0.04
  7824. }
  7825. },
  7826. },
  7827. [
  7828. {
  7829. name: "Normal",
  7830. height: math.unit(5, "feet"),
  7831. default: true
  7832. },
  7833. ]
  7834. ))
  7835. characterMakers.push(() => makeCharacter(
  7836. { name: "Rovoska" },
  7837. {
  7838. side: {
  7839. height: math.unit(3.4, "meters"),
  7840. weight: math.unit(1000, "lb"),
  7841. name: "Side",
  7842. image: {
  7843. source: "./media/characters/rovoska/side.svg",
  7844. extra: 4403 / 1515
  7845. }
  7846. },
  7847. },
  7848. [
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(3.4, "meters"),
  7852. default: true
  7853. },
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Gunner Rotthbauer" },
  7858. {
  7859. front: {
  7860. height: math.unit(8, "feet"),
  7861. weight: math.unit(315, "lb"),
  7862. name: "Front",
  7863. image: {
  7864. source: "./media/characters/gunner-rotthbauer/front.svg"
  7865. }
  7866. },
  7867. back: {
  7868. height: math.unit(8, "feet"),
  7869. weight: math.unit(315, "lb"),
  7870. name: "Back",
  7871. image: {
  7872. source: "./media/characters/gunner-rotthbauer/back.svg"
  7873. }
  7874. },
  7875. },
  7876. [
  7877. {
  7878. name: "Micro",
  7879. height: math.unit(3.5, "inches")
  7880. },
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(8, "feet"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(250, "feet")
  7889. },
  7890. {
  7891. name: "Megamacro",
  7892. height: math.unit(1, "AU")
  7893. },
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Allatia" },
  7898. {
  7899. front: {
  7900. height: math.unit(5 + 5 / 12, "feet"),
  7901. weight: math.unit(140, "lb"),
  7902. name: "Front",
  7903. image: {
  7904. source: "./media/characters/allatia/front.svg",
  7905. extra: 1227 / 1180,
  7906. bottom: 0.027
  7907. }
  7908. },
  7909. },
  7910. [
  7911. {
  7912. name: "Normal",
  7913. height: math.unit(5 + 5 / 12, "feet")
  7914. },
  7915. {
  7916. name: "Macro",
  7917. height: math.unit(250, "feet"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Megamacro",
  7922. height: math.unit(8, "miles")
  7923. }
  7924. ]
  7925. ))
  7926. characterMakers.push(() => makeCharacter(
  7927. { name: "Tene" },
  7928. {
  7929. front: {
  7930. height: math.unit(6, "feet"),
  7931. weight: math.unit(120, "lb"),
  7932. name: "Front",
  7933. image: {
  7934. source: "./media/characters/tene/front.svg",
  7935. extra: 1728 / 1578,
  7936. bottom: 0.022
  7937. }
  7938. },
  7939. stomping: {
  7940. height: math.unit(2.025, "meters"),
  7941. weight: math.unit(120, "lb"),
  7942. name: "Stomping",
  7943. image: {
  7944. source: "./media/characters/tene/stomping.svg",
  7945. extra: 938 / 873,
  7946. bottom: 0.01
  7947. }
  7948. },
  7949. sitting: {
  7950. height: math.unit(1, "meter"),
  7951. weight: math.unit(120, "lb"),
  7952. name: "Sitting",
  7953. image: {
  7954. source: "./media/characters/tene/sitting.svg",
  7955. extra: 437 / 415,
  7956. bottom: 0.1
  7957. }
  7958. },
  7959. feral: {
  7960. height: math.unit(3.9, "feet"),
  7961. weight: math.unit(250, "lb"),
  7962. name: "Feral",
  7963. image: {
  7964. source: "./media/characters/tene/feral.svg",
  7965. extra: 717 / 458,
  7966. bottom: 0.179
  7967. }
  7968. },
  7969. },
  7970. [
  7971. {
  7972. name: "Normal",
  7973. height: math.unit(6, "feet")
  7974. },
  7975. {
  7976. name: "Macro",
  7977. height: math.unit(300, "feet"),
  7978. default: true
  7979. },
  7980. {
  7981. name: "Megamacro",
  7982. height: math.unit(5, "miles")
  7983. },
  7984. ]
  7985. ))
  7986. characterMakers.push(() => makeCharacter(
  7987. { name: "Evander" },
  7988. {
  7989. side: {
  7990. height: math.unit(6, "feet"),
  7991. name: "Side",
  7992. image: {
  7993. source: "./media/characters/evander/side.svg",
  7994. extra: 877 / 477
  7995. }
  7996. },
  7997. },
  7998. [
  7999. {
  8000. name: "Normal",
  8001. height: math.unit(0.83, "meters"),
  8002. default: true
  8003. },
  8004. ]
  8005. ))
  8006. characterMakers.push(() => makeCharacter(
  8007. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  8008. {
  8009. front: {
  8010. height: math.unit(12, "feet"),
  8011. weight: math.unit(1000, "lb"),
  8012. name: "Front",
  8013. image: {
  8014. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8015. extra: 1762 / 1611
  8016. }
  8017. },
  8018. back: {
  8019. height: math.unit(12, "feet"),
  8020. weight: math.unit(1000, "lb"),
  8021. name: "Back",
  8022. image: {
  8023. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8024. extra: 1762 / 1611
  8025. }
  8026. },
  8027. },
  8028. [
  8029. {
  8030. name: "Normal",
  8031. height: math.unit(12, "feet"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Kaiju",
  8036. height: math.unit(150, "feet")
  8037. },
  8038. ]
  8039. ))
  8040. characterMakers.push(() => makeCharacter(
  8041. { name: "Zero Alurus" },
  8042. {
  8043. front: {
  8044. height: math.unit(6, "feet"),
  8045. weight: math.unit(150, "lb"),
  8046. name: "Front",
  8047. image: {
  8048. source: "./media/characters/zero-alurus/front.svg"
  8049. }
  8050. },
  8051. back: {
  8052. height: math.unit(6, "feet"),
  8053. weight: math.unit(150, "lb"),
  8054. name: "Back",
  8055. image: {
  8056. source: "./media/characters/zero-alurus/back.svg"
  8057. }
  8058. },
  8059. },
  8060. [
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(5 + 10 / 12, "feet")
  8064. },
  8065. {
  8066. name: "Macro",
  8067. height: math.unit(60, "feet"),
  8068. default: true
  8069. },
  8070. {
  8071. name: "Macro+",
  8072. height: math.unit(450, "feet")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Mega Shi" },
  8078. {
  8079. front: {
  8080. height: math.unit(6, "feet"),
  8081. weight: math.unit(200, "lb"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/mega-shi/front.svg",
  8085. extra: 1279 / 1250,
  8086. bottom: 0.02
  8087. }
  8088. },
  8089. back: {
  8090. height: math.unit(6, "feet"),
  8091. weight: math.unit(200, "lb"),
  8092. name: "Back",
  8093. image: {
  8094. source: "./media/characters/mega-shi/back.svg",
  8095. extra: 1279 / 1250,
  8096. bottom: 0.02
  8097. }
  8098. },
  8099. },
  8100. [
  8101. {
  8102. name: "Micro",
  8103. height: math.unit(16 + 6 / 12, "feet")
  8104. },
  8105. {
  8106. name: "Third Dimension",
  8107. height: math.unit(40, "meters")
  8108. },
  8109. {
  8110. name: "Normal",
  8111. height: math.unit(660, "feet"),
  8112. default: true
  8113. },
  8114. {
  8115. name: "Megamacro",
  8116. height: math.unit(10, "miles")
  8117. },
  8118. {
  8119. name: "Planetary Launch",
  8120. height: math.unit(500, "miles")
  8121. },
  8122. {
  8123. name: "Interstellar",
  8124. height: math.unit(1e9, "miles")
  8125. },
  8126. {
  8127. name: "Leaving the Universe",
  8128. height: math.unit(1, "gigaparsec")
  8129. },
  8130. {
  8131. name: "Travelling Universes",
  8132. height: math.unit(30e15, "parsecs")
  8133. },
  8134. ]
  8135. ))
  8136. characterMakers.push(() => makeCharacter(
  8137. { name: "Odyssey" },
  8138. {
  8139. front: {
  8140. height: math.unit(6, "feet"),
  8141. weight: math.unit(150, "lb"),
  8142. name: "Front",
  8143. image: {
  8144. source: "./media/characters/odyssey/front.svg",
  8145. extra: 1782 / 1582,
  8146. bottom: 0.01
  8147. }
  8148. },
  8149. side: {
  8150. height: math.unit(5.7, "feet"),
  8151. weight: math.unit(140, "lb"),
  8152. name: "Side",
  8153. image: {
  8154. source: "./media/characters/odyssey/side.svg",
  8155. extra: 6462 / 5700
  8156. }
  8157. },
  8158. },
  8159. [
  8160. {
  8161. name: "Normal",
  8162. height: math.unit(5 + 4 / 12, "feet")
  8163. },
  8164. {
  8165. name: "Macro",
  8166. height: math.unit(1, "km")
  8167. },
  8168. {
  8169. name: "Megamacro",
  8170. height: math.unit(3000, "km")
  8171. },
  8172. {
  8173. name: "Gigamacro",
  8174. height: math.unit(1, "AU"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Omniversal",
  8179. height: math.unit(100e14, "lightyears")
  8180. },
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Mekuto" },
  8185. {
  8186. front: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(300, "lb"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/mekuto/front.svg",
  8192. extra: 921 / 832,
  8193. bottom: 0.03
  8194. }
  8195. },
  8196. hand: {
  8197. height: math.unit(6 / 10.24, "feet"),
  8198. name: "Hand",
  8199. image: {
  8200. source: "./media/characters/mekuto/hand.svg"
  8201. }
  8202. },
  8203. foot: {
  8204. height: math.unit(6 / 5.05, "feet"),
  8205. name: "Foot",
  8206. image: {
  8207. source: "./media/characters/mekuto/foot.svg"
  8208. }
  8209. },
  8210. },
  8211. [
  8212. {
  8213. name: "Minimicro",
  8214. height: math.unit(0.2, "inches")
  8215. },
  8216. {
  8217. name: "Micro",
  8218. height: math.unit(1.5, "inches")
  8219. },
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(5 + 11 / 12, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Minimacro",
  8227. height: math.unit(17 + 9 / 12, "feet")
  8228. },
  8229. {
  8230. name: "Macro",
  8231. height: math.unit(177.5, "feet")
  8232. },
  8233. {
  8234. name: "Megamacro",
  8235. height: math.unit(152, "miles")
  8236. },
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Dafydd Tomos" },
  8241. {
  8242. front: {
  8243. height: math.unit(6.5, "inches"),
  8244. weight: math.unit(13, "oz"),
  8245. name: "Front",
  8246. image: {
  8247. source: "./media/characters/dafydd-tomos/front.svg",
  8248. extra: 2990 / 2603,
  8249. bottom: 0.03
  8250. }
  8251. },
  8252. },
  8253. [
  8254. {
  8255. name: "Micro",
  8256. height: math.unit(6.5, "inches"),
  8257. default: true
  8258. },
  8259. ]
  8260. ))
  8261. characterMakers.push(() => makeCharacter(
  8262. { name: "Splinter" },
  8263. {
  8264. front: {
  8265. height: math.unit(6, "feet"),
  8266. weight: math.unit(150, "lb"),
  8267. name: "Front",
  8268. image: {
  8269. source: "./media/characters/splinter/front.svg",
  8270. extra: 2990 / 2882,
  8271. bottom: 0.04
  8272. }
  8273. },
  8274. back: {
  8275. height: math.unit(6, "feet"),
  8276. weight: math.unit(150, "lb"),
  8277. name: "Back",
  8278. image: {
  8279. source: "./media/characters/splinter/back.svg",
  8280. extra: 2990 / 2882,
  8281. bottom: 0.04
  8282. }
  8283. },
  8284. },
  8285. [
  8286. {
  8287. name: "Normal",
  8288. height: math.unit(6, "feet")
  8289. },
  8290. {
  8291. name: "Macro",
  8292. height: math.unit(230, "meters"),
  8293. default: true
  8294. },
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "SnowGabumon" },
  8299. {
  8300. front: {
  8301. height: math.unit(4 + 10 / 12, "feet"),
  8302. weight: math.unit(480, "lb"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/snow-gabumon/front.svg",
  8306. extra: 1140 / 963,
  8307. bottom: 0.058
  8308. }
  8309. },
  8310. back: {
  8311. height: math.unit(4 + 10 / 12, "feet"),
  8312. weight: math.unit(480, "lb"),
  8313. name: "Back",
  8314. image: {
  8315. source: "./media/characters/snow-gabumon/back.svg",
  8316. extra: 1115 / 962,
  8317. bottom: 0.041
  8318. }
  8319. },
  8320. frontUndresed: {
  8321. height: math.unit(4 + 10 / 12, "feet"),
  8322. weight: math.unit(480, "lb"),
  8323. name: "Front (Undressed)",
  8324. image: {
  8325. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8326. extra: 1061 / 960,
  8327. bottom: 0.045
  8328. }
  8329. },
  8330. },
  8331. [
  8332. {
  8333. name: "Micro",
  8334. height: math.unit(1, "inch")
  8335. },
  8336. {
  8337. name: "Normal",
  8338. height: math.unit(4 + 10 / 12, "feet"),
  8339. default: true
  8340. },
  8341. {
  8342. name: "Macro",
  8343. height: math.unit(200, "feet")
  8344. },
  8345. {
  8346. name: "Megamacro",
  8347. height: math.unit(120, "miles")
  8348. },
  8349. {
  8350. name: "Gigamacro",
  8351. height: math.unit(9800, "miles")
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Moody" },
  8357. {
  8358. front: {
  8359. height: math.unit(1.7, "meters"),
  8360. weight: math.unit(140, "lb"),
  8361. name: "Front",
  8362. image: {
  8363. source: "./media/characters/moody/front.svg",
  8364. extra: 3226 / 3007,
  8365. bottom: 0.087
  8366. }
  8367. },
  8368. },
  8369. [
  8370. {
  8371. name: "Micro",
  8372. height: math.unit(1, "mm")
  8373. },
  8374. {
  8375. name: "Normal",
  8376. height: math.unit(1.7, "meters"),
  8377. default: true
  8378. },
  8379. {
  8380. name: "Macro",
  8381. height: math.unit(80, "meters")
  8382. },
  8383. {
  8384. name: "Macro+",
  8385. height: math.unit(500, "meters")
  8386. },
  8387. ]
  8388. ))
  8389. characterMakers.push(() => makeCharacter(
  8390. { name: "Zyas" },
  8391. {
  8392. front: {
  8393. height: math.unit(6, "feet"),
  8394. weight: math.unit(150, "lb"),
  8395. name: "Front",
  8396. image: {
  8397. source: "./media/characters/zyas/front.svg",
  8398. extra: 1180 / 1120,
  8399. bottom: 0.045
  8400. }
  8401. },
  8402. },
  8403. [
  8404. {
  8405. name: "Normal",
  8406. height: math.unit(10, "feet"),
  8407. default: true
  8408. },
  8409. {
  8410. name: "Macro",
  8411. height: math.unit(500, "feet")
  8412. },
  8413. {
  8414. name: "Megamacro",
  8415. height: math.unit(5, "miles")
  8416. },
  8417. {
  8418. name: "Teramacro",
  8419. height: math.unit(150000, "miles")
  8420. },
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Cuon" },
  8425. {
  8426. front: {
  8427. height: math.unit(6, "feet"),
  8428. weight: math.unit(150, "lb"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/cuon/front.svg",
  8432. extra: 1390 / 1320,
  8433. bottom: 0.008
  8434. }
  8435. },
  8436. },
  8437. [
  8438. {
  8439. name: "Micro",
  8440. height: math.unit(3, "inches")
  8441. },
  8442. {
  8443. name: "Normal",
  8444. height: math.unit(18 + 9 / 12, "feet"),
  8445. default: true
  8446. },
  8447. {
  8448. name: "Macro",
  8449. height: math.unit(360, "feet")
  8450. },
  8451. {
  8452. name: "Megamacro",
  8453. height: math.unit(360, "miles")
  8454. },
  8455. ]
  8456. ))
  8457. characterMakers.push(() => makeCharacter(
  8458. { name: "Nyanuxk" },
  8459. {
  8460. front: {
  8461. height: math.unit(2.4, "meters"),
  8462. weight: math.unit(70, "kg"),
  8463. name: "Front",
  8464. image: {
  8465. source: "./media/characters/nyanuxk/front.svg",
  8466. extra: 1172 / 1084,
  8467. bottom: 0.065
  8468. }
  8469. },
  8470. side: {
  8471. height: math.unit(2.4, "meters"),
  8472. weight: math.unit(70, "kg"),
  8473. name: "Side",
  8474. image: {
  8475. source: "./media/characters/nyanuxk/side.svg",
  8476. extra: 1190 / 1132,
  8477. bottom: 0.007
  8478. }
  8479. },
  8480. back: {
  8481. height: math.unit(2.4, "meters"),
  8482. weight: math.unit(70, "kg"),
  8483. name: "Back",
  8484. image: {
  8485. source: "./media/characters/nyanuxk/back.svg",
  8486. extra: 1200 / 1141,
  8487. bottom: 0.015
  8488. }
  8489. },
  8490. foot: {
  8491. height: math.unit(0.52, "meters"),
  8492. name: "Foot",
  8493. image: {
  8494. source: "./media/characters/nyanuxk/foot.svg"
  8495. }
  8496. },
  8497. },
  8498. [
  8499. {
  8500. name: "Micro",
  8501. height: math.unit(2, "cm")
  8502. },
  8503. {
  8504. name: "Normal",
  8505. height: math.unit(2.4, "meters"),
  8506. default: true
  8507. },
  8508. {
  8509. name: "Smaller Macro",
  8510. height: math.unit(120, "meters")
  8511. },
  8512. {
  8513. name: "Bigger Macro",
  8514. height: math.unit(1.2, "km")
  8515. },
  8516. {
  8517. name: "Megamacro",
  8518. height: math.unit(15, "kilometers")
  8519. },
  8520. {
  8521. name: "Gigamacro",
  8522. height: math.unit(2000, "km")
  8523. },
  8524. {
  8525. name: "Teramacro",
  8526. height: math.unit(500000, "km")
  8527. },
  8528. ]
  8529. ))
  8530. characterMakers.push(() => makeCharacter(
  8531. { name: "Ailbhe" },
  8532. {
  8533. side: {
  8534. height: math.unit(6, "feet"),
  8535. name: "Side",
  8536. image: {
  8537. source: "./media/characters/ailbhe/side.svg",
  8538. extra: 757 / 464,
  8539. bottom: 0.041
  8540. }
  8541. },
  8542. },
  8543. [
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(1.07, "meters"),
  8547. default: true
  8548. },
  8549. ]
  8550. ))
  8551. characterMakers.push(() => makeCharacter(
  8552. { name: "Zevulfius" },
  8553. {
  8554. front: {
  8555. height: math.unit(6, "feet"),
  8556. weight: math.unit(120, "kg"),
  8557. name: "Front",
  8558. image: {
  8559. source: "./media/characters/zevulfius/front.svg",
  8560. extra: 965 / 903
  8561. }
  8562. },
  8563. side: {
  8564. height: math.unit(6, "feet"),
  8565. weight: math.unit(120, "kg"),
  8566. name: "Side",
  8567. image: {
  8568. source: "./media/characters/zevulfius/side.svg",
  8569. extra: 939 / 900
  8570. }
  8571. },
  8572. back: {
  8573. height: math.unit(6, "feet"),
  8574. weight: math.unit(120, "kg"),
  8575. name: "Back",
  8576. image: {
  8577. source: "./media/characters/zevulfius/back.svg",
  8578. extra: 918 / 854,
  8579. bottom: 0.005
  8580. }
  8581. },
  8582. foot: {
  8583. height: math.unit(6 / 3.72, "feet"),
  8584. name: "Foot",
  8585. image: {
  8586. source: "./media/characters/zevulfius/foot.svg"
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Macro",
  8593. height: math.unit(750, "meters")
  8594. },
  8595. {
  8596. name: "Megamacro",
  8597. height: math.unit(20, "km"),
  8598. default: true
  8599. },
  8600. {
  8601. name: "Gigamacro",
  8602. height: math.unit(2000, "km")
  8603. },
  8604. {
  8605. name: "Teramacro",
  8606. height: math.unit(250000, "km")
  8607. },
  8608. ]
  8609. ))
  8610. characterMakers.push(() => makeCharacter(
  8611. { name: "Rikes" },
  8612. {
  8613. front: {
  8614. height: math.unit(100, "feet"),
  8615. weight: math.unit(350, "kg"),
  8616. name: "Front",
  8617. image: {
  8618. source: "./media/characters/rikes/front.svg",
  8619. extra: 1565 / 1483,
  8620. bottom: 0.017
  8621. }
  8622. },
  8623. },
  8624. [
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(100, "feet"),
  8628. default: true
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Adam Silver-Mane" },
  8634. {
  8635. anthro: {
  8636. height: math.unit(8, "feet"),
  8637. weight: math.unit(120, "kg"),
  8638. name: "Anthro",
  8639. image: {
  8640. source: "./media/characters/adam-silver-mane/anthro.svg",
  8641. extra: 5743 / 5339,
  8642. bottom: 0.07
  8643. }
  8644. },
  8645. taur: {
  8646. height: math.unit(16, "feet"),
  8647. weight: math.unit(1500, "kg"),
  8648. name: "Taur",
  8649. image: {
  8650. source: "./media/characters/adam-silver-mane/taur.svg",
  8651. extra: 1713 / 1571,
  8652. bottom: 0.01
  8653. }
  8654. },
  8655. },
  8656. [
  8657. {
  8658. name: "Normal",
  8659. height: math.unit(8, "feet")
  8660. },
  8661. {
  8662. name: "Minimacro",
  8663. height: math.unit(80, "feet")
  8664. },
  8665. {
  8666. name: "Macro",
  8667. height: math.unit(800, "feet"),
  8668. default: true
  8669. },
  8670. {
  8671. name: "Megamacro",
  8672. height: math.unit(8000, "feet")
  8673. },
  8674. {
  8675. name: "Gigamacro",
  8676. height: math.unit(800, "miles")
  8677. },
  8678. {
  8679. name: "Teramacro",
  8680. height: math.unit(80000, "miles")
  8681. },
  8682. {
  8683. name: "Celestial",
  8684. height: math.unit(8e6, "miles")
  8685. },
  8686. {
  8687. name: "Star Dragon",
  8688. height: math.unit(800000, "parsecs")
  8689. },
  8690. {
  8691. name: "Godly",
  8692. height: math.unit(800, "teraparsecs")
  8693. },
  8694. ]
  8695. ))
  8696. characterMakers.push(() => makeCharacter(
  8697. { name: "Ky'owin" },
  8698. {
  8699. front: {
  8700. height: math.unit(6, "feet"),
  8701. weight: math.unit(150, "lb"),
  8702. name: "Front",
  8703. image: {
  8704. source: "./media/characters/ky'owin/front.svg",
  8705. extra: 3888 / 3068,
  8706. bottom: 0.015
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Normal",
  8713. height: math.unit(6 + 8 / 12, "feet")
  8714. },
  8715. {
  8716. name: "Large",
  8717. height: math.unit(68, "feet")
  8718. },
  8719. {
  8720. name: "Macro",
  8721. height: math.unit(132, "feet")
  8722. },
  8723. {
  8724. name: "Macro+",
  8725. height: math.unit(340, "feet")
  8726. },
  8727. {
  8728. name: "Macro++",
  8729. height: math.unit(680, "feet"),
  8730. default: true
  8731. },
  8732. {
  8733. name: "Megamacro",
  8734. height: math.unit(1, "mile")
  8735. },
  8736. {
  8737. name: "Megamacro+",
  8738. height: math.unit(10, "miles")
  8739. },
  8740. ]
  8741. ))
  8742. characterMakers.push(() => makeCharacter(
  8743. { name: "Mal" },
  8744. {
  8745. front: {
  8746. height: math.unit(4, "feet"),
  8747. weight: math.unit(50, "lb"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/mal/front.svg",
  8751. extra: 785 / 724,
  8752. bottom: 0.07
  8753. }
  8754. },
  8755. },
  8756. [
  8757. {
  8758. name: "Micro",
  8759. height: math.unit(4, "inches")
  8760. },
  8761. {
  8762. name: "Normal",
  8763. height: math.unit(4, "feet"),
  8764. default: true
  8765. },
  8766. {
  8767. name: "Macro",
  8768. height: math.unit(200, "feet")
  8769. },
  8770. ]
  8771. ))
  8772. characterMakers.push(() => makeCharacter(
  8773. { name: "Jordan Deware" },
  8774. {
  8775. front: {
  8776. height: math.unit(6, "feet"),
  8777. weight: math.unit(150, "lb"),
  8778. name: "Front",
  8779. image: {
  8780. source: "./media/characters/jordan-deware/front.svg",
  8781. extra: 1191 / 1012
  8782. }
  8783. },
  8784. },
  8785. [
  8786. {
  8787. name: "Nano",
  8788. height: math.unit(0.01, "mm")
  8789. },
  8790. {
  8791. name: "Minimicro",
  8792. height: math.unit(1, "mm")
  8793. },
  8794. {
  8795. name: "Micro",
  8796. height: math.unit(0.5, "inches")
  8797. },
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(4, "feet"),
  8801. default: true
  8802. },
  8803. {
  8804. name: "Minimacro",
  8805. height: math.unit(40, "meters")
  8806. },
  8807. {
  8808. name: "Small Macro",
  8809. height: math.unit(400, "meters")
  8810. },
  8811. {
  8812. name: "Macro",
  8813. height: math.unit(4, "miles")
  8814. },
  8815. {
  8816. name: "Megamacro",
  8817. height: math.unit(40, "miles")
  8818. },
  8819. {
  8820. name: "Megamacro+",
  8821. height: math.unit(400, "miles")
  8822. },
  8823. {
  8824. name: "Gigamacro",
  8825. height: math.unit(400000, "miles")
  8826. },
  8827. ]
  8828. ))
  8829. characterMakers.push(() => makeCharacter(
  8830. { name: "Kimiko" },
  8831. {
  8832. side: {
  8833. height: math.unit(6, "feet"),
  8834. weight: math.unit(150, "lb"),
  8835. name: "Side",
  8836. image: {
  8837. source: "./media/characters/kimiko/side.svg",
  8838. extra: 600 / 358
  8839. }
  8840. },
  8841. },
  8842. [
  8843. {
  8844. name: "Normal",
  8845. height: math.unit(15, "feet"),
  8846. default: true
  8847. },
  8848. {
  8849. name: "Macro",
  8850. height: math.unit(220, "feet")
  8851. },
  8852. {
  8853. name: "Macro+",
  8854. height: math.unit(1450, "feet")
  8855. },
  8856. {
  8857. name: "Megamacro",
  8858. height: math.unit(11500, "feet")
  8859. },
  8860. {
  8861. name: "Gigamacro",
  8862. height: math.unit(9500, "miles")
  8863. },
  8864. {
  8865. name: "Teramacro",
  8866. height: math.unit(2208005005, "miles")
  8867. },
  8868. {
  8869. name: "Examacro",
  8870. height: math.unit(2750, "parsecs")
  8871. },
  8872. {
  8873. name: "Zettamacro",
  8874. height: math.unit(101500, "parsecs")
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Andrew Sleepy" },
  8880. {
  8881. front: {
  8882. height: math.unit(6, "feet"),
  8883. weight: math.unit(70, "kg"),
  8884. name: "Front",
  8885. image: {
  8886. source: "./media/characters/andrew-sleepy/front.svg"
  8887. }
  8888. },
  8889. side: {
  8890. height: math.unit(6, "feet"),
  8891. weight: math.unit(70, "kg"),
  8892. name: "Side",
  8893. image: {
  8894. source: "./media/characters/andrew-sleepy/side.svg"
  8895. }
  8896. },
  8897. },
  8898. [
  8899. {
  8900. name: "Micro",
  8901. height: math.unit(1, "mm"),
  8902. default: true
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Judio" },
  8908. {
  8909. front: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(150, "lb"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/judio/front.svg",
  8915. extra: 1258 / 1110
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Normal",
  8922. height: math.unit(5 + 6 / 12, "feet")
  8923. },
  8924. {
  8925. name: "Macro",
  8926. height: math.unit(1000, "feet"),
  8927. default: true
  8928. },
  8929. {
  8930. name: "Megamacro",
  8931. height: math.unit(10, "miles")
  8932. },
  8933. ]
  8934. ))
  8935. characterMakers.push(() => makeCharacter(
  8936. { name: "Nomaxice" },
  8937. {
  8938. front: {
  8939. height: math.unit(6, "feet"),
  8940. weight: math.unit(68, "kg"),
  8941. name: "Front",
  8942. image: {
  8943. source: "./media/characters/nomaxice/front.svg",
  8944. extra: 1498 / 1073,
  8945. bottom: 0.075
  8946. }
  8947. },
  8948. foot: {
  8949. height: math.unit(1.1, "feet"),
  8950. name: "Foot",
  8951. image: {
  8952. source: "./media/characters/nomaxice/foot.svg"
  8953. }
  8954. },
  8955. },
  8956. [
  8957. {
  8958. name: "Micro",
  8959. height: math.unit(8, "cm")
  8960. },
  8961. {
  8962. name: "Norm",
  8963. height: math.unit(1.82, "m")
  8964. },
  8965. {
  8966. name: "Norm+",
  8967. height: math.unit(8.8, "feet")
  8968. },
  8969. {
  8970. name: "Big",
  8971. height: math.unit(8, "meters"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Macro",
  8976. height: math.unit(18, "meters")
  8977. },
  8978. {
  8979. name: "Macro+",
  8980. height: math.unit(88, "meters")
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Dydros" },
  8986. {
  8987. front: {
  8988. height: math.unit(12, "feet"),
  8989. weight: math.unit(1.5, "tons"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/dydros/front.svg",
  8993. extra: 863 / 800,
  8994. bottom: 0.015
  8995. }
  8996. },
  8997. back: {
  8998. height: math.unit(12, "feet"),
  8999. weight: math.unit(1.5, "tons"),
  9000. name: "Back",
  9001. image: {
  9002. source: "./media/characters/dydros/back.svg",
  9003. extra: 900 / 843,
  9004. bottom: 0.005
  9005. }
  9006. },
  9007. },
  9008. [
  9009. {
  9010. name: "Normal",
  9011. height: math.unit(12, "feet"),
  9012. default: true
  9013. },
  9014. ]
  9015. ))
  9016. characterMakers.push(() => makeCharacter(
  9017. { name: "Riggi" },
  9018. {
  9019. front: {
  9020. height: math.unit(6, "feet"),
  9021. weight: math.unit(100, "kg"),
  9022. name: "Front",
  9023. image: {
  9024. source: "./media/characters/riggi/front.svg",
  9025. extra: 5787 / 5303
  9026. }
  9027. },
  9028. hyper: {
  9029. height: math.unit(6 * 5 / 3, "feet"),
  9030. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9031. name: "Hyper",
  9032. image: {
  9033. source: "./media/characters/riggi/hyper.svg",
  9034. extra: 3595 / 3485
  9035. }
  9036. },
  9037. },
  9038. [
  9039. {
  9040. name: "Small Macro",
  9041. height: math.unit(50, "feet")
  9042. },
  9043. {
  9044. name: "Default",
  9045. height: math.unit(200, "feet"),
  9046. default: true
  9047. },
  9048. {
  9049. name: "Loom",
  9050. height: math.unit(10000, "feet")
  9051. },
  9052. {
  9053. name: "Cruising Altitude",
  9054. height: math.unit(30000, "feet")
  9055. },
  9056. {
  9057. name: "Megamacro",
  9058. height: math.unit(100, "miles")
  9059. },
  9060. {
  9061. name: "Continent Sized",
  9062. height: math.unit(2800, "miles")
  9063. },
  9064. {
  9065. name: "Earth Sized",
  9066. height: math.unit(8000, "miles")
  9067. },
  9068. ]
  9069. ))
  9070. characterMakers.push(() => makeCharacter(
  9071. { name: "Alexi" },
  9072. {
  9073. front: {
  9074. height: math.unit(6, "feet"),
  9075. weight: math.unit(250, "lb"),
  9076. name: "Front",
  9077. image: {
  9078. source: "./media/characters/alexi/front.svg",
  9079. extra: 3483 / 3291,
  9080. bottom: 0.04
  9081. }
  9082. },
  9083. back: {
  9084. height: math.unit(6, "feet"),
  9085. weight: math.unit(250, "lb"),
  9086. name: "Back",
  9087. image: {
  9088. source: "./media/characters/alexi/back.svg",
  9089. extra: 3533 / 3356,
  9090. bottom: 0.021
  9091. }
  9092. },
  9093. frontTransforming: {
  9094. height: math.unit(8.58, "feet"),
  9095. weight: math.unit(1300, "lb"),
  9096. name: "Transforming",
  9097. image: {
  9098. source: "./media/characters/alexi/front-transforming.svg",
  9099. extra: 437 / 409,
  9100. bottom: 19/458.66
  9101. }
  9102. },
  9103. frontTransformed: {
  9104. height: math.unit(12.5, "feet"),
  9105. weight: math.unit(4000, "lb"),
  9106. name: "Transformed",
  9107. image: {
  9108. source: "./media/characters/alexi/front-transformed.svg",
  9109. extra: 639 / 614,
  9110. bottom: 30.55/671
  9111. }
  9112. },
  9113. },
  9114. [
  9115. {
  9116. name: "Normal",
  9117. height: math.unit(3, "meters"),
  9118. default: true
  9119. },
  9120. {
  9121. name: "Minimacro",
  9122. height: math.unit(30, "meters")
  9123. },
  9124. {
  9125. name: "Macro",
  9126. height: math.unit(500, "meters")
  9127. },
  9128. {
  9129. name: "Megamacro",
  9130. height: math.unit(9000, "km")
  9131. },
  9132. {
  9133. name: "Teramacro",
  9134. height: math.unit(384000, "km")
  9135. },
  9136. ]
  9137. ))
  9138. characterMakers.push(() => makeCharacter(
  9139. { name: "Kayroo" },
  9140. {
  9141. front: {
  9142. height: math.unit(6, "feet"),
  9143. weight: math.unit(150, "lb"),
  9144. name: "Front",
  9145. image: {
  9146. source: "./media/characters/kayroo/front.svg",
  9147. extra: 1153 / 1038,
  9148. bottom: 0.06
  9149. }
  9150. },
  9151. foot: {
  9152. height: math.unit(6, "feet"),
  9153. weight: math.unit(150, "lb"),
  9154. name: "Foot",
  9155. image: {
  9156. source: "./media/characters/kayroo/foot.svg"
  9157. }
  9158. },
  9159. },
  9160. [
  9161. {
  9162. name: "Normal",
  9163. height: math.unit(8, "feet"),
  9164. default: true
  9165. },
  9166. {
  9167. name: "Minimacro",
  9168. height: math.unit(250, "feet")
  9169. },
  9170. {
  9171. name: "Macro",
  9172. height: math.unit(2800, "feet")
  9173. },
  9174. {
  9175. name: "Megamacro",
  9176. height: math.unit(5200, "feet")
  9177. },
  9178. {
  9179. name: "Gigamacro",
  9180. height: math.unit(27000, "feet")
  9181. },
  9182. {
  9183. name: "Omega",
  9184. height: math.unit(45000, "feet")
  9185. },
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Rhys" },
  9190. {
  9191. front: {
  9192. height: math.unit(18, "feet"),
  9193. weight: math.unit(5800, "lb"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/rhys/front.svg",
  9197. extra: 3386 / 3090,
  9198. bottom: 0.07
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Normal",
  9205. height: math.unit(18, "feet"),
  9206. default: true
  9207. },
  9208. {
  9209. name: "Working Size",
  9210. height: math.unit(200, "feet")
  9211. },
  9212. {
  9213. name: "Demolition Size",
  9214. height: math.unit(2000, "feet")
  9215. },
  9216. {
  9217. name: "Maximum Licensed Size",
  9218. height: math.unit(5, "miles")
  9219. },
  9220. {
  9221. name: "Maximum Observed Size",
  9222. height: math.unit(10, "yottameters")
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Toto" },
  9228. {
  9229. front: {
  9230. height: math.unit(6, "feet"),
  9231. weight: math.unit(250, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/toto/front.svg",
  9235. extra: 527 / 479,
  9236. bottom: 0.05
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Micro",
  9243. height: math.unit(3, "feet")
  9244. },
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(10, "feet")
  9248. },
  9249. {
  9250. name: "Macro",
  9251. height: math.unit(150, "feet"),
  9252. default: true
  9253. },
  9254. {
  9255. name: "Megamacro",
  9256. height: math.unit(1200, "feet")
  9257. },
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "King" },
  9262. {
  9263. back: {
  9264. height: math.unit(6, "feet"),
  9265. weight: math.unit(150, "lb"),
  9266. name: "Back",
  9267. image: {
  9268. source: "./media/characters/king/back.svg"
  9269. }
  9270. },
  9271. },
  9272. [
  9273. {
  9274. name: "Micro",
  9275. height: math.unit(2, "inches")
  9276. },
  9277. {
  9278. name: "Normal",
  9279. height: math.unit(8, "feet")
  9280. },
  9281. {
  9282. name: "Macro",
  9283. height: math.unit(200, "feet"),
  9284. default: true
  9285. },
  9286. {
  9287. name: "Megamacro",
  9288. height: math.unit(50, "miles")
  9289. },
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Cordite" },
  9294. {
  9295. anthro: {
  9296. height: math.unit(6 + 5 / 12, "feet"),
  9297. weight: math.unit(280, "lb"),
  9298. name: "Anthro",
  9299. image: {
  9300. source: "./media/characters/cordite/anthro.svg",
  9301. extra: 1986 / 1905,
  9302. bottom: 0.025
  9303. }
  9304. },
  9305. feral: {
  9306. height: math.unit(2, "feet"),
  9307. weight: math.unit(90, "lb"),
  9308. name: "Feral",
  9309. image: {
  9310. source: "./media/characters/cordite/feral.svg",
  9311. extra: 1260 / 755,
  9312. bottom: 0.05
  9313. }
  9314. },
  9315. },
  9316. [
  9317. {
  9318. name: "Normal",
  9319. height: math.unit(6 + 5 / 12, "feet"),
  9320. default: true
  9321. },
  9322. ]
  9323. ))
  9324. characterMakers.push(() => makeCharacter(
  9325. { name: "Pianostrong" },
  9326. {
  9327. front: {
  9328. height: math.unit(6, "feet"),
  9329. weight: math.unit(150, "lb"),
  9330. name: "Front",
  9331. image: {
  9332. source: "./media/characters/pianostrong/front.svg",
  9333. extra: 6577 / 6254,
  9334. bottom: 0.02
  9335. }
  9336. },
  9337. side: {
  9338. height: math.unit(6, "feet"),
  9339. weight: math.unit(150, "lb"),
  9340. name: "Side",
  9341. image: {
  9342. source: "./media/characters/pianostrong/side.svg",
  9343. extra: 6106 / 5730
  9344. }
  9345. },
  9346. back: {
  9347. height: math.unit(6, "feet"),
  9348. weight: math.unit(150, "lb"),
  9349. name: "Back",
  9350. image: {
  9351. source: "./media/characters/pianostrong/back.svg",
  9352. extra: 6085 / 5733,
  9353. bottom: 0.01
  9354. }
  9355. },
  9356. },
  9357. [
  9358. {
  9359. name: "Macro",
  9360. height: math.unit(100, "feet")
  9361. },
  9362. {
  9363. name: "Macro+",
  9364. height: math.unit(300, "feet"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Macro++",
  9369. height: math.unit(1000, "feet")
  9370. },
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Kona" },
  9375. {
  9376. front: {
  9377. height: math.unit(6, "feet"),
  9378. weight: math.unit(150, "lb"),
  9379. name: "Front",
  9380. image: {
  9381. source: "./media/characters/kona/front.svg",
  9382. extra: 2960 / 2629,
  9383. bottom: 0.005
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Normal",
  9390. height: math.unit(11 + 8 / 12, "feet")
  9391. },
  9392. {
  9393. name: "Macro",
  9394. height: math.unit(850, "feet"),
  9395. default: true
  9396. },
  9397. {
  9398. name: "Macro+",
  9399. height: math.unit(1.5, "km"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Megamacro",
  9404. height: math.unit(80, "miles")
  9405. },
  9406. {
  9407. name: "Gigamacro",
  9408. height: math.unit(3500, "miles")
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Levi" },
  9414. {
  9415. side: {
  9416. height: math.unit(1.9, "meters"),
  9417. weight: math.unit(326, "kg"),
  9418. name: "Side",
  9419. image: {
  9420. source: "./media/characters/levi/side.svg",
  9421. extra: 1704 / 1334,
  9422. bottom: 0.02
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(1.9, "meters"),
  9430. default: true
  9431. },
  9432. {
  9433. name: "Macro",
  9434. height: math.unit(20, "meters")
  9435. },
  9436. {
  9437. name: "Macro+",
  9438. height: math.unit(200, "meters")
  9439. },
  9440. {
  9441. name: "Megamacro",
  9442. height: math.unit(2, "km")
  9443. },
  9444. {
  9445. name: "Megamacro+",
  9446. height: math.unit(20, "km")
  9447. },
  9448. {
  9449. name: "Gigamacro",
  9450. height: math.unit(2500, "km")
  9451. },
  9452. {
  9453. name: "Gigamacro+",
  9454. height: math.unit(120000, "km")
  9455. },
  9456. {
  9457. name: "Teramacro",
  9458. height: math.unit(7.77e6, "km")
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "BMC" },
  9464. {
  9465. front: {
  9466. height: math.unit(6 + 4 / 12, "feet"),
  9467. weight: math.unit(188, "lb"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/bmc/front.svg",
  9471. extra: 1067 / 1022,
  9472. bottom: 0.047
  9473. }
  9474. },
  9475. },
  9476. [
  9477. {
  9478. name: "Human-sized",
  9479. height: math.unit(6 + 4 / 12, "feet")
  9480. },
  9481. {
  9482. name: "Small",
  9483. height: math.unit(250, "feet")
  9484. },
  9485. {
  9486. name: "Normal",
  9487. height: math.unit(1250, "feet"),
  9488. default: true
  9489. },
  9490. {
  9491. name: "Good Day",
  9492. height: math.unit(88, "miles")
  9493. },
  9494. {
  9495. name: "Largest Measured Size",
  9496. height: math.unit(11.2e6, "lightyears")
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Sven the Kaiju" },
  9502. {
  9503. front: {
  9504. height: math.unit(20, "feet"),
  9505. weight: math.unit(2016, "kg"),
  9506. name: "Front",
  9507. image: {
  9508. source: "./media/characters/sven-the-kaiju/front.svg",
  9509. extra: 1479 / 1449,
  9510. bottom: 0.05
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Fairy",
  9517. height: math.unit(6, "inches")
  9518. },
  9519. {
  9520. name: "Normal",
  9521. height: math.unit(20, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Rampage",
  9526. height: math.unit(200, "feet")
  9527. },
  9528. {
  9529. name: "Archfey Forest Guardian",
  9530. height: math.unit(1, "mile")
  9531. },
  9532. ]
  9533. ))
  9534. characterMakers.push(() => makeCharacter(
  9535. { name: "Marik" },
  9536. {
  9537. front: {
  9538. height: math.unit(4, "meters"),
  9539. weight: math.unit(2, "tons"),
  9540. name: "Front",
  9541. image: {
  9542. source: "./media/characters/marik/front.svg",
  9543. extra: 1057 / 1003,
  9544. bottom: 0.08
  9545. }
  9546. },
  9547. },
  9548. [
  9549. {
  9550. name: "Normal",
  9551. height: math.unit(4, "meters"),
  9552. default: true
  9553. },
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(20, "meters")
  9557. },
  9558. {
  9559. name: "Megamacro",
  9560. height: math.unit(50, "km")
  9561. },
  9562. {
  9563. name: "Gigamacro",
  9564. height: math.unit(100, "km")
  9565. },
  9566. {
  9567. name: "Alpha Macro",
  9568. height: math.unit(7.88e7, "yottameters")
  9569. },
  9570. ]
  9571. ))
  9572. characterMakers.push(() => makeCharacter(
  9573. { name: "Mel" },
  9574. {
  9575. front: {
  9576. height: math.unit(6, "feet"),
  9577. weight: math.unit(110, "lb"),
  9578. name: "Front",
  9579. image: {
  9580. source: "./media/characters/mel/front.svg",
  9581. extra: 736 / 617,
  9582. bottom: 0.017
  9583. }
  9584. },
  9585. },
  9586. [
  9587. {
  9588. name: "Pico",
  9589. height: math.unit(3, "pm")
  9590. },
  9591. {
  9592. name: "Nano",
  9593. height: math.unit(3, "nm")
  9594. },
  9595. {
  9596. name: "Micro",
  9597. height: math.unit(0.3, "mm"),
  9598. default: true
  9599. },
  9600. {
  9601. name: "Micro+",
  9602. height: math.unit(3, "mm")
  9603. },
  9604. {
  9605. name: "Normal",
  9606. height: math.unit(5 + 10.5 / 12, "feet")
  9607. },
  9608. ]
  9609. ))
  9610. characterMakers.push(() => makeCharacter(
  9611. { name: "Lykonous" },
  9612. {
  9613. kaiju: {
  9614. height: math.unit(1.75, "meters"),
  9615. weight: math.unit(55, "kg"),
  9616. name: "Kaiju",
  9617. image: {
  9618. source: "./media/characters/lykonous/kaiju.svg",
  9619. extra: 1055 / 946,
  9620. bottom: 0.135
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(2.5, "meters"),
  9628. default: true
  9629. },
  9630. {
  9631. name: "Kaiju Dragon",
  9632. height: math.unit(60, "meters")
  9633. },
  9634. {
  9635. name: "Mega Kaiju",
  9636. height: math.unit(120, "km")
  9637. },
  9638. {
  9639. name: "Giga Kaiju",
  9640. height: math.unit(200, "megameters")
  9641. },
  9642. {
  9643. name: "Terra Kaiju",
  9644. height: math.unit(400, "gigameters")
  9645. },
  9646. {
  9647. name: "Kaiju Dragon God",
  9648. height: math.unit(13000, "exaparsecs")
  9649. },
  9650. ]
  9651. ))
  9652. characterMakers.push(() => makeCharacter(
  9653. { name: "Blü" },
  9654. {
  9655. front: {
  9656. height: math.unit(6, "feet"),
  9657. weight: math.unit(150, "lb"),
  9658. name: "Front",
  9659. image: {
  9660. source: "./media/characters/blü/front.svg",
  9661. extra: 1883 / 1564,
  9662. bottom: 0.031
  9663. }
  9664. },
  9665. },
  9666. [
  9667. {
  9668. name: "Normal",
  9669. height: math.unit(13, "feet"),
  9670. default: true
  9671. },
  9672. {
  9673. name: "Big Boi",
  9674. height: math.unit(150, "meters")
  9675. },
  9676. {
  9677. name: "Mini Stomper",
  9678. height: math.unit(300, "meters")
  9679. },
  9680. {
  9681. name: "Macro",
  9682. height: math.unit(1000, "meters")
  9683. },
  9684. {
  9685. name: "Megamacro",
  9686. height: math.unit(11000, "meters")
  9687. },
  9688. {
  9689. name: "Gigamacro",
  9690. height: math.unit(11000, "km")
  9691. },
  9692. {
  9693. name: "Teramacro",
  9694. height: math.unit(420000, "km")
  9695. },
  9696. {
  9697. name: "Examacro",
  9698. height: math.unit(120, "parsecs")
  9699. },
  9700. {
  9701. name: "God Tho",
  9702. height: math.unit(98000000000, "parsecs")
  9703. },
  9704. ]
  9705. ))
  9706. characterMakers.push(() => makeCharacter(
  9707. { name: "Scales" },
  9708. {
  9709. taurFront: {
  9710. height: math.unit(6, "feet"),
  9711. weight: math.unit(200, "lb"),
  9712. name: "Taur (Front)",
  9713. image: {
  9714. source: "./media/characters/scales/taur-front.svg",
  9715. extra: 1,
  9716. bottom: 0.05
  9717. }
  9718. },
  9719. taurBack: {
  9720. height: math.unit(6, "feet"),
  9721. weight: math.unit(200, "lb"),
  9722. name: "Taur (Back)",
  9723. image: {
  9724. source: "./media/characters/scales/taur-back.svg",
  9725. extra: 1,
  9726. bottom: 0.08
  9727. }
  9728. },
  9729. anthro: {
  9730. height: math.unit(6 * 7 / 12, "feet"),
  9731. weight: math.unit(100, "lb"),
  9732. name: "Anthro",
  9733. image: {
  9734. source: "./media/characters/scales/anthro.svg",
  9735. extra: 1,
  9736. bottom: 0.06
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(12, "feet"),
  9744. default: true
  9745. },
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Koragos" },
  9750. {
  9751. front: {
  9752. height: math.unit(6, "feet"),
  9753. weight: math.unit(150, "lb"),
  9754. name: "Front",
  9755. image: {
  9756. source: "./media/characters/koragos/front.svg",
  9757. extra: 841 / 794,
  9758. bottom: 0.035
  9759. }
  9760. },
  9761. back: {
  9762. height: math.unit(6, "feet"),
  9763. weight: math.unit(150, "lb"),
  9764. name: "Back",
  9765. image: {
  9766. source: "./media/characters/koragos/back.svg",
  9767. extra: 841 / 810,
  9768. bottom: 0.022
  9769. }
  9770. },
  9771. },
  9772. [
  9773. {
  9774. name: "Normal",
  9775. height: math.unit(6 + 11 / 12, "feet"),
  9776. default: true
  9777. },
  9778. {
  9779. name: "Macro",
  9780. height: math.unit(490, "feet")
  9781. },
  9782. {
  9783. name: "Megamacro",
  9784. height: math.unit(10, "miles")
  9785. },
  9786. {
  9787. name: "Gigamacro",
  9788. height: math.unit(50, "miles")
  9789. },
  9790. ]
  9791. ))
  9792. characterMakers.push(() => makeCharacter(
  9793. { name: "Xylrem" },
  9794. {
  9795. front: {
  9796. height: math.unit(6, "feet"),
  9797. weight: math.unit(250, "lb"),
  9798. name: "Front",
  9799. image: {
  9800. source: "./media/characters/xylrem/front.svg",
  9801. extra: 3323 / 3050,
  9802. bottom: 0.065
  9803. }
  9804. },
  9805. },
  9806. [
  9807. {
  9808. name: "Micro",
  9809. height: math.unit(4, "feet")
  9810. },
  9811. {
  9812. name: "Normal",
  9813. height: math.unit(16, "feet"),
  9814. default: true
  9815. },
  9816. {
  9817. name: "Macro",
  9818. height: math.unit(2720, "feet")
  9819. },
  9820. {
  9821. name: "Megamacro",
  9822. height: math.unit(25000, "miles")
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Ikideru" },
  9828. {
  9829. front: {
  9830. height: math.unit(8, "feet"),
  9831. weight: math.unit(250, "kg"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/ikideru/front.svg",
  9835. extra: 930 / 870,
  9836. bottom: 0.087
  9837. }
  9838. },
  9839. back: {
  9840. height: math.unit(8, "feet"),
  9841. weight: math.unit(250, "kg"),
  9842. name: "Back",
  9843. image: {
  9844. source: "./media/characters/ikideru/back.svg",
  9845. extra: 919 / 852,
  9846. bottom: 0.055
  9847. }
  9848. },
  9849. },
  9850. [
  9851. {
  9852. name: "Rare",
  9853. height: math.unit(8, "feet"),
  9854. default: true
  9855. },
  9856. {
  9857. name: "Playful Loom",
  9858. height: math.unit(80, "feet")
  9859. },
  9860. {
  9861. name: "City Leaner",
  9862. height: math.unit(230, "feet")
  9863. },
  9864. {
  9865. name: "Megamacro",
  9866. height: math.unit(2500, "feet")
  9867. },
  9868. {
  9869. name: "Gigamacro",
  9870. height: math.unit(26400, "feet")
  9871. },
  9872. {
  9873. name: "Tectonic Shifter",
  9874. height: math.unit(1.7, "megameters")
  9875. },
  9876. {
  9877. name: "Planet Carer",
  9878. height: math.unit(21, "megameters")
  9879. },
  9880. {
  9881. name: "God",
  9882. height: math.unit(11157.22, "parsecs")
  9883. },
  9884. ]
  9885. ))
  9886. characterMakers.push(() => makeCharacter(
  9887. { name: "Neo" },
  9888. {
  9889. front: {
  9890. height: math.unit(6, "feet"),
  9891. weight: math.unit(120, "lb"),
  9892. name: "Front",
  9893. image: {
  9894. source: "./media/characters/neo/front.svg"
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Micro",
  9901. height: math.unit(2, "inches"),
  9902. default: true
  9903. },
  9904. {
  9905. name: "Human Size",
  9906. height: math.unit(5 + 8 / 12, "feet")
  9907. },
  9908. ]
  9909. ))
  9910. characterMakers.push(() => makeCharacter(
  9911. { name: "Chauncey (Chantz)" },
  9912. {
  9913. front: {
  9914. height: math.unit(13 + 10 / 12, "feet"),
  9915. weight: math.unit(5320, "lb"),
  9916. name: "Front",
  9917. image: {
  9918. source: "./media/characters/chauncey-chantz/front.svg",
  9919. extra: 1587 / 1435,
  9920. bottom: 0.02
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Normal",
  9927. height: math.unit(13 + 10 / 12, "feet"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Macro",
  9932. height: math.unit(45, "feet")
  9933. },
  9934. {
  9935. name: "Megamacro",
  9936. height: math.unit(250, "miles")
  9937. },
  9938. {
  9939. name: "Planetary",
  9940. height: math.unit(10000, "miles")
  9941. },
  9942. {
  9943. name: "Galactic",
  9944. height: math.unit(40000, "parsecs")
  9945. },
  9946. {
  9947. name: "Universal",
  9948. height: math.unit(1, "yottameter")
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Epifox" },
  9954. {
  9955. front: {
  9956. height: math.unit(6, "feet"),
  9957. weight: math.unit(150, "lb"),
  9958. name: "Front",
  9959. image: {
  9960. source: "./media/characters/epifox/front.svg",
  9961. extra: 1,
  9962. bottom: 0.075
  9963. }
  9964. },
  9965. },
  9966. [
  9967. {
  9968. name: "Micro",
  9969. height: math.unit(6, "inches")
  9970. },
  9971. {
  9972. name: "Normal",
  9973. height: math.unit(12, "feet"),
  9974. default: true
  9975. },
  9976. {
  9977. name: "Macro",
  9978. height: math.unit(3810, "feet")
  9979. },
  9980. {
  9981. name: "Megamacro",
  9982. height: math.unit(500, "miles")
  9983. },
  9984. ]
  9985. ))
  9986. characterMakers.push(() => makeCharacter(
  9987. { name: "Colin T." },
  9988. {
  9989. front: {
  9990. height: math.unit(1.8796, "m"),
  9991. weight: math.unit(230, "lb"),
  9992. name: "Front",
  9993. image: {
  9994. source: "./media/characters/colin-t/front.svg",
  9995. extra: 1272 / 1193,
  9996. bottom: 0.07
  9997. }
  9998. },
  9999. },
  10000. [
  10001. {
  10002. name: "Micro",
  10003. height: math.unit(0.571, "meters")
  10004. },
  10005. {
  10006. name: "Normal",
  10007. height: math.unit(1.8796, "meters"),
  10008. default: true
  10009. },
  10010. {
  10011. name: "Tall",
  10012. height: math.unit(4, "meters")
  10013. },
  10014. {
  10015. name: "Macro",
  10016. height: math.unit(67.241, "meters")
  10017. },
  10018. {
  10019. name: "Megamacro",
  10020. height: math.unit(371.856, "meters")
  10021. },
  10022. {
  10023. name: "Planetary",
  10024. height: math.unit(12631.5689, "km")
  10025. },
  10026. ]
  10027. ))
  10028. characterMakers.push(() => makeCharacter(
  10029. { name: "Matvei" },
  10030. {
  10031. front: {
  10032. height: math.unit(1.85, "meters"),
  10033. weight: math.unit(80, "kg"),
  10034. name: "Front",
  10035. image: {
  10036. source: "./media/characters/matvei/front.svg",
  10037. extra: 614 / 594,
  10038. bottom: 0.01
  10039. }
  10040. },
  10041. },
  10042. [
  10043. {
  10044. name: "Normal",
  10045. height: math.unit(1.85, "meters"),
  10046. default: true
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Quincy" },
  10052. {
  10053. front: {
  10054. height: math.unit(5 + 9 / 12, "feet"),
  10055. weight: math.unit(70, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/quincy/front.svg",
  10059. extra: 3041 / 2751
  10060. }
  10061. },
  10062. back: {
  10063. height: math.unit(5 + 9 / 12, "feet"),
  10064. weight: math.unit(70, "lb"),
  10065. name: "Back",
  10066. image: {
  10067. source: "./media/characters/quincy/back.svg",
  10068. extra: 3041 / 2751
  10069. }
  10070. },
  10071. flying: {
  10072. height: math.unit(5 + 4 / 12, "feet"),
  10073. weight: math.unit(70, "lb"),
  10074. name: "Flying",
  10075. image: {
  10076. source: "./media/characters/quincy/flying.svg",
  10077. extra: 1044 / 930
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Micro",
  10084. height: math.unit(3, "cm")
  10085. },
  10086. {
  10087. name: "Normal",
  10088. height: math.unit(5 + 9 / 12, "feet")
  10089. },
  10090. {
  10091. name: "Macro",
  10092. height: math.unit(200, "meters"),
  10093. default: true
  10094. },
  10095. {
  10096. name: "Megamacro",
  10097. height: math.unit(1000, "meters")
  10098. },
  10099. ]
  10100. ))
  10101. characterMakers.push(() => makeCharacter(
  10102. { name: "Vanrel" },
  10103. {
  10104. front: {
  10105. height: math.unit(4 + 7 / 12, "feet"),
  10106. weight: math.unit(150, "lb"),
  10107. name: "Front",
  10108. image: {
  10109. source: "./media/characters/vanrel/front.svg",
  10110. extra: 1,
  10111. bottom: 0.02
  10112. }
  10113. },
  10114. elemental: {
  10115. height: math.unit(3, "feet"),
  10116. weight: math.unit(150, "lb"),
  10117. name: "Elemental",
  10118. image: {
  10119. source: "./media/characters/vanrel/elemental.svg",
  10120. extra: 192.3/162.8,
  10121. bottom: 1.79/194.17
  10122. }
  10123. },
  10124. side: {
  10125. height: math.unit(4 + 7 / 12, "feet"),
  10126. weight: math.unit(150, "lb"),
  10127. name: "Side",
  10128. image: {
  10129. source: "./media/characters/vanrel/side.svg",
  10130. extra: 1,
  10131. bottom: 0.025
  10132. }
  10133. },
  10134. tome: {
  10135. height: math.unit(1.35, "feet"),
  10136. weight: math.unit(10, "lb"),
  10137. name: "Vanrel's Tome",
  10138. rename: true,
  10139. image: {
  10140. source: "./media/characters/vanrel/tome.svg"
  10141. }
  10142. },
  10143. beans: {
  10144. height: math.unit(0.89, "feet"),
  10145. name: "Beans",
  10146. image: {
  10147. source: "./media/characters/vanrel/beans.svg"
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(4 + 7 / 12, "feet"),
  10155. default: true
  10156. },
  10157. ]
  10158. ))
  10159. characterMakers.push(() => makeCharacter(
  10160. { name: "Kuiper Vanrel" },
  10161. {
  10162. front: {
  10163. height: math.unit(7 + 5 / 12, "feet"),
  10164. weight: math.unit(150, "lb"),
  10165. name: "Front",
  10166. image: {
  10167. source: "./media/characters/kuiper-vanrel/front.svg",
  10168. extra: 1118 / 1068,
  10169. bottom: 0.09
  10170. }
  10171. },
  10172. foot: {
  10173. height: math.unit(0.55, "meters"),
  10174. name: "Foot",
  10175. image: {
  10176. source: "./media/characters/kuiper-vanrel/foot.svg",
  10177. }
  10178. },
  10179. battle: {
  10180. height: math.unit(6.824, "feet"),
  10181. weight: math.unit(150, "lb"),
  10182. name: "Battle",
  10183. image: {
  10184. source: "./media/characters/kuiper-vanrel/battle.svg",
  10185. extra: 1466/1327,
  10186. bottom: 29/1492.5
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(7 + 5 / 12, "feet"),
  10194. default: true
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Keset Vanrel" },
  10200. {
  10201. front: {
  10202. height: math.unit(8 + 5 / 12, "feet"),
  10203. weight: math.unit(150, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/keset-vanrel/front.svg",
  10207. extra: 1150 / 1084,
  10208. bottom: 0.05
  10209. }
  10210. },
  10211. hand: {
  10212. height: math.unit(0.6, "meters"),
  10213. name: "Hand",
  10214. image: {
  10215. source: "./media/characters/keset-vanrel/hand.svg"
  10216. }
  10217. },
  10218. foot: {
  10219. height: math.unit(0.94978, "meters"),
  10220. name: "Foot",
  10221. image: {
  10222. source: "./media/characters/keset-vanrel/foot.svg"
  10223. }
  10224. },
  10225. battle: {
  10226. height: math.unit(7.408, "feet"),
  10227. weight: math.unit(150, "lb"),
  10228. name: "Battle",
  10229. image: {
  10230. source: "./media/characters/keset-vanrel/battle.svg",
  10231. extra: 1890/1386,
  10232. bottom: 73.28/1970
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(8 + 5 / 12, "feet"),
  10240. default: true
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Neos" },
  10246. {
  10247. front: {
  10248. height: math.unit(6, "feet"),
  10249. weight: math.unit(150, "lb"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/neos/front.svg",
  10253. extra: 1696 / 992,
  10254. bottom: 0.14
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Normal",
  10261. height: math.unit(54, "cm"),
  10262. default: true
  10263. },
  10264. {
  10265. name: "Macro",
  10266. height: math.unit(100, "m")
  10267. },
  10268. {
  10269. name: "Megamacro",
  10270. height: math.unit(10, "km")
  10271. },
  10272. {
  10273. name: "Megamacro+",
  10274. height: math.unit(100, "km")
  10275. },
  10276. {
  10277. name: "Gigamacro",
  10278. height: math.unit(100, "Mm")
  10279. },
  10280. {
  10281. name: "Teramacro",
  10282. height: math.unit(100, "Gm")
  10283. },
  10284. {
  10285. name: "Examacro",
  10286. height: math.unit(100, "Em")
  10287. },
  10288. {
  10289. name: "Godly",
  10290. height: math.unit(10000, "Ym")
  10291. },
  10292. {
  10293. name: "Beyond Godly",
  10294. height: math.unit(10000000, "Ym")
  10295. },
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Sammy Mouse" },
  10300. {
  10301. feminine: {
  10302. height: math.unit(5, "feet"),
  10303. weight: math.unit(100, "lb"),
  10304. name: "Feminine",
  10305. image: {
  10306. source: "./media/characters/sammy-mouse/feminine.svg",
  10307. extra: 2526 / 2425,
  10308. bottom: 0.123
  10309. }
  10310. },
  10311. masculine: {
  10312. height: math.unit(5, "feet"),
  10313. weight: math.unit(100, "lb"),
  10314. name: "Masculine",
  10315. image: {
  10316. source: "./media/characters/sammy-mouse/masculine.svg",
  10317. extra: 2526 / 2425,
  10318. bottom: 0.123
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Micro",
  10325. height: math.unit(5, "inches")
  10326. },
  10327. {
  10328. name: "Normal",
  10329. height: math.unit(5, "feet"),
  10330. default: true
  10331. },
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(60, "feet")
  10335. },
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Kole" },
  10340. {
  10341. front: {
  10342. height: math.unit(4, "feet"),
  10343. weight: math.unit(50, "lb"),
  10344. name: "Front",
  10345. image: {
  10346. source: "./media/characters/kole/front.svg",
  10347. extra: 1423 / 1303,
  10348. bottom: 0.025
  10349. }
  10350. },
  10351. back: {
  10352. height: math.unit(4, "feet"),
  10353. weight: math.unit(50, "lb"),
  10354. name: "Back",
  10355. image: {
  10356. source: "./media/characters/kole/back.svg",
  10357. extra: 1426 / 1280,
  10358. bottom: 0.02
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Normal",
  10365. height: math.unit(4, "feet"),
  10366. default: true
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Rufran" },
  10372. {
  10373. front: {
  10374. height: math.unit(2 + 6 / 12, "feet"),
  10375. weight: math.unit(20, "lb"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/rufran/front.svg",
  10379. extra: 2041 / 1839,
  10380. bottom: 0.055
  10381. }
  10382. },
  10383. back: {
  10384. height: math.unit(2 + 6 / 12, "feet"),
  10385. weight: math.unit(20, "lb"),
  10386. name: "Back",
  10387. image: {
  10388. source: "./media/characters/rufran/back.svg",
  10389. extra: 2054 / 1839,
  10390. bottom: 0.01
  10391. }
  10392. },
  10393. hand: {
  10394. height: math.unit(0.2166, "meters"),
  10395. name: "Hand",
  10396. image: {
  10397. source: "./media/characters/rufran/hand.svg"
  10398. }
  10399. },
  10400. foot: {
  10401. height: math.unit(0.185, "meters"),
  10402. name: "Foot",
  10403. image: {
  10404. source: "./media/characters/rufran/foot.svg"
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Micro",
  10411. height: math.unit(1, "inch")
  10412. },
  10413. {
  10414. name: "Normal",
  10415. height: math.unit(2 + 6 / 12, "feet"),
  10416. default: true
  10417. },
  10418. {
  10419. name: "Big",
  10420. height: math.unit(60, "feet")
  10421. },
  10422. {
  10423. name: "Macro",
  10424. height: math.unit(325, "feet")
  10425. },
  10426. ]
  10427. ))
  10428. characterMakers.push(() => makeCharacter(
  10429. { name: "Chip" },
  10430. {
  10431. front: {
  10432. height: math.unit(0.3, "meters"),
  10433. weight: math.unit(3.5, "kg"),
  10434. name: "Front",
  10435. image: {
  10436. source: "./media/characters/chip/front.svg",
  10437. extra: 748 / 674
  10438. }
  10439. },
  10440. },
  10441. [
  10442. {
  10443. name: "Micro",
  10444. height: math.unit(1, "inch"),
  10445. default: true
  10446. },
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Torvid" },
  10451. {
  10452. side: {
  10453. height: math.unit(2.3, "meters"),
  10454. weight: math.unit(3500, "lb"),
  10455. name: "Side",
  10456. image: {
  10457. source: "./media/characters/torvid/side.svg",
  10458. extra: 1972 / 722,
  10459. bottom: 0.035
  10460. }
  10461. },
  10462. },
  10463. [
  10464. {
  10465. name: "Normal",
  10466. height: math.unit(2.3, "meters"),
  10467. default: true
  10468. },
  10469. ]
  10470. ))
  10471. characterMakers.push(() => makeCharacter(
  10472. { name: "Susan" },
  10473. {
  10474. front: {
  10475. height: math.unit(2, "meters"),
  10476. weight: math.unit(150.5, "kg"),
  10477. name: "Front",
  10478. image: {
  10479. source: "./media/characters/susan/front.svg",
  10480. extra: 693 / 635,
  10481. bottom: 0.05
  10482. }
  10483. },
  10484. },
  10485. [
  10486. {
  10487. name: "Megamacro",
  10488. height: math.unit(505, "miles"),
  10489. default: true
  10490. },
  10491. ]
  10492. ))
  10493. characterMakers.push(() => makeCharacter(
  10494. { name: "Raindrops" },
  10495. {
  10496. front: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(150, "lb"),
  10499. name: "Front",
  10500. image: {
  10501. source: "./media/characters/raindrops/front.svg",
  10502. extra: 2655 / 2461,
  10503. bottom: 0.02
  10504. }
  10505. },
  10506. back: {
  10507. height: math.unit(6, "feet"),
  10508. weight: math.unit(150, "lb"),
  10509. name: "Back",
  10510. image: {
  10511. source: "./media/characters/raindrops/back.svg",
  10512. extra: 2574 / 2400,
  10513. bottom: 0.03
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Micro",
  10520. height: math.unit(6, "inches")
  10521. },
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(6 + 2 / 12, "feet")
  10525. },
  10526. {
  10527. name: "Macro",
  10528. height: math.unit(131, "feet"),
  10529. default: true
  10530. },
  10531. {
  10532. name: "Megamacro",
  10533. height: math.unit(15, "miles")
  10534. },
  10535. {
  10536. name: "Gigamacro",
  10537. height: math.unit(4000, "miles")
  10538. },
  10539. {
  10540. name: "Teramacro",
  10541. height: math.unit(315000, "miles")
  10542. },
  10543. ]
  10544. ))
  10545. characterMakers.push(() => makeCharacter(
  10546. { name: "Tezwa" },
  10547. {
  10548. front: {
  10549. height: math.unit(2.794, "meters"),
  10550. weight: math.unit(325, "kg"),
  10551. name: "Front",
  10552. image: {
  10553. source: "./media/characters/tezwa/front.svg",
  10554. extra: 2083 / 1906,
  10555. bottom: 0.031
  10556. }
  10557. },
  10558. foot: {
  10559. height: math.unit(0.687, "meters"),
  10560. name: "Foot",
  10561. image: {
  10562. source: "./media/characters/tezwa/foot.svg"
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Normal",
  10569. height: math.unit(9 + 2 / 12, "feet"),
  10570. default: true
  10571. },
  10572. ]
  10573. ))
  10574. characterMakers.push(() => makeCharacter(
  10575. { name: "Typhus" },
  10576. {
  10577. front: {
  10578. height: math.unit(58, "feet"),
  10579. weight: math.unit(89000, "lb"),
  10580. name: "Front",
  10581. image: {
  10582. source: "./media/characters/typhus/front.svg",
  10583. extra: 816 / 800,
  10584. bottom: 0.065
  10585. }
  10586. },
  10587. },
  10588. [
  10589. {
  10590. name: "Macro",
  10591. height: math.unit(58, "feet"),
  10592. default: true
  10593. },
  10594. ]
  10595. ))
  10596. characterMakers.push(() => makeCharacter(
  10597. { name: "Lyra Von Wulf" },
  10598. {
  10599. front: {
  10600. height: math.unit(12, "feet"),
  10601. weight: math.unit(6, "tonnes"),
  10602. name: "Front",
  10603. image: {
  10604. source: "./media/characters/lyra-von-wulf/front.svg",
  10605. extra: 1,
  10606. bottom: 0.10
  10607. }
  10608. },
  10609. frontMecha: {
  10610. height: math.unit(12, "feet"),
  10611. weight: math.unit(12, "tonnes"),
  10612. name: "Front (Mecha)",
  10613. image: {
  10614. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10615. extra: 1,
  10616. bottom: 0.042
  10617. }
  10618. },
  10619. maw: {
  10620. height: math.unit(2.2, "feet"),
  10621. name: "Maw",
  10622. image: {
  10623. source: "./media/characters/lyra-von-wulf/maw.svg"
  10624. }
  10625. },
  10626. },
  10627. [
  10628. {
  10629. name: "Normal",
  10630. height: math.unit(12, "feet"),
  10631. default: true
  10632. },
  10633. {
  10634. name: "Classic",
  10635. height: math.unit(50, "feet")
  10636. },
  10637. {
  10638. name: "Macro",
  10639. height: math.unit(500, "feet")
  10640. },
  10641. {
  10642. name: "Megamacro",
  10643. height: math.unit(1, "mile")
  10644. },
  10645. {
  10646. name: "Gigamacro",
  10647. height: math.unit(400, "miles")
  10648. },
  10649. {
  10650. name: "Teramacro",
  10651. height: math.unit(22000, "miles")
  10652. },
  10653. {
  10654. name: "Solarmacro",
  10655. height: math.unit(8600000, "miles")
  10656. },
  10657. {
  10658. name: "Galactic",
  10659. height: math.unit(1057000, "lightyears")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Dixon" },
  10665. {
  10666. front: {
  10667. height: math.unit(6 + 10 / 12, "feet"),
  10668. weight: math.unit(150, "lb"),
  10669. name: "Front",
  10670. image: {
  10671. source: "./media/characters/dixon/front.svg",
  10672. extra: 3361 / 3209,
  10673. bottom: 0.01
  10674. }
  10675. },
  10676. },
  10677. [
  10678. {
  10679. name: "Normal",
  10680. height: math.unit(6 + 10 / 12, "feet"),
  10681. default: true
  10682. },
  10683. {
  10684. name: "Big",
  10685. height: math.unit(12, "meters")
  10686. },
  10687. {
  10688. name: "Macro",
  10689. height: math.unit(500, "meters")
  10690. },
  10691. {
  10692. name: "Megamacro",
  10693. height: math.unit(2, "km")
  10694. },
  10695. ]
  10696. ))
  10697. characterMakers.push(() => makeCharacter(
  10698. { name: "Kauko" },
  10699. {
  10700. front: {
  10701. height: math.unit(185, "cm"),
  10702. weight: math.unit(68, "kg"),
  10703. name: "Front",
  10704. image: {
  10705. source: "./media/characters/kauko/front.svg",
  10706. extra: 1455 / 1421,
  10707. bottom: 0.03
  10708. }
  10709. },
  10710. back: {
  10711. height: math.unit(185, "cm"),
  10712. weight: math.unit(68, "kg"),
  10713. name: "Back",
  10714. image: {
  10715. source: "./media/characters/kauko/back.svg",
  10716. extra: 1455 / 1421,
  10717. bottom: 0.004
  10718. }
  10719. },
  10720. },
  10721. [
  10722. {
  10723. name: "Normal",
  10724. height: math.unit(185, "cm"),
  10725. default: true
  10726. },
  10727. ]
  10728. ))
  10729. characterMakers.push(() => makeCharacter(
  10730. { name: "Varg" },
  10731. {
  10732. front: {
  10733. height: math.unit(6, "feet"),
  10734. weight: math.unit(150, "kg"),
  10735. name: "Front",
  10736. image: {
  10737. source: "./media/characters/varg/front.svg",
  10738. extra: 1108 / 1018,
  10739. bottom: 0.0375
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Normal",
  10746. height: math.unit(5, "meters")
  10747. },
  10748. {
  10749. name: "Macro",
  10750. height: math.unit(200, "meters")
  10751. },
  10752. {
  10753. name: "Megamacro",
  10754. height: math.unit(20, "kilometers")
  10755. },
  10756. {
  10757. name: "True Size",
  10758. height: math.unit(211, "km"),
  10759. default: true
  10760. },
  10761. {
  10762. name: "Gigamacro",
  10763. height: math.unit(1000, "km")
  10764. },
  10765. {
  10766. name: "Gigamacro+",
  10767. height: math.unit(8000, "km")
  10768. },
  10769. {
  10770. name: "Teramacro",
  10771. height: math.unit(1000000, "km")
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Dayza" },
  10777. {
  10778. front: {
  10779. height: math.unit(7 + 7 / 12, "feet"),
  10780. weight: math.unit(267, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/dayza/front.svg",
  10784. extra: 1262 / 1200,
  10785. bottom: 0.035
  10786. }
  10787. },
  10788. side: {
  10789. height: math.unit(7 + 7 / 12, "feet"),
  10790. weight: math.unit(267, "lb"),
  10791. name: "Side",
  10792. image: {
  10793. source: "./media/characters/dayza/side.svg",
  10794. extra: 1295 / 1245,
  10795. bottom: 0.05
  10796. }
  10797. },
  10798. back: {
  10799. height: math.unit(7 + 7 / 12, "feet"),
  10800. weight: math.unit(267, "lb"),
  10801. name: "Back",
  10802. image: {
  10803. source: "./media/characters/dayza/back.svg",
  10804. extra: 1241 / 1170
  10805. }
  10806. },
  10807. },
  10808. [
  10809. {
  10810. name: "Normal",
  10811. height: math.unit(7 + 7 / 12, "feet"),
  10812. default: true
  10813. },
  10814. {
  10815. name: "Macro",
  10816. height: math.unit(155, "feet")
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Xanthos" },
  10822. {
  10823. front: {
  10824. height: math.unit(6 + 5 / 12, "feet"),
  10825. weight: math.unit(160, "lb"),
  10826. name: "Front",
  10827. image: {
  10828. source: "./media/characters/xanthos/front.svg",
  10829. extra: 1,
  10830. bottom: 0.04
  10831. }
  10832. },
  10833. back: {
  10834. height: math.unit(6 + 5 / 12, "feet"),
  10835. weight: math.unit(160, "lb"),
  10836. name: "Back",
  10837. image: {
  10838. source: "./media/characters/xanthos/back.svg",
  10839. extra: 1,
  10840. bottom: 0.03
  10841. }
  10842. },
  10843. hand: {
  10844. height: math.unit(0.928, "feet"),
  10845. name: "Hand",
  10846. image: {
  10847. source: "./media/characters/xanthos/hand.svg"
  10848. }
  10849. },
  10850. foot: {
  10851. height: math.unit(1.286, "feet"),
  10852. name: "Foot",
  10853. image: {
  10854. source: "./media/characters/xanthos/foot.svg"
  10855. }
  10856. },
  10857. },
  10858. [
  10859. {
  10860. name: "Normal",
  10861. height: math.unit(6 + 5 / 12, "feet"),
  10862. default: true
  10863. },
  10864. {
  10865. name: "Normal+",
  10866. height: math.unit(6, "meters")
  10867. },
  10868. {
  10869. name: "Macro",
  10870. height: math.unit(40, "feet")
  10871. },
  10872. {
  10873. name: "Macro+",
  10874. height: math.unit(200, "meters")
  10875. },
  10876. {
  10877. name: "Megamacro",
  10878. height: math.unit(20, "km")
  10879. },
  10880. {
  10881. name: "Megamacro+",
  10882. height: math.unit(100, "km")
  10883. },
  10884. ]
  10885. ))
  10886. characterMakers.push(() => makeCharacter(
  10887. { name: "Grynn" },
  10888. {
  10889. front: {
  10890. height: math.unit(6 + 3 / 12, "feet"),
  10891. weight: math.unit(215, "lb"),
  10892. name: "Front",
  10893. image: {
  10894. source: "./media/characters/grynn/front.svg",
  10895. extra: 4627 / 4209,
  10896. bottom: 0.047
  10897. }
  10898. },
  10899. },
  10900. [
  10901. {
  10902. name: "Micro",
  10903. height: math.unit(6, "inches")
  10904. },
  10905. {
  10906. name: "Normal",
  10907. height: math.unit(6 + 3 / 12, "feet"),
  10908. default: true
  10909. },
  10910. {
  10911. name: "Big",
  10912. height: math.unit(104, "feet")
  10913. },
  10914. {
  10915. name: "Macro",
  10916. height: math.unit(944, "feet")
  10917. },
  10918. {
  10919. name: "Macro+",
  10920. height: math.unit(9480, "feet")
  10921. },
  10922. {
  10923. name: "Megamacro",
  10924. height: math.unit(78752, "feet")
  10925. },
  10926. {
  10927. name: "Megamacro+",
  10928. height: math.unit(630128, "feet")
  10929. },
  10930. {
  10931. name: "Megamacro++",
  10932. height: math.unit(3150695, "feet")
  10933. },
  10934. ]
  10935. ))
  10936. characterMakers.push(() => makeCharacter(
  10937. { name: "Mocha Aura" },
  10938. {
  10939. front: {
  10940. height: math.unit(7 + 5 / 12, "feet"),
  10941. weight: math.unit(450, "lb"),
  10942. name: "Front",
  10943. image: {
  10944. source: "./media/characters/mocha-aura/front.svg",
  10945. extra: 1907 / 1817,
  10946. bottom: 0.04
  10947. }
  10948. },
  10949. back: {
  10950. height: math.unit(7 + 5 / 12, "feet"),
  10951. weight: math.unit(450, "lb"),
  10952. name: "Back",
  10953. image: {
  10954. source: "./media/characters/mocha-aura/back.svg",
  10955. extra: 1900 / 1825,
  10956. bottom: 0.045
  10957. }
  10958. },
  10959. },
  10960. [
  10961. {
  10962. name: "Nano",
  10963. height: math.unit(1, "nm")
  10964. },
  10965. {
  10966. name: "Megamicro",
  10967. height: math.unit(1, "mm")
  10968. },
  10969. {
  10970. name: "Micro",
  10971. height: math.unit(3, "inches")
  10972. },
  10973. {
  10974. name: "Normal",
  10975. height: math.unit(7 + 5 / 12, "feet"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Macro",
  10980. height: math.unit(30, "feet")
  10981. },
  10982. {
  10983. name: "Megamacro",
  10984. height: math.unit(3500, "feet")
  10985. },
  10986. {
  10987. name: "Teramacro",
  10988. height: math.unit(500000, "miles")
  10989. },
  10990. {
  10991. name: "Petamacro",
  10992. height: math.unit(50000000000000000, "parsecs")
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Ilisha Devya" },
  10998. {
  10999. front: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(150, "lb"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/ilisha-devya/front.svg",
  11005. extra: 1,
  11006. bottom: 0.175
  11007. }
  11008. },
  11009. back: {
  11010. height: math.unit(6, "feet"),
  11011. weight: math.unit(150, "lb"),
  11012. name: "Back",
  11013. image: {
  11014. source: "./media/characters/ilisha-devya/back.svg",
  11015. extra: 1,
  11016. bottom: 0.015
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Macro",
  11023. height: math.unit(500, "feet"),
  11024. default: true
  11025. },
  11026. {
  11027. name: "Megamacro",
  11028. height: math.unit(10, "miles")
  11029. },
  11030. {
  11031. name: "Gigamacro",
  11032. height: math.unit(100000, "miles")
  11033. },
  11034. {
  11035. name: "Examacro",
  11036. height: math.unit(1e9, "lightyears")
  11037. },
  11038. {
  11039. name: "Omniversal",
  11040. height: math.unit(1e33, "lightyears")
  11041. },
  11042. {
  11043. name: "Beyond Infinite",
  11044. height: math.unit(1e100, "lightyears")
  11045. },
  11046. ]
  11047. ))
  11048. characterMakers.push(() => makeCharacter(
  11049. { name: "Mira" },
  11050. {
  11051. Side: {
  11052. height: math.unit(6, "feet"),
  11053. weight: math.unit(150, "lb"),
  11054. name: "Side",
  11055. image: {
  11056. source: "./media/characters/mira/side.svg",
  11057. extra: 900 / 799,
  11058. bottom: 0.02
  11059. }
  11060. },
  11061. },
  11062. [
  11063. {
  11064. name: "Human Size",
  11065. height: math.unit(6, "feet")
  11066. },
  11067. {
  11068. name: "Macro",
  11069. height: math.unit(100, "feet"),
  11070. default: true
  11071. },
  11072. {
  11073. name: "Megamacro",
  11074. height: math.unit(10, "miles")
  11075. },
  11076. {
  11077. name: "Gigamacro",
  11078. height: math.unit(25000, "miles")
  11079. },
  11080. {
  11081. name: "Teramacro",
  11082. height: math.unit(300, "AU")
  11083. },
  11084. {
  11085. name: "Full Size",
  11086. height: math.unit(4.5e10, "lightyears")
  11087. },
  11088. ]
  11089. ))
  11090. characterMakers.push(() => makeCharacter(
  11091. { name: "Holly" },
  11092. {
  11093. front: {
  11094. height: math.unit(6, "feet"),
  11095. weight: math.unit(150, "lb"),
  11096. name: "Front",
  11097. image: {
  11098. source: "./media/characters/holly/front.svg",
  11099. extra: 639 / 606
  11100. }
  11101. },
  11102. back: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(150, "lb"),
  11105. name: "Back",
  11106. image: {
  11107. source: "./media/characters/holly/back.svg",
  11108. extra: 623 / 598
  11109. }
  11110. },
  11111. frontWorking: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Front (Working)",
  11115. image: {
  11116. source: "./media/characters/holly/front-working.svg",
  11117. extra: 607 / 577,
  11118. bottom: 0.048
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Normal",
  11125. height: math.unit(12 + 3 / 12, "feet"),
  11126. default: true
  11127. },
  11128. ]
  11129. ))
  11130. characterMakers.push(() => makeCharacter(
  11131. { name: "Porter" },
  11132. {
  11133. front: {
  11134. height: math.unit(6, "feet"),
  11135. weight: math.unit(150, "lb"),
  11136. name: "Front",
  11137. image: {
  11138. source: "./media/characters/porter/front.svg",
  11139. extra: 1,
  11140. bottom: 0.01
  11141. }
  11142. },
  11143. frontRobes: {
  11144. height: math.unit(6, "feet"),
  11145. weight: math.unit(150, "lb"),
  11146. name: "Front (Robes)",
  11147. image: {
  11148. source: "./media/characters/porter/front-robes.svg",
  11149. extra: 1.01,
  11150. bottom: 0.01
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(11 + 9 / 12, "feet"),
  11158. default: true
  11159. },
  11160. ]
  11161. ))
  11162. characterMakers.push(() => makeCharacter(
  11163. { name: "Lucy" },
  11164. {
  11165. legendary: {
  11166. height: math.unit(6, "feet"),
  11167. weight: math.unit(150, "lb"),
  11168. name: "Legendary",
  11169. image: {
  11170. source: "./media/characters/lucy/legendary.svg",
  11171. extra: 1355 / 1100,
  11172. bottom: 0.045
  11173. }
  11174. },
  11175. },
  11176. [
  11177. {
  11178. name: "Legendary",
  11179. height: math.unit(86882 * 2, "miles"),
  11180. default: true
  11181. },
  11182. ]
  11183. ))
  11184. characterMakers.push(() => makeCharacter(
  11185. { name: "Drusilla" },
  11186. {
  11187. front: {
  11188. height: math.unit(6, "feet"),
  11189. weight: math.unit(150, "lb"),
  11190. name: "Front",
  11191. image: {
  11192. source: "./media/characters/drusilla/front.svg",
  11193. extra: 678 / 635,
  11194. bottom: 0.03
  11195. }
  11196. },
  11197. back: {
  11198. height: math.unit(6, "feet"),
  11199. weight: math.unit(150, "lb"),
  11200. name: "Back",
  11201. image: {
  11202. source: "./media/characters/drusilla/back.svg",
  11203. extra: 678 / 635,
  11204. bottom: 0.005
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Macro",
  11211. height: math.unit(100, "feet")
  11212. },
  11213. {
  11214. name: "Canon Height",
  11215. height: math.unit(2000, "feet"),
  11216. default: true
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Renard Thatch" },
  11222. {
  11223. front: {
  11224. height: math.unit(6, "feet"),
  11225. weight: math.unit(180, "lb"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/renard-thatch/front.svg",
  11229. extra: 2411 / 2275,
  11230. bottom: 0.01
  11231. }
  11232. },
  11233. frontPosing: {
  11234. height: math.unit(6, "feet"),
  11235. weight: math.unit(180, "lb"),
  11236. name: "Front (Posing)",
  11237. image: {
  11238. source: "./media/characters/renard-thatch/front-posing.svg",
  11239. extra: 2381 / 2261,
  11240. bottom: 0.01
  11241. }
  11242. },
  11243. back: {
  11244. height: math.unit(6, "feet"),
  11245. weight: math.unit(180, "lb"),
  11246. name: "Back",
  11247. image: {
  11248. source: "./media/characters/renard-thatch/back.svg",
  11249. extra: 2428 / 2288
  11250. }
  11251. },
  11252. },
  11253. [
  11254. {
  11255. name: "Micro",
  11256. height: math.unit(3, "inches")
  11257. },
  11258. {
  11259. name: "Default",
  11260. height: math.unit(6, "feet"),
  11261. default: true
  11262. },
  11263. {
  11264. name: "Macro",
  11265. height: math.unit(75, "feet")
  11266. },
  11267. ]
  11268. ))
  11269. characterMakers.push(() => makeCharacter(
  11270. { name: "Sekvra" },
  11271. {
  11272. front: {
  11273. height: math.unit(1450, "feet"),
  11274. weight: math.unit(1.21e6, "tons"),
  11275. name: "Front",
  11276. image: {
  11277. source: "./media/characters/sekvra/front.svg",
  11278. extra: 1,
  11279. bottom: 0.03
  11280. }
  11281. },
  11282. frontClothed: {
  11283. height: math.unit(1450, "feet"),
  11284. weight: math.unit(1.21e6, "tons"),
  11285. name: "Front (Clothed)",
  11286. image: {
  11287. source: "./media/characters/sekvra/front-clothed.svg",
  11288. extra: 1,
  11289. bottom: 0.03
  11290. }
  11291. },
  11292. side: {
  11293. height: math.unit(1450, "feet"),
  11294. weight: math.unit(1.21e6, "tons"),
  11295. name: "Side",
  11296. image: {
  11297. source: "./media/characters/sekvra/side.svg",
  11298. extra: 1,
  11299. bottom: 0.025
  11300. }
  11301. },
  11302. back: {
  11303. height: math.unit(1450, "feet"),
  11304. weight: math.unit(1.21e6, "tons"),
  11305. name: "Back",
  11306. image: {
  11307. source: "./media/characters/sekvra/back.svg",
  11308. extra: 1,
  11309. bottom: 0.005
  11310. }
  11311. },
  11312. },
  11313. [
  11314. {
  11315. name: "Macro",
  11316. height: math.unit(1450, "feet"),
  11317. default: true
  11318. },
  11319. {
  11320. name: "Megamacro",
  11321. height: math.unit(15000, "feet")
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Carmine" },
  11327. {
  11328. front: {
  11329. height: math.unit(6, "feet"),
  11330. weight: math.unit(150, "lb"),
  11331. name: "Front",
  11332. image: {
  11333. source: "./media/characters/carmine/front.svg",
  11334. extra: 1,
  11335. bottom: 0.035
  11336. }
  11337. },
  11338. frontArmor: {
  11339. height: math.unit(6, "feet"),
  11340. weight: math.unit(150, "lb"),
  11341. name: "Front (Armor)",
  11342. image: {
  11343. source: "./media/characters/carmine/front-armor.svg",
  11344. extra: 1,
  11345. bottom: 0.035
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Large",
  11352. height: math.unit(1, "mile")
  11353. },
  11354. {
  11355. name: "Huge",
  11356. height: math.unit(40, "miles"),
  11357. default: true
  11358. },
  11359. {
  11360. name: "Colossal",
  11361. height: math.unit(2500, "miles")
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Elyssia" },
  11367. {
  11368. front: {
  11369. height: math.unit(6, "feet"),
  11370. weight: math.unit(150, "lb"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/elyssia/front.svg",
  11374. extra: 2201 / 2035,
  11375. bottom: 0.05
  11376. }
  11377. },
  11378. frontClothed: {
  11379. height: math.unit(6, "feet"),
  11380. weight: math.unit(150, "lb"),
  11381. name: "Front (Clothed)",
  11382. image: {
  11383. source: "./media/characters/elyssia/front-clothed.svg",
  11384. extra: 2201 / 2035,
  11385. bottom: 0.05
  11386. }
  11387. },
  11388. back: {
  11389. height: math.unit(6, "feet"),
  11390. weight: math.unit(150, "lb"),
  11391. name: "Back",
  11392. image: {
  11393. source: "./media/characters/elyssia/back.svg",
  11394. extra: 2201 / 2035,
  11395. bottom: 0.013
  11396. }
  11397. },
  11398. },
  11399. [
  11400. {
  11401. name: "Smaller",
  11402. height: math.unit(150, "feet")
  11403. },
  11404. {
  11405. name: "Standard",
  11406. height: math.unit(1400, "feet"),
  11407. default: true
  11408. },
  11409. {
  11410. name: "Distracted",
  11411. height: math.unit(15000, "feet")
  11412. },
  11413. ]
  11414. ))
  11415. characterMakers.push(() => makeCharacter(
  11416. { name: "Geno Maxwell" },
  11417. {
  11418. front: {
  11419. height: math.unit(7 + 4 / 12, "feet"),
  11420. weight: math.unit(500, "lb"),
  11421. name: "Front",
  11422. image: {
  11423. source: "./media/characters/geno-maxwell/front.svg",
  11424. extra: 2207 / 2040,
  11425. bottom: 0.015
  11426. }
  11427. },
  11428. },
  11429. [
  11430. {
  11431. name: "Micro",
  11432. height: math.unit(3, "inches")
  11433. },
  11434. {
  11435. name: "Normal",
  11436. height: math.unit(7 + 4 / 12, "feet"),
  11437. default: true
  11438. },
  11439. {
  11440. name: "Macro",
  11441. height: math.unit(220, "feet")
  11442. },
  11443. {
  11444. name: "Megamacro",
  11445. height: math.unit(11, "miles")
  11446. },
  11447. ]
  11448. ))
  11449. characterMakers.push(() => makeCharacter(
  11450. { name: "Regena Maxwell" },
  11451. {
  11452. front: {
  11453. height: math.unit(7 + 4 / 12, "feet"),
  11454. weight: math.unit(500, "lb"),
  11455. name: "Front",
  11456. image: {
  11457. source: "./media/characters/regena-maxwell/front.svg",
  11458. extra: 3115 / 2770,
  11459. bottom: 0.02
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Normal",
  11466. height: math.unit(7 + 4 / 12, "feet"),
  11467. default: true
  11468. },
  11469. {
  11470. name: "Macro",
  11471. height: math.unit(220, "feet")
  11472. },
  11473. {
  11474. name: "Megamacro",
  11475. height: math.unit(11, "miles")
  11476. },
  11477. ]
  11478. ))
  11479. characterMakers.push(() => makeCharacter(
  11480. { name: "XGlidingDragonX" },
  11481. {
  11482. front: {
  11483. height: math.unit(6, "feet"),
  11484. weight: math.unit(150, "lb"),
  11485. name: "Front",
  11486. image: {
  11487. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11488. extra: 860 / 690,
  11489. bottom: 0.03
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Normal",
  11496. height: math.unit(1.7, "meters"),
  11497. default: true
  11498. },
  11499. ]
  11500. ))
  11501. characterMakers.push(() => makeCharacter(
  11502. { name: "Quilly" },
  11503. {
  11504. front: {
  11505. height: math.unit(6, "feet"),
  11506. weight: math.unit(150, "lb"),
  11507. name: "Front",
  11508. image: {
  11509. source: "./media/characters/quilly/front.svg",
  11510. extra: 890 / 776
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Gigamacro",
  11517. height: math.unit(404090, "miles"),
  11518. default: true
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Tempest" },
  11524. {
  11525. front: {
  11526. height: math.unit(7 + 8 / 12, "feet"),
  11527. weight: math.unit(350, "lb"),
  11528. name: "Front",
  11529. image: {
  11530. source: "./media/characters/tempest/front.svg",
  11531. extra: 1175 / 1086,
  11532. bottom: 0.02
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(7 + 8 / 12, "feet"),
  11540. default: true
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Rodger" },
  11546. {
  11547. side: {
  11548. height: math.unit(4 + 5 / 12, "feet"),
  11549. weight: math.unit(80, "lb"),
  11550. name: "Side",
  11551. image: {
  11552. source: "./media/characters/rodger/side.svg",
  11553. extra: 1235 / 1118
  11554. }
  11555. },
  11556. },
  11557. [
  11558. {
  11559. name: "Micro",
  11560. height: math.unit(1, "inch")
  11561. },
  11562. {
  11563. name: "Normal",
  11564. height: math.unit(4 + 5 / 12, "feet"),
  11565. default: true
  11566. },
  11567. {
  11568. name: "Macro",
  11569. height: math.unit(120, "feet")
  11570. },
  11571. ]
  11572. ))
  11573. characterMakers.push(() => makeCharacter(
  11574. { name: "Danyel" },
  11575. {
  11576. front: {
  11577. height: math.unit(6, "feet"),
  11578. weight: math.unit(150, "lb"),
  11579. name: "Front",
  11580. image: {
  11581. source: "./media/characters/danyel/front.svg",
  11582. extra: 1185 / 1123,
  11583. bottom: 0.05
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Shrunken",
  11590. height: math.unit(0.5, "mm")
  11591. },
  11592. {
  11593. name: "Micro",
  11594. height: math.unit(1, "mm"),
  11595. default: true
  11596. },
  11597. {
  11598. name: "Upsized",
  11599. height: math.unit(5 + 5 / 12, "feet")
  11600. },
  11601. ]
  11602. ))
  11603. characterMakers.push(() => makeCharacter(
  11604. { name: "Vivian Bijoux" },
  11605. {
  11606. front: {
  11607. height: math.unit(5 + 6 / 12, "feet"),
  11608. weight: math.unit(200, "lb"),
  11609. name: "Front",
  11610. image: {
  11611. source: "./media/characters/vivian-bijoux/front.svg",
  11612. extra: 1,
  11613. bottom: 0.072
  11614. }
  11615. },
  11616. },
  11617. [
  11618. {
  11619. name: "Normal",
  11620. height: math.unit(5 + 6 / 12, "feet"),
  11621. default: true
  11622. },
  11623. {
  11624. name: "Bad Dream",
  11625. height: math.unit(500, "feet")
  11626. },
  11627. {
  11628. name: "Nightmare",
  11629. height: math.unit(500, "miles")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Zeta" },
  11635. {
  11636. front: {
  11637. height: math.unit(6 + 1 / 12, "feet"),
  11638. weight: math.unit(260, "lb"),
  11639. name: "Front",
  11640. image: {
  11641. source: "./media/characters/zeta/front.svg",
  11642. extra: 1968 / 1889,
  11643. bottom: 0.06
  11644. }
  11645. },
  11646. back: {
  11647. height: math.unit(6 + 1 / 12, "feet"),
  11648. weight: math.unit(260, "lb"),
  11649. name: "Back",
  11650. image: {
  11651. source: "./media/characters/zeta/back.svg",
  11652. extra: 1944 / 1858,
  11653. bottom: 0.03
  11654. }
  11655. },
  11656. hand: {
  11657. height: math.unit(1.112, "feet"),
  11658. name: "Hand",
  11659. image: {
  11660. source: "./media/characters/zeta/hand.svg"
  11661. }
  11662. },
  11663. foot: {
  11664. height: math.unit(1.48, "feet"),
  11665. name: "Foot",
  11666. image: {
  11667. source: "./media/characters/zeta/foot.svg"
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Micro",
  11674. height: math.unit(6, "inches")
  11675. },
  11676. {
  11677. name: "Normal",
  11678. height: math.unit(6 + 1 / 12, "feet"),
  11679. default: true
  11680. },
  11681. {
  11682. name: "Macro",
  11683. height: math.unit(20, "feet")
  11684. },
  11685. ]
  11686. ))
  11687. characterMakers.push(() => makeCharacter(
  11688. { name: "Jamie Larsen" },
  11689. {
  11690. front: {
  11691. height: math.unit(6, "feet"),
  11692. weight: math.unit(150, "lb"),
  11693. name: "Front",
  11694. image: {
  11695. source: "./media/characters/jamie-larsen/front.svg",
  11696. extra: 962 / 933,
  11697. bottom: 0.02
  11698. }
  11699. },
  11700. back: {
  11701. height: math.unit(6, "feet"),
  11702. weight: math.unit(150, "lb"),
  11703. name: "Back",
  11704. image: {
  11705. source: "./media/characters/jamie-larsen/back.svg",
  11706. extra: 997 / 946
  11707. }
  11708. },
  11709. },
  11710. [
  11711. {
  11712. name: "Macro",
  11713. height: math.unit(28 + 7 / 12, "feet"),
  11714. default: true
  11715. },
  11716. {
  11717. name: "Macro+",
  11718. height: math.unit(180, "feet")
  11719. },
  11720. {
  11721. name: "Megamacro",
  11722. height: math.unit(10, "miles")
  11723. },
  11724. {
  11725. name: "Gigamacro",
  11726. height: math.unit(200000, "miles")
  11727. },
  11728. ]
  11729. ))
  11730. characterMakers.push(() => makeCharacter(
  11731. { name: "Vance" },
  11732. {
  11733. front: {
  11734. height: math.unit(6, "feet"),
  11735. weight: math.unit(120, "lb"),
  11736. name: "Front",
  11737. image: {
  11738. source: "./media/characters/vance/front.svg",
  11739. extra: 1980 / 1890,
  11740. bottom: 0.09
  11741. }
  11742. },
  11743. back: {
  11744. height: math.unit(6, "feet"),
  11745. weight: math.unit(120, "lb"),
  11746. name: "Back",
  11747. image: {
  11748. source: "./media/characters/vance/back.svg",
  11749. extra: 2081 / 1994,
  11750. bottom: 0.014
  11751. }
  11752. },
  11753. hand: {
  11754. height: math.unit(0.88, "feet"),
  11755. name: "Hand",
  11756. image: {
  11757. source: "./media/characters/vance/hand.svg"
  11758. }
  11759. },
  11760. foot: {
  11761. height: math.unit(0.64, "feet"),
  11762. name: "Foot",
  11763. image: {
  11764. source: "./media/characters/vance/foot.svg"
  11765. }
  11766. },
  11767. },
  11768. [
  11769. {
  11770. name: "Small",
  11771. height: math.unit(90, "feet"),
  11772. default: true
  11773. },
  11774. {
  11775. name: "Macro",
  11776. height: math.unit(100, "meters")
  11777. },
  11778. {
  11779. name: "Megamacro",
  11780. height: math.unit(15, "miles")
  11781. },
  11782. ]
  11783. ))
  11784. characterMakers.push(() => makeCharacter(
  11785. { name: "Xochitl" },
  11786. {
  11787. front: {
  11788. height: math.unit(6, "feet"),
  11789. weight: math.unit(180, "lb"),
  11790. name: "Front",
  11791. image: {
  11792. source: "./media/characters/xochitl/front.svg",
  11793. extra: 2297 / 2261,
  11794. bottom: 0.065
  11795. }
  11796. },
  11797. back: {
  11798. height: math.unit(6, "feet"),
  11799. weight: math.unit(180, "lb"),
  11800. name: "Back",
  11801. image: {
  11802. source: "./media/characters/xochitl/back.svg",
  11803. extra: 2386 / 2354,
  11804. bottom: 0.01
  11805. }
  11806. },
  11807. foot: {
  11808. height: math.unit(6 / 5 * 1.15, "feet"),
  11809. weight: math.unit(150, "lb"),
  11810. name: "Foot",
  11811. image: {
  11812. source: "./media/characters/xochitl/foot.svg"
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Macro",
  11819. height: math.unit(80, "feet")
  11820. },
  11821. {
  11822. name: "Macro+",
  11823. height: math.unit(400, "feet"),
  11824. default: true
  11825. },
  11826. {
  11827. name: "Gigamacro",
  11828. height: math.unit(80000, "miles")
  11829. },
  11830. {
  11831. name: "Gigamacro+",
  11832. height: math.unit(400000, "miles")
  11833. },
  11834. {
  11835. name: "Teramacro",
  11836. height: math.unit(300, "AU")
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Vincent" },
  11842. {
  11843. front: {
  11844. height: math.unit(6, "feet"),
  11845. weight: math.unit(150, "lb"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/vincent/front.svg",
  11849. extra: 1130 / 1080,
  11850. bottom: 0.055
  11851. }
  11852. },
  11853. beak: {
  11854. height: math.unit(6 * 0.1, "feet"),
  11855. name: "Beak",
  11856. image: {
  11857. source: "./media/characters/vincent/beak.svg"
  11858. }
  11859. },
  11860. hand: {
  11861. height: math.unit(6 * 0.85, "feet"),
  11862. weight: math.unit(150, "lb"),
  11863. name: "Hand",
  11864. image: {
  11865. source: "./media/characters/vincent/hand.svg"
  11866. }
  11867. },
  11868. foot: {
  11869. height: math.unit(6 * 0.19, "feet"),
  11870. weight: math.unit(150, "lb"),
  11871. name: "Foot",
  11872. image: {
  11873. source: "./media/characters/vincent/foot.svg"
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Base",
  11880. height: math.unit(6 + 5 / 12, "feet"),
  11881. default: true
  11882. },
  11883. {
  11884. name: "Macro",
  11885. height: math.unit(300, "feet")
  11886. },
  11887. {
  11888. name: "Megamacro",
  11889. height: math.unit(2, "miles")
  11890. },
  11891. {
  11892. name: "Gigamacro",
  11893. height: math.unit(1000, "miles")
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Jay" },
  11899. {
  11900. front: {
  11901. height: math.unit(6 + 2 / 12, "feet"),
  11902. weight: math.unit(265, "lb"),
  11903. name: "Front",
  11904. image: {
  11905. source: "./media/characters/jay/front.svg",
  11906. extra: 1510 / 1430,
  11907. bottom: 0.042
  11908. }
  11909. },
  11910. back: {
  11911. height: math.unit(6 + 2 / 12, "feet"),
  11912. weight: math.unit(265, "lb"),
  11913. name: "Back",
  11914. image: {
  11915. source: "./media/characters/jay/back.svg",
  11916. extra: 1510 / 1430,
  11917. bottom: 0.025
  11918. }
  11919. },
  11920. clothed: {
  11921. height: math.unit(6 + 2 / 12, "feet"),
  11922. weight: math.unit(265, "lb"),
  11923. name: "Front (Clothed)",
  11924. image: {
  11925. source: "./media/characters/jay/clothed.svg",
  11926. extra: 744 / 699,
  11927. bottom: 0.043
  11928. }
  11929. },
  11930. head: {
  11931. height: math.unit(1.772, "feet"),
  11932. name: "Head",
  11933. image: {
  11934. source: "./media/characters/jay/head.svg"
  11935. }
  11936. },
  11937. sizeRay: {
  11938. height: math.unit(1.331, "feet"),
  11939. name: "Size Ray",
  11940. image: {
  11941. source: "./media/characters/jay/size-ray.svg"
  11942. }
  11943. },
  11944. },
  11945. [
  11946. {
  11947. name: "Micro",
  11948. height: math.unit(1, "inch")
  11949. },
  11950. {
  11951. name: "Normal",
  11952. height: math.unit(6 + 2 / 12, "feet"),
  11953. default: true
  11954. },
  11955. {
  11956. name: "Macro",
  11957. height: math.unit(1, "mile")
  11958. },
  11959. {
  11960. name: "Megamacro",
  11961. height: math.unit(100, "miles")
  11962. },
  11963. ]
  11964. ))
  11965. characterMakers.push(() => makeCharacter(
  11966. { name: "Coatl" },
  11967. {
  11968. front: {
  11969. height: math.unit(2, "meters"),
  11970. weight: math.unit(500, "kg"),
  11971. name: "Front",
  11972. image: {
  11973. source: "./media/characters/coatl/front.svg",
  11974. extra: 3948 / 3500,
  11975. bottom: 0.082
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(4, "meters")
  11983. },
  11984. {
  11985. name: "Macro",
  11986. height: math.unit(100, "meters"),
  11987. default: true
  11988. },
  11989. {
  11990. name: "Macro+",
  11991. height: math.unit(300, "meters")
  11992. },
  11993. {
  11994. name: "Megamacro",
  11995. height: math.unit(3, "gigameters")
  11996. },
  11997. {
  11998. name: "Megamacro+",
  11999. height: math.unit(300, "terameters")
  12000. },
  12001. {
  12002. name: "Megamacro++",
  12003. height: math.unit(3, "lightyears")
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Shiroryu" },
  12009. {
  12010. front: {
  12011. height: math.unit(6, "feet"),
  12012. weight: math.unit(50, "kg"),
  12013. name: "front",
  12014. image: {
  12015. source: "./media/characters/shiroryu/front.svg",
  12016. extra: 1990 / 1935
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Mortal Mingling",
  12023. height: math.unit(3, "meters")
  12024. },
  12025. {
  12026. name: "Kaiju-ish",
  12027. height: math.unit(250, "meters")
  12028. },
  12029. {
  12030. name: "Somewhat Godly",
  12031. height: math.unit(400, "km"),
  12032. default: true
  12033. },
  12034. {
  12035. name: "Planetary",
  12036. height: math.unit(300, "megameters")
  12037. },
  12038. {
  12039. name: "Galaxy-dwarfing",
  12040. height: math.unit(450, "kiloparsecs")
  12041. },
  12042. {
  12043. name: "Universe Eater",
  12044. height: math.unit(150, "gigaparsecs")
  12045. },
  12046. {
  12047. name: "Almost Immeasurable",
  12048. height: math.unit(1.3e266, "yottaparsecs")
  12049. },
  12050. ]
  12051. ))
  12052. characterMakers.push(() => makeCharacter(
  12053. { name: "Umeko" },
  12054. {
  12055. front: {
  12056. height: math.unit(6, "feet"),
  12057. weight: math.unit(150, "lb"),
  12058. name: "Front",
  12059. image: {
  12060. source: "./media/characters/umeko/front.svg",
  12061. extra: 1,
  12062. bottom: 0.019
  12063. }
  12064. },
  12065. frontArmored: {
  12066. height: math.unit(6, "feet"),
  12067. weight: math.unit(150, "lb"),
  12068. name: "Front (Armored)",
  12069. image: {
  12070. source: "./media/characters/umeko/front-armored.svg",
  12071. extra: 1,
  12072. bottom: 0.021
  12073. }
  12074. },
  12075. },
  12076. [
  12077. {
  12078. name: "Macro",
  12079. height: math.unit(220, "feet"),
  12080. default: true
  12081. },
  12082. {
  12083. name: "Guardian Dragon",
  12084. height: math.unit(50, "miles")
  12085. },
  12086. {
  12087. name: "Cosmic",
  12088. height: math.unit(800000, "miles")
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Cassidy" },
  12094. {
  12095. front: {
  12096. height: math.unit(6, "feet"),
  12097. weight: math.unit(150, "lb"),
  12098. name: "Front",
  12099. image: {
  12100. source: "./media/characters/cassidy/front.svg",
  12101. extra: 1,
  12102. bottom: 0.043
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Canon Height",
  12109. height: math.unit(120, "feet"),
  12110. default: true
  12111. },
  12112. {
  12113. name: "Macro+",
  12114. height: math.unit(400, "feet")
  12115. },
  12116. {
  12117. name: "Macro++",
  12118. height: math.unit(4000, "feet")
  12119. },
  12120. {
  12121. name: "Megamacro",
  12122. height: math.unit(3, "miles")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Isaac" },
  12128. {
  12129. front: {
  12130. height: math.unit(6, "feet"),
  12131. weight: math.unit(150, "lb"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/isaac/front.svg",
  12135. extra: 896 / 815,
  12136. bottom: 0.11
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Human Size",
  12143. height: math.unit(8, "feet"),
  12144. default: true
  12145. },
  12146. {
  12147. name: "Macro",
  12148. height: math.unit(400, "feet")
  12149. },
  12150. {
  12151. name: "Megamacro",
  12152. height: math.unit(50, "miles")
  12153. },
  12154. {
  12155. name: "Canon Height",
  12156. height: math.unit(200, "AU")
  12157. },
  12158. ]
  12159. ))
  12160. characterMakers.push(() => makeCharacter(
  12161. { name: "Sleekit" },
  12162. {
  12163. front: {
  12164. height: math.unit(6, "feet"),
  12165. weight: math.unit(72, "kg"),
  12166. name: "Front",
  12167. image: {
  12168. source: "./media/characters/sleekit/front.svg",
  12169. extra: 4693 / 4487,
  12170. bottom: 0.012
  12171. }
  12172. },
  12173. },
  12174. [
  12175. {
  12176. name: "Minimum Height",
  12177. height: math.unit(10, "meters")
  12178. },
  12179. {
  12180. name: "Smaller",
  12181. height: math.unit(25, "meters")
  12182. },
  12183. {
  12184. name: "Larger",
  12185. height: math.unit(38, "meters"),
  12186. default: true
  12187. },
  12188. {
  12189. name: "Maximum height",
  12190. height: math.unit(100, "meters")
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Nillia" },
  12196. {
  12197. front: {
  12198. height: math.unit(6, "feet"),
  12199. weight: math.unit(150, "lb"),
  12200. name: "Front",
  12201. image: {
  12202. source: "./media/characters/nillia/front.svg",
  12203. extra: 2195 / 2037,
  12204. bottom: 0.005
  12205. }
  12206. },
  12207. back: {
  12208. height: math.unit(6, "feet"),
  12209. weight: math.unit(150, "lb"),
  12210. name: "Back",
  12211. image: {
  12212. source: "./media/characters/nillia/back.svg",
  12213. extra: 2195 / 2037,
  12214. bottom: 0.005
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Canon Height",
  12221. height: math.unit(489, "feet"),
  12222. default: true
  12223. }
  12224. ]
  12225. ))
  12226. characterMakers.push(() => makeCharacter(
  12227. { name: "Mesmyriza" },
  12228. {
  12229. front: {
  12230. height: math.unit(6, "feet"),
  12231. weight: math.unit(150, "lb"),
  12232. name: "Front",
  12233. image: {
  12234. source: "./media/characters/mesmyriza/front.svg",
  12235. extra: 2067 / 1784,
  12236. bottom: 0.035
  12237. }
  12238. },
  12239. foot: {
  12240. height: math.unit(6 / (250 / 35), "feet"),
  12241. name: "Foot",
  12242. image: {
  12243. source: "./media/characters/mesmyriza/foot.svg"
  12244. }
  12245. },
  12246. },
  12247. [
  12248. {
  12249. name: "Macro",
  12250. height: math.unit(457, "meters"),
  12251. default: true
  12252. },
  12253. {
  12254. name: "Megamacro",
  12255. height: math.unit(8, "megameters")
  12256. },
  12257. ]
  12258. ))
  12259. characterMakers.push(() => makeCharacter(
  12260. { name: "Saudade" },
  12261. {
  12262. front: {
  12263. height: math.unit(6, "feet"),
  12264. weight: math.unit(250, "lb"),
  12265. name: "Front",
  12266. image: {
  12267. source: "./media/characters/saudade/front.svg",
  12268. extra: 1172 / 1139,
  12269. bottom: 0.035
  12270. }
  12271. },
  12272. },
  12273. [
  12274. {
  12275. name: "Micro",
  12276. height: math.unit(3, "inches")
  12277. },
  12278. {
  12279. name: "Normal",
  12280. height: math.unit(6, "feet"),
  12281. default: true
  12282. },
  12283. {
  12284. name: "Macro",
  12285. height: math.unit(50, "feet")
  12286. },
  12287. {
  12288. name: "Megamacro",
  12289. height: math.unit(2800, "feet")
  12290. },
  12291. ]
  12292. ))
  12293. characterMakers.push(() => makeCharacter(
  12294. { name: "Keireer" },
  12295. {
  12296. front: {
  12297. height: math.unit(5 + 4 / 12, "feet"),
  12298. weight: math.unit(100, "lb"),
  12299. name: "Front",
  12300. image: {
  12301. source: "./media/characters/keireer/front.svg",
  12302. extra: 716 / 666,
  12303. bottom: 0.05
  12304. }
  12305. },
  12306. },
  12307. [
  12308. {
  12309. name: "Normal",
  12310. height: math.unit(5 + 4 / 12, "feet"),
  12311. default: true
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Mirja" },
  12317. {
  12318. front: {
  12319. height: math.unit(6, "feet"),
  12320. weight: math.unit(90, "kg"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/mirja/front.svg",
  12324. extra: 1789 / 1683,
  12325. bottom: 0.05
  12326. }
  12327. },
  12328. frontDressed: {
  12329. height: math.unit(6, "feet"),
  12330. weight: math.unit(90, "lb"),
  12331. name: "Front (Dressed)",
  12332. image: {
  12333. source: "./media/characters/mirja/front-dressed.svg",
  12334. extra: 1789 / 1683,
  12335. bottom: 0.05
  12336. }
  12337. },
  12338. back: {
  12339. height: math.unit(6, "feet"),
  12340. weight: math.unit(90, "lb"),
  12341. name: "Back",
  12342. image: {
  12343. source: "./media/characters/mirja/back.svg",
  12344. extra: 953 / 917,
  12345. bottom: 0.017
  12346. }
  12347. },
  12348. },
  12349. [
  12350. {
  12351. name: "\"Incognito\"",
  12352. height: math.unit(3, "meters")
  12353. },
  12354. {
  12355. name: "Strolling Size",
  12356. height: math.unit(15, "km")
  12357. },
  12358. {
  12359. name: "Larger Strolling Size",
  12360. height: math.unit(400, "km")
  12361. },
  12362. {
  12363. name: "Preferred Size",
  12364. height: math.unit(5000, "km")
  12365. },
  12366. {
  12367. name: "True Size",
  12368. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12369. default: true
  12370. },
  12371. ]
  12372. ))
  12373. characterMakers.push(() => makeCharacter(
  12374. { name: "Nightraver" },
  12375. {
  12376. front: {
  12377. height: math.unit(15, "feet"),
  12378. weight: math.unit(880, "kg"),
  12379. name: "Front",
  12380. image: {
  12381. source: "./media/characters/nightraver/front.svg",
  12382. extra: 2444 / 2160,
  12383. bottom: 0.027
  12384. }
  12385. },
  12386. back: {
  12387. height: math.unit(15, "feet"),
  12388. weight: math.unit(880, "kg"),
  12389. name: "Back",
  12390. image: {
  12391. source: "./media/characters/nightraver/back.svg",
  12392. extra: 2309 / 2180,
  12393. bottom: 0.005
  12394. }
  12395. },
  12396. sole: {
  12397. height: math.unit(2.878, "feet"),
  12398. name: "Sole",
  12399. image: {
  12400. source: "./media/characters/nightraver/sole.svg"
  12401. }
  12402. },
  12403. foot: {
  12404. height: math.unit(2.285, "feet"),
  12405. name: "Foot",
  12406. image: {
  12407. source: "./media/characters/nightraver/foot.svg"
  12408. }
  12409. },
  12410. maw: {
  12411. height: math.unit(2.67, "feet"),
  12412. name: "Maw",
  12413. image: {
  12414. source: "./media/characters/nightraver/maw.svg"
  12415. }
  12416. },
  12417. },
  12418. [
  12419. {
  12420. name: "Micro",
  12421. height: math.unit(1, "cm")
  12422. },
  12423. {
  12424. name: "Normal",
  12425. height: math.unit(15, "feet"),
  12426. default: true
  12427. },
  12428. {
  12429. name: "Macro",
  12430. height: math.unit(300, "feet")
  12431. },
  12432. {
  12433. name: "Megamacro",
  12434. height: math.unit(300, "miles")
  12435. },
  12436. {
  12437. name: "Gigamacro",
  12438. height: math.unit(10000, "miles")
  12439. },
  12440. ]
  12441. ))
  12442. characterMakers.push(() => makeCharacter(
  12443. { name: "Arc" },
  12444. {
  12445. side: {
  12446. height: math.unit(2, "inches"),
  12447. weight: math.unit(5, "grams"),
  12448. name: "Side",
  12449. image: {
  12450. source: "./media/characters/arc/side.svg"
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Micro",
  12457. height: math.unit(2, "inches"),
  12458. default: true
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Nebula Shahar" },
  12464. {
  12465. front: {
  12466. height: math.unit(1.1938, "meters"),
  12467. weight: math.unit(54, "kg"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/nebula-shahar/front.svg",
  12471. extra: 1642 / 1436,
  12472. bottom: 0.06
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Megamicro",
  12479. height: math.unit(0.3, "mm")
  12480. },
  12481. {
  12482. name: "Micro",
  12483. height: math.unit(3, "cm")
  12484. },
  12485. {
  12486. name: "Normal",
  12487. height: math.unit(138, "cm"),
  12488. default: true
  12489. },
  12490. {
  12491. name: "Macro",
  12492. height: math.unit(30, "m")
  12493. },
  12494. ]
  12495. ))
  12496. characterMakers.push(() => makeCharacter(
  12497. { name: "Shayla" },
  12498. {
  12499. front: {
  12500. height: math.unit(5.24, "feet"),
  12501. weight: math.unit(150, "lb"),
  12502. name: "Front",
  12503. image: {
  12504. source: "./media/characters/shayla/front.svg",
  12505. extra: 1512 / 1414,
  12506. bottom: 0.01
  12507. }
  12508. },
  12509. back: {
  12510. height: math.unit(5.24, "feet"),
  12511. weight: math.unit(150, "lb"),
  12512. name: "Back",
  12513. image: {
  12514. source: "./media/characters/shayla/back.svg",
  12515. extra: 1512 / 1414
  12516. }
  12517. },
  12518. hand: {
  12519. height: math.unit(0.7781496062992126, "feet"),
  12520. name: "Hand",
  12521. image: {
  12522. source: "./media/characters/shayla/hand.svg"
  12523. }
  12524. },
  12525. foot: {
  12526. height: math.unit(1.4206036745406823, "feet"),
  12527. name: "Foot",
  12528. image: {
  12529. source: "./media/characters/shayla/foot.svg"
  12530. }
  12531. },
  12532. },
  12533. [
  12534. {
  12535. name: "Micro",
  12536. height: math.unit(0.32, "feet")
  12537. },
  12538. {
  12539. name: "Normal",
  12540. height: math.unit(5.24, "feet"),
  12541. default: true
  12542. },
  12543. {
  12544. name: "Macro",
  12545. height: math.unit(492.12, "feet")
  12546. },
  12547. {
  12548. name: "Megamacro",
  12549. height: math.unit(186.41, "miles")
  12550. },
  12551. ]
  12552. ))
  12553. characterMakers.push(() => makeCharacter(
  12554. { name: "Pia Jr." },
  12555. {
  12556. front: {
  12557. height: math.unit(2.2, "m"),
  12558. weight: math.unit(120, "kg"),
  12559. name: "Front",
  12560. image: {
  12561. source: "./media/characters/pia-jr/front.svg",
  12562. extra: 1000 / 970,
  12563. bottom: 0.035
  12564. }
  12565. },
  12566. hand: {
  12567. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12568. name: "Hand",
  12569. image: {
  12570. source: "./media/characters/pia-jr/hand.svg"
  12571. }
  12572. },
  12573. paw: {
  12574. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12575. name: "Paw",
  12576. image: {
  12577. source: "./media/characters/pia-jr/paw.svg"
  12578. }
  12579. },
  12580. },
  12581. [
  12582. {
  12583. name: "Micro",
  12584. height: math.unit(1.2, "cm")
  12585. },
  12586. {
  12587. name: "Normal",
  12588. height: math.unit(2.2, "m"),
  12589. default: true
  12590. },
  12591. {
  12592. name: "Macro",
  12593. height: math.unit(180, "m")
  12594. },
  12595. {
  12596. name: "Megamacro",
  12597. height: math.unit(420, "km")
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Pia Sr." },
  12603. {
  12604. front: {
  12605. height: math.unit(2, "m"),
  12606. weight: math.unit(115, "kg"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/pia-sr/front.svg",
  12610. extra: 760 / 730,
  12611. bottom: 0.015
  12612. }
  12613. },
  12614. back: {
  12615. height: math.unit(2, "m"),
  12616. weight: math.unit(115, "kg"),
  12617. name: "Back",
  12618. image: {
  12619. source: "./media/characters/pia-sr/back.svg",
  12620. extra: 760 / 730,
  12621. bottom: 0.01
  12622. }
  12623. },
  12624. hand: {
  12625. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12626. name: "Hand",
  12627. image: {
  12628. source: "./media/characters/pia-sr/hand.svg"
  12629. }
  12630. },
  12631. foot: {
  12632. height: math.unit(1.83, "feet"),
  12633. name: "Foot",
  12634. image: {
  12635. source: "./media/characters/pia-sr/foot.svg"
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Micro",
  12642. height: math.unit(88, "mm")
  12643. },
  12644. {
  12645. name: "Normal",
  12646. height: math.unit(2, "m"),
  12647. default: true
  12648. },
  12649. {
  12650. name: "Macro",
  12651. height: math.unit(200, "m")
  12652. },
  12653. {
  12654. name: "Megamacro",
  12655. height: math.unit(420, "km")
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "KIBIBYTE" },
  12661. {
  12662. front: {
  12663. height: math.unit(8 + 2 / 12, "feet"),
  12664. weight: math.unit(300, "lb"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/kibibyte/front.svg",
  12668. extra: 2221 / 2098,
  12669. bottom: 0.04
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Normal",
  12676. height: math.unit(8 + 2 / 12, "feet"),
  12677. default: true
  12678. },
  12679. {
  12680. name: "Socialable Macro",
  12681. height: math.unit(50, "feet")
  12682. },
  12683. {
  12684. name: "Macro",
  12685. height: math.unit(300, "feet")
  12686. },
  12687. {
  12688. name: "Megamacro",
  12689. height: math.unit(500, "miles")
  12690. },
  12691. ]
  12692. ))
  12693. characterMakers.push(() => makeCharacter(
  12694. { name: "Felix" },
  12695. {
  12696. front: {
  12697. height: math.unit(6, "feet"),
  12698. weight: math.unit(150, "lb"),
  12699. name: "Front",
  12700. image: {
  12701. source: "./media/characters/felix/front.svg",
  12702. extra: 762 / 722,
  12703. bottom: 0.02
  12704. }
  12705. },
  12706. frontClothed: {
  12707. height: math.unit(6, "feet"),
  12708. weight: math.unit(150, "lb"),
  12709. name: "Front (Clothed)",
  12710. image: {
  12711. source: "./media/characters/felix/front-clothed.svg",
  12712. extra: 762 / 722,
  12713. bottom: 0.02
  12714. }
  12715. },
  12716. },
  12717. [
  12718. {
  12719. name: "Normal",
  12720. height: math.unit(6 + 8 / 12, "feet"),
  12721. default: true
  12722. },
  12723. {
  12724. name: "Macro",
  12725. height: math.unit(2600, "feet")
  12726. },
  12727. {
  12728. name: "Megamacro",
  12729. height: math.unit(450, "miles")
  12730. },
  12731. ]
  12732. ))
  12733. characterMakers.push(() => makeCharacter(
  12734. { name: "Tobo" },
  12735. {
  12736. front: {
  12737. height: math.unit(6 + 1 / 12, "feet"),
  12738. weight: math.unit(250, "lb"),
  12739. name: "Front",
  12740. image: {
  12741. source: "./media/characters/tobo/front.svg",
  12742. extra: 608 / 586,
  12743. bottom: 0.023
  12744. }
  12745. },
  12746. back: {
  12747. height: math.unit(6 + 1 / 12, "feet"),
  12748. weight: math.unit(250, "lb"),
  12749. name: "Back",
  12750. image: {
  12751. source: "./media/characters/tobo/back.svg",
  12752. extra: 608 / 586
  12753. }
  12754. },
  12755. },
  12756. [
  12757. {
  12758. name: "Nano",
  12759. height: math.unit(2, "nm")
  12760. },
  12761. {
  12762. name: "Megamicro",
  12763. height: math.unit(0.1, "mm")
  12764. },
  12765. {
  12766. name: "Micro",
  12767. height: math.unit(1, "inch"),
  12768. default: true
  12769. },
  12770. {
  12771. name: "Human-sized",
  12772. height: math.unit(6 + 1 / 12, "feet")
  12773. },
  12774. {
  12775. name: "Macro",
  12776. height: math.unit(250, "feet")
  12777. },
  12778. {
  12779. name: "Megamacro",
  12780. height: math.unit(75, "miles")
  12781. },
  12782. {
  12783. name: "Texas-sized",
  12784. height: math.unit(750, "miles")
  12785. },
  12786. {
  12787. name: "Teramacro",
  12788. height: math.unit(50000, "miles")
  12789. },
  12790. ]
  12791. ))
  12792. characterMakers.push(() => makeCharacter(
  12793. { name: "Danny Kapowsky" },
  12794. {
  12795. front: {
  12796. height: math.unit(6, "feet"),
  12797. weight: math.unit(269, "lb"),
  12798. name: "Front",
  12799. image: {
  12800. source: "./media/characters/danny-kapowsky/front.svg",
  12801. extra: 766 / 736,
  12802. bottom: 0.044
  12803. }
  12804. },
  12805. back: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(269, "lb"),
  12808. name: "Back",
  12809. image: {
  12810. source: "./media/characters/danny-kapowsky/back.svg",
  12811. extra: 797 / 760,
  12812. bottom: 0.025
  12813. }
  12814. },
  12815. },
  12816. [
  12817. {
  12818. name: "Macro",
  12819. height: math.unit(150, "feet"),
  12820. default: true
  12821. },
  12822. {
  12823. name: "Macro+",
  12824. height: math.unit(200, "feet")
  12825. },
  12826. {
  12827. name: "Macro++",
  12828. height: math.unit(300, "feet")
  12829. },
  12830. {
  12831. name: "Macro+++",
  12832. height: math.unit(400, "feet")
  12833. },
  12834. ]
  12835. ))
  12836. characterMakers.push(() => makeCharacter(
  12837. { name: "Finn" },
  12838. {
  12839. side: {
  12840. height: math.unit(6, "feet"),
  12841. weight: math.unit(170, "lb"),
  12842. name: "Side",
  12843. image: {
  12844. source: "./media/characters/finn/side.svg",
  12845. extra: 1953 / 1807,
  12846. bottom: 0.057
  12847. }
  12848. },
  12849. },
  12850. [
  12851. {
  12852. name: "Megamacro",
  12853. height: math.unit(14445, "feet"),
  12854. default: true
  12855. },
  12856. ]
  12857. ))
  12858. characterMakers.push(() => makeCharacter(
  12859. { name: "Roy" },
  12860. {
  12861. front: {
  12862. height: math.unit(5 + 6 / 12, "feet"),
  12863. weight: math.unit(125, "lb"),
  12864. name: "Front",
  12865. image: {
  12866. source: "./media/characters/roy/front.svg",
  12867. extra: 1,
  12868. bottom: 0.11
  12869. }
  12870. },
  12871. },
  12872. [
  12873. {
  12874. name: "Micro",
  12875. height: math.unit(3, "inches"),
  12876. default: true
  12877. },
  12878. {
  12879. name: "Normal",
  12880. height: math.unit(5 + 6 / 12, "feet")
  12881. },
  12882. {
  12883. name: "Lesser Macro",
  12884. height: math.unit(60, "feet")
  12885. },
  12886. {
  12887. name: "Greater Macro",
  12888. height: math.unit(120, "feet")
  12889. },
  12890. ]
  12891. ))
  12892. characterMakers.push(() => makeCharacter(
  12893. { name: "Aevsivs" },
  12894. {
  12895. front: {
  12896. height: math.unit(6, "feet"),
  12897. weight: math.unit(100, "lb"),
  12898. name: "Front",
  12899. image: {
  12900. source: "./media/characters/aevsivs/front.svg",
  12901. extra: 1,
  12902. bottom: 0.03
  12903. }
  12904. },
  12905. back: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(100, "lb"),
  12908. name: "Back",
  12909. image: {
  12910. source: "./media/characters/aevsivs/back.svg"
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Micro",
  12917. height: math.unit(2, "inches"),
  12918. default: true
  12919. },
  12920. {
  12921. name: "Normal",
  12922. height: math.unit(5, "feet")
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Hildegard" },
  12928. {
  12929. front: {
  12930. height: math.unit(5 + 7 / 12, "feet"),
  12931. weight: math.unit(159, "lb"),
  12932. name: "Front",
  12933. image: {
  12934. source: "./media/characters/hildegard/front.svg",
  12935. extra: 312 / 286,
  12936. bottom: 0.005
  12937. }
  12938. },
  12939. },
  12940. [
  12941. {
  12942. name: "Normal",
  12943. height: math.unit(5 + 7 / 12, "feet"),
  12944. default: true
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Bernard & Wilder" },
  12950. {
  12951. bernard: {
  12952. height: math.unit(2 + 7 / 12, "feet"),
  12953. weight: math.unit(66, "lb"),
  12954. name: "Bernard",
  12955. rename: true,
  12956. image: {
  12957. source: "./media/characters/bernard-wilder/bernard.svg",
  12958. extra: 192 / 128,
  12959. bottom: 0.05
  12960. }
  12961. },
  12962. wilder: {
  12963. height: math.unit(5 + 8 / 12, "feet"),
  12964. weight: math.unit(143, "lb"),
  12965. name: "Wilder",
  12966. rename: true,
  12967. image: {
  12968. source: "./media/characters/bernard-wilder/wilder.svg",
  12969. extra: 361 / 312,
  12970. bottom: 0.02
  12971. }
  12972. },
  12973. },
  12974. [
  12975. {
  12976. name: "Normal",
  12977. height: math.unit(2 + 7 / 12, "feet"),
  12978. default: true
  12979. },
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "Hearth" },
  12984. {
  12985. anthro: {
  12986. height: math.unit(6 + 1 / 12, "feet"),
  12987. weight: math.unit(155, "lb"),
  12988. name: "Anthro",
  12989. image: {
  12990. source: "./media/characters/hearth/anthro.svg",
  12991. extra: 260 / 250,
  12992. bottom: 0.02
  12993. }
  12994. },
  12995. feral: {
  12996. height: math.unit(3.78, "feet"),
  12997. weight: math.unit(35, "kg"),
  12998. name: "Feral",
  12999. image: {
  13000. source: "./media/characters/hearth/feral.svg",
  13001. extra: 153 / 135,
  13002. bottom: 0.03
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(6 + 1 / 12, "feet"),
  13010. default: true
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Ingrid" },
  13016. {
  13017. front: {
  13018. height: math.unit(6, "feet"),
  13019. weight: math.unit(182, "lb"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/ingrid/front.svg",
  13023. extra: 294 / 268,
  13024. bottom: 0.027
  13025. }
  13026. },
  13027. },
  13028. [
  13029. {
  13030. name: "Normal",
  13031. height: math.unit(6, "feet"),
  13032. default: true
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Malgam" },
  13038. {
  13039. eevee: {
  13040. height: math.unit(2 + 10 / 12, "feet"),
  13041. weight: math.unit(86, "lb"),
  13042. name: "Malgam",
  13043. image: {
  13044. source: "./media/characters/malgam/eevee.svg",
  13045. extra: 218 / 180,
  13046. bottom: 0.2
  13047. }
  13048. },
  13049. sylveon: {
  13050. height: math.unit(4, "feet"),
  13051. weight: math.unit(101, "lb"),
  13052. name: "Future Malgam",
  13053. rename: true,
  13054. image: {
  13055. source: "./media/characters/malgam/sylveon.svg",
  13056. extra: 371 / 325,
  13057. bottom: 0.015
  13058. }
  13059. },
  13060. gigantamax: {
  13061. height: math.unit(50, "feet"),
  13062. name: "Gigantamax Malgam",
  13063. rename: true,
  13064. image: {
  13065. source: "./media/characters/malgam/gigantamax.svg"
  13066. }
  13067. },
  13068. },
  13069. [
  13070. {
  13071. name: "Normal",
  13072. height: math.unit(2 + 10 / 12, "feet"),
  13073. default: true
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Fleur" },
  13079. {
  13080. front: {
  13081. height: math.unit(5 + 11 / 12, "feet"),
  13082. weight: math.unit(188, "lb"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/fleur/front.svg",
  13086. extra: 309 / 283,
  13087. bottom: 0.007
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "Normal",
  13094. height: math.unit(5 + 11 / 12, "feet"),
  13095. default: true
  13096. },
  13097. ]
  13098. ))
  13099. characterMakers.push(() => makeCharacter(
  13100. { name: "Jude" },
  13101. {
  13102. front: {
  13103. height: math.unit(5 + 4 / 12, "feet"),
  13104. weight: math.unit(122, "lb"),
  13105. name: "Front",
  13106. image: {
  13107. source: "./media/characters/jude/front.svg",
  13108. extra: 288 / 273,
  13109. bottom: 0.03
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Normal",
  13116. height: math.unit(5 + 4 / 12, "feet"),
  13117. default: true
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "Seara" },
  13123. {
  13124. front: {
  13125. height: math.unit(5 + 11 / 12, "feet"),
  13126. weight: math.unit(190, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/seara/front.svg",
  13130. extra: 1,
  13131. bottom: 0.05
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Normal",
  13138. height: math.unit(5 + 11 / 12, "feet"),
  13139. default: true
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Caspian" },
  13145. {
  13146. front: {
  13147. height: math.unit(16 + 5 / 12, "feet"),
  13148. weight: math.unit(524, "lb"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/caspian/front.svg",
  13152. extra: 1,
  13153. bottom: 0.04
  13154. }
  13155. },
  13156. },
  13157. [
  13158. {
  13159. name: "Normal",
  13160. height: math.unit(16 + 5 / 12, "feet"),
  13161. default: true
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Mika" },
  13167. {
  13168. front: {
  13169. height: math.unit(5 + 7 / 12, "feet"),
  13170. weight: math.unit(170, "lb"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/mika/front.svg",
  13174. extra: 1,
  13175. bottom: 0.016
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Normal",
  13182. height: math.unit(5 + 7 / 12, "feet"),
  13183. default: true
  13184. },
  13185. ]
  13186. ))
  13187. characterMakers.push(() => makeCharacter(
  13188. { name: "Sol" },
  13189. {
  13190. front: {
  13191. height: math.unit(6 + 2 / 12, "feet"),
  13192. weight: math.unit(268, "lb"),
  13193. name: "Front",
  13194. image: {
  13195. source: "./media/characters/sol/front.svg",
  13196. extra: 247 / 231,
  13197. bottom: 0.05
  13198. }
  13199. },
  13200. },
  13201. [
  13202. {
  13203. name: "Normal",
  13204. height: math.unit(6 + 2 / 12, "feet"),
  13205. default: true
  13206. },
  13207. ]
  13208. ))
  13209. characterMakers.push(() => makeCharacter(
  13210. { name: "Umiko" },
  13211. {
  13212. buizel: {
  13213. height: math.unit(2 + 5 / 12, "feet"),
  13214. weight: math.unit(87, "lb"),
  13215. name: "Buizel",
  13216. image: {
  13217. source: "./media/characters/umiko/buizel.svg",
  13218. extra: 172 / 157,
  13219. bottom: 0.01
  13220. }
  13221. },
  13222. floatzel: {
  13223. height: math.unit(5 + 9 / 12, "feet"),
  13224. weight: math.unit(250, "lb"),
  13225. name: "Floatzel",
  13226. image: {
  13227. source: "./media/characters/umiko/floatzel.svg",
  13228. extra: 262 / 248
  13229. }
  13230. },
  13231. },
  13232. [
  13233. {
  13234. name: "Normal",
  13235. height: math.unit(2 + 5 / 12, "feet"),
  13236. default: true
  13237. },
  13238. ]
  13239. ))
  13240. characterMakers.push(() => makeCharacter(
  13241. { name: "Iliac" },
  13242. {
  13243. front: {
  13244. height: math.unit(6 + 2 / 12, "feet"),
  13245. weight: math.unit(146, "lb"),
  13246. name: "Front",
  13247. image: {
  13248. source: "./media/characters/iliac/front.svg",
  13249. extra: 389 / 365,
  13250. bottom: 0.035
  13251. }
  13252. },
  13253. },
  13254. [
  13255. {
  13256. name: "Normal",
  13257. height: math.unit(6 + 2 / 12, "feet"),
  13258. default: true
  13259. },
  13260. ]
  13261. ))
  13262. characterMakers.push(() => makeCharacter(
  13263. { name: "Topaz" },
  13264. {
  13265. front: {
  13266. height: math.unit(6, "feet"),
  13267. weight: math.unit(170, "lb"),
  13268. name: "Front",
  13269. image: {
  13270. source: "./media/characters/topaz/front.svg",
  13271. extra: 317 / 303,
  13272. bottom: 0.055
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Normal",
  13279. height: math.unit(6, "feet"),
  13280. default: true
  13281. },
  13282. ]
  13283. ))
  13284. characterMakers.push(() => makeCharacter(
  13285. { name: "Gabriel" },
  13286. {
  13287. front: {
  13288. height: math.unit(5 + 11 / 12, "feet"),
  13289. weight: math.unit(144, "lb"),
  13290. name: "Front",
  13291. image: {
  13292. source: "./media/characters/gabriel/front.svg",
  13293. extra: 285 / 262,
  13294. bottom: 0.004
  13295. }
  13296. },
  13297. },
  13298. [
  13299. {
  13300. name: "Normal",
  13301. height: math.unit(5 + 11 / 12, "feet"),
  13302. default: true
  13303. },
  13304. ]
  13305. ))
  13306. characterMakers.push(() => makeCharacter(
  13307. { name: "Tempest (Suicune)" },
  13308. {
  13309. side: {
  13310. height: math.unit(6 + 5 / 12, "feet"),
  13311. weight: math.unit(300, "lb"),
  13312. name: "Side",
  13313. image: {
  13314. source: "./media/characters/tempest-suicune/side.svg",
  13315. extra: 195 / 154,
  13316. bottom: 0.04
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Normal",
  13323. height: math.unit(6 + 5 / 12, "feet"),
  13324. default: true
  13325. },
  13326. ]
  13327. ))
  13328. characterMakers.push(() => makeCharacter(
  13329. { name: "Vulcan" },
  13330. {
  13331. front: {
  13332. height: math.unit(7 + 2 / 12, "feet"),
  13333. weight: math.unit(322, "lb"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/vulcan/front.svg",
  13337. extra: 154 / 147,
  13338. bottom: 0.04
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "Normal",
  13345. height: math.unit(7 + 2 / 12, "feet"),
  13346. default: true
  13347. },
  13348. ]
  13349. ))
  13350. characterMakers.push(() => makeCharacter(
  13351. { name: "Gault" },
  13352. {
  13353. front: {
  13354. height: math.unit(5 + 10 / 12, "feet"),
  13355. weight: math.unit(264, "lb"),
  13356. name: "Front",
  13357. image: {
  13358. source: "./media/characters/gault/front.svg",
  13359. extra: 161 / 140,
  13360. bottom: 0.028
  13361. }
  13362. },
  13363. },
  13364. [
  13365. {
  13366. name: "Normal",
  13367. height: math.unit(5 + 10 / 12, "feet"),
  13368. default: true
  13369. },
  13370. ]
  13371. ))
  13372. characterMakers.push(() => makeCharacter(
  13373. { name: "Shard" },
  13374. {
  13375. front: {
  13376. height: math.unit(6, "feet"),
  13377. weight: math.unit(150, "lb"),
  13378. name: "Front",
  13379. image: {
  13380. source: "./media/characters/shard/front.svg",
  13381. extra: 273 / 238,
  13382. bottom: 0.02
  13383. }
  13384. },
  13385. },
  13386. [
  13387. {
  13388. name: "Normal",
  13389. height: math.unit(3 + 6 / 12, "feet"),
  13390. default: true
  13391. },
  13392. ]
  13393. ))
  13394. characterMakers.push(() => makeCharacter(
  13395. { name: "Ashe" },
  13396. {
  13397. front: {
  13398. height: math.unit(5 + 11 / 12, "feet"),
  13399. weight: math.unit(146, "lb"),
  13400. name: "Front",
  13401. image: {
  13402. source: "./media/characters/ashe/front.svg",
  13403. extra: 400 / 373,
  13404. bottom: 0.01
  13405. }
  13406. },
  13407. },
  13408. [
  13409. {
  13410. name: "Normal",
  13411. height: math.unit(5 + 11 / 12, "feet"),
  13412. default: true
  13413. },
  13414. ]
  13415. ))
  13416. characterMakers.push(() => makeCharacter(
  13417. { name: "Beatrix" },
  13418. {
  13419. front: {
  13420. height: math.unit(5 + 5 / 12, "feet"),
  13421. weight: math.unit(135, "lb"),
  13422. name: "Front",
  13423. image: {
  13424. source: "./media/characters/beatrix/front.svg",
  13425. extra: 392 / 379,
  13426. bottom: 0.01
  13427. }
  13428. },
  13429. },
  13430. [
  13431. {
  13432. name: "Normal",
  13433. height: math.unit(6, "feet"),
  13434. default: true
  13435. },
  13436. ]
  13437. ))
  13438. characterMakers.push(() => makeCharacter(
  13439. { name: "Ignatius" },
  13440. {
  13441. front: {
  13442. height: math.unit(6, "feet"),
  13443. weight: math.unit(150, "lb"),
  13444. name: "Front",
  13445. image: {
  13446. source: "./media/characters/ignatius/front.svg",
  13447. extra: 245 / 222,
  13448. bottom: 0.01
  13449. }
  13450. },
  13451. },
  13452. [
  13453. {
  13454. name: "Normal",
  13455. height: math.unit(5 + 5 / 12, "feet"),
  13456. default: true
  13457. },
  13458. ]
  13459. ))
  13460. characterMakers.push(() => makeCharacter(
  13461. { name: "Mei Li" },
  13462. {
  13463. front: {
  13464. height: math.unit(6 + 2 / 12, "feet"),
  13465. weight: math.unit(138, "lb"),
  13466. name: "Front",
  13467. image: {
  13468. source: "./media/characters/mei-li/front.svg",
  13469. extra: 237 / 229,
  13470. bottom: 0.03
  13471. }
  13472. },
  13473. },
  13474. [
  13475. {
  13476. name: "Normal",
  13477. height: math.unit(6 + 2 / 12, "feet"),
  13478. default: true
  13479. },
  13480. ]
  13481. ))
  13482. characterMakers.push(() => makeCharacter(
  13483. { name: "Puru" },
  13484. {
  13485. front: {
  13486. height: math.unit(2 + 4 / 12, "feet"),
  13487. weight: math.unit(62, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/puru/front.svg",
  13491. extra: 206 / 149,
  13492. bottom: 0.06
  13493. }
  13494. },
  13495. },
  13496. [
  13497. {
  13498. name: "Normal",
  13499. height: math.unit(2 + 4 / 12, "feet"),
  13500. default: true
  13501. },
  13502. ]
  13503. ))
  13504. characterMakers.push(() => makeCharacter(
  13505. { name: "Kee" },
  13506. {
  13507. taur: {
  13508. height: math.unit(11, "feet"),
  13509. weight: math.unit(500, "lb"),
  13510. name: "Taur",
  13511. image: {
  13512. source: "./media/characters/kee/taur.svg",
  13513. extra: 1,
  13514. bottom: 0.04
  13515. }
  13516. },
  13517. },
  13518. [
  13519. {
  13520. name: "Normal",
  13521. height: math.unit(11, "feet"),
  13522. default: true
  13523. },
  13524. ]
  13525. ))
  13526. characterMakers.push(() => makeCharacter(
  13527. { name: "Cobalt (Dracha)" },
  13528. {
  13529. anthro: {
  13530. height: math.unit(7, "feet"),
  13531. weight: math.unit(190, "lb"),
  13532. name: "Anthro",
  13533. image: {
  13534. source: "./media/characters/cobalt-dracha/anthro.svg",
  13535. extra: 231 / 225,
  13536. bottom: 0.04
  13537. }
  13538. },
  13539. feral: {
  13540. height: math.unit(9 + 7 / 12, "feet"),
  13541. weight: math.unit(294, "lb"),
  13542. name: "Feral",
  13543. image: {
  13544. source: "./media/characters/cobalt-dracha/feral.svg",
  13545. extra: 692 / 633,
  13546. bottom: 0.05
  13547. }
  13548. },
  13549. },
  13550. [
  13551. {
  13552. name: "Normal",
  13553. height: math.unit(7, "feet"),
  13554. default: true
  13555. },
  13556. ]
  13557. ))
  13558. characterMakers.push(() => makeCharacter(
  13559. { name: "Java" },
  13560. {
  13561. fallen: {
  13562. height: math.unit(11 + 8 / 12, "feet"),
  13563. weight: math.unit(485, "lb"),
  13564. name: "Java (Fallen)",
  13565. rename: true,
  13566. image: {
  13567. source: "./media/characters/java/fallen.svg",
  13568. extra: 226 / 208,
  13569. bottom: 0.005
  13570. }
  13571. },
  13572. godkin: {
  13573. height: math.unit(10 + 6 / 12, "feet"),
  13574. weight: math.unit(328, "lb"),
  13575. name: "Java (Godkin)",
  13576. rename: true,
  13577. image: {
  13578. source: "./media/characters/java/godkin.svg",
  13579. extra: 270 / 262,
  13580. bottom: 0.02
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Normal",
  13587. height: math.unit(11 + 8 / 12, "feet"),
  13588. default: true
  13589. },
  13590. ]
  13591. ))
  13592. characterMakers.push(() => makeCharacter(
  13593. { name: "Skoll" },
  13594. {
  13595. front: {
  13596. height: math.unit(7 + 8 / 12, "feet"),
  13597. weight: math.unit(320, "lb"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/skoll/front.svg",
  13601. extra: 232 / 220,
  13602. bottom: 0.02
  13603. }
  13604. },
  13605. },
  13606. [
  13607. {
  13608. name: "Normal",
  13609. height: math.unit(7 + 8 / 12, "feet"),
  13610. default: true
  13611. },
  13612. ]
  13613. ))
  13614. characterMakers.push(() => makeCharacter(
  13615. { name: "Purna" },
  13616. {
  13617. front: {
  13618. height: math.unit(5 + 9 / 12, "feet"),
  13619. weight: math.unit(170, "lb"),
  13620. name: "Front",
  13621. image: {
  13622. source: "./media/characters/purna/front.svg",
  13623. extra: 239 / 229,
  13624. bottom: 0.01
  13625. }
  13626. },
  13627. },
  13628. [
  13629. {
  13630. name: "Normal",
  13631. height: math.unit(5 + 9 / 12, "feet"),
  13632. default: true
  13633. },
  13634. ]
  13635. ))
  13636. characterMakers.push(() => makeCharacter(
  13637. { name: "Kuva" },
  13638. {
  13639. front: {
  13640. height: math.unit(5 + 9 / 12, "feet"),
  13641. weight: math.unit(142, "lb"),
  13642. name: "Front",
  13643. image: {
  13644. source: "./media/characters/kuva/front.svg",
  13645. extra: 281 / 271,
  13646. bottom: 0.006
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Normal",
  13653. height: math.unit(5 + 9 / 12, "feet"),
  13654. default: true
  13655. },
  13656. ]
  13657. ))
  13658. characterMakers.push(() => makeCharacter(
  13659. { name: "Embra" },
  13660. {
  13661. anthro: {
  13662. height: math.unit(9 + 2 / 12, "feet"),
  13663. weight: math.unit(270, "lb"),
  13664. name: "Anthro",
  13665. image: {
  13666. source: "./media/characters/embra/anthro.svg",
  13667. extra: 200 / 187,
  13668. bottom: 0.02
  13669. }
  13670. },
  13671. feral: {
  13672. height: math.unit(18 + 8 / 12, "feet"),
  13673. weight: math.unit(576, "lb"),
  13674. name: "Feral",
  13675. image: {
  13676. source: "./media/characters/embra/feral.svg",
  13677. extra: 152 / 137,
  13678. bottom: 0.037
  13679. }
  13680. },
  13681. },
  13682. [
  13683. {
  13684. name: "Normal",
  13685. height: math.unit(9 + 2 / 12, "feet"),
  13686. default: true
  13687. },
  13688. ]
  13689. ))
  13690. characterMakers.push(() => makeCharacter(
  13691. { name: "Grottos" },
  13692. {
  13693. anthro: {
  13694. height: math.unit(10 + 9 / 12, "feet"),
  13695. weight: math.unit(224, "lb"),
  13696. name: "Anthro",
  13697. image: {
  13698. source: "./media/characters/grottos/anthro.svg",
  13699. extra: 350 / 332,
  13700. bottom: 0.045
  13701. }
  13702. },
  13703. feral: {
  13704. height: math.unit(20 + 7 / 12, "feet"),
  13705. weight: math.unit(629, "lb"),
  13706. name: "Feral",
  13707. image: {
  13708. source: "./media/characters/grottos/feral.svg",
  13709. extra: 207 / 190,
  13710. bottom: 0.05
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Normal",
  13717. height: math.unit(10 + 9 / 12, "feet"),
  13718. default: true
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Frifna" },
  13724. {
  13725. anthro: {
  13726. height: math.unit(9 + 6 / 12, "feet"),
  13727. weight: math.unit(298, "lb"),
  13728. name: "Anthro",
  13729. image: {
  13730. source: "./media/characters/frifna/anthro.svg",
  13731. extra: 282 / 269,
  13732. bottom: 0.015
  13733. }
  13734. },
  13735. feral: {
  13736. height: math.unit(16 + 2 / 12, "feet"),
  13737. weight: math.unit(624, "lb"),
  13738. name: "Feral",
  13739. image: {
  13740. source: "./media/characters/frifna/feral.svg"
  13741. }
  13742. },
  13743. },
  13744. [
  13745. {
  13746. name: "Normal",
  13747. height: math.unit(9 + 6 / 12, "feet"),
  13748. default: true
  13749. },
  13750. ]
  13751. ))
  13752. characterMakers.push(() => makeCharacter(
  13753. { name: "Elise" },
  13754. {
  13755. front: {
  13756. height: math.unit(6 + 2 / 12, "feet"),
  13757. weight: math.unit(168, "lb"),
  13758. name: "Front",
  13759. image: {
  13760. source: "./media/characters/elise/front.svg",
  13761. extra: 276 / 271
  13762. }
  13763. },
  13764. },
  13765. [
  13766. {
  13767. name: "Normal",
  13768. height: math.unit(6 + 2 / 12, "feet"),
  13769. default: true
  13770. },
  13771. ]
  13772. ))
  13773. characterMakers.push(() => makeCharacter(
  13774. { name: "Glade" },
  13775. {
  13776. front: {
  13777. height: math.unit(5 + 10 / 12, "feet"),
  13778. weight: math.unit(210, "lb"),
  13779. name: "Front",
  13780. image: {
  13781. source: "./media/characters/glade/front.svg",
  13782. extra: 258 / 247,
  13783. bottom: 0.008
  13784. }
  13785. },
  13786. },
  13787. [
  13788. {
  13789. name: "Normal",
  13790. height: math.unit(5 + 10 / 12, "feet"),
  13791. default: true
  13792. },
  13793. ]
  13794. ))
  13795. characterMakers.push(() => makeCharacter(
  13796. { name: "Rina" },
  13797. {
  13798. front: {
  13799. height: math.unit(5 + 10 / 12, "feet"),
  13800. weight: math.unit(129, "lb"),
  13801. name: "Front",
  13802. image: {
  13803. source: "./media/characters/rina/front.svg",
  13804. extra: 266 / 255,
  13805. bottom: 0.005
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "Normal",
  13812. height: math.unit(5 + 10 / 12, "feet"),
  13813. default: true
  13814. },
  13815. ]
  13816. ))
  13817. characterMakers.push(() => makeCharacter(
  13818. { name: "Veronica" },
  13819. {
  13820. front: {
  13821. height: math.unit(6 + 1 / 12, "feet"),
  13822. weight: math.unit(192, "lb"),
  13823. name: "Front",
  13824. image: {
  13825. source: "./media/characters/veronica/front.svg",
  13826. extra: 319 / 309,
  13827. bottom: 0.005
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Normal",
  13834. height: math.unit(6 + 1 / 12, "feet"),
  13835. default: true
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Braxton" },
  13841. {
  13842. front: {
  13843. height: math.unit(9 + 3 / 12, "feet"),
  13844. weight: math.unit(1100, "lb"),
  13845. name: "Front",
  13846. image: {
  13847. source: "./media/characters/braxton/front.svg",
  13848. extra: 1057 / 984,
  13849. bottom: 0.05
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Normal",
  13856. height: math.unit(9 + 3 / 12, "feet")
  13857. },
  13858. {
  13859. name: "Giant",
  13860. height: math.unit(300, "feet"),
  13861. default: true
  13862. },
  13863. {
  13864. name: "Macro",
  13865. height: math.unit(700, "feet")
  13866. },
  13867. {
  13868. name: "Megamacro",
  13869. height: math.unit(6000, "feet")
  13870. },
  13871. ]
  13872. ))
  13873. characterMakers.push(() => makeCharacter(
  13874. { name: "Blue Feyonics" },
  13875. {
  13876. front: {
  13877. height: math.unit(6 + 7 / 12, "feet"),
  13878. weight: math.unit(150, "lb"),
  13879. name: "Front",
  13880. image: {
  13881. source: "./media/characters/blue-feyonics/front.svg",
  13882. extra: 1403 / 1306,
  13883. bottom: 0.047
  13884. }
  13885. },
  13886. },
  13887. [
  13888. {
  13889. name: "Normal",
  13890. height: math.unit(6 + 7 / 12, "feet"),
  13891. default: true
  13892. },
  13893. ]
  13894. ))
  13895. characterMakers.push(() => makeCharacter(
  13896. { name: "Maxwell" },
  13897. {
  13898. front: {
  13899. height: math.unit(1.8, "meters"),
  13900. weight: math.unit(60, "kg"),
  13901. name: "Front",
  13902. image: {
  13903. source: "./media/characters/maxwell/front.svg",
  13904. extra: 2060 / 1873
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Micro",
  13911. height: math.unit(1, "mm")
  13912. },
  13913. {
  13914. name: "Normal",
  13915. height: math.unit(1.8, "meter"),
  13916. default: true
  13917. },
  13918. {
  13919. name: "Macro",
  13920. height: math.unit(30, "meters")
  13921. },
  13922. {
  13923. name: "Megamacro",
  13924. height: math.unit(10, "km")
  13925. },
  13926. ]
  13927. ))
  13928. characterMakers.push(() => makeCharacter(
  13929. { name: "Jack" },
  13930. {
  13931. front: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(150, "lb"),
  13934. name: "Front",
  13935. image: {
  13936. source: "./media/characters/jack/front.svg",
  13937. extra: 1754 / 1640,
  13938. bottom: 0.01
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Normal",
  13945. height: math.unit(80000, "feet"),
  13946. default: true
  13947. },
  13948. {
  13949. name: "Max size",
  13950. height: math.unit(10, "lightyears")
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Cafat" },
  13956. {
  13957. upright: {
  13958. height: math.unit(7, "feet"),
  13959. weight: math.unit(170, "lb"),
  13960. name: "Upright",
  13961. image: {
  13962. source: "./media/characters/cafat/upright.svg",
  13963. bottom: 0.01
  13964. }
  13965. },
  13966. uprightFull: {
  13967. height: math.unit(7, "feet"),
  13968. weight: math.unit(170, "lb"),
  13969. name: "Upright (Full)",
  13970. image: {
  13971. source: "./media/characters/cafat/upright-full.svg",
  13972. bottom: 0.01
  13973. }
  13974. },
  13975. side: {
  13976. height: math.unit(5, "feet"),
  13977. weight: math.unit(150, "lb"),
  13978. name: "Side",
  13979. image: {
  13980. source: "./media/characters/cafat/side.svg"
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Small",
  13987. height: math.unit(7, "feet"),
  13988. default: true
  13989. },
  13990. {
  13991. name: "Large",
  13992. height: math.unit(15.5, "feet")
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Verin Raharra" },
  13998. {
  13999. front: {
  14000. height: math.unit(6, "feet"),
  14001. weight: math.unit(150, "lb"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/verin-raharra/front.svg",
  14005. extra: 5019 / 4835,
  14006. bottom: 0.023
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Normal",
  14013. height: math.unit(7 + 5 / 12, "feet"),
  14014. default: true
  14015. },
  14016. {
  14017. name: "Upsized",
  14018. height: math.unit(20, "feet")
  14019. },
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Nakata" },
  14024. {
  14025. front: {
  14026. height: math.unit(7, "feet"),
  14027. weight: math.unit(230, "lb"),
  14028. name: "Front",
  14029. image: {
  14030. source: "./media/characters/nakata/front.svg",
  14031. extra: 1.005,
  14032. bottom: 0.01
  14033. }
  14034. },
  14035. },
  14036. [
  14037. {
  14038. name: "Normal",
  14039. height: math.unit(7, "feet"),
  14040. default: true
  14041. },
  14042. {
  14043. name: "Big",
  14044. height: math.unit(14, "feet")
  14045. },
  14046. {
  14047. name: "Macro",
  14048. height: math.unit(400, "feet")
  14049. },
  14050. ]
  14051. ))
  14052. characterMakers.push(() => makeCharacter(
  14053. { name: "Lily" },
  14054. {
  14055. front: {
  14056. height: math.unit(4.91, "feet"),
  14057. weight: math.unit(100, "lb"),
  14058. name: "Front",
  14059. image: {
  14060. source: "./media/characters/lily/front.svg",
  14061. extra: 1585 / 1415,
  14062. bottom: 0.02
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Normal",
  14069. height: math.unit(4.91, "feet"),
  14070. default: true
  14071. },
  14072. ]
  14073. ))
  14074. characterMakers.push(() => makeCharacter(
  14075. { name: "Sheila" },
  14076. {
  14077. laying: {
  14078. height: math.unit(4 + 4 / 12, "feet"),
  14079. weight: math.unit(600, "lb"),
  14080. name: "Laying",
  14081. image: {
  14082. source: "./media/characters/sheila/laying.svg",
  14083. extra: 1333 / 1265,
  14084. bottom: 0.16
  14085. }
  14086. },
  14087. },
  14088. [
  14089. {
  14090. name: "Normal",
  14091. height: math.unit(4 + 4 / 12, "feet"),
  14092. default: true
  14093. },
  14094. ]
  14095. ))
  14096. characterMakers.push(() => makeCharacter(
  14097. { name: "Sax" },
  14098. {
  14099. front: {
  14100. height: math.unit(6, "feet"),
  14101. weight: math.unit(190, "lb"),
  14102. name: "Front",
  14103. image: {
  14104. source: "./media/characters/sax/front.svg",
  14105. extra: 1187 / 973,
  14106. bottom: 0.042
  14107. }
  14108. },
  14109. },
  14110. [
  14111. {
  14112. name: "Micro",
  14113. height: math.unit(4, "inches"),
  14114. default: true
  14115. },
  14116. ]
  14117. ))
  14118. characterMakers.push(() => makeCharacter(
  14119. { name: "Pandora" },
  14120. {
  14121. front: {
  14122. height: math.unit(6, "feet"),
  14123. weight: math.unit(150, "lb"),
  14124. name: "Front",
  14125. image: {
  14126. source: "./media/characters/pandora/front.svg",
  14127. extra: 2720 / 2556,
  14128. bottom: 0.015
  14129. }
  14130. },
  14131. back: {
  14132. height: math.unit(6, "feet"),
  14133. weight: math.unit(150, "lb"),
  14134. name: "Back",
  14135. image: {
  14136. source: "./media/characters/pandora/back.svg",
  14137. extra: 2720 / 2556,
  14138. bottom: 0.01
  14139. }
  14140. },
  14141. beans: {
  14142. height: math.unit(6 / 8, "feet"),
  14143. name: "Beans",
  14144. image: {
  14145. source: "./media/characters/pandora/beans.svg"
  14146. }
  14147. },
  14148. skirt: {
  14149. height: math.unit(6, "feet"),
  14150. weight: math.unit(150, "lb"),
  14151. name: "Skirt",
  14152. image: {
  14153. source: "./media/characters/pandora/skirt.svg",
  14154. extra: 1622 / 1525,
  14155. bottom: 0.015
  14156. }
  14157. },
  14158. hoodie: {
  14159. height: math.unit(6, "feet"),
  14160. weight: math.unit(150, "lb"),
  14161. name: "Hoodie",
  14162. image: {
  14163. source: "./media/characters/pandora/hoodie.svg",
  14164. extra: 1622 / 1525,
  14165. bottom: 0.015
  14166. }
  14167. },
  14168. casual: {
  14169. height: math.unit(6, "feet"),
  14170. weight: math.unit(150, "lb"),
  14171. name: "Casual",
  14172. image: {
  14173. source: "./media/characters/pandora/casual.svg",
  14174. extra: 1622 / 1525,
  14175. bottom: 0.015
  14176. }
  14177. },
  14178. },
  14179. [
  14180. {
  14181. name: "Normal",
  14182. height: math.unit(6, "feet")
  14183. },
  14184. {
  14185. name: "Big Steppy",
  14186. height: math.unit(1, "km"),
  14187. default: true
  14188. },
  14189. ]
  14190. ))
  14191. characterMakers.push(() => makeCharacter(
  14192. { name: "Venio Darcony" },
  14193. {
  14194. side: {
  14195. height: math.unit(10, "feet"),
  14196. weight: math.unit(800, "kg"),
  14197. name: "Side",
  14198. image: {
  14199. source: "./media/characters/venio-darcony/side.svg",
  14200. extra: 1373 / 1003,
  14201. bottom: 0.037
  14202. }
  14203. },
  14204. front: {
  14205. height: math.unit(19, "feet"),
  14206. weight: math.unit(800, "kg"),
  14207. name: "Front",
  14208. image: {
  14209. source: "./media/characters/venio-darcony/front.svg"
  14210. }
  14211. },
  14212. back: {
  14213. height: math.unit(19, "feet"),
  14214. weight: math.unit(800, "kg"),
  14215. name: "Back",
  14216. image: {
  14217. source: "./media/characters/venio-darcony/back.svg"
  14218. }
  14219. },
  14220. sideNsfw: {
  14221. height: math.unit(10, "feet"),
  14222. weight: math.unit(800, "kg"),
  14223. name: "Side (NSFW)",
  14224. image: {
  14225. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14226. extra: 1373 / 1003,
  14227. bottom: 0.037
  14228. }
  14229. },
  14230. frontNsfw: {
  14231. height: math.unit(19, "feet"),
  14232. weight: math.unit(800, "kg"),
  14233. name: "Front (NSFW)",
  14234. image: {
  14235. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14236. }
  14237. },
  14238. backNsfw: {
  14239. height: math.unit(19, "feet"),
  14240. weight: math.unit(800, "kg"),
  14241. name: "Back (NSFW)",
  14242. image: {
  14243. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14244. }
  14245. },
  14246. sideArmored: {
  14247. height: math.unit(10, "feet"),
  14248. weight: math.unit(800, "kg"),
  14249. name: "Side (Armored)",
  14250. image: {
  14251. source: "./media/characters/venio-darcony/side-armored.svg",
  14252. extra: 1373 / 1003,
  14253. bottom: 0.037
  14254. }
  14255. },
  14256. frontArmored: {
  14257. height: math.unit(19, "feet"),
  14258. weight: math.unit(900, "kg"),
  14259. name: "Front (Armored)",
  14260. image: {
  14261. source: "./media/characters/venio-darcony/front-armored.svg"
  14262. }
  14263. },
  14264. backArmored: {
  14265. height: math.unit(19, "feet"),
  14266. weight: math.unit(900, "kg"),
  14267. name: "Back (Armored)",
  14268. image: {
  14269. source: "./media/characters/venio-darcony/back-armored.svg"
  14270. }
  14271. },
  14272. sword: {
  14273. height: math.unit(10, "feet"),
  14274. weight: math.unit(50, "lb"),
  14275. name: "Sword",
  14276. image: {
  14277. source: "./media/characters/venio-darcony/sword.svg"
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(10, "feet")
  14285. },
  14286. {
  14287. name: "Macro",
  14288. height: math.unit(130, "feet"),
  14289. default: true
  14290. },
  14291. {
  14292. name: "Macro+",
  14293. height: math.unit(240, "feet")
  14294. },
  14295. ]
  14296. ))
  14297. characterMakers.push(() => makeCharacter(
  14298. { name: "Veski" },
  14299. {
  14300. front: {
  14301. height: math.unit(6, "feet"),
  14302. weight: math.unit(150, "lb"),
  14303. name: "Front",
  14304. image: {
  14305. source: "./media/characters/veski/front.svg",
  14306. extra: 1299 / 1225,
  14307. bottom: 0.04
  14308. }
  14309. },
  14310. back: {
  14311. height: math.unit(6, "feet"),
  14312. weight: math.unit(150, "lb"),
  14313. name: "Back",
  14314. image: {
  14315. source: "./media/characters/veski/back.svg",
  14316. extra: 1299 / 1225,
  14317. bottom: 0.008
  14318. }
  14319. },
  14320. maw: {
  14321. height: math.unit(1.5 * 1.21, "feet"),
  14322. name: "Maw",
  14323. image: {
  14324. source: "./media/characters/veski/maw.svg"
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Macro",
  14331. height: math.unit(2, "km"),
  14332. default: true
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Isabelle" },
  14338. {
  14339. front: {
  14340. height: math.unit(5 + 7 / 12, "feet"),
  14341. name: "Front",
  14342. image: {
  14343. source: "./media/characters/isabelle/front.svg",
  14344. extra: 2130 / 1976,
  14345. bottom: 0.05
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Supermicro",
  14352. height: math.unit(10, "micrometers")
  14353. },
  14354. {
  14355. name: "Micro",
  14356. height: math.unit(1, "inch")
  14357. },
  14358. {
  14359. name: "Tiny",
  14360. height: math.unit(5, "inches")
  14361. },
  14362. {
  14363. name: "Standard",
  14364. height: math.unit(5 + 7 / 12, "inches")
  14365. },
  14366. {
  14367. name: "Macro",
  14368. height: math.unit(80, "meters"),
  14369. default: true
  14370. },
  14371. {
  14372. name: "Megamacro",
  14373. height: math.unit(250, "meters")
  14374. },
  14375. {
  14376. name: "Gigamacro",
  14377. height: math.unit(5, "km")
  14378. },
  14379. {
  14380. name: "Cosmic",
  14381. height: math.unit(2.5e6, "miles")
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Hanzo" },
  14387. {
  14388. front: {
  14389. height: math.unit(6, "feet"),
  14390. weight: math.unit(150, "lb"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/hanzo/front.svg",
  14394. extra: 374 / 344,
  14395. bottom: 0.02
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(8, "feet"),
  14403. default: true
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Anna" },
  14409. {
  14410. front: {
  14411. height: math.unit(7, "feet"),
  14412. weight: math.unit(130, "lb"),
  14413. name: "Front",
  14414. image: {
  14415. source: "./media/characters/anna/front.svg",
  14416. extra: 169 / 145,
  14417. bottom: 0.06
  14418. }
  14419. },
  14420. full: {
  14421. height: math.unit(4.96, "feet"),
  14422. weight: math.unit(220, "lb"),
  14423. name: "Full",
  14424. image: {
  14425. source: "./media/characters/anna/full.svg",
  14426. extra: 138 / 114,
  14427. bottom: 0.15
  14428. }
  14429. },
  14430. tongue: {
  14431. height: math.unit(2.53, "feet"),
  14432. name: "Tongue",
  14433. image: {
  14434. source: "./media/characters/anna/tongue.svg"
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(7, "feet"),
  14442. default: true
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Ian Corvid" },
  14448. {
  14449. front: {
  14450. height: math.unit(7, "feet"),
  14451. weight: math.unit(150, "lb"),
  14452. name: "Front",
  14453. image: {
  14454. source: "./media/characters/ian-corvid/front.svg",
  14455. extra: 150 / 142,
  14456. bottom: 0.02
  14457. }
  14458. },
  14459. back: {
  14460. height: math.unit(7, "feet"),
  14461. weight: math.unit(150, "lb"),
  14462. name: "Back",
  14463. image: {
  14464. source: "./media/characters/ian-corvid/back.svg",
  14465. extra: 150 / 143,
  14466. bottom: 0.01
  14467. }
  14468. },
  14469. stomping: {
  14470. height: math.unit(7, "feet"),
  14471. weight: math.unit(150, "lb"),
  14472. name: "Stomping",
  14473. image: {
  14474. source: "./media/characters/ian-corvid/stomping.svg",
  14475. extra: 76 / 72
  14476. }
  14477. },
  14478. sitting: {
  14479. height: math.unit(7 / 1.8, "feet"),
  14480. weight: math.unit(150, "lb"),
  14481. name: "Sitting",
  14482. image: {
  14483. source: "./media/characters/ian-corvid/sitting.svg",
  14484. extra: 1400 / 1269,
  14485. bottom: 0.15
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Tiny Microw",
  14492. height: math.unit(1, "inch")
  14493. },
  14494. {
  14495. name: "Microw",
  14496. height: math.unit(6, "inches")
  14497. },
  14498. {
  14499. name: "Crow",
  14500. height: math.unit(7 + 1 / 12, "feet"),
  14501. default: true
  14502. },
  14503. {
  14504. name: "Macrow",
  14505. height: math.unit(176, "feet")
  14506. },
  14507. ]
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Natalie Kellon" },
  14511. {
  14512. front: {
  14513. height: math.unit(5 + 7 / 12, "feet"),
  14514. weight: math.unit(147, "lb"),
  14515. name: "Front",
  14516. image: {
  14517. source: "./media/characters/natalie-kellon/front.svg",
  14518. extra: 1214 / 1141,
  14519. bottom: 0.02
  14520. }
  14521. },
  14522. },
  14523. [
  14524. {
  14525. name: "Micro",
  14526. height: math.unit(1 / 16, "inch")
  14527. },
  14528. {
  14529. name: "Tiny",
  14530. height: math.unit(4, "inches")
  14531. },
  14532. {
  14533. name: "Normal",
  14534. height: math.unit(5 + 7 / 12, "feet"),
  14535. default: true
  14536. },
  14537. {
  14538. name: "Amazon",
  14539. height: math.unit(12, "feet")
  14540. },
  14541. {
  14542. name: "Giantess",
  14543. height: math.unit(160, "meters")
  14544. },
  14545. {
  14546. name: "Titaness",
  14547. height: math.unit(800, "meters")
  14548. },
  14549. ]
  14550. ))
  14551. characterMakers.push(() => makeCharacter(
  14552. { name: "Alluria" },
  14553. {
  14554. front: {
  14555. height: math.unit(6, "feet"),
  14556. weight: math.unit(150, "lb"),
  14557. name: "Front",
  14558. image: {
  14559. source: "./media/characters/alluria/front.svg",
  14560. extra: 806 / 738,
  14561. bottom: 0.01
  14562. }
  14563. },
  14564. side: {
  14565. height: math.unit(6, "feet"),
  14566. weight: math.unit(150, "lb"),
  14567. name: "Side",
  14568. image: {
  14569. source: "./media/characters/alluria/side.svg",
  14570. extra: 800 / 750,
  14571. }
  14572. },
  14573. back: {
  14574. height: math.unit(6, "feet"),
  14575. weight: math.unit(150, "lb"),
  14576. name: "Back",
  14577. image: {
  14578. source: "./media/characters/alluria/back.svg",
  14579. extra: 806 / 738,
  14580. }
  14581. },
  14582. frontMaid: {
  14583. height: math.unit(6, "feet"),
  14584. weight: math.unit(150, "lb"),
  14585. name: "Front (Maid)",
  14586. image: {
  14587. source: "./media/characters/alluria/front-maid.svg",
  14588. extra: 806 / 738,
  14589. bottom: 0.01
  14590. }
  14591. },
  14592. sideMaid: {
  14593. height: math.unit(6, "feet"),
  14594. weight: math.unit(150, "lb"),
  14595. name: "Side (Maid)",
  14596. image: {
  14597. source: "./media/characters/alluria/side-maid.svg",
  14598. extra: 800 / 750,
  14599. bottom: 0.005
  14600. }
  14601. },
  14602. backMaid: {
  14603. height: math.unit(6, "feet"),
  14604. weight: math.unit(150, "lb"),
  14605. name: "Back (Maid)",
  14606. image: {
  14607. source: "./media/characters/alluria/back-maid.svg",
  14608. extra: 806 / 738,
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Micro",
  14615. height: math.unit(6, "inches"),
  14616. default: true
  14617. },
  14618. ]
  14619. ))
  14620. characterMakers.push(() => makeCharacter(
  14621. { name: "Kyle" },
  14622. {
  14623. front: {
  14624. height: math.unit(6, "feet"),
  14625. weight: math.unit(150, "lb"),
  14626. name: "Front",
  14627. image: {
  14628. source: "./media/characters/kyle/front.svg",
  14629. extra: 1069 / 962,
  14630. bottom: 77.228 / 1727.45
  14631. }
  14632. },
  14633. },
  14634. [
  14635. {
  14636. name: "Macro",
  14637. height: math.unit(150, "feet"),
  14638. default: true
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Duncan" },
  14644. {
  14645. front: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(300, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/duncan/front.svg",
  14651. extra: 1650 / 1482,
  14652. bottom: 0.05
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Macro",
  14659. height: math.unit(100, "feet"),
  14660. default: true
  14661. },
  14662. ]
  14663. ))
  14664. characterMakers.push(() => makeCharacter(
  14665. { name: "Memory" },
  14666. {
  14667. front: {
  14668. height: math.unit(5 + 4 / 12, "feet"),
  14669. weight: math.unit(220, "lb"),
  14670. name: "Front",
  14671. image: {
  14672. source: "./media/characters/memory/front.svg",
  14673. extra: 3641 / 3545,
  14674. bottom: 0.03
  14675. }
  14676. },
  14677. back: {
  14678. height: math.unit(5 + 4 / 12, "feet"),
  14679. weight: math.unit(220, "lb"),
  14680. name: "Back",
  14681. image: {
  14682. source: "./media/characters/memory/back.svg",
  14683. extra: 3641 / 3545,
  14684. bottom: 0.025
  14685. }
  14686. },
  14687. frontSkirt: {
  14688. height: math.unit(5 + 4 / 12, "feet"),
  14689. weight: math.unit(220, "lb"),
  14690. name: "Front (Skirt)",
  14691. image: {
  14692. source: "./media/characters/memory/front-skirt.svg",
  14693. extra: 3641 / 3545,
  14694. bottom: 0.03
  14695. }
  14696. },
  14697. frontDress: {
  14698. height: math.unit(5 + 4 / 12, "feet"),
  14699. weight: math.unit(220, "lb"),
  14700. name: "Front (Dress)",
  14701. image: {
  14702. source: "./media/characters/memory/front-dress.svg",
  14703. extra: 3641 / 3545,
  14704. bottom: 0.03
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Micro",
  14711. height: math.unit(6, "inches"),
  14712. default: true
  14713. },
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(5 + 4 / 12, "feet")
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Luno" },
  14722. {
  14723. front: {
  14724. height: math.unit(4 + 11 / 12, "feet"),
  14725. weight: math.unit(100, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/luno/front.svg",
  14729. extra: 1535 / 1487,
  14730. bottom: 0.03
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Micro",
  14737. height: math.unit(3, "inches")
  14738. },
  14739. {
  14740. name: "Normal",
  14741. height: math.unit(4 + 11 / 12, "feet"),
  14742. default: true
  14743. },
  14744. {
  14745. name: "Macro",
  14746. height: math.unit(300, "feet")
  14747. },
  14748. {
  14749. name: "Megamacro",
  14750. height: math.unit(700, "miles")
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Jamesy" },
  14756. {
  14757. front: {
  14758. height: math.unit(6 + 2 / 12, "feet"),
  14759. weight: math.unit(170, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/jamesy/front.svg",
  14763. extra: 440 / 382,
  14764. bottom: 0.005
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Micro",
  14771. height: math.unit(3, "inches")
  14772. },
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(6 + 2 / 12, "feet"),
  14776. default: true
  14777. },
  14778. {
  14779. name: "Macro",
  14780. height: math.unit(300, "feet")
  14781. },
  14782. {
  14783. name: "Megamacro",
  14784. height: math.unit(700, "miles")
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Mark" },
  14790. {
  14791. front: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(160, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/mark/front.svg",
  14797. extra: 3300 / 3100,
  14798. bottom: 136.42 / 3440.47
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Macro",
  14805. height: math.unit(120, "meters")
  14806. },
  14807. {
  14808. name: "Bigger Macro",
  14809. height: math.unit(350, "meters")
  14810. },
  14811. {
  14812. name: "Megamacro",
  14813. height: math.unit(8, "km"),
  14814. default: true
  14815. },
  14816. {
  14817. name: "Continental",
  14818. height: math.unit(4550, "km")
  14819. },
  14820. {
  14821. name: "Planetary",
  14822. height: math.unit(65000, "km")
  14823. },
  14824. ]
  14825. ))
  14826. characterMakers.push(() => makeCharacter(
  14827. { name: "Mac" },
  14828. {
  14829. front: {
  14830. height: math.unit(6, "feet"),
  14831. weight: math.unit(400, "lb"),
  14832. name: "Front",
  14833. image: {
  14834. source: "./media/characters/mac/front.svg",
  14835. extra: 1048 / 987.7,
  14836. bottom: 60 / 1107.6,
  14837. }
  14838. },
  14839. },
  14840. [
  14841. {
  14842. name: "Macro",
  14843. height: math.unit(500, "feet"),
  14844. default: true
  14845. },
  14846. ]
  14847. ))
  14848. characterMakers.push(() => makeCharacter(
  14849. { name: "Bari" },
  14850. {
  14851. front: {
  14852. height: math.unit(5 + 2 / 12, "feet"),
  14853. weight: math.unit(190, "lb"),
  14854. name: "Front",
  14855. image: {
  14856. source: "./media/characters/bari/front.svg",
  14857. extra: 3156 / 2880,
  14858. bottom: 0.03
  14859. }
  14860. },
  14861. back: {
  14862. height: math.unit(5 + 2 / 12, "feet"),
  14863. weight: math.unit(190, "lb"),
  14864. name: "Back",
  14865. image: {
  14866. source: "./media/characters/bari/back.svg",
  14867. extra: 3260 / 2834,
  14868. bottom: 0.025
  14869. }
  14870. },
  14871. frontPlush: {
  14872. height: math.unit(5 + 2 / 12, "feet"),
  14873. weight: math.unit(190, "lb"),
  14874. name: "Front (Plush)",
  14875. image: {
  14876. source: "./media/characters/bari/front-plush.svg",
  14877. extra: 1112 / 1061,
  14878. bottom: 0.002
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Micro",
  14885. height: math.unit(3, "inches")
  14886. },
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(5 + 2 / 12, "feet"),
  14890. default: true
  14891. },
  14892. {
  14893. name: "Macro",
  14894. height: math.unit(20, "feet")
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Hunter Misha Raven" },
  14900. {
  14901. front: {
  14902. height: math.unit(6 + 1 / 12, "feet"),
  14903. weight: math.unit(275, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/hunter-misha-raven/front.svg"
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Mortal",
  14913. height: math.unit(6 + 1 / 12, "feet")
  14914. },
  14915. {
  14916. name: "Divine",
  14917. height: math.unit(1.12134e34, "parsecs"),
  14918. default: true
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Max Calore" },
  14924. {
  14925. front: {
  14926. height: math.unit(6 + 3 / 12, "feet"),
  14927. weight: math.unit(220, "lb"),
  14928. name: "Front",
  14929. image: {
  14930. source: "./media/characters/max-calore/front.svg",
  14931. extra: 1700 / 1648,
  14932. bottom: 0.01
  14933. }
  14934. },
  14935. back: {
  14936. height: math.unit(6 + 3 / 12, "feet"),
  14937. weight: math.unit(220, "lb"),
  14938. name: "Back",
  14939. image: {
  14940. source: "./media/characters/max-calore/back.svg",
  14941. extra: 1700 / 1648,
  14942. bottom: 0.01
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Normal",
  14949. height: math.unit(6 + 3 / 12, "feet"),
  14950. default: true
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Aspen" },
  14956. {
  14957. side: {
  14958. height: math.unit(2 + 8 / 12, "feet"),
  14959. weight: math.unit(99, "lb"),
  14960. name: "Side",
  14961. image: {
  14962. source: "./media/characters/aspen/side.svg",
  14963. extra: 152 / 138,
  14964. bottom: 0.032
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(2 + 8 / 12, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Sheila (Feral Wolf)" },
  14978. {
  14979. side: {
  14980. height: math.unit(3 + 2 / 12, "feet"),
  14981. weight: math.unit(224, "lb"),
  14982. name: "Side",
  14983. image: {
  14984. source: "./media/characters/sheila-feral-wolf/side.svg",
  14985. extra: 179 / 166,
  14986. bottom: 0.03
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(3 + 2 / 12, "feet"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Michelle" },
  15000. {
  15001. side: {
  15002. height: math.unit(1 + 9 / 12, "feet"),
  15003. weight: math.unit(38, "lb"),
  15004. name: "Side",
  15005. image: {
  15006. source: "./media/characters/michelle/side.svg",
  15007. extra: 147 / 136.7,
  15008. bottom: 0.03
  15009. }
  15010. },
  15011. },
  15012. [
  15013. {
  15014. name: "Normal",
  15015. height: math.unit(1 + 9 / 12, "feet"),
  15016. default: true
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Nino" },
  15022. {
  15023. front: {
  15024. height: math.unit(1 + 1 / 12, "feet"),
  15025. weight: math.unit(18, "lb"),
  15026. name: "Front",
  15027. image: {
  15028. source: "./media/characters/nino/front.svg"
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Normal",
  15035. height: math.unit(1 + 1 / 12, "feet"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Viola" },
  15042. {
  15043. front: {
  15044. height: math.unit(1, "feet"),
  15045. weight: math.unit(16, "lb"),
  15046. name: "Front",
  15047. image: {
  15048. source: "./media/characters/viola/front.svg"
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(1, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Atlas" },
  15062. {
  15063. front: {
  15064. height: math.unit(6 + 5 / 12, "feet"),
  15065. weight: math.unit(580, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/atlas/front.svg",
  15069. extra: 298.5 / 290,
  15070. bottom: 0.015
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(6 + 5 / 12, "feet"),
  15078. default: true
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Davy" },
  15084. {
  15085. side: {
  15086. height: math.unit(1 + 10 / 12, "feet"),
  15087. weight: math.unit(25, "lb"),
  15088. name: "Side",
  15089. image: {
  15090. source: "./media/characters/davy/side.svg",
  15091. extra: 200 / 170,
  15092. bottom: 0.01
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Normal",
  15099. height: math.unit(1 + 10 / 12, "feet"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Fiona" },
  15106. {
  15107. side: {
  15108. height: math.unit(4 + 8 / 12, "feet"),
  15109. weight: math.unit(166, "lb"),
  15110. name: "Side",
  15111. image: {
  15112. source: "./media/characters/fiona/side.svg",
  15113. extra: 232 / 220,
  15114. bottom: 0.03
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(4 + 8 / 12, "feet"),
  15122. default: true
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Lyla" },
  15128. {
  15129. front: {
  15130. height: math.unit(2, "feet"),
  15131. weight: math.unit(62, "lb"),
  15132. name: "Front",
  15133. image: {
  15134. source: "./media/characters/lyla/front.svg",
  15135. bottom: 0.1
  15136. }
  15137. },
  15138. },
  15139. [
  15140. {
  15141. name: "Normal",
  15142. height: math.unit(2, "feet"),
  15143. default: true
  15144. },
  15145. ]
  15146. ))
  15147. characterMakers.push(() => makeCharacter(
  15148. { name: "Perseus" },
  15149. {
  15150. side: {
  15151. height: math.unit(1.8, "feet"),
  15152. weight: math.unit(44, "lb"),
  15153. name: "Side",
  15154. image: {
  15155. source: "./media/characters/perseus/side.svg",
  15156. bottom: 0.21
  15157. }
  15158. },
  15159. },
  15160. [
  15161. {
  15162. name: "Normal",
  15163. height: math.unit(1.8, "feet"),
  15164. default: true
  15165. },
  15166. ]
  15167. ))
  15168. characterMakers.push(() => makeCharacter(
  15169. { name: "Remus" },
  15170. {
  15171. side: {
  15172. height: math.unit(4 + 2 / 12, "feet"),
  15173. weight: math.unit(20, "lb"),
  15174. name: "Side",
  15175. image: {
  15176. source: "./media/characters/remus/side.svg"
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(4 + 2 / 12, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Raf" },
  15190. {
  15191. front: {
  15192. height: math.unit(4 + 11 / 12, "feet"),
  15193. weight: math.unit(114, "lb"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/raf/front.svg",
  15197. bottom: 0.01
  15198. }
  15199. },
  15200. side: {
  15201. height: math.unit(4 + 11 / 12, "feet"),
  15202. weight: math.unit(114, "lb"),
  15203. name: "Side",
  15204. image: {
  15205. source: "./media/characters/raf/side.svg",
  15206. bottom: 0.005
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Micro",
  15213. height: math.unit(2, "inches")
  15214. },
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(4 + 11 / 12, "feet"),
  15218. default: true
  15219. },
  15220. {
  15221. name: "Macro",
  15222. height: math.unit(70, "feet")
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "Liam Einarr" },
  15228. {
  15229. front: {
  15230. height: math.unit(1.5, "meters"),
  15231. weight: math.unit(68, "kg"),
  15232. name: "Front",
  15233. image: {
  15234. source: "./media/characters/liam-einarr/front.svg",
  15235. extra: 2822 / 2666
  15236. }
  15237. },
  15238. back: {
  15239. height: math.unit(1.5, "meters"),
  15240. weight: math.unit(68, "kg"),
  15241. name: "Back",
  15242. image: {
  15243. source: "./media/characters/liam-einarr/back.svg",
  15244. extra: 2822 / 2666,
  15245. bottom: 0.015
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(1.5, "meters"),
  15253. default: true
  15254. },
  15255. {
  15256. name: "Macro",
  15257. height: math.unit(150, "meters")
  15258. },
  15259. {
  15260. name: "Megamacro",
  15261. height: math.unit(35, "km")
  15262. },
  15263. ]
  15264. ))
  15265. characterMakers.push(() => makeCharacter(
  15266. { name: "Linda" },
  15267. {
  15268. front: {
  15269. height: math.unit(6, "feet"),
  15270. weight: math.unit(75, "kg"),
  15271. name: "Front",
  15272. image: {
  15273. source: "./media/characters/linda/front.svg",
  15274. extra: 930 / 874,
  15275. bottom: 0.004
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(6, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Caylex" },
  15289. {
  15290. front: {
  15291. height: math.unit(6 + 8 / 12, "feet"),
  15292. weight: math.unit(220, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/caylex/front.svg",
  15296. extra: 821 / 772,
  15297. bottom: 0.07
  15298. }
  15299. },
  15300. back: {
  15301. height: math.unit(6 + 8 / 12, "feet"),
  15302. weight: math.unit(220, "lb"),
  15303. name: "Back",
  15304. image: {
  15305. source: "./media/characters/caylex/back.svg",
  15306. extra: 821 / 772,
  15307. bottom: 0.022
  15308. }
  15309. },
  15310. hand: {
  15311. height: math.unit(1.25, "feet"),
  15312. name: "Hand",
  15313. image: {
  15314. source: "./media/characters/caylex/hand.svg"
  15315. }
  15316. },
  15317. foot: {
  15318. height: math.unit(1.6, "feet"),
  15319. name: "Foot",
  15320. image: {
  15321. source: "./media/characters/caylex/foot.svg"
  15322. }
  15323. },
  15324. armored: {
  15325. height: math.unit(6 + 8 / 12, "feet"),
  15326. weight: math.unit(250, "lb"),
  15327. name: "Armored",
  15328. image: {
  15329. source: "./media/characters/caylex/armored.svg",
  15330. extra: 1420 / 1310,
  15331. bottom: 0.045
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Normal",
  15338. height: math.unit(6 + 8 / 12, "feet"),
  15339. default: true
  15340. },
  15341. {
  15342. name: "Normal+",
  15343. height: math.unit(12, "feet")
  15344. },
  15345. ]
  15346. ))
  15347. characterMakers.push(() => makeCharacter(
  15348. { name: "Alana" },
  15349. {
  15350. front: {
  15351. height: math.unit(7 + 6 / 12, "feet"),
  15352. weight: math.unit(288, "lb"),
  15353. name: "Front",
  15354. image: {
  15355. source: "./media/characters/alana/front.svg",
  15356. extra: 679 / 653,
  15357. bottom: 22.5 / 701
  15358. }
  15359. },
  15360. },
  15361. [
  15362. {
  15363. name: "Normal",
  15364. height: math.unit(7 + 6 / 12, "feet")
  15365. },
  15366. {
  15367. name: "Large",
  15368. height: math.unit(50, "feet")
  15369. },
  15370. {
  15371. name: "Macro",
  15372. height: math.unit(100, "feet"),
  15373. default: true
  15374. },
  15375. {
  15376. name: "Macro+",
  15377. height: math.unit(200, "feet")
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "Hasani" },
  15383. {
  15384. front: {
  15385. height: math.unit(6 + 1 / 12, "feet"),
  15386. weight: math.unit(210, "lb"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/hasani/front.svg",
  15390. extra: 244 / 232,
  15391. bottom: 0.01
  15392. }
  15393. },
  15394. back: {
  15395. height: math.unit(6 + 1 / 12, "feet"),
  15396. weight: math.unit(210, "lb"),
  15397. name: "Back",
  15398. image: {
  15399. source: "./media/characters/hasani/back.svg",
  15400. extra: 244 / 232,
  15401. bottom: 0.01
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Normal",
  15408. height: math.unit(6 + 1 / 12, "feet")
  15409. },
  15410. {
  15411. name: "Macro",
  15412. height: math.unit(175, "feet"),
  15413. default: true
  15414. },
  15415. ]
  15416. ))
  15417. characterMakers.push(() => makeCharacter(
  15418. { name: "Nita" },
  15419. {
  15420. front: {
  15421. height: math.unit(1.82, "meters"),
  15422. weight: math.unit(140, "lb"),
  15423. name: "Front",
  15424. image: {
  15425. source: "./media/characters/nita/front.svg",
  15426. extra: 2473 / 2363,
  15427. bottom: 0.01
  15428. }
  15429. },
  15430. },
  15431. [
  15432. {
  15433. name: "Normal",
  15434. height: math.unit(1.82, "m")
  15435. },
  15436. {
  15437. name: "Macro",
  15438. height: math.unit(300, "m")
  15439. },
  15440. {
  15441. name: "Mistake Canon",
  15442. height: math.unit(0.5, "miles"),
  15443. default: true
  15444. },
  15445. {
  15446. name: "Big Mistake",
  15447. height: math.unit(13, "miles")
  15448. },
  15449. {
  15450. name: "Playing God",
  15451. height: math.unit(2450, "miles")
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Shiriko" },
  15457. {
  15458. front: {
  15459. height: math.unit(4, "feet"),
  15460. weight: math.unit(120, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/shiriko/front.svg",
  15464. extra: 195 / 188
  15465. }
  15466. },
  15467. },
  15468. [
  15469. {
  15470. name: "Normal",
  15471. height: math.unit(4, "feet"),
  15472. default: true
  15473. },
  15474. ]
  15475. ))
  15476. characterMakers.push(() => makeCharacter(
  15477. { name: "Deja" },
  15478. {
  15479. front: {
  15480. height: math.unit(6, "feet"),
  15481. name: "front",
  15482. image: {
  15483. source: "./media/characters/deja/front.svg",
  15484. extra: 926 / 840,
  15485. bottom: 0.07
  15486. }
  15487. },
  15488. },
  15489. [
  15490. {
  15491. name: "Planck Length",
  15492. height: math.unit(1.6e-35, "meters")
  15493. },
  15494. {
  15495. name: "Normal",
  15496. height: math.unit(30.48, "meters"),
  15497. default: true
  15498. },
  15499. {
  15500. name: "Universal",
  15501. height: math.unit(8.8e26, "meters")
  15502. },
  15503. ]
  15504. ))
  15505. characterMakers.push(() => makeCharacter(
  15506. { name: "Anima" },
  15507. {
  15508. side: {
  15509. height: math.unit(8, "feet"),
  15510. weight: math.unit(6300, "lb"),
  15511. name: "Side",
  15512. image: {
  15513. source: "./media/characters/anima/side.svg",
  15514. bottom: 0.035
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(8, "feet"),
  15522. default: true
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Bianca" },
  15528. {
  15529. front: {
  15530. height: math.unit(8, "feet"),
  15531. weight: math.unit(350, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/bianca/front.svg",
  15535. extra: 234 / 225,
  15536. bottom: 0.03
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(8, "feet"),
  15544. default: true
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Adinia" },
  15550. {
  15551. front: {
  15552. height: math.unit(6, "feet"),
  15553. weight: math.unit(150, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/adinia/front.svg",
  15557. extra: 1845 / 1672,
  15558. bottom: 0.02
  15559. }
  15560. },
  15561. back: {
  15562. height: math.unit(6, "feet"),
  15563. weight: math.unit(150, "lb"),
  15564. name: "Back",
  15565. image: {
  15566. source: "./media/characters/adinia/back.svg",
  15567. extra: 1845 / 1672,
  15568. bottom: 0.002
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(11 + 5 / 12, "feet"),
  15576. default: true
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Lykasa" },
  15582. {
  15583. front: {
  15584. height: math.unit(3, "meters"),
  15585. weight: math.unit(200, "kg"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/lykasa/front.svg",
  15589. extra: 1076 / 976,
  15590. bottom: 0.06
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Normal",
  15597. height: math.unit(3, "meters")
  15598. },
  15599. {
  15600. name: "Kaiju",
  15601. height: math.unit(120, "meters"),
  15602. default: true
  15603. },
  15604. {
  15605. name: "Mega Kaiju",
  15606. height: math.unit(240, "km")
  15607. },
  15608. {
  15609. name: "Giga Kaiju",
  15610. height: math.unit(400, "megameters")
  15611. },
  15612. {
  15613. name: "Tera Kaiju",
  15614. height: math.unit(800, "gigameters")
  15615. },
  15616. {
  15617. name: "Kaiju Dragon Goddess",
  15618. height: math.unit(26, "zettaparsecs")
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Malfaren" },
  15624. {
  15625. side: {
  15626. height: math.unit(283 / 124 * 6, "feet"),
  15627. weight: math.unit(35000, "lb"),
  15628. name: "Side",
  15629. image: {
  15630. source: "./media/characters/malfaren/side.svg",
  15631. extra: 2500 / 1010,
  15632. bottom: 0.01
  15633. }
  15634. },
  15635. front: {
  15636. height: math.unit(22.36, "feet"),
  15637. weight: math.unit(35000, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/malfaren/front.svg",
  15641. extra: 1631 / 1476,
  15642. bottom: 0.01
  15643. }
  15644. },
  15645. maw: {
  15646. height: math.unit(6.9, "feet"),
  15647. name: "Maw",
  15648. image: {
  15649. source: "./media/characters/malfaren/maw.svg"
  15650. }
  15651. },
  15652. },
  15653. [
  15654. {
  15655. name: "Big",
  15656. height: math.unit(283 / 162 * 6, "feet"),
  15657. },
  15658. {
  15659. name: "Bigger",
  15660. height: math.unit(283 / 124 * 6, "feet")
  15661. },
  15662. {
  15663. name: "Massive",
  15664. height: math.unit(283 / 92 * 6, "feet"),
  15665. default: true
  15666. },
  15667. {
  15668. name: "👀💦",
  15669. height: math.unit(283 / 73 * 6, "feet"),
  15670. },
  15671. ]
  15672. ))
  15673. characterMakers.push(() => makeCharacter(
  15674. { name: "Kernel" },
  15675. {
  15676. front: {
  15677. height: math.unit(1.7, "m"),
  15678. weight: math.unit(70, "kg"),
  15679. name: "Front",
  15680. image: {
  15681. source: "./media/characters/kernel/front.svg",
  15682. extra: 222 / 210,
  15683. bottom: 0.007
  15684. }
  15685. },
  15686. },
  15687. [
  15688. {
  15689. name: "Nano",
  15690. height: math.unit(17, "micrometers")
  15691. },
  15692. {
  15693. name: "Micro",
  15694. height: math.unit(1.7, "mm")
  15695. },
  15696. {
  15697. name: "Small",
  15698. height: math.unit(1.7, "cm")
  15699. },
  15700. {
  15701. name: "Normal",
  15702. height: math.unit(1.7, "m"),
  15703. default: true
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Jayne Folest" },
  15709. {
  15710. front: {
  15711. height: math.unit(1.75, "meters"),
  15712. weight: math.unit(65, "kg"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/jayne-folest/front.svg",
  15716. extra: 2115 / 2007,
  15717. bottom: 0.02
  15718. }
  15719. },
  15720. back: {
  15721. height: math.unit(1.75, "meters"),
  15722. weight: math.unit(65, "kg"),
  15723. name: "Back",
  15724. image: {
  15725. source: "./media/characters/jayne-folest/back.svg",
  15726. extra: 2115 / 2007,
  15727. bottom: 0.005
  15728. }
  15729. },
  15730. frontClothed: {
  15731. height: math.unit(1.75, "meters"),
  15732. weight: math.unit(65, "kg"),
  15733. name: "Front (Clothed)",
  15734. image: {
  15735. source: "./media/characters/jayne-folest/front-clothed.svg",
  15736. extra: 2115 / 2007,
  15737. bottom: 0.035
  15738. }
  15739. },
  15740. hand: {
  15741. height: math.unit(1 / 1.260, "feet"),
  15742. name: "Hand",
  15743. image: {
  15744. source: "./media/characters/jayne-folest/hand.svg"
  15745. }
  15746. },
  15747. foot: {
  15748. height: math.unit(1 / 0.918, "feet"),
  15749. name: "Foot",
  15750. image: {
  15751. source: "./media/characters/jayne-folest/foot.svg"
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Micro",
  15758. height: math.unit(4, "cm")
  15759. },
  15760. {
  15761. name: "Normal",
  15762. height: math.unit(1.75, "meters")
  15763. },
  15764. {
  15765. name: "Macro",
  15766. height: math.unit(47.5, "meters"),
  15767. default: true
  15768. },
  15769. ]
  15770. ))
  15771. characterMakers.push(() => makeCharacter(
  15772. { name: "Algier" },
  15773. {
  15774. front: {
  15775. height: math.unit(180, "cm"),
  15776. weight: math.unit(70, "kg"),
  15777. name: "Front",
  15778. image: {
  15779. source: "./media/characters/algier/front.svg",
  15780. extra: 596 / 572,
  15781. bottom: 0.04
  15782. }
  15783. },
  15784. back: {
  15785. height: math.unit(180, "cm"),
  15786. weight: math.unit(70, "kg"),
  15787. name: "Back",
  15788. image: {
  15789. source: "./media/characters/algier/back.svg",
  15790. extra: 596 / 572,
  15791. bottom: 0.025
  15792. }
  15793. },
  15794. frontdressed: {
  15795. height: math.unit(180, "cm"),
  15796. weight: math.unit(150, "kg"),
  15797. name: "Front-dressed",
  15798. image: {
  15799. source: "./media/characters/algier/front-dressed.svg",
  15800. extra: 596 / 572,
  15801. bottom: 0.038
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Micro",
  15808. height: math.unit(5, "cm")
  15809. },
  15810. {
  15811. name: "Normal",
  15812. height: math.unit(180, "cm"),
  15813. default: true
  15814. },
  15815. {
  15816. name: "Macro",
  15817. height: math.unit(64, "m")
  15818. },
  15819. ]
  15820. ))
  15821. characterMakers.push(() => makeCharacter(
  15822. { name: "Pretzel" },
  15823. {
  15824. upright: {
  15825. height: math.unit(7, "feet"),
  15826. weight: math.unit(300, "lb"),
  15827. name: "Upright",
  15828. image: {
  15829. source: "./media/characters/pretzel/upright.svg",
  15830. extra: 534 / 522,
  15831. bottom: 0.065
  15832. }
  15833. },
  15834. sprawling: {
  15835. height: math.unit(3.75, "feet"),
  15836. weight: math.unit(300, "lb"),
  15837. name: "Sprawling",
  15838. image: {
  15839. source: "./media/characters/pretzel/sprawling.svg",
  15840. extra: 314 / 281,
  15841. bottom: 0.1
  15842. }
  15843. },
  15844. tongue: {
  15845. height: math.unit(2, "feet"),
  15846. name: "Tongue",
  15847. image: {
  15848. source: "./media/characters/pretzel/tongue.svg"
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(7, "feet"),
  15856. default: true
  15857. },
  15858. {
  15859. name: "Oversized",
  15860. height: math.unit(15, "feet")
  15861. },
  15862. {
  15863. name: "Huge",
  15864. height: math.unit(30, "feet")
  15865. },
  15866. {
  15867. name: "Macro",
  15868. height: math.unit(250, "feet")
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Roxi" },
  15874. {
  15875. sideFront: {
  15876. height: math.unit(5 + 2 / 12, "feet"),
  15877. weight: math.unit(120, "lb"),
  15878. name: "Front Side",
  15879. image: {
  15880. source: "./media/characters/roxi/side-front.svg",
  15881. extra: 2924 / 2717,
  15882. bottom: 0.08
  15883. }
  15884. },
  15885. sideBack: {
  15886. height: math.unit(5 + 2 / 12, "feet"),
  15887. weight: math.unit(120, "lb"),
  15888. name: "Back Side",
  15889. image: {
  15890. source: "./media/characters/roxi/side-back.svg",
  15891. extra: 2904 / 2693,
  15892. bottom: 0.06
  15893. }
  15894. },
  15895. front: {
  15896. height: math.unit(5 + 2 / 12, "feet"),
  15897. weight: math.unit(120, "lb"),
  15898. name: "Front",
  15899. image: {
  15900. source: "./media/characters/roxi/front.svg",
  15901. extra: 2028 / 1907,
  15902. bottom: 0.01
  15903. }
  15904. },
  15905. frontAlt: {
  15906. height: math.unit(5 + 2 / 12, "feet"),
  15907. weight: math.unit(120, "lb"),
  15908. name: "Front (Alt)",
  15909. image: {
  15910. source: "./media/characters/roxi/front-alt.svg",
  15911. extra: 1828 / 1798,
  15912. bottom: 0.01
  15913. }
  15914. },
  15915. sitting: {
  15916. height: math.unit(2.8, "feet"),
  15917. weight: math.unit(120, "lb"),
  15918. name: "Sitting",
  15919. image: {
  15920. source: "./media/characters/roxi/sitting.svg",
  15921. extra: 2660 / 2462,
  15922. bottom: 0.1
  15923. }
  15924. },
  15925. },
  15926. [
  15927. {
  15928. name: "Normal",
  15929. height: math.unit(5 + 2 / 12, "feet"),
  15930. default: true
  15931. },
  15932. ]
  15933. ))
  15934. characterMakers.push(() => makeCharacter(
  15935. { name: "Shadow" },
  15936. {
  15937. side: {
  15938. height: math.unit(55, "feet"),
  15939. weight: math.unit(153, "tons"),
  15940. name: "Side",
  15941. image: {
  15942. source: "./media/characters/shadow/side.svg",
  15943. extra: 701 / 628,
  15944. bottom: 0.02
  15945. }
  15946. },
  15947. flying: {
  15948. height: math.unit(145, "feet"),
  15949. weight: math.unit(153, "tons"),
  15950. name: "Flying",
  15951. image: {
  15952. source: "./media/characters/shadow/flying.svg"
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Normal",
  15959. height: math.unit(55, "feet"),
  15960. default: true
  15961. },
  15962. ]
  15963. ))
  15964. characterMakers.push(() => makeCharacter(
  15965. { name: "Marcie" },
  15966. {
  15967. front: {
  15968. height: math.unit(6, "feet"),
  15969. weight: math.unit(200, "lb"),
  15970. name: "Front",
  15971. image: {
  15972. source: "./media/characters/marcie/front.svg",
  15973. extra: 960 / 876,
  15974. bottom: 58 / 1017.87
  15975. }
  15976. },
  15977. },
  15978. [
  15979. {
  15980. name: "Macro",
  15981. height: math.unit(1, "mile"),
  15982. default: true
  15983. },
  15984. ]
  15985. ))
  15986. characterMakers.push(() => makeCharacter(
  15987. { name: "Kachina" },
  15988. {
  15989. front: {
  15990. height: math.unit(7, "feet"),
  15991. weight: math.unit(200, "lb"),
  15992. name: "Front",
  15993. image: {
  15994. source: "./media/characters/kachina/front.svg",
  15995. extra: 1290.68 / 1119,
  15996. bottom: 36.5 / 1327.18
  15997. }
  15998. },
  15999. },
  16000. [
  16001. {
  16002. name: "Normal",
  16003. height: math.unit(7, "feet"),
  16004. default: true
  16005. },
  16006. ]
  16007. ))
  16008. characterMakers.push(() => makeCharacter(
  16009. { name: "Kash" },
  16010. {
  16011. looking: {
  16012. height: math.unit(2, "meters"),
  16013. weight: math.unit(300, "kg"),
  16014. name: "Looking",
  16015. image: {
  16016. source: "./media/characters/kash/looking.svg",
  16017. extra: 474 / 344,
  16018. bottom: 0.03
  16019. }
  16020. },
  16021. side: {
  16022. height: math.unit(2, "meters"),
  16023. weight: math.unit(300, "kg"),
  16024. name: "Side",
  16025. image: {
  16026. source: "./media/characters/kash/side.svg",
  16027. extra: 302 / 251,
  16028. bottom: 0.03
  16029. }
  16030. },
  16031. front: {
  16032. height: math.unit(2, "meters"),
  16033. weight: math.unit(300, "kg"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/kash/front.svg",
  16037. extra: 495 / 360,
  16038. bottom: 0.015
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Normal",
  16045. height: math.unit(2, "meters"),
  16046. default: true
  16047. },
  16048. {
  16049. name: "Big",
  16050. height: math.unit(3, "meters")
  16051. },
  16052. {
  16053. name: "Large",
  16054. height: math.unit(5, "meters")
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Lalim" },
  16060. {
  16061. feeding: {
  16062. height: math.unit(6.7, "feet"),
  16063. weight: math.unit(350, "lb"),
  16064. name: "Feeding",
  16065. image: {
  16066. source: "./media/characters/lalim/feeding.svg",
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Normal",
  16073. height: math.unit(6.7, "feet"),
  16074. default: true
  16075. },
  16076. ]
  16077. ))
  16078. characterMakers.push(() => makeCharacter(
  16079. { name: "De'Vout" },
  16080. {
  16081. front: {
  16082. height: math.unit(9.5, "feet"),
  16083. weight: math.unit(600, "lb"),
  16084. name: "Front",
  16085. image: {
  16086. source: "./media/characters/de'vout/front.svg",
  16087. extra: 1443 / 1328,
  16088. bottom: 0.025
  16089. }
  16090. },
  16091. back: {
  16092. height: math.unit(9.5, "feet"),
  16093. weight: math.unit(600, "lb"),
  16094. name: "Back",
  16095. image: {
  16096. source: "./media/characters/de'vout/back.svg",
  16097. extra: 1443 / 1328
  16098. }
  16099. },
  16100. frontDressed: {
  16101. height: math.unit(9.5, "feet"),
  16102. weight: math.unit(600, "lb"),
  16103. name: "Front (Dressed",
  16104. image: {
  16105. source: "./media/characters/de'vout/front-dressed.svg",
  16106. extra: 1443 / 1328,
  16107. bottom: 0.025
  16108. }
  16109. },
  16110. backDressed: {
  16111. height: math.unit(9.5, "feet"),
  16112. weight: math.unit(600, "lb"),
  16113. name: "Back (Dressed",
  16114. image: {
  16115. source: "./media/characters/de'vout/back-dressed.svg",
  16116. extra: 1443 / 1328
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Normal",
  16123. height: math.unit(9.5, "feet"),
  16124. default: true
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Talana" },
  16130. {
  16131. front: {
  16132. height: math.unit(8, "feet"),
  16133. weight: math.unit(225, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/talana/front.svg",
  16137. extra: 1410 / 1300,
  16138. bottom: 0.015
  16139. }
  16140. },
  16141. frontDressed: {
  16142. height: math.unit(8, "feet"),
  16143. weight: math.unit(225, "lb"),
  16144. name: "Front (Dressed",
  16145. image: {
  16146. source: "./media/characters/talana/front-dressed.svg",
  16147. extra: 1410 / 1300,
  16148. bottom: 0.015
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Normal",
  16155. height: math.unit(8, "feet"),
  16156. default: true
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Xeauvok" },
  16162. {
  16163. side: {
  16164. height: math.unit(7.2, "feet"),
  16165. weight: math.unit(150, "lb"),
  16166. name: "Side",
  16167. image: {
  16168. source: "./media/characters/xeauvok/side.svg",
  16169. extra: 1975 / 1523,
  16170. bottom: 0.07
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(7.2, "feet"),
  16178. default: true
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Zara" },
  16184. {
  16185. side: {
  16186. height: math.unit(10, "feet"),
  16187. weight: math.unit(900, "kg"),
  16188. name: "Side",
  16189. image: {
  16190. source: "./media/characters/zara/side.svg",
  16191. extra: 504 / 498
  16192. }
  16193. },
  16194. },
  16195. [
  16196. {
  16197. name: "Normal",
  16198. height: math.unit(10, "feet"),
  16199. default: true
  16200. },
  16201. ]
  16202. ))
  16203. characterMakers.push(() => makeCharacter(
  16204. { name: "Richard (Dragon)" },
  16205. {
  16206. side: {
  16207. height: math.unit(6, "feet"),
  16208. weight: math.unit(150, "lb"),
  16209. name: "Side",
  16210. image: {
  16211. source: "./media/characters/richard-dragon/side.svg",
  16212. extra: 845 / 340,
  16213. bottom: 0.017
  16214. }
  16215. },
  16216. maw: {
  16217. height: math.unit(2.97, "feet"),
  16218. name: "Maw",
  16219. image: {
  16220. source: "./media/characters/richard-dragon/maw.svg"
  16221. }
  16222. },
  16223. },
  16224. [
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Richard (Smeargle)" },
  16229. {
  16230. front: {
  16231. height: math.unit(4, "feet"),
  16232. weight: math.unit(100, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/richard-smeargle/front.svg",
  16236. extra: 2952 / 2820,
  16237. bottom: 0.028
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Normal",
  16244. height: math.unit(4, "feet"),
  16245. default: true
  16246. },
  16247. {
  16248. name: "Dynamax",
  16249. height: math.unit(20, "meters")
  16250. },
  16251. ]
  16252. ))
  16253. characterMakers.push(() => makeCharacter(
  16254. { name: "Klay" },
  16255. {
  16256. front: {
  16257. height: math.unit(6, "feet"),
  16258. weight: math.unit(110, "lb"),
  16259. name: "Front",
  16260. image: {
  16261. source: "./media/characters/klay/front.svg",
  16262. extra: 962 / 883,
  16263. bottom: 0.04
  16264. }
  16265. },
  16266. back: {
  16267. height: math.unit(6, "feet"),
  16268. weight: math.unit(110, "lb"),
  16269. name: "Back",
  16270. image: {
  16271. source: "./media/characters/klay/back.svg",
  16272. extra: 962 / 883
  16273. }
  16274. },
  16275. beans: {
  16276. height: math.unit(1.15, "feet"),
  16277. name: "Beans",
  16278. image: {
  16279. source: "./media/characters/klay/beans.svg"
  16280. }
  16281. },
  16282. },
  16283. [
  16284. {
  16285. name: "Micro",
  16286. height: math.unit(6, "inches")
  16287. },
  16288. {
  16289. name: "Mini",
  16290. height: math.unit(3, "feet")
  16291. },
  16292. {
  16293. name: "Normal",
  16294. height: math.unit(6, "feet"),
  16295. default: true
  16296. },
  16297. {
  16298. name: "Big",
  16299. height: math.unit(25, "feet")
  16300. },
  16301. {
  16302. name: "Macro",
  16303. height: math.unit(100, "feet")
  16304. },
  16305. {
  16306. name: "Megamacro",
  16307. height: math.unit(400, "feet")
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Marcus" },
  16313. {
  16314. front: {
  16315. height: math.unit(6, "feet"),
  16316. weight: math.unit(160, "lb"),
  16317. name: "Front",
  16318. image: {
  16319. source: "./media/characters/marcus/front.svg",
  16320. extra: 734 / 676,
  16321. bottom: 0.03
  16322. }
  16323. },
  16324. },
  16325. [
  16326. {
  16327. name: "Little",
  16328. height: math.unit(6, "feet")
  16329. },
  16330. {
  16331. name: "Normal",
  16332. height: math.unit(110, "feet"),
  16333. default: true
  16334. },
  16335. {
  16336. name: "Macro",
  16337. height: math.unit(250, "feet")
  16338. },
  16339. {
  16340. name: "Megamacro",
  16341. height: math.unit(1000, "feet")
  16342. },
  16343. ]
  16344. ))
  16345. characterMakers.push(() => makeCharacter(
  16346. { name: "Claude DelRoute" },
  16347. {
  16348. front: {
  16349. height: math.unit(7, "feet"),
  16350. weight: math.unit(275, "lb"),
  16351. name: "Front",
  16352. image: {
  16353. source: "./media/characters/claude-delroute/front.svg",
  16354. extra: 230 / 214,
  16355. bottom: 0.007
  16356. }
  16357. },
  16358. side: {
  16359. height: math.unit(7, "feet"),
  16360. weight: math.unit(275, "lb"),
  16361. name: "Side",
  16362. image: {
  16363. source: "./media/characters/claude-delroute/side.svg",
  16364. extra: 222 / 214,
  16365. bottom: 0.01
  16366. }
  16367. },
  16368. back: {
  16369. height: math.unit(7, "feet"),
  16370. weight: math.unit(275, "lb"),
  16371. name: "Back",
  16372. image: {
  16373. source: "./media/characters/claude-delroute/back.svg",
  16374. extra: 230 / 214,
  16375. bottom: 0.015
  16376. }
  16377. },
  16378. maw: {
  16379. height: math.unit(0.6407, "meters"),
  16380. name: "Maw",
  16381. image: {
  16382. source: "./media/characters/claude-delroute/maw.svg"
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(7, "feet"),
  16390. default: true
  16391. },
  16392. {
  16393. name: "Lorge",
  16394. height: math.unit(20, "feet")
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Dragonien" },
  16400. {
  16401. front: {
  16402. height: math.unit(8 + 4 / 12, "feet"),
  16403. weight: math.unit(600, "lb"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/dragonien/front.svg",
  16407. extra: 100 / 94,
  16408. bottom: 3.3 / 103.3445
  16409. }
  16410. },
  16411. back: {
  16412. height: math.unit(8 + 4 / 12, "feet"),
  16413. weight: math.unit(600, "lb"),
  16414. name: "Back",
  16415. image: {
  16416. source: "./media/characters/dragonien/back.svg",
  16417. extra: 776 / 746,
  16418. bottom: 6.4 / 782.0616
  16419. }
  16420. },
  16421. foot: {
  16422. height: math.unit(1.54, "feet"),
  16423. name: "Foot",
  16424. image: {
  16425. source: "./media/characters/dragonien/foot.svg",
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Normal",
  16432. height: math.unit(8 + 4 / 12, "feet"),
  16433. default: true
  16434. },
  16435. {
  16436. name: "Macro",
  16437. height: math.unit(200, "feet")
  16438. },
  16439. {
  16440. name: "Megamacro",
  16441. height: math.unit(1, "mile")
  16442. },
  16443. {
  16444. name: "Gigamacro",
  16445. height: math.unit(1000, "miles")
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Desta" },
  16451. {
  16452. front: {
  16453. height: math.unit(5 + 2 / 12, "feet"),
  16454. weight: math.unit(110, "lb"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/desta/front.svg",
  16458. extra: 1482 / 1417
  16459. }
  16460. },
  16461. side: {
  16462. height: math.unit(5 + 2 / 12, "feet"),
  16463. weight: math.unit(110, "lb"),
  16464. name: "Side",
  16465. image: {
  16466. source: "./media/characters/desta/side.svg",
  16467. extra: 2579 / 2491,
  16468. bottom: 0.053
  16469. }
  16470. },
  16471. },
  16472. [
  16473. {
  16474. name: "Micro",
  16475. height: math.unit(6, "inches")
  16476. },
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(5 + 2 / 12, "feet"),
  16480. default: true
  16481. },
  16482. {
  16483. name: "Macro",
  16484. height: math.unit(62, "feet")
  16485. },
  16486. {
  16487. name: "Megamacro",
  16488. height: math.unit(1800, "feet")
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Storm Alystar" },
  16494. {
  16495. front: {
  16496. height: math.unit(10, "feet"),
  16497. weight: math.unit(700, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/storm-alystar/front.svg",
  16501. extra: 2112 / 1898,
  16502. bottom: 0.034
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Micro",
  16509. height: math.unit(3.5, "inches")
  16510. },
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(10, "feet"),
  16514. default: true
  16515. },
  16516. {
  16517. name: "Macro",
  16518. height: math.unit(400, "feet")
  16519. },
  16520. {
  16521. name: "Deific",
  16522. height: math.unit(60, "miles")
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Ilia" },
  16528. {
  16529. front: {
  16530. height: math.unit(2.35, "meters"),
  16531. weight: math.unit(119, "kg"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/ilia/front.svg",
  16535. extra: 1285 / 1255,
  16536. bottom: 0.06
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(2.35, "meters")
  16544. },
  16545. {
  16546. name: "Macro",
  16547. height: math.unit(140, "meters"),
  16548. default: true
  16549. },
  16550. {
  16551. name: "Megamacro",
  16552. height: math.unit(100, "miles")
  16553. },
  16554. ]
  16555. ))
  16556. characterMakers.push(() => makeCharacter(
  16557. { name: "KingDead" },
  16558. {
  16559. front: {
  16560. height: math.unit(6 + 5 / 12, "feet"),
  16561. weight: math.unit(190, "lb"),
  16562. name: "Front",
  16563. image: {
  16564. source: "./media/characters/kingdead/front.svg",
  16565. extra: 1228 / 1177
  16566. }
  16567. },
  16568. },
  16569. [
  16570. {
  16571. name: "Micro",
  16572. height: math.unit(7, "inches")
  16573. },
  16574. {
  16575. name: "Normal",
  16576. height: math.unit(6 + 5 / 12, "feet")
  16577. },
  16578. {
  16579. name: "Macro",
  16580. height: math.unit(150, "feet"),
  16581. default: true
  16582. },
  16583. {
  16584. name: "Megamacro",
  16585. height: math.unit(200, "miles")
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Kyrehx" },
  16591. {
  16592. front: {
  16593. height: math.unit(8, "feet"),
  16594. weight: math.unit(600, "lb"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/kyrehx/front.svg",
  16598. extra: 1195 / 1095,
  16599. bottom: 0.034
  16600. }
  16601. },
  16602. },
  16603. [
  16604. {
  16605. name: "Micro",
  16606. height: math.unit(2, "inches")
  16607. },
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(8, "feet"),
  16611. default: true
  16612. },
  16613. {
  16614. name: "Macro",
  16615. height: math.unit(255, "feet")
  16616. },
  16617. ]
  16618. ))
  16619. characterMakers.push(() => makeCharacter(
  16620. { name: "Xang" },
  16621. {
  16622. front: {
  16623. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16624. weight: math.unit(184, "lb"),
  16625. name: "Front",
  16626. image: {
  16627. source: "./media/characters/xang/front.svg",
  16628. extra: 845 / 755
  16629. }
  16630. },
  16631. },
  16632. [
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16636. default: true
  16637. },
  16638. {
  16639. name: "Macro",
  16640. height: math.unit(0.935 * 146, "feet")
  16641. },
  16642. {
  16643. name: "Megamacro",
  16644. height: math.unit(0.935 * 3, "miles")
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Doc Weardno" },
  16650. {
  16651. frontDressed: {
  16652. height: math.unit(5 + 7 / 12, "feet"),
  16653. weight: math.unit(140, "lb"),
  16654. name: "Front (Dressed)",
  16655. image: {
  16656. source: "./media/characters/doc-weardno/front-dressed.svg",
  16657. extra: 263 / 234
  16658. }
  16659. },
  16660. backDressed: {
  16661. height: math.unit(5 + 7 / 12, "feet"),
  16662. weight: math.unit(140, "lb"),
  16663. name: "Back (Dressed)",
  16664. image: {
  16665. source: "./media/characters/doc-weardno/back-dressed.svg",
  16666. extra: 266 / 238
  16667. }
  16668. },
  16669. front: {
  16670. height: math.unit(5 + 7 / 12, "feet"),
  16671. weight: math.unit(140, "lb"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/doc-weardno/front.svg",
  16675. extra: 254 / 233
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Micro",
  16682. height: math.unit(3, "inches")
  16683. },
  16684. {
  16685. name: "Normal",
  16686. height: math.unit(5 + 7 / 12, "feet"),
  16687. default: true
  16688. },
  16689. {
  16690. name: "Macro",
  16691. height: math.unit(25, "feet")
  16692. },
  16693. {
  16694. name: "Megamacro",
  16695. height: math.unit(2, "miles")
  16696. },
  16697. ]
  16698. ))
  16699. characterMakers.push(() => makeCharacter(
  16700. { name: "Seth Whilst" },
  16701. {
  16702. front: {
  16703. height: math.unit(6 + 2 / 12, "feet"),
  16704. weight: math.unit(153, "lb"),
  16705. name: "Front",
  16706. image: {
  16707. source: "./media/characters/seth-whilst/front.svg",
  16708. bottom: 0.07
  16709. }
  16710. },
  16711. },
  16712. [
  16713. {
  16714. name: "Micro",
  16715. height: math.unit(5, "inches")
  16716. },
  16717. {
  16718. name: "Normal",
  16719. height: math.unit(6 + 2 / 12, "feet"),
  16720. default: true
  16721. },
  16722. ]
  16723. ))
  16724. characterMakers.push(() => makeCharacter(
  16725. { name: "Pocket Jabari" },
  16726. {
  16727. front: {
  16728. height: math.unit(3, "inches"),
  16729. weight: math.unit(8, "grams"),
  16730. name: "Front",
  16731. image: {
  16732. source: "./media/characters/pocket-jabari/front.svg",
  16733. extra: 1024 / 974,
  16734. bottom: 0.039
  16735. }
  16736. },
  16737. },
  16738. [
  16739. {
  16740. name: "Minimicro",
  16741. height: math.unit(8, "mm")
  16742. },
  16743. {
  16744. name: "Micro",
  16745. height: math.unit(3, "inches"),
  16746. default: true
  16747. },
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(3, "feet")
  16751. },
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Sapphy" },
  16756. {
  16757. front: {
  16758. height: math.unit(15, "feet"),
  16759. weight: math.unit(3280, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/sapphy/front.svg",
  16763. extra: 671 / 577,
  16764. bottom: 0.085
  16765. }
  16766. },
  16767. back: {
  16768. height: math.unit(15, "feet"),
  16769. weight: math.unit(3280, "lb"),
  16770. name: "Back",
  16771. image: {
  16772. source: "./media/characters/sapphy/back.svg",
  16773. extra: 631 / 607,
  16774. bottom: 0.045
  16775. }
  16776. },
  16777. },
  16778. [
  16779. {
  16780. name: "Normal",
  16781. height: math.unit(15, "feet")
  16782. },
  16783. {
  16784. name: "Casual Macro",
  16785. height: math.unit(120, "feet")
  16786. },
  16787. {
  16788. name: "Macro",
  16789. height: math.unit(2150, "feet"),
  16790. default: true
  16791. },
  16792. {
  16793. name: "Megamacro",
  16794. height: math.unit(8, "miles")
  16795. },
  16796. {
  16797. name: "Galaxy Mom",
  16798. height: math.unit(6, "megalightyears")
  16799. },
  16800. ]
  16801. ))
  16802. characterMakers.push(() => makeCharacter(
  16803. { name: "Kiro" },
  16804. {
  16805. front: {
  16806. height: math.unit(6, "feet"),
  16807. weight: math.unit(170, "lb"),
  16808. name: "Front",
  16809. image: {
  16810. source: "./media/characters/kiro/front.svg",
  16811. extra: 1064 / 1012,
  16812. bottom: 0.052
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Micro",
  16819. height: math.unit(6, "inches")
  16820. },
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(6, "feet"),
  16824. default: true
  16825. },
  16826. {
  16827. name: "Macro",
  16828. height: math.unit(72, "feet")
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Irishfox" },
  16834. {
  16835. front: {
  16836. height: math.unit(5 + 9 / 12, "feet"),
  16837. weight: math.unit(175, "lb"),
  16838. name: "Front",
  16839. image: {
  16840. source: "./media/characters/irishfox/front.svg",
  16841. extra: 1912 / 1680,
  16842. bottom: 0.02
  16843. }
  16844. },
  16845. },
  16846. [
  16847. {
  16848. name: "Nano",
  16849. height: math.unit(1, "mm")
  16850. },
  16851. {
  16852. name: "Micro",
  16853. height: math.unit(2, "inches")
  16854. },
  16855. {
  16856. name: "Normal",
  16857. height: math.unit(5 + 9 / 12, "feet"),
  16858. default: true
  16859. },
  16860. {
  16861. name: "Macro",
  16862. height: math.unit(45, "feet")
  16863. },
  16864. ]
  16865. ))
  16866. characterMakers.push(() => makeCharacter(
  16867. { name: "Aronai Sieyes" },
  16868. {
  16869. front: {
  16870. height: math.unit(6 + 1 / 12, "feet"),
  16871. weight: math.unit(150, "lb"),
  16872. name: "Front",
  16873. image: {
  16874. source: "./media/characters/aronai-sieyes/front.svg",
  16875. extra: 1556 / 1480,
  16876. bottom: 0.015
  16877. }
  16878. },
  16879. side: {
  16880. height: math.unit(6 + 1 / 12, "feet"),
  16881. weight: math.unit(150, "lb"),
  16882. name: "Side",
  16883. image: {
  16884. source: "./media/characters/aronai-sieyes/side.svg",
  16885. extra: 1433 / 1390,
  16886. bottom: 0.0393
  16887. }
  16888. },
  16889. back: {
  16890. height: math.unit(6 + 1 / 12, "feet"),
  16891. weight: math.unit(150, "lb"),
  16892. name: "Back",
  16893. image: {
  16894. source: "./media/characters/aronai-sieyes/back.svg",
  16895. extra: 1544 / 1494,
  16896. bottom: 0.02
  16897. }
  16898. },
  16899. frontClothed: {
  16900. height: math.unit(6 + 1 / 12, "feet"),
  16901. weight: math.unit(150, "lb"),
  16902. name: "Front (Clothed)",
  16903. image: {
  16904. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16905. extra: 1582 / 1527
  16906. }
  16907. },
  16908. feral: {
  16909. height: math.unit(18, "feet"),
  16910. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16911. name: "Feral",
  16912. image: {
  16913. source: "./media/characters/aronai-sieyes/feral.svg",
  16914. extra: 1530 / 1240,
  16915. bottom: 0.035
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Micro",
  16922. height: math.unit(2, "inches")
  16923. },
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(6 + 1 / 12, "feet"),
  16927. default: true
  16928. }
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Xuna" },
  16933. {
  16934. front: {
  16935. height: math.unit(12, "feet"),
  16936. weight: math.unit(410, "kg"),
  16937. name: "Front",
  16938. image: {
  16939. source: "./media/characters/xuna/front.svg",
  16940. extra: 2184 / 1980
  16941. }
  16942. },
  16943. side: {
  16944. height: math.unit(12, "feet"),
  16945. weight: math.unit(410, "kg"),
  16946. name: "Side",
  16947. image: {
  16948. source: "./media/characters/xuna/side.svg",
  16949. extra: 2184 / 1980
  16950. }
  16951. },
  16952. back: {
  16953. height: math.unit(12, "feet"),
  16954. weight: math.unit(410, "kg"),
  16955. name: "Back",
  16956. image: {
  16957. source: "./media/characters/xuna/back.svg",
  16958. extra: 2184 / 1980
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Nano glow",
  16965. height: math.unit(10, "nm")
  16966. },
  16967. {
  16968. name: "Micro floof",
  16969. height: math.unit(0.3, "m")
  16970. },
  16971. {
  16972. name: "Huggable softy boi",
  16973. height: math.unit(3.6576, "m"),
  16974. default: true
  16975. },
  16976. {
  16977. name: "Admirable floof",
  16978. height: math.unit(80, "meters")
  16979. },
  16980. {
  16981. name: "Gentle macro",
  16982. height: math.unit(300, "meters")
  16983. },
  16984. {
  16985. name: "Very careful floof",
  16986. height: math.unit(3200, "meters")
  16987. },
  16988. {
  16989. name: "The mega floof",
  16990. height: math.unit(36000, "meters")
  16991. },
  16992. {
  16993. name: "Giga-fur-Wicker",
  16994. height: math.unit(4800000, "meters")
  16995. },
  16996. {
  16997. name: "Licky world",
  16998. height: math.unit(20000000, "meters")
  16999. },
  17000. {
  17001. name: "Floofy cyan sun",
  17002. height: math.unit(1500000000, "meters")
  17003. },
  17004. {
  17005. name: "Milky Wicker",
  17006. height: math.unit(1000000000000000000000, "meters")
  17007. },
  17008. {
  17009. name: "The observing Wicker",
  17010. height: math.unit(999999999999999999999999999, "meters")
  17011. },
  17012. ]
  17013. ))
  17014. characterMakers.push(() => makeCharacter(
  17015. { name: "Arokha Sieyes" },
  17016. {
  17017. front: {
  17018. height: math.unit(5 + 9 / 12, "feet"),
  17019. weight: math.unit(150, "lb"),
  17020. name: "Front",
  17021. image: {
  17022. source: "./media/characters/arokha-sieyes/front.svg",
  17023. extra: 1425 / 1284,
  17024. bottom: 0.05
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Normal",
  17031. height: math.unit(5 + 9 / 12, "feet")
  17032. },
  17033. {
  17034. name: "Macro",
  17035. height: math.unit(30, "meters"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Arokh Sieyes" },
  17042. {
  17043. front: {
  17044. height: math.unit(6, "feet"),
  17045. weight: math.unit(180, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/arokh-sieyes/front.svg",
  17049. extra: 1830 / 1769,
  17050. bottom: 0.01
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(6, "feet")
  17058. },
  17059. {
  17060. name: "Macro",
  17061. height: math.unit(30, "meters"),
  17062. default: true
  17063. },
  17064. ]
  17065. ))
  17066. characterMakers.push(() => makeCharacter(
  17067. { name: "Goldeneye" },
  17068. {
  17069. side: {
  17070. height: math.unit(13 + 1 / 12, "feet"),
  17071. weight: math.unit(8.5, "tonnes"),
  17072. name: "Side",
  17073. image: {
  17074. source: "./media/characters/goldeneye/side.svg",
  17075. extra: 1182 / 778,
  17076. bottom: 0.067
  17077. }
  17078. },
  17079. paw: {
  17080. height: math.unit(3.4, "feet"),
  17081. name: "Paw",
  17082. image: {
  17083. source: "./media/characters/goldeneye/paw.svg"
  17084. }
  17085. },
  17086. },
  17087. [
  17088. {
  17089. name: "Normal",
  17090. height: math.unit(13 + 1 / 12, "feet"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Leonardo Lycheborne" },
  17097. {
  17098. front: {
  17099. height: math.unit(6 + 1 / 12, "feet"),
  17100. weight: math.unit(210, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/leonardo-lycheborne/front.svg",
  17104. extra: 390 / 365,
  17105. bottom: 0.032
  17106. }
  17107. },
  17108. side: {
  17109. height: math.unit(6 + 1 / 12, "feet"),
  17110. weight: math.unit(210, "lb"),
  17111. name: "Side",
  17112. image: {
  17113. source: "./media/characters/leonardo-lycheborne/side.svg",
  17114. extra: 390 / 365,
  17115. bottom: 0.005
  17116. }
  17117. },
  17118. back: {
  17119. height: math.unit(6 + 1 / 12, "feet"),
  17120. weight: math.unit(210, "lb"),
  17121. name: "Back",
  17122. image: {
  17123. source: "./media/characters/leonardo-lycheborne/back.svg",
  17124. extra: 392 / 366,
  17125. bottom: 0.01
  17126. }
  17127. },
  17128. hand: {
  17129. height: math.unit(1.08, "feet"),
  17130. name: "Hand",
  17131. image: {
  17132. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17133. }
  17134. },
  17135. foot: {
  17136. height: math.unit(1.32, "feet"),
  17137. name: "Foot",
  17138. image: {
  17139. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17140. }
  17141. },
  17142. were: {
  17143. height: math.unit(20, "feet"),
  17144. weight: math.unit(7800, "lb"),
  17145. name: "Were",
  17146. image: {
  17147. source: "./media/characters/leonardo-lycheborne/were.svg",
  17148. extra: 308 / 294,
  17149. bottom: 0.048
  17150. }
  17151. },
  17152. feral: {
  17153. height: math.unit(7.5, "feet"),
  17154. weight: math.unit(600, "lb"),
  17155. name: "Feral",
  17156. image: {
  17157. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17158. extra: 210 / 186,
  17159. bottom: 0.108
  17160. }
  17161. },
  17162. taur: {
  17163. height: math.unit(11, "feet"),
  17164. weight: math.unit(3300, "lb"),
  17165. name: "Taur",
  17166. image: {
  17167. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17168. extra: 320 / 303,
  17169. bottom: 0.025
  17170. }
  17171. },
  17172. barghest: {
  17173. height: math.unit(11, "feet"),
  17174. weight: math.unit(1300, "lb"),
  17175. name: "Barghest",
  17176. image: {
  17177. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17178. extra: 323 / 302,
  17179. bottom: 0.027
  17180. }
  17181. },
  17182. dick: {
  17183. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17184. name: "Dick",
  17185. image: {
  17186. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17187. }
  17188. },
  17189. dickWere: {
  17190. height: math.unit((20) / 3.8, "feet"),
  17191. name: "Dick (Were)",
  17192. image: {
  17193. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(6 + 1 / 12, "feet"),
  17201. default: true
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Jet" },
  17207. {
  17208. front: {
  17209. height: math.unit(10, "feet"),
  17210. weight: math.unit(350, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/jet/front.svg",
  17214. extra: 2050 / 1980,
  17215. bottom: 0.013
  17216. }
  17217. },
  17218. back: {
  17219. height: math.unit(10, "feet"),
  17220. weight: math.unit(350, "lb"),
  17221. name: "Back",
  17222. image: {
  17223. source: "./media/characters/jet/back.svg",
  17224. extra: 2050 / 1980,
  17225. bottom: 0.013
  17226. }
  17227. },
  17228. },
  17229. [
  17230. {
  17231. name: "Micro",
  17232. height: math.unit(6, "inches")
  17233. },
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(10, "feet"),
  17237. default: true
  17238. },
  17239. {
  17240. name: "Macro",
  17241. height: math.unit(100, "feet")
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Tanarath" },
  17247. {
  17248. front: {
  17249. height: math.unit(15, "feet"),
  17250. weight: math.unit(2800, "lb"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/tanarath/front.svg",
  17254. extra: 2392 / 2220,
  17255. bottom: 0.03
  17256. }
  17257. },
  17258. back: {
  17259. height: math.unit(15, "feet"),
  17260. weight: math.unit(2800, "lb"),
  17261. name: "Back",
  17262. image: {
  17263. source: "./media/characters/tanarath/back.svg",
  17264. extra: 2392 / 2220,
  17265. bottom: 0.03
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Normal",
  17272. height: math.unit(15, "feet"),
  17273. default: true
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Patty CattyBatty" },
  17279. {
  17280. front: {
  17281. height: math.unit(7 + 1 / 12, "feet"),
  17282. weight: math.unit(175, "lb"),
  17283. name: "Front",
  17284. image: {
  17285. source: "./media/characters/patty-cattybatty/front.svg",
  17286. extra: 908 / 874,
  17287. bottom: 0.025
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Micro",
  17294. height: math.unit(1, "inch")
  17295. },
  17296. {
  17297. name: "Normal",
  17298. height: math.unit(7 + 1 / 12, "feet")
  17299. },
  17300. {
  17301. name: "Mini Macro",
  17302. height: math.unit(155, "feet")
  17303. },
  17304. {
  17305. name: "Macro",
  17306. height: math.unit(1077, "feet")
  17307. },
  17308. {
  17309. name: "Mega Macro",
  17310. height: math.unit(47650, "feet"),
  17311. default: true
  17312. },
  17313. {
  17314. name: "Giga Macro",
  17315. height: math.unit(440, "miles")
  17316. },
  17317. {
  17318. name: "Tera Macro",
  17319. height: math.unit(8700, "miles")
  17320. },
  17321. {
  17322. name: "Planetary Macro",
  17323. height: math.unit(32700, "miles")
  17324. },
  17325. {
  17326. name: "Solar Macro",
  17327. height: math.unit(550000, "miles")
  17328. },
  17329. {
  17330. name: "Celestial Macro",
  17331. height: math.unit(2.5, "AU")
  17332. },
  17333. ]
  17334. ))
  17335. characterMakers.push(() => makeCharacter(
  17336. { name: "Cappu" },
  17337. {
  17338. front: {
  17339. height: math.unit(4 + 5 / 12, "feet"),
  17340. weight: math.unit(90, "lb"),
  17341. name: "Front",
  17342. image: {
  17343. source: "./media/characters/cappu/front.svg",
  17344. extra: 1247 / 1152,
  17345. bottom: 0.012
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Normal",
  17352. height: math.unit(4 + 5 / 12, "feet"),
  17353. default: true
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Sebi" },
  17359. {
  17360. frontDressed: {
  17361. height: math.unit(70, "cm"),
  17362. weight: math.unit(6, "kg"),
  17363. name: "Front (Dressed)",
  17364. image: {
  17365. source: "./media/characters/sebi/front-dressed.svg",
  17366. extra: 713.5 / 686.5,
  17367. bottom: 0.003
  17368. }
  17369. },
  17370. front: {
  17371. height: math.unit(70, "cm"),
  17372. weight: math.unit(5, "kg"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/sebi/front.svg",
  17376. extra: 713.5 / 686.5,
  17377. bottom: 0.003
  17378. }
  17379. }
  17380. },
  17381. [
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(70, "cm"),
  17385. default: true
  17386. },
  17387. {
  17388. name: "Macro",
  17389. height: math.unit(8, "meters")
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Typhek" },
  17395. {
  17396. front: {
  17397. height: math.unit(6, "feet"),
  17398. weight: math.unit(150, "lb"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/typhek/front.svg",
  17402. extra: 1948 / 1929,
  17403. bottom: 0.025
  17404. }
  17405. },
  17406. side: {
  17407. height: math.unit(6, "feet"),
  17408. weight: math.unit(150, "lb"),
  17409. name: "Side",
  17410. image: {
  17411. source: "./media/characters/typhek/side.svg",
  17412. extra: 2034 / 2010,
  17413. bottom: 0.003
  17414. }
  17415. },
  17416. back: {
  17417. height: math.unit(6, "feet"),
  17418. weight: math.unit(150, "lb"),
  17419. name: "Back",
  17420. image: {
  17421. source: "./media/characters/typhek/back.svg",
  17422. extra: 2005 / 1978,
  17423. bottom: 0.004
  17424. }
  17425. },
  17426. palm: {
  17427. height: math.unit(1.2, "feet"),
  17428. name: "Palm",
  17429. image: {
  17430. source: "./media/characters/typhek/palm.svg"
  17431. }
  17432. },
  17433. fist: {
  17434. height: math.unit(1.1, "feet"),
  17435. name: "Fist",
  17436. image: {
  17437. source: "./media/characters/typhek/fist.svg"
  17438. }
  17439. },
  17440. foot: {
  17441. height: math.unit(1.57, "feet"),
  17442. name: "Foot",
  17443. image: {
  17444. source: "./media/characters/typhek/foot.svg"
  17445. }
  17446. },
  17447. sole: {
  17448. height: math.unit(2.05, "feet"),
  17449. name: "Sole",
  17450. image: {
  17451. source: "./media/characters/typhek/sole.svg"
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Macro",
  17458. height: math.unit(40, "stories"),
  17459. default: true
  17460. },
  17461. {
  17462. name: "Megamacro",
  17463. height: math.unit(1, "mile")
  17464. },
  17465. {
  17466. name: "Gigamacro",
  17467. height: math.unit(4000, "solarradii")
  17468. },
  17469. {
  17470. name: "Universal",
  17471. height: math.unit(1.1, "universes")
  17472. }
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Kassy" },
  17477. {
  17478. side: {
  17479. height: math.unit(5 + 7 / 12, "feet"),
  17480. weight: math.unit(150, "lb"),
  17481. name: "Side",
  17482. image: {
  17483. source: "./media/characters/kassy/side.svg",
  17484. extra: 1280 / 1225,
  17485. bottom: 0.002
  17486. }
  17487. },
  17488. front: {
  17489. height: math.unit(5 + 7 / 12, "feet"),
  17490. weight: math.unit(150, "lb"),
  17491. name: "Front",
  17492. image: {
  17493. source: "./media/characters/kassy/front.svg",
  17494. extra: 1280 / 1225,
  17495. bottom: 0.025
  17496. }
  17497. },
  17498. back: {
  17499. height: math.unit(5 + 7 / 12, "feet"),
  17500. weight: math.unit(150, "lb"),
  17501. name: "Back",
  17502. image: {
  17503. source: "./media/characters/kassy/back.svg",
  17504. extra: 1280 / 1225,
  17505. bottom: 0.002
  17506. }
  17507. },
  17508. foot: {
  17509. height: math.unit(1.266, "feet"),
  17510. name: "Foot",
  17511. image: {
  17512. source: "./media/characters/kassy/foot.svg"
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(5 + 7 / 12, "feet")
  17520. },
  17521. {
  17522. name: "Macro",
  17523. height: math.unit(137, "feet"),
  17524. default: true
  17525. },
  17526. {
  17527. name: "Megamacro",
  17528. height: math.unit(1, "mile")
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Neil" },
  17534. {
  17535. front: {
  17536. height: math.unit(6 + 1 / 12, "feet"),
  17537. weight: math.unit(200, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/neil/front.svg",
  17541. extra: 1326 / 1250,
  17542. bottom: 0.023
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(6 + 1 / 12, "feet"),
  17550. default: true
  17551. },
  17552. {
  17553. name: "Macro",
  17554. height: math.unit(200, "feet")
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "Atticus" },
  17560. {
  17561. front: {
  17562. height: math.unit(5 + 9 / 12, "feet"),
  17563. weight: math.unit(190, "lb"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/atticus/front.svg",
  17567. extra: 2934 / 2785,
  17568. bottom: 0.025
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(5 + 9 / 12, "feet"),
  17576. default: true
  17577. },
  17578. {
  17579. name: "Macro",
  17580. height: math.unit(180, "feet")
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Milo" },
  17586. {
  17587. side: {
  17588. height: math.unit(9, "feet"),
  17589. weight: math.unit(650, "lb"),
  17590. name: "Side",
  17591. image: {
  17592. source: "./media/characters/milo/side.svg",
  17593. extra: 2644 / 2310,
  17594. bottom: 0.032
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(9, "feet"),
  17602. default: true
  17603. },
  17604. {
  17605. name: "Macro",
  17606. height: math.unit(300, "feet")
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Ijzer" },
  17612. {
  17613. side: {
  17614. height: math.unit(8, "meters"),
  17615. weight: math.unit(90000, "kg"),
  17616. name: "Side",
  17617. image: {
  17618. source: "./media/characters/ijzer/side.svg",
  17619. extra: 2756 / 1600,
  17620. bottom: 0.01
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Small",
  17627. height: math.unit(3, "meters")
  17628. },
  17629. {
  17630. name: "Normal",
  17631. height: math.unit(8, "meters"),
  17632. default: true
  17633. },
  17634. {
  17635. name: "Normal+",
  17636. height: math.unit(10, "meters")
  17637. },
  17638. {
  17639. name: "Bigger",
  17640. height: math.unit(24, "meters")
  17641. },
  17642. {
  17643. name: "Huge",
  17644. height: math.unit(80, "meters")
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Luca Cervicum" },
  17650. {
  17651. front: {
  17652. height: math.unit(6 + 2 / 12, "feet"),
  17653. weight: math.unit(153, "lb"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/luca-cervicum/front.svg",
  17657. extra: 370 / 327,
  17658. bottom: 0.015
  17659. }
  17660. },
  17661. back: {
  17662. height: math.unit(6 + 2 / 12, "feet"),
  17663. weight: math.unit(153, "lb"),
  17664. name: "Back",
  17665. image: {
  17666. source: "./media/characters/luca-cervicum/back.svg",
  17667. extra: 367 / 333,
  17668. bottom: 0.005
  17669. }
  17670. },
  17671. frontGear: {
  17672. height: math.unit(6 + 2 / 12, "feet"),
  17673. weight: math.unit(173, "lb"),
  17674. name: "Front (Gear)",
  17675. image: {
  17676. source: "./media/characters/luca-cervicum/front-gear.svg",
  17677. extra: 377 / 333,
  17678. bottom: 0.006
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(6 + 2 / 12, "feet"),
  17686. default: true
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Oliver" },
  17692. {
  17693. front: {
  17694. height: math.unit(6 + 1 / 12, "feet"),
  17695. weight: math.unit(304, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/oliver/front.svg",
  17699. extra: 157 / 143,
  17700. bottom: 0.08
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(6 + 1 / 12, "feet"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Shane" },
  17714. {
  17715. front: {
  17716. height: math.unit(5 + 7 / 12, "feet"),
  17717. weight: math.unit(140, "lb"),
  17718. name: "Front",
  17719. image: {
  17720. source: "./media/characters/shane/front.svg",
  17721. extra: 304 / 289,
  17722. bottom: 0.005
  17723. }
  17724. },
  17725. },
  17726. [
  17727. {
  17728. name: "Normal",
  17729. height: math.unit(5 + 7 / 12, "feet"),
  17730. default: true
  17731. },
  17732. ]
  17733. ))
  17734. characterMakers.push(() => makeCharacter(
  17735. { name: "Shin" },
  17736. {
  17737. front: {
  17738. height: math.unit(5 + 9 / 12, "feet"),
  17739. weight: math.unit(178, "lb"),
  17740. name: "Front",
  17741. image: {
  17742. source: "./media/characters/shin/front.svg",
  17743. extra: 159 / 151,
  17744. bottom: 0.015
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(5 + 9 / 12, "feet"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Xerxes" },
  17758. {
  17759. front: {
  17760. height: math.unit(5 + 10 / 12, "feet"),
  17761. weight: math.unit(168, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/xerxes/front.svg",
  17765. extra: 282 / 260,
  17766. bottom: 0.045
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(5 + 10 / 12, "feet"),
  17774. default: true
  17775. },
  17776. ]
  17777. ))
  17778. characterMakers.push(() => makeCharacter(
  17779. { name: "Chaska" },
  17780. {
  17781. front: {
  17782. height: math.unit(6 + 7 / 12, "feet"),
  17783. weight: math.unit(208, "lb"),
  17784. name: "Front",
  17785. image: {
  17786. source: "./media/characters/chaska/front.svg",
  17787. extra: 332 / 319,
  17788. bottom: 0.015
  17789. }
  17790. },
  17791. },
  17792. [
  17793. {
  17794. name: "Normal",
  17795. height: math.unit(6 + 7 / 12, "feet"),
  17796. default: true
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Enuk" },
  17802. {
  17803. front: {
  17804. height: math.unit(5 + 8 / 12, "feet"),
  17805. weight: math.unit(208, "lb"),
  17806. name: "Front",
  17807. image: {
  17808. source: "./media/characters/enuk/front.svg",
  17809. extra: 437 / 406,
  17810. bottom: 0.02
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(5 + 8 / 12, "feet"),
  17818. default: true
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Bruun" },
  17824. {
  17825. front: {
  17826. height: math.unit(5 + 10 / 12, "feet"),
  17827. weight: math.unit(252, "lb"),
  17828. name: "Front",
  17829. image: {
  17830. source: "./media/characters/bruun/front.svg",
  17831. extra: 197 / 187,
  17832. bottom: 0.012
  17833. }
  17834. },
  17835. },
  17836. [
  17837. {
  17838. name: "Normal",
  17839. height: math.unit(5 + 10 / 12, "feet"),
  17840. default: true
  17841. },
  17842. ]
  17843. ))
  17844. characterMakers.push(() => makeCharacter(
  17845. { name: "Alexeev" },
  17846. {
  17847. front: {
  17848. height: math.unit(6 + 10 / 12, "feet"),
  17849. weight: math.unit(255, "lb"),
  17850. name: "Front",
  17851. image: {
  17852. source: "./media/characters/alexeev/front.svg",
  17853. extra: 213 / 200,
  17854. bottom: 0.05
  17855. }
  17856. },
  17857. },
  17858. [
  17859. {
  17860. name: "Normal",
  17861. height: math.unit(6 + 10 / 12, "feet"),
  17862. default: true
  17863. },
  17864. ]
  17865. ))
  17866. characterMakers.push(() => makeCharacter(
  17867. { name: "Evelyn" },
  17868. {
  17869. front: {
  17870. height: math.unit(2 + 8 / 12, "feet"),
  17871. weight: math.unit(22, "lb"),
  17872. name: "Front",
  17873. image: {
  17874. source: "./media/characters/evelyn/front.svg",
  17875. extra: 208 / 180
  17876. }
  17877. },
  17878. },
  17879. [
  17880. {
  17881. name: "Normal",
  17882. height: math.unit(2 + 8 / 12, "feet"),
  17883. default: true
  17884. },
  17885. ]
  17886. ))
  17887. characterMakers.push(() => makeCharacter(
  17888. { name: "Inca" },
  17889. {
  17890. front: {
  17891. height: math.unit(5 + 9 / 12, "feet"),
  17892. weight: math.unit(139, "lb"),
  17893. name: "Front",
  17894. image: {
  17895. source: "./media/characters/inca/front.svg",
  17896. extra: 294 / 291,
  17897. bottom: 0.03
  17898. }
  17899. },
  17900. },
  17901. [
  17902. {
  17903. name: "Normal",
  17904. height: math.unit(5 + 9 / 12, "feet"),
  17905. default: true
  17906. },
  17907. ]
  17908. ))
  17909. characterMakers.push(() => makeCharacter(
  17910. { name: "Magdalene" },
  17911. {
  17912. front: {
  17913. height: math.unit(5 + 1 / 12, "feet"),
  17914. weight: math.unit(84, "lb"),
  17915. name: "Front",
  17916. image: {
  17917. source: "./media/characters/magdalene/front.svg",
  17918. extra: 293 / 273
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Normal",
  17925. height: math.unit(5 + 1 / 12, "feet"),
  17926. default: true
  17927. },
  17928. ]
  17929. ))
  17930. characterMakers.push(() => makeCharacter(
  17931. { name: "Mera" },
  17932. {
  17933. front: {
  17934. height: math.unit(6 + 3 / 12, "feet"),
  17935. weight: math.unit(185, "lb"),
  17936. name: "Front",
  17937. image: {
  17938. source: "./media/characters/mera/front.svg",
  17939. extra: 291 / 277,
  17940. bottom: 0.03
  17941. }
  17942. },
  17943. },
  17944. [
  17945. {
  17946. name: "Normal",
  17947. height: math.unit(6 + 3 / 12, "feet"),
  17948. default: true
  17949. },
  17950. ]
  17951. ))
  17952. characterMakers.push(() => makeCharacter(
  17953. { name: "Ceres" },
  17954. {
  17955. front: {
  17956. height: math.unit(6 + 7 / 12, "feet"),
  17957. weight: math.unit(160, "lb"),
  17958. name: "Front",
  17959. image: {
  17960. source: "./media/characters/ceres/front.svg",
  17961. extra: 1023 / 950,
  17962. bottom: 0.027
  17963. }
  17964. },
  17965. back: {
  17966. height: math.unit(6 + 7 / 12, "feet"),
  17967. weight: math.unit(160, "lb"),
  17968. name: "Back",
  17969. image: {
  17970. source: "./media/characters/ceres/back.svg",
  17971. extra: 1023 / 950
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(6 + 7 / 12, "feet"),
  17979. default: true
  17980. },
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Kris" },
  17985. {
  17986. front: {
  17987. height: math.unit(5 + 10 / 12, "feet"),
  17988. weight: math.unit(150, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/kris/front.svg",
  17992. extra: 885 / 803,
  17993. bottom: 0.03
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(5 + 10 / 12, "feet"),
  18001. default: true
  18002. },
  18003. ]
  18004. ))
  18005. characterMakers.push(() => makeCharacter(
  18006. { name: "Taluthus" },
  18007. {
  18008. front: {
  18009. height: math.unit(7, "feet"),
  18010. weight: math.unit(120, "kg"),
  18011. name: "Front",
  18012. image: {
  18013. source: "./media/characters/taluthus/front.svg",
  18014. extra: 903 / 833,
  18015. bottom: 0.015
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(7, "feet"),
  18023. default: true
  18024. },
  18025. {
  18026. name: "Macro",
  18027. height: math.unit(300, "feet")
  18028. },
  18029. ]
  18030. ))
  18031. characterMakers.push(() => makeCharacter(
  18032. { name: "Dawn" },
  18033. {
  18034. front: {
  18035. height: math.unit(5 + 9 / 12, "feet"),
  18036. weight: math.unit(145, "lb"),
  18037. name: "Front",
  18038. image: {
  18039. source: "./media/characters/dawn/front.svg",
  18040. extra: 2094 / 2016,
  18041. bottom: 0.025
  18042. }
  18043. },
  18044. back: {
  18045. height: math.unit(5 + 9 / 12, "feet"),
  18046. weight: math.unit(160, "lb"),
  18047. name: "Back",
  18048. image: {
  18049. source: "./media/characters/dawn/back.svg",
  18050. extra: 2112 / 2080,
  18051. bottom: 0.005
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(6 + 7 / 12, "feet"),
  18059. default: true
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Arador" },
  18065. {
  18066. anthro: {
  18067. height: math.unit(8 + 3 / 12, "feet"),
  18068. weight: math.unit(450, "lb"),
  18069. name: "Anthro",
  18070. image: {
  18071. source: "./media/characters/arador/anthro.svg",
  18072. extra: 1835 / 1718,
  18073. bottom: 0.025
  18074. }
  18075. },
  18076. feral: {
  18077. height: math.unit(4, "feet"),
  18078. weight: math.unit(200, "lb"),
  18079. name: "Feral",
  18080. image: {
  18081. source: "./media/characters/arador/feral.svg",
  18082. extra: 1683 / 1514,
  18083. bottom: 0.07
  18084. }
  18085. },
  18086. },
  18087. [
  18088. {
  18089. name: "Normal",
  18090. height: math.unit(8 + 3 / 12, "feet")
  18091. },
  18092. {
  18093. name: "Macro",
  18094. height: math.unit(82.5, "feet"),
  18095. default: true
  18096. },
  18097. ]
  18098. ))
  18099. characterMakers.push(() => makeCharacter(
  18100. { name: "Dharsi" },
  18101. {
  18102. front: {
  18103. height: math.unit(5 + 10 / 12, "feet"),
  18104. weight: math.unit(125, "lb"),
  18105. name: "Front",
  18106. image: {
  18107. source: "./media/characters/dharsi/front.svg",
  18108. extra: 716 / 630,
  18109. bottom: 0.035
  18110. }
  18111. },
  18112. },
  18113. [
  18114. {
  18115. name: "Nano",
  18116. height: math.unit(100, "nm")
  18117. },
  18118. {
  18119. name: "Micro",
  18120. height: math.unit(2, "inches")
  18121. },
  18122. {
  18123. name: "Normal",
  18124. height: math.unit(5 + 10 / 12, "feet"),
  18125. default: true
  18126. },
  18127. {
  18128. name: "Macro",
  18129. height: math.unit(1000, "feet")
  18130. },
  18131. {
  18132. name: "Megamacro",
  18133. height: math.unit(10, "miles")
  18134. },
  18135. {
  18136. name: "Gigamacro",
  18137. height: math.unit(3000, "miles")
  18138. },
  18139. {
  18140. name: "Teramacro",
  18141. height: math.unit(500000, "miles")
  18142. },
  18143. {
  18144. name: "Teramacro+",
  18145. height: math.unit(30, "galaxies")
  18146. },
  18147. ]
  18148. ))
  18149. characterMakers.push(() => makeCharacter(
  18150. { name: "Deathy" },
  18151. {
  18152. front: {
  18153. height: math.unit(6, "feet"),
  18154. weight: math.unit(150, "lb"),
  18155. name: "Front",
  18156. image: {
  18157. source: "./media/characters/deathy/front.svg",
  18158. extra: 1552 / 1463,
  18159. bottom: 0.025
  18160. }
  18161. },
  18162. side: {
  18163. height: math.unit(6, "feet"),
  18164. weight: math.unit(150, "lb"),
  18165. name: "Side",
  18166. image: {
  18167. source: "./media/characters/deathy/side.svg",
  18168. extra: 1604 / 1455,
  18169. bottom: 0.025
  18170. }
  18171. },
  18172. back: {
  18173. height: math.unit(6, "feet"),
  18174. weight: math.unit(150, "lb"),
  18175. name: "Back",
  18176. image: {
  18177. source: "./media/characters/deathy/back.svg",
  18178. extra: 1580 / 1463,
  18179. bottom: 0.005
  18180. }
  18181. },
  18182. },
  18183. [
  18184. {
  18185. name: "Micro",
  18186. height: math.unit(5, "millimeters")
  18187. },
  18188. {
  18189. name: "Normal",
  18190. height: math.unit(6 + 5 / 12, "feet"),
  18191. default: true
  18192. },
  18193. ]
  18194. ))
  18195. characterMakers.push(() => makeCharacter(
  18196. { name: "Juniper" },
  18197. {
  18198. front: {
  18199. height: math.unit(16, "feet"),
  18200. weight: math.unit(4000, "lb"),
  18201. name: "Front",
  18202. image: {
  18203. source: "./media/characters/juniper/front.svg",
  18204. bottom: 0.04
  18205. }
  18206. },
  18207. },
  18208. [
  18209. {
  18210. name: "Normal",
  18211. height: math.unit(16, "feet"),
  18212. default: true
  18213. },
  18214. ]
  18215. ))
  18216. characterMakers.push(() => makeCharacter(
  18217. { name: "Hipster" },
  18218. {
  18219. front: {
  18220. height: math.unit(6, "feet"),
  18221. weight: math.unit(150, "lb"),
  18222. name: "Front",
  18223. image: {
  18224. source: "./media/characters/hipster/front.svg",
  18225. extra: 1312 / 1209,
  18226. bottom: 0.025
  18227. }
  18228. },
  18229. back: {
  18230. height: math.unit(6, "feet"),
  18231. weight: math.unit(150, "lb"),
  18232. name: "Back",
  18233. image: {
  18234. source: "./media/characters/hipster/back.svg",
  18235. extra: 1281 / 1196,
  18236. bottom: 0.01
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Micro",
  18243. height: math.unit(1, "mm")
  18244. },
  18245. {
  18246. name: "Normal",
  18247. height: math.unit(4, "inches"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Macro",
  18252. height: math.unit(500, "feet")
  18253. },
  18254. {
  18255. name: "Megamacro",
  18256. height: math.unit(1000, "miles")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Tendirmuldr" },
  18262. {
  18263. front: {
  18264. height: math.unit(6, "feet"),
  18265. weight: math.unit(150, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/tendirmuldr/front.svg",
  18269. extra: 1878 / 1772,
  18270. bottom: 0.015
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Megamacro",
  18277. height: math.unit(1500, "miles"),
  18278. default: true
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Mort" },
  18284. {
  18285. front: {
  18286. height: math.unit(14, "feet"),
  18287. weight: math.unit(12000, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/mort/front.svg",
  18291. extra: 365 / 318,
  18292. bottom: 0.01
  18293. }
  18294. },
  18295. side: {
  18296. height: math.unit(14, "feet"),
  18297. weight: math.unit(12000, "lb"),
  18298. name: "Side",
  18299. image: {
  18300. source: "./media/characters/mort/side.svg",
  18301. extra: 365 / 318,
  18302. bottom: 0.052
  18303. },
  18304. default: true
  18305. },
  18306. back: {
  18307. height: math.unit(14, "feet"),
  18308. weight: math.unit(12000, "lb"),
  18309. name: "Back",
  18310. image: {
  18311. source: "./media/characters/mort/back.svg",
  18312. extra: 371 / 332,
  18313. bottom: 0.18
  18314. }
  18315. },
  18316. },
  18317. [
  18318. {
  18319. name: "Normal",
  18320. height: math.unit(14, "feet"),
  18321. default: true
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Lycoa" },
  18327. {
  18328. front: {
  18329. height: math.unit(8, "feet"),
  18330. weight: math.unit(1, "ton"),
  18331. name: "Front",
  18332. image: {
  18333. source: "./media/characters/lycoa/front.svg",
  18334. extra: 1875 / 1789,
  18335. bottom: 0.022
  18336. }
  18337. },
  18338. back: {
  18339. height: math.unit(8, "feet"),
  18340. weight: math.unit(1, "ton"),
  18341. name: "Back",
  18342. image: {
  18343. source: "./media/characters/lycoa/back.svg",
  18344. extra: 1835 / 1781,
  18345. bottom: 0.03
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(8, "feet"),
  18353. default: true
  18354. },
  18355. {
  18356. name: "Macro",
  18357. height: math.unit(30, "feet")
  18358. },
  18359. ]
  18360. ))
  18361. characterMakers.push(() => makeCharacter(
  18362. { name: "Naldara" },
  18363. {
  18364. front: {
  18365. height: math.unit(4 + 2 / 12, "feet"),
  18366. weight: math.unit(70, "lb"),
  18367. name: "Front",
  18368. image: {
  18369. source: "./media/characters/naldara/front.svg",
  18370. extra: 841 / 720,
  18371. bottom: 0.04
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(4 + 2 / 12, "feet"),
  18379. default: true
  18380. },
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Briar" },
  18385. {
  18386. front: {
  18387. height: math.unit(13 + 7 / 12, "feet"),
  18388. weight: math.unit(1500, "lb"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/briar/front.svg",
  18392. extra: 626 / 596,
  18393. bottom: 0.08
  18394. }
  18395. },
  18396. },
  18397. [
  18398. {
  18399. name: "Normal",
  18400. height: math.unit(13 + 7 / 12, "feet"),
  18401. default: true
  18402. },
  18403. ]
  18404. ))
  18405. characterMakers.push(() => makeCharacter(
  18406. { name: "Vanguard" },
  18407. {
  18408. side: {
  18409. height: math.unit(10, "feet"),
  18410. weight: math.unit(500, "lb"),
  18411. name: "Side",
  18412. image: {
  18413. source: "./media/characters/vanguard/side.svg",
  18414. extra: 502 / 425,
  18415. bottom: 0.087
  18416. }
  18417. },
  18418. },
  18419. [
  18420. {
  18421. name: "Normal",
  18422. height: math.unit(10, "feet"),
  18423. default: true
  18424. },
  18425. ]
  18426. ))
  18427. characterMakers.push(() => makeCharacter(
  18428. { name: "Artemis" },
  18429. {
  18430. front: {
  18431. height: math.unit(7.5, "feet"),
  18432. weight: math.unit(2, "lb"),
  18433. name: "Front",
  18434. image: {
  18435. source: "./media/characters/artemis/front.svg",
  18436. extra: 1192 / 1075,
  18437. bottom: 0.07
  18438. }
  18439. },
  18440. },
  18441. [
  18442. {
  18443. name: "Normal",
  18444. height: math.unit(7.5, "feet"),
  18445. default: true
  18446. },
  18447. {
  18448. name: "Enlarged",
  18449. height: math.unit(12, "feet")
  18450. },
  18451. ]
  18452. ))
  18453. characterMakers.push(() => makeCharacter(
  18454. { name: "Kira" },
  18455. {
  18456. front: {
  18457. height: math.unit(5 + 3 / 12, "feet"),
  18458. weight: math.unit(160, "lb"),
  18459. name: "Front",
  18460. image: {
  18461. source: "./media/characters/kira/front.svg",
  18462. extra: 906 / 786,
  18463. bottom: 0.01
  18464. }
  18465. },
  18466. back: {
  18467. height: math.unit(5 + 3 / 12, "feet"),
  18468. weight: math.unit(160, "lb"),
  18469. name: "Back",
  18470. image: {
  18471. source: "./media/characters/kira/back.svg",
  18472. extra: 882 / 757,
  18473. bottom: 0.005
  18474. }
  18475. },
  18476. frontDressed: {
  18477. height: math.unit(5 + 3 / 12, "feet"),
  18478. weight: math.unit(160, "lb"),
  18479. name: "Front (Dressed)",
  18480. image: {
  18481. source: "./media/characters/kira/front-dressed.svg",
  18482. extra: 906 / 786,
  18483. bottom: 0.01
  18484. }
  18485. },
  18486. beans: {
  18487. height: math.unit(0.92, "feet"),
  18488. name: "Beans",
  18489. image: {
  18490. source: "./media/characters/kira/beans.svg"
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Normal",
  18497. height: math.unit(5 + 3 / 12, "feet"),
  18498. default: true
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Scramble" },
  18504. {
  18505. front: {
  18506. height: math.unit(5 + 4 / 12, "feet"),
  18507. weight: math.unit(145, "lb"),
  18508. name: "Front",
  18509. image: {
  18510. source: "./media/characters/scramble/front.svg",
  18511. extra: 763 / 727,
  18512. bottom: 0.05
  18513. }
  18514. },
  18515. back: {
  18516. height: math.unit(5 + 4 / 12, "feet"),
  18517. weight: math.unit(145, "lb"),
  18518. name: "Back",
  18519. image: {
  18520. source: "./media/characters/scramble/back.svg",
  18521. extra: 826 / 737,
  18522. bottom: 0.002
  18523. }
  18524. },
  18525. },
  18526. [
  18527. {
  18528. name: "Normal",
  18529. height: math.unit(5 + 4 / 12, "feet"),
  18530. default: true
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Biscuit" },
  18536. {
  18537. side: {
  18538. height: math.unit(6 + 2 / 12, "feet"),
  18539. weight: math.unit(190, "lb"),
  18540. name: "Side",
  18541. image: {
  18542. source: "./media/characters/biscuit/side.svg",
  18543. extra: 858 / 791,
  18544. bottom: 0.044
  18545. }
  18546. },
  18547. },
  18548. [
  18549. {
  18550. name: "Normal",
  18551. height: math.unit(6 + 2 / 12, "feet"),
  18552. default: true
  18553. },
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Poffin" },
  18558. {
  18559. front: {
  18560. height: math.unit(5 + 2 / 12, "feet"),
  18561. weight: math.unit(120, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/poffin/front.svg",
  18565. extra: 786 / 680,
  18566. bottom: 0.005
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(5 + 2 / 12, "feet"),
  18574. default: true
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Dhari" },
  18580. {
  18581. front: {
  18582. height: math.unit(6 + 3 / 12, "feet"),
  18583. weight: math.unit(519, "lb"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/dhari/front.svg",
  18587. extra: 1048 / 946,
  18588. bottom: 0.015
  18589. }
  18590. },
  18591. back: {
  18592. height: math.unit(6 + 3 / 12, "feet"),
  18593. weight: math.unit(519, "lb"),
  18594. name: "Back",
  18595. image: {
  18596. source: "./media/characters/dhari/back.svg",
  18597. extra: 1048 / 931,
  18598. bottom: 0.005
  18599. }
  18600. },
  18601. frontDressed: {
  18602. height: math.unit(6 + 3 / 12, "feet"),
  18603. weight: math.unit(519, "lb"),
  18604. name: "Front (Dressed)",
  18605. image: {
  18606. source: "./media/characters/dhari/front-dressed.svg",
  18607. extra: 1713 / 1546,
  18608. bottom: 0.02
  18609. }
  18610. },
  18611. backDressed: {
  18612. height: math.unit(6 + 3 / 12, "feet"),
  18613. weight: math.unit(519, "lb"),
  18614. name: "Back (Dressed)",
  18615. image: {
  18616. source: "./media/characters/dhari/back-dressed.svg",
  18617. extra: 1699 / 1537,
  18618. bottom: 0.01
  18619. }
  18620. },
  18621. maw: {
  18622. height: math.unit(0.95, "feet"),
  18623. name: "Maw",
  18624. image: {
  18625. source: "./media/characters/dhari/maw.svg"
  18626. }
  18627. },
  18628. wereFront: {
  18629. height: math.unit(12 + 8 / 12, "feet"),
  18630. weight: math.unit(4000, "lb"),
  18631. name: "Front (Were)",
  18632. image: {
  18633. source: "./media/characters/dhari/were-front.svg",
  18634. extra: 1065 / 969,
  18635. bottom: 0.015
  18636. }
  18637. },
  18638. wereBack: {
  18639. height: math.unit(12 + 8 / 12, "feet"),
  18640. weight: math.unit(4000, "lb"),
  18641. name: "Back (Were)",
  18642. image: {
  18643. source: "./media/characters/dhari/were-back.svg",
  18644. extra: 1065 / 969,
  18645. bottom: 0.012
  18646. }
  18647. },
  18648. wereMaw: {
  18649. height: math.unit(0.625, "meters"),
  18650. name: "Maw (Were)",
  18651. image: {
  18652. source: "./media/characters/dhari/were-maw.svg"
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(6 + 3 / 12, "feet"),
  18660. default: true
  18661. },
  18662. ]
  18663. ))
  18664. characterMakers.push(() => makeCharacter(
  18665. { name: "Rena Dyne" },
  18666. {
  18667. anthro: {
  18668. height: math.unit(5 + 7 / 12, "feet"),
  18669. weight: math.unit(175, "lb"),
  18670. name: "Anthro",
  18671. image: {
  18672. source: "./media/characters/rena-dyne/anthro.svg",
  18673. extra: 1849 / 1785,
  18674. bottom: 0.005
  18675. }
  18676. },
  18677. taur: {
  18678. height: math.unit(15 + 6 / 12, "feet"),
  18679. weight: math.unit(8000, "lb"),
  18680. name: "Taur",
  18681. image: {
  18682. source: "./media/characters/rena-dyne/taur.svg",
  18683. extra: 2315 / 2234,
  18684. bottom: 0.033
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(5 + 7 / 12, "feet"),
  18692. default: true
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Weremeep" },
  18698. {
  18699. front: {
  18700. height: math.unit(8, "feet"),
  18701. weight: math.unit(600, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/weremeep/front.svg",
  18705. extra: 967 / 862,
  18706. bottom: 0.01
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(8, "feet"),
  18714. default: true
  18715. },
  18716. {
  18717. name: "Lorg",
  18718. height: math.unit(12, "feet")
  18719. },
  18720. {
  18721. name: "Oh Lawd She Comin'",
  18722. height: math.unit(20, "feet")
  18723. },
  18724. ]
  18725. ))
  18726. characterMakers.push(() => makeCharacter(
  18727. { name: "Reza" },
  18728. {
  18729. front: {
  18730. height: math.unit(4, "feet"),
  18731. weight: math.unit(90, "lb"),
  18732. name: "Front",
  18733. image: {
  18734. source: "./media/characters/reza/front.svg",
  18735. extra: 1183 / 1111,
  18736. bottom: 0.017
  18737. }
  18738. },
  18739. back: {
  18740. height: math.unit(4, "feet"),
  18741. weight: math.unit(90, "lb"),
  18742. name: "Back",
  18743. image: {
  18744. source: "./media/characters/reza/back.svg",
  18745. extra: 1183 / 1111,
  18746. bottom: 0.01
  18747. }
  18748. },
  18749. drake: {
  18750. height: math.unit(30, "feet"),
  18751. weight: math.unit(246960, "lb"),
  18752. name: "Drake",
  18753. image: {
  18754. source: "./media/characters/reza/drake.svg",
  18755. extra: 2350/2024,
  18756. bottom: 60.7/2403
  18757. }
  18758. },
  18759. },
  18760. [
  18761. {
  18762. name: "Normal",
  18763. height: math.unit(4, "feet"),
  18764. default: true
  18765. },
  18766. ]
  18767. ))
  18768. characterMakers.push(() => makeCharacter(
  18769. { name: "Athea" },
  18770. {
  18771. side: {
  18772. height: math.unit(15, "feet"),
  18773. weight: math.unit(14, "tons"),
  18774. name: "Side",
  18775. image: {
  18776. source: "./media/characters/athea/side.svg",
  18777. extra: 960 / 540,
  18778. bottom: 0.003
  18779. }
  18780. },
  18781. sitting: {
  18782. height: math.unit(6 * 2.85, "feet"),
  18783. weight: math.unit(14, "tons"),
  18784. name: "Sitting",
  18785. image: {
  18786. source: "./media/characters/athea/sitting.svg",
  18787. extra: 621 / 581,
  18788. bottom: 0.075
  18789. }
  18790. },
  18791. maw: {
  18792. height: math.unit(7.59498031496063, "feet"),
  18793. name: "Maw",
  18794. image: {
  18795. source: "./media/characters/athea/maw.svg"
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Lap Cat",
  18802. height: math.unit(2.5, "feet")
  18803. },
  18804. {
  18805. name: "Minimacro",
  18806. height: math.unit(15, "feet"),
  18807. default: true
  18808. },
  18809. {
  18810. name: "Macro",
  18811. height: math.unit(120, "feet")
  18812. },
  18813. {
  18814. name: "Macro+",
  18815. height: math.unit(640, "feet")
  18816. },
  18817. {
  18818. name: "Colossus",
  18819. height: math.unit(2.2, "miles")
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Seroko" },
  18825. {
  18826. front: {
  18827. height: math.unit(8 + 8 / 12, "feet"),
  18828. weight: math.unit(130, "kg"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/seroko/front.svg",
  18832. extra: 1385 / 1280,
  18833. bottom: 0.025
  18834. }
  18835. },
  18836. back: {
  18837. height: math.unit(8 + 8 / 12, "feet"),
  18838. weight: math.unit(130, "kg"),
  18839. name: "Back",
  18840. image: {
  18841. source: "./media/characters/seroko/back.svg",
  18842. extra: 1369 / 1238,
  18843. bottom: 0.018
  18844. }
  18845. },
  18846. frontDressed: {
  18847. height: math.unit(8 + 8 / 12, "feet"),
  18848. weight: math.unit(130, "kg"),
  18849. name: "Front (Dressed)",
  18850. image: {
  18851. source: "./media/characters/seroko/front-dressed.svg",
  18852. extra: 1366 / 1275,
  18853. bottom: 0.03
  18854. }
  18855. },
  18856. },
  18857. [
  18858. {
  18859. name: "Normal",
  18860. height: math.unit(8 + 8 / 12, "feet"),
  18861. default: true
  18862. },
  18863. ]
  18864. ))
  18865. characterMakers.push(() => makeCharacter(
  18866. { name: "Quatzi" },
  18867. {
  18868. front: {
  18869. height: math.unit(5.5, "feet"),
  18870. weight: math.unit(160, "lb"),
  18871. name: "Front",
  18872. image: {
  18873. source: "./media/characters/quatzi/front.svg",
  18874. extra: 2346 / 2242,
  18875. bottom: 0.015
  18876. }
  18877. },
  18878. },
  18879. [
  18880. {
  18881. name: "Normal",
  18882. height: math.unit(5.5, "feet"),
  18883. default: true
  18884. },
  18885. {
  18886. name: "Big",
  18887. height: math.unit(7.7, "feet")
  18888. },
  18889. ]
  18890. ))
  18891. characterMakers.push(() => makeCharacter(
  18892. { name: "Sen" },
  18893. {
  18894. front: {
  18895. height: math.unit(5 + 11 / 12, "feet"),
  18896. weight: math.unit(180, "lb"),
  18897. name: "Front",
  18898. image: {
  18899. source: "./media/characters/sen/front.svg",
  18900. extra: 1321 / 1254,
  18901. bottom: 0.015
  18902. }
  18903. },
  18904. side: {
  18905. height: math.unit(5 + 11 / 12, "feet"),
  18906. weight: math.unit(180, "lb"),
  18907. name: "Side",
  18908. image: {
  18909. source: "./media/characters/sen/side.svg",
  18910. extra: 1321 / 1254,
  18911. bottom: 0.007
  18912. }
  18913. },
  18914. back: {
  18915. height: math.unit(5 + 11 / 12, "feet"),
  18916. weight: math.unit(180, "lb"),
  18917. name: "Back",
  18918. image: {
  18919. source: "./media/characters/sen/back.svg",
  18920. extra: 1321 / 1254
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(5 + 11 / 12, "feet"),
  18928. default: true
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Fruity" },
  18934. {
  18935. front: {
  18936. height: math.unit(166.6, "cm"),
  18937. weight: math.unit(66.6, "kg"),
  18938. name: "Front",
  18939. image: {
  18940. source: "./media/characters/fruity/front.svg",
  18941. extra: 1510 / 1386,
  18942. bottom: 0.04
  18943. }
  18944. },
  18945. back: {
  18946. height: math.unit(166.6, "cm"),
  18947. weight: math.unit(66.6, "lb"),
  18948. name: "Back",
  18949. image: {
  18950. source: "./media/characters/fruity/back.svg",
  18951. extra: 1563 / 1435,
  18952. bottom: 0.005
  18953. }
  18954. },
  18955. },
  18956. [
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(166.6, "cm"),
  18960. default: true
  18961. },
  18962. {
  18963. name: "Demonic",
  18964. height: math.unit(166.6, "feet")
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "Zost" },
  18970. {
  18971. side: {
  18972. height: math.unit(10, "feet"),
  18973. weight: math.unit(500, "lb"),
  18974. name: "Side",
  18975. image: {
  18976. source: "./media/characters/zost/side.svg",
  18977. extra: 966 / 880,
  18978. bottom: 0.075
  18979. }
  18980. },
  18981. mawFront: {
  18982. height: math.unit(1.08, "meters"),
  18983. name: "Maw (Front)",
  18984. image: {
  18985. source: "./media/characters/zost/maw-front.svg"
  18986. }
  18987. },
  18988. mawSide: {
  18989. height: math.unit(2.66, "feet"),
  18990. name: "Maw (Side)",
  18991. image: {
  18992. source: "./media/characters/zost/maw-side.svg"
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(10, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Luci" },
  19006. {
  19007. front: {
  19008. height: math.unit(5 + 4 / 12, "feet"),
  19009. weight: math.unit(120, "lb"),
  19010. name: "Front",
  19011. image: {
  19012. source: "./media/characters/luci/front.svg",
  19013. extra: 1985 / 1884,
  19014. bottom: 0.04
  19015. }
  19016. },
  19017. back: {
  19018. height: math.unit(5 + 4 / 12, "feet"),
  19019. weight: math.unit(120, "lb"),
  19020. name: "Back",
  19021. image: {
  19022. source: "./media/characters/luci/back.svg",
  19023. extra: 1892 / 1791,
  19024. bottom: 0.002
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(5 + 4 / 12, "feet"),
  19032. default: true
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "2th" },
  19038. {
  19039. front: {
  19040. height: math.unit(1500, "feet"),
  19041. weight: math.unit(3.8e6, "tons"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/2th/front.svg",
  19045. extra: 3489 / 3350,
  19046. bottom: 0.1
  19047. }
  19048. },
  19049. foot: {
  19050. height: math.unit(461, "feet"),
  19051. name: "Foot",
  19052. image: {
  19053. source: "./media/characters/2th/foot.svg"
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "\"Micro\"",
  19060. height: math.unit(15 + 7 / 12, "feet")
  19061. },
  19062. {
  19063. name: "Normal",
  19064. height: math.unit(1500, "feet"),
  19065. default: true
  19066. },
  19067. {
  19068. name: "Macro",
  19069. height: math.unit(5000, "feet")
  19070. },
  19071. {
  19072. name: "Megamacro",
  19073. height: math.unit(15, "miles")
  19074. },
  19075. {
  19076. name: "Gigamacro",
  19077. height: math.unit(4000, "miles")
  19078. },
  19079. {
  19080. name: "Galactic",
  19081. height: math.unit(50, "AU")
  19082. },
  19083. ]
  19084. ))
  19085. characterMakers.push(() => makeCharacter(
  19086. { name: "Amethyst" },
  19087. {
  19088. front: {
  19089. height: math.unit(5 + 6 / 12, "feet"),
  19090. weight: math.unit(220, "lb"),
  19091. name: "Front",
  19092. image: {
  19093. source: "./media/characters/amethyst/front.svg",
  19094. extra: 2078 / 2040,
  19095. bottom: 0.045
  19096. }
  19097. },
  19098. back: {
  19099. height: math.unit(5 + 6 / 12, "feet"),
  19100. weight: math.unit(220, "lb"),
  19101. name: "Back",
  19102. image: {
  19103. source: "./media/characters/amethyst/back.svg",
  19104. extra: 2021 / 1989,
  19105. bottom: 0.02
  19106. }
  19107. },
  19108. },
  19109. [
  19110. {
  19111. name: "Normal",
  19112. height: math.unit(5 + 6 / 12, "feet"),
  19113. default: true
  19114. },
  19115. ]
  19116. ))
  19117. characterMakers.push(() => makeCharacter(
  19118. { name: "Yumi Akiyama" },
  19119. {
  19120. front: {
  19121. height: math.unit(4 + 11 / 12, "feet"),
  19122. weight: math.unit(120, "lb"),
  19123. name: "Front",
  19124. image: {
  19125. source: "./media/characters/yumi-akiyama/front.svg",
  19126. extra: 1327 / 1235,
  19127. bottom: 0.02
  19128. }
  19129. },
  19130. back: {
  19131. height: math.unit(4 + 11 / 12, "feet"),
  19132. weight: math.unit(120, "lb"),
  19133. name: "Back",
  19134. image: {
  19135. source: "./media/characters/yumi-akiyama/back.svg",
  19136. extra: 1287 / 1245,
  19137. bottom: 0.002
  19138. }
  19139. },
  19140. },
  19141. [
  19142. {
  19143. name: "Galactic",
  19144. height: math.unit(50, "galaxies"),
  19145. default: true
  19146. },
  19147. {
  19148. name: "Universal",
  19149. height: math.unit(100, "universes")
  19150. },
  19151. ]
  19152. ))
  19153. characterMakers.push(() => makeCharacter(
  19154. { name: "Rifter Yrmori" },
  19155. {
  19156. front: {
  19157. height: math.unit(8, "feet"),
  19158. weight: math.unit(500, "lb"),
  19159. name: "Front",
  19160. image: {
  19161. source: "./media/characters/rifter-yrmori/front.svg",
  19162. extra: 1180 / 1125,
  19163. bottom: 0.02
  19164. }
  19165. },
  19166. back: {
  19167. height: math.unit(8, "feet"),
  19168. weight: math.unit(500, "lb"),
  19169. name: "Back",
  19170. image: {
  19171. source: "./media/characters/rifter-yrmori/back.svg",
  19172. extra: 1190 / 1145,
  19173. bottom: 0.001
  19174. }
  19175. },
  19176. wings: {
  19177. height: math.unit(7.75, "feet"),
  19178. weight: math.unit(500, "lb"),
  19179. name: "Wings",
  19180. image: {
  19181. source: "./media/characters/rifter-yrmori/wings.svg",
  19182. extra: 1357 / 1285
  19183. }
  19184. },
  19185. maw: {
  19186. height: math.unit(0.8, "feet"),
  19187. name: "Maw",
  19188. image: {
  19189. source: "./media/characters/rifter-yrmori/maw.svg"
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(8, "feet"),
  19197. default: true
  19198. },
  19199. {
  19200. name: "Macro",
  19201. height: math.unit(42, "meters")
  19202. },
  19203. ]
  19204. ))
  19205. characterMakers.push(() => makeCharacter(
  19206. { name: "Tahajin" },
  19207. {
  19208. were: {
  19209. height: math.unit(25 + 6 / 12, "feet"),
  19210. weight: math.unit(10000, "lb"),
  19211. name: "Were",
  19212. image: {
  19213. source: "./media/characters/tahajin/were.svg",
  19214. extra: 801 / 770,
  19215. bottom: 0.042
  19216. }
  19217. },
  19218. aquatic: {
  19219. height: math.unit(6 + 4 / 12, "feet"),
  19220. weight: math.unit(160, "lb"),
  19221. name: "Aquatic",
  19222. image: {
  19223. source: "./media/characters/tahajin/aquatic.svg",
  19224. extra: 572 / 542,
  19225. bottom: 0.04
  19226. }
  19227. },
  19228. chow: {
  19229. height: math.unit(8 + 11 / 12, "feet"),
  19230. weight: math.unit(450, "lb"),
  19231. name: "Chow",
  19232. image: {
  19233. source: "./media/characters/tahajin/chow.svg",
  19234. extra: 660 / 640,
  19235. bottom: 0.015
  19236. }
  19237. },
  19238. demiNaga: {
  19239. height: math.unit(6 + 8 / 12, "feet"),
  19240. weight: math.unit(300, "lb"),
  19241. name: "Demi Naga",
  19242. image: {
  19243. source: "./media/characters/tahajin/demi-naga.svg",
  19244. extra: 643 / 615,
  19245. bottom: 0.1
  19246. }
  19247. },
  19248. data: {
  19249. height: math.unit(5, "inches"),
  19250. weight: math.unit(0.1, "lb"),
  19251. name: "Data",
  19252. image: {
  19253. source: "./media/characters/tahajin/data.svg"
  19254. }
  19255. },
  19256. fluu: {
  19257. height: math.unit(5 + 7 / 12, "feet"),
  19258. weight: math.unit(140, "lb"),
  19259. name: "Fluu",
  19260. image: {
  19261. source: "./media/characters/tahajin/fluu.svg",
  19262. extra: 628 / 592,
  19263. bottom: 0.02
  19264. }
  19265. },
  19266. starWarrior: {
  19267. height: math.unit(4 + 5 / 12, "feet"),
  19268. weight: math.unit(50, "lb"),
  19269. name: "Star Warrior",
  19270. image: {
  19271. source: "./media/characters/tahajin/star-warrior.svg"
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(25 + 6 / 12, "feet"),
  19279. default: true
  19280. },
  19281. ]
  19282. ))
  19283. characterMakers.push(() => makeCharacter(
  19284. { name: "Gabira" },
  19285. {
  19286. front: {
  19287. height: math.unit(8, "feet"),
  19288. weight: math.unit(350, "lb"),
  19289. name: "Front",
  19290. image: {
  19291. source: "./media/characters/gabira/front.svg",
  19292. extra: 608 / 580,
  19293. bottom: 0.03
  19294. }
  19295. },
  19296. back: {
  19297. height: math.unit(8, "feet"),
  19298. weight: math.unit(350, "lb"),
  19299. name: "Back",
  19300. image: {
  19301. source: "./media/characters/gabira/back.svg",
  19302. extra: 608 / 580,
  19303. bottom: 0.03
  19304. }
  19305. },
  19306. },
  19307. [
  19308. {
  19309. name: "Normal",
  19310. height: math.unit(8, "feet"),
  19311. default: true
  19312. },
  19313. ]
  19314. ))
  19315. characterMakers.push(() => makeCharacter(
  19316. { name: "Sasha Katraine" },
  19317. {
  19318. front: {
  19319. height: math.unit(5 + 3 / 12, "feet"),
  19320. weight: math.unit(137, "lb"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/sasha-katraine/front.svg",
  19324. bottom: 0.045
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Micro",
  19331. height: math.unit(5, "inches")
  19332. },
  19333. {
  19334. name: "Normal",
  19335. height: math.unit(5 + 3 / 12, "feet"),
  19336. default: true
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Der" },
  19342. {
  19343. side: {
  19344. height: math.unit(4, "inches"),
  19345. weight: math.unit(200, "grams"),
  19346. name: "Side",
  19347. image: {
  19348. source: "./media/characters/der/side.svg",
  19349. extra: 719 / 400,
  19350. bottom: 30.6 / 749.9187
  19351. }
  19352. },
  19353. },
  19354. [
  19355. {
  19356. name: "Micro",
  19357. height: math.unit(4, "inches"),
  19358. default: true
  19359. },
  19360. ]
  19361. ))
  19362. characterMakers.push(() => makeCharacter(
  19363. { name: "Fixerdragon" },
  19364. {
  19365. side: {
  19366. height: math.unit(30, "meters"),
  19367. weight: math.unit(700, "tonnes"),
  19368. name: "Side",
  19369. image: {
  19370. source: "./media/characters/fixerdragon/side.svg",
  19371. extra: (1293.0514 - 116.03) / 1106.86,
  19372. bottom: 116.03 / 1293.0514
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Planck",
  19379. height: math.unit(1.6e-35, "meters")
  19380. },
  19381. {
  19382. name: "Micro",
  19383. height: math.unit(0.4, "meters")
  19384. },
  19385. {
  19386. name: "Normal",
  19387. height: math.unit(30, "meters"),
  19388. default: true
  19389. },
  19390. {
  19391. name: "Megamacro",
  19392. height: math.unit(1.2, "megameters")
  19393. },
  19394. {
  19395. name: "Teramacro",
  19396. height: math.unit(130, "terameters")
  19397. },
  19398. {
  19399. name: "Yottamacro",
  19400. height: math.unit(6200, "yottameters")
  19401. },
  19402. ]
  19403. ));
  19404. characterMakers.push(() => makeCharacter(
  19405. { name: "Kite" },
  19406. {
  19407. front: {
  19408. height: math.unit(8, "feet"),
  19409. weight: math.unit(250, "lb"),
  19410. name: "Front",
  19411. image: {
  19412. source: "./media/characters/kite/front.svg",
  19413. extra: 2796 / 2659,
  19414. bottom: 0.002
  19415. }
  19416. },
  19417. },
  19418. [
  19419. {
  19420. name: "Normal",
  19421. height: math.unit(8, "feet"),
  19422. default: true
  19423. },
  19424. {
  19425. name: "Macro",
  19426. height: math.unit(360, "feet")
  19427. },
  19428. {
  19429. name: "Megamacro",
  19430. height: math.unit(1500, "feet")
  19431. },
  19432. ]
  19433. ))
  19434. characterMakers.push(() => makeCharacter(
  19435. { name: "Poojawa Vynar" },
  19436. {
  19437. front: {
  19438. height: math.unit(5 + 10 / 12, "feet"),
  19439. weight: math.unit(150, "lb"),
  19440. name: "Front",
  19441. image: {
  19442. source: "./media/characters/poojawa-vynar/front.svg",
  19443. extra: (1506.1547 - 55) / 1356.6,
  19444. bottom: 55 / 1506.1547
  19445. }
  19446. },
  19447. frontTailless: {
  19448. height: math.unit(5 + 10 / 12, "feet"),
  19449. weight: math.unit(150, "lb"),
  19450. name: "Front (Tailless)",
  19451. image: {
  19452. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  19453. extra: (1506.1547 - 55) / 1356.6,
  19454. bottom: 55 / 1506.1547
  19455. }
  19456. },
  19457. },
  19458. [
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(5 + 10 / 12, "feet"),
  19462. default: true
  19463. },
  19464. ]
  19465. ))
  19466. characterMakers.push(() => makeCharacter(
  19467. { name: "Violette" },
  19468. {
  19469. front: {
  19470. height: math.unit(293, "meters"),
  19471. weight: math.unit(70400, "tons"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/violette/front.svg",
  19475. extra: 1227 / 1180,
  19476. bottom: 0.005
  19477. }
  19478. },
  19479. back: {
  19480. height: math.unit(293, "meters"),
  19481. weight: math.unit(70400, "tons"),
  19482. name: "Back",
  19483. image: {
  19484. source: "./media/characters/violette/back.svg",
  19485. extra: 1227 / 1180,
  19486. bottom: 0.005
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Macro",
  19493. height: math.unit(293, "meters"),
  19494. default: true
  19495. },
  19496. ]
  19497. ))
  19498. characterMakers.push(() => makeCharacter(
  19499. { name: "Alessandra" },
  19500. {
  19501. front: {
  19502. height: math.unit(1050, "feet"),
  19503. weight: math.unit(200000, "tons"),
  19504. name: "Front",
  19505. image: {
  19506. source: "./media/characters/alessandra/front.svg",
  19507. extra: 960 / 912,
  19508. bottom: 0.06
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Macro",
  19515. height: math.unit(1050, "feet")
  19516. },
  19517. {
  19518. name: "Macro+",
  19519. height: math.unit(900, "meters"),
  19520. default: true
  19521. },
  19522. ]
  19523. ))
  19524. characterMakers.push(() => makeCharacter(
  19525. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  19526. {
  19527. front: {
  19528. height: math.unit(5, "feet"),
  19529. weight: math.unit(187, "lb"),
  19530. name: "Front",
  19531. image: {
  19532. source: "./media/characters/person/front.svg",
  19533. extra: 3087 / 2945,
  19534. bottom: 91 / 3181
  19535. }
  19536. },
  19537. },
  19538. [
  19539. {
  19540. name: "Micro",
  19541. height: math.unit(3, "inches")
  19542. },
  19543. {
  19544. name: "Normal",
  19545. height: math.unit(5, "feet"),
  19546. default: true
  19547. },
  19548. {
  19549. name: "Macro",
  19550. height: math.unit(90, "feet")
  19551. },
  19552. {
  19553. name: "Max Size",
  19554. height: math.unit(280, "feet")
  19555. },
  19556. ]
  19557. ))
  19558. characterMakers.push(() => makeCharacter(
  19559. { name: "Ty" },
  19560. {
  19561. front: {
  19562. height: math.unit(4.5, "meters"),
  19563. weight: math.unit(3200, "lb"),
  19564. name: "Front",
  19565. image: {
  19566. source: "./media/characters/ty/front.svg",
  19567. extra: 1038 / 960,
  19568. bottom: 31.156 / 1068
  19569. }
  19570. },
  19571. back: {
  19572. height: math.unit(4.5, "meters"),
  19573. weight: math.unit(3200, "lb"),
  19574. name: "Back",
  19575. image: {
  19576. source: "./media/characters/ty/back.svg",
  19577. extra: 1044 / 966,
  19578. bottom: 7.48 / 1049
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Normal",
  19585. height: math.unit(4.5, "meters"),
  19586. default: true
  19587. },
  19588. ]
  19589. ))
  19590. characterMakers.push(() => makeCharacter(
  19591. { name: "Rocky" },
  19592. {
  19593. front: {
  19594. height: math.unit(5 + 4 / 12, "feet"),
  19595. weight: math.unit(115, "lb"),
  19596. name: "Front",
  19597. image: {
  19598. source: "./media/characters/rocky/front.svg",
  19599. extra: 1012 / 975,
  19600. bottom: 54 / 1066
  19601. }
  19602. },
  19603. },
  19604. [
  19605. {
  19606. name: "Normal",
  19607. height: math.unit(5 + 4 / 12, "feet"),
  19608. default: true
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Ruin" },
  19614. {
  19615. upright: {
  19616. height: math.unit(6, "meters"),
  19617. weight: math.unit(4000, "kg"),
  19618. name: "Upright",
  19619. image: {
  19620. source: "./media/characters/ruin/upright.svg",
  19621. extra: 668 / 661,
  19622. bottom: 42 / 799.8396
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(6, "meters"),
  19630. default: true
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Robin" },
  19636. {
  19637. front: {
  19638. height: math.unit(5, "feet"),
  19639. weight: math.unit(106, "lb"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/robin/front.svg",
  19643. extra: 862 / 799,
  19644. bottom: 42.4 / 914.8856
  19645. }
  19646. },
  19647. },
  19648. [
  19649. {
  19650. name: "Normal",
  19651. height: math.unit(5, "feet"),
  19652. default: true
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Saian" },
  19658. {
  19659. side: {
  19660. height: math.unit(3, "feet"),
  19661. weight: math.unit(225, "lb"),
  19662. name: "Side",
  19663. image: {
  19664. source: "./media/characters/saian/side.svg",
  19665. extra: 566 / 356,
  19666. bottom: 79.7 / 643
  19667. }
  19668. },
  19669. maw: {
  19670. height: math.unit(2.85, "feet"),
  19671. name: "Maw",
  19672. image: {
  19673. source: "./media/characters/saian/maw.svg"
  19674. }
  19675. },
  19676. },
  19677. [
  19678. {
  19679. name: "Normal",
  19680. height: math.unit(3, "feet"),
  19681. default: true
  19682. },
  19683. ]
  19684. ))
  19685. characterMakers.push(() => makeCharacter(
  19686. { name: "Equus Silvermane" },
  19687. {
  19688. side: {
  19689. height: math.unit(8, "feet"),
  19690. weight: math.unit(300, "lb"),
  19691. name: "Side",
  19692. image: {
  19693. source: "./media/characters/equus-silvermane/side.svg",
  19694. extra: 2176 / 2050,
  19695. bottom: 65.7 / 2245
  19696. }
  19697. },
  19698. front: {
  19699. height: math.unit(8, "feet"),
  19700. weight: math.unit(300, "lb"),
  19701. name: "Front",
  19702. image: {
  19703. source: "./media/characters/equus-silvermane/front.svg",
  19704. extra: 4633 / 4400,
  19705. bottom: 71.3 / 4706.915
  19706. }
  19707. },
  19708. sideStepping: {
  19709. height: math.unit(8, "feet"),
  19710. weight: math.unit(300, "lb"),
  19711. name: "Side (Stepping)",
  19712. image: {
  19713. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19714. extra: 1968 / 1860,
  19715. bottom: 16.4 / 1989
  19716. }
  19717. },
  19718. },
  19719. [
  19720. {
  19721. name: "Normal",
  19722. height: math.unit(8, "feet")
  19723. },
  19724. {
  19725. name: "Minimacro",
  19726. height: math.unit(75, "feet"),
  19727. default: true
  19728. },
  19729. {
  19730. name: "Macro",
  19731. height: math.unit(150, "feet")
  19732. },
  19733. {
  19734. name: "Macro+",
  19735. height: math.unit(1000, "feet")
  19736. },
  19737. {
  19738. name: "Megamacro",
  19739. height: math.unit(1, "mile")
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Windar" },
  19745. {
  19746. side: {
  19747. height: math.unit(20, "feet"),
  19748. weight: math.unit(30000, "kg"),
  19749. name: "Side",
  19750. image: {
  19751. source: "./media/characters/windar/side.svg",
  19752. extra: 1491 / 1248,
  19753. bottom: 82.56 / 1568
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Normal",
  19760. height: math.unit(20, "feet"),
  19761. default: true
  19762. },
  19763. ]
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Melody" },
  19767. {
  19768. side: {
  19769. height: math.unit(15.66, "feet"),
  19770. weight: math.unit(150, "lb"),
  19771. name: "Side",
  19772. image: {
  19773. source: "./media/characters/melody/side.svg",
  19774. extra: 1097 / 944,
  19775. bottom: 11.8 / 1109
  19776. }
  19777. },
  19778. sideOutfit: {
  19779. height: math.unit(15.66, "feet"),
  19780. weight: math.unit(150, "lb"),
  19781. name: "Side (Outfit)",
  19782. image: {
  19783. source: "./media/characters/melody/side-outfit.svg",
  19784. extra: 1097 / 944,
  19785. bottom: 11.8 / 1109
  19786. }
  19787. },
  19788. },
  19789. [
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(15.66, "feet"),
  19793. default: true
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Windera" },
  19799. {
  19800. front: {
  19801. height: math.unit(8, "feet"),
  19802. weight: math.unit(325, "lb"),
  19803. name: "Front",
  19804. image: {
  19805. source: "./media/characters/windera/front.svg",
  19806. extra: 3180 / 2845,
  19807. bottom: 178 / 3365
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Normal",
  19814. height: math.unit(8, "feet"),
  19815. default: true
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Sonear" },
  19821. {
  19822. front: {
  19823. height: math.unit(28.75, "feet"),
  19824. weight: math.unit(2000, "kg"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/sonear/front.svg",
  19828. extra: 1041.1 / 964.9,
  19829. bottom: 53.7 / 1096.6
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(28.75, "feet"),
  19837. default: true
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Kanara" },
  19843. {
  19844. side: {
  19845. height: math.unit(25.5, "feet"),
  19846. weight: math.unit(23000, "kg"),
  19847. name: "Side",
  19848. image: {
  19849. source: "./media/characters/kanara/side.svg"
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(25.5, "feet"),
  19857. default: true
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Ereus" },
  19863. {
  19864. side: {
  19865. height: math.unit(10, "feet"),
  19866. weight: math.unit(1000, "kg"),
  19867. name: "Side",
  19868. image: {
  19869. source: "./media/characters/ereus/side.svg",
  19870. extra: 1157 / 959,
  19871. bottom: 153 / 1312.5
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(10, "feet"),
  19879. default: true
  19880. },
  19881. ]
  19882. ))
  19883. characterMakers.push(() => makeCharacter(
  19884. { name: "E-ter" },
  19885. {
  19886. side: {
  19887. height: math.unit(4.5, "feet"),
  19888. weight: math.unit(500, "lb"),
  19889. name: "Side",
  19890. image: {
  19891. source: "./media/characters/e-ter/side.svg",
  19892. extra: 1550 / 1248,
  19893. bottom: 146 / 1694
  19894. }
  19895. },
  19896. },
  19897. [
  19898. {
  19899. name: "Normal",
  19900. height: math.unit(4.5, "feet"),
  19901. default: true
  19902. },
  19903. ]
  19904. ))
  19905. characterMakers.push(() => makeCharacter(
  19906. { name: "Yamie" },
  19907. {
  19908. side: {
  19909. height: math.unit(9.7, "feet"),
  19910. weight: math.unit(4000, "kg"),
  19911. name: "Side",
  19912. image: {
  19913. source: "./media/characters/yamie/side.svg"
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(9.7, "feet"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Anders" },
  19927. {
  19928. front: {
  19929. height: math.unit(50, "feet"),
  19930. weight: math.unit(50000, "kg"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/anders/front.svg",
  19934. extra: 570 / 539,
  19935. bottom: 14.7 / 586.7
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Large",
  19942. height: math.unit(50, "feet")
  19943. },
  19944. {
  19945. name: "Macro",
  19946. height: math.unit(2000, "feet"),
  19947. default: true
  19948. },
  19949. {
  19950. name: "Megamacro",
  19951. height: math.unit(12, "miles")
  19952. },
  19953. ]
  19954. ))
  19955. characterMakers.push(() => makeCharacter(
  19956. { name: "Reban" },
  19957. {
  19958. front: {
  19959. height: math.unit(7 + 2 / 12, "feet"),
  19960. weight: math.unit(300, "lb"),
  19961. name: "Front",
  19962. image: {
  19963. source: "./media/characters/reban/front.svg",
  19964. extra: 516 / 487,
  19965. bottom: 42.82 / 558.356
  19966. }
  19967. },
  19968. dick: {
  19969. height: math.unit(7 / 5, "feet"),
  19970. name: "Dick",
  19971. image: {
  19972. source: "./media/characters/reban/dick.svg"
  19973. }
  19974. },
  19975. },
  19976. [
  19977. {
  19978. name: "Natural Height",
  19979. height: math.unit(7 + 2 / 12, "feet")
  19980. },
  19981. {
  19982. name: "Macro",
  19983. height: math.unit(500, "feet"),
  19984. default: true
  19985. },
  19986. {
  19987. name: "Canon Height",
  19988. height: math.unit(50, "AU")
  19989. },
  19990. ]
  19991. ))
  19992. characterMakers.push(() => makeCharacter(
  19993. { name: "Terrance Keayes" },
  19994. {
  19995. front: {
  19996. height: math.unit(6, "feet"),
  19997. weight: math.unit(150, "lb"),
  19998. name: "Front",
  19999. image: {
  20000. source: "./media/characters/terrance-keayes/front.svg",
  20001. extra: 1.005,
  20002. bottom: 151 / 1615
  20003. }
  20004. },
  20005. side: {
  20006. height: math.unit(6, "feet"),
  20007. weight: math.unit(150, "lb"),
  20008. name: "Side",
  20009. image: {
  20010. source: "./media/characters/terrance-keayes/side.svg",
  20011. extra: 1.005,
  20012. bottom: 129.4 / 1544
  20013. }
  20014. },
  20015. back: {
  20016. height: math.unit(6, "feet"),
  20017. weight: math.unit(150, "lb"),
  20018. name: "Back",
  20019. image: {
  20020. source: "./media/characters/terrance-keayes/back.svg",
  20021. extra: 1.005,
  20022. bottom: 58.4 / 1557.3
  20023. }
  20024. },
  20025. dick: {
  20026. height: math.unit(6 * 0.208, "feet"),
  20027. name: "Dick",
  20028. image: {
  20029. source: "./media/characters/terrance-keayes/dick.svg"
  20030. }
  20031. },
  20032. },
  20033. [
  20034. {
  20035. name: "Canon Height",
  20036. height: math.unit(35, "miles"),
  20037. default: true
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Ofelia" },
  20043. {
  20044. front: {
  20045. height: math.unit(6, "feet"),
  20046. weight: math.unit(150, "lb"),
  20047. name: "Front",
  20048. image: {
  20049. source: "./media/characters/ofelia/front.svg",
  20050. extra: 546 / 541,
  20051. bottom: 39 / 583
  20052. }
  20053. },
  20054. back: {
  20055. height: math.unit(6, "feet"),
  20056. weight: math.unit(150, "lb"),
  20057. name: "Back",
  20058. image: {
  20059. source: "./media/characters/ofelia/back.svg",
  20060. extra: 564 / 559.5,
  20061. bottom: 8.69 / 573.02
  20062. }
  20063. },
  20064. maw: {
  20065. height: math.unit(1, "feet"),
  20066. name: "Maw",
  20067. image: {
  20068. source: "./media/characters/ofelia/maw.svg"
  20069. }
  20070. },
  20071. foot: {
  20072. height: math.unit(1.949, "feet"),
  20073. name: "Foot",
  20074. image: {
  20075. source: "./media/characters/ofelia/foot.svg"
  20076. }
  20077. },
  20078. },
  20079. [
  20080. {
  20081. name: "Canon Height",
  20082. height: math.unit(2000, "miles"),
  20083. default: true
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Samuel" },
  20089. {
  20090. front: {
  20091. height: math.unit(6, "feet"),
  20092. weight: math.unit(150, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/samuel/front.svg",
  20096. extra: 265 / 258,
  20097. bottom: 2 / 266.1566
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Macro",
  20104. height: math.unit(100, "feet"),
  20105. default: true
  20106. },
  20107. {
  20108. name: "Full Size",
  20109. height: math.unit(1000, "miles")
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Beishir Kiel" },
  20115. {
  20116. front: {
  20117. height: math.unit(6, "feet"),
  20118. weight: math.unit(300, "lb"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/beishir-kiel/front.svg",
  20122. extra: 569 / 547,
  20123. bottom: 41.9 / 609
  20124. }
  20125. },
  20126. maw: {
  20127. height: math.unit(6 * 0.202, "feet"),
  20128. name: "Maw",
  20129. image: {
  20130. source: "./media/characters/beishir-kiel/maw.svg"
  20131. }
  20132. },
  20133. },
  20134. [
  20135. {
  20136. name: "Macro",
  20137. height: math.unit(300, "feet"),
  20138. default: true
  20139. },
  20140. ]
  20141. ))
  20142. characterMakers.push(() => makeCharacter(
  20143. { name: "Logan Grey" },
  20144. {
  20145. front: {
  20146. height: math.unit(5 + 8 / 12, "feet"),
  20147. weight: math.unit(120, "lb"),
  20148. name: "Front",
  20149. image: {
  20150. source: "./media/characters/logan-grey/front.svg",
  20151. extra: 2539 / 2393,
  20152. bottom: 97.6 / 2636.37
  20153. }
  20154. },
  20155. frontAlt: {
  20156. height: math.unit(5 + 8 / 12, "feet"),
  20157. weight: math.unit(120, "lb"),
  20158. name: "Front (Alt)",
  20159. image: {
  20160. source: "./media/characters/logan-grey/front-alt.svg",
  20161. extra: 958 / 893,
  20162. bottom: 15 / 970.768
  20163. }
  20164. },
  20165. back: {
  20166. height: math.unit(5 + 8 / 12, "feet"),
  20167. weight: math.unit(120, "lb"),
  20168. name: "Back",
  20169. image: {
  20170. source: "./media/characters/logan-grey/back.svg",
  20171. extra: 958 / 893,
  20172. bottom: 2.1881 / 970.9788
  20173. }
  20174. },
  20175. dick: {
  20176. height: math.unit(1.437, "feet"),
  20177. name: "Dick",
  20178. image: {
  20179. source: "./media/characters/logan-grey/dick.svg"
  20180. }
  20181. },
  20182. },
  20183. [
  20184. {
  20185. name: "Normal",
  20186. height: math.unit(5 + 8 / 12, "feet")
  20187. },
  20188. {
  20189. name: "The 500 Foot Femboy",
  20190. height: math.unit(500, "feet"),
  20191. default: true
  20192. },
  20193. {
  20194. name: "Megmacro",
  20195. height: math.unit(20, "miles")
  20196. },
  20197. ]
  20198. ))
  20199. characterMakers.push(() => makeCharacter(
  20200. { name: "Draganta" },
  20201. {
  20202. front: {
  20203. height: math.unit(8 + 2 / 12, "feet"),
  20204. weight: math.unit(275, "lb"),
  20205. name: "Front",
  20206. image: {
  20207. source: "./media/characters/draganta/front.svg",
  20208. extra: 1177 / 1135,
  20209. bottom: 33.46 / 1212.1
  20210. }
  20211. },
  20212. },
  20213. [
  20214. {
  20215. name: "Normal",
  20216. height: math.unit(8 + 6 / 12, "feet"),
  20217. default: true
  20218. },
  20219. {
  20220. name: "Macro",
  20221. height: math.unit(150, "feet")
  20222. },
  20223. {
  20224. name: "Megamacro",
  20225. height: math.unit(1000, "miles")
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(1.72, "m"),
  20234. weight: math.unit(80, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/voski/front.svg",
  20238. extra: 2076.22 / 2022.4,
  20239. bottom: 102.7 / 2177.3866
  20240. }
  20241. },
  20242. frontNsfw: {
  20243. height: math.unit(1.72, "m"),
  20244. weight: math.unit(80, "lb"),
  20245. name: "Front (NSFW)",
  20246. image: {
  20247. source: "./media/characters/voski/front-nsfw.svg",
  20248. extra: 2076.22 / 2022.4,
  20249. bottom: 102.7 / 2177.3866
  20250. }
  20251. },
  20252. back: {
  20253. height: math.unit(1.72, "m"),
  20254. weight: math.unit(80, "lb"),
  20255. name: "Back",
  20256. image: {
  20257. source: "./media/characters/voski/back.svg",
  20258. extra: 2104 / 2051,
  20259. bottom: 10.45 / 2113.63
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(1.72, "m")
  20267. },
  20268. {
  20269. name: "Macro",
  20270. height: math.unit(55, "m"),
  20271. default: true
  20272. },
  20273. {
  20274. name: "Macro+",
  20275. height: math.unit(300, "m")
  20276. },
  20277. {
  20278. name: "Macro++",
  20279. height: math.unit(700, "m")
  20280. },
  20281. {
  20282. name: "Macro+++",
  20283. height: math.unit(4500, "m")
  20284. },
  20285. {
  20286. name: "Macro++++",
  20287. height: math.unit(45, "km")
  20288. },
  20289. {
  20290. name: "Macro+++++",
  20291. height: math.unit(1220, "km")
  20292. },
  20293. ]
  20294. ))
  20295. characterMakers.push(() => makeCharacter(
  20296. { name: "Icowom Lee" },
  20297. {
  20298. front: {
  20299. height: math.unit(2.3, "m"),
  20300. weight: math.unit(304, "kg"),
  20301. name: "Front",
  20302. image: {
  20303. source: "./media/characters/icowom-lee/front.svg",
  20304. extra: 3076 / 2933,
  20305. bottom: 51.4 / 3125.1889
  20306. }
  20307. },
  20308. },
  20309. [
  20310. {
  20311. name: "Normal",
  20312. height: math.unit(2.3, "meters"),
  20313. default: true
  20314. },
  20315. {
  20316. name: "Macro",
  20317. height: math.unit(94, "meters"),
  20318. default: true
  20319. },
  20320. ]
  20321. ))
  20322. characterMakers.push(() => makeCharacter(
  20323. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  20324. {
  20325. front: {
  20326. height: math.unit(22, "meters"),
  20327. weight: math.unit(21000, "kg"),
  20328. name: "Front",
  20329. image: {
  20330. source: "./media/characters/shock-diamond/front.svg",
  20331. extra: 2204 / 2053,
  20332. bottom: 65 / 2239.47
  20333. }
  20334. },
  20335. frontNude: {
  20336. height: math.unit(22, "meters"),
  20337. weight: math.unit(21000, "kg"),
  20338. name: "Front (Nude)",
  20339. image: {
  20340. source: "./media/characters/shock-diamond/front-nude.svg",
  20341. extra: 2514 / 2285,
  20342. bottom: 13 / 2527.56
  20343. }
  20344. },
  20345. },
  20346. [
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(3, "meters")
  20350. },
  20351. {
  20352. name: "Macro",
  20353. height: math.unit(22, "meters"),
  20354. default: true
  20355. },
  20356. ]
  20357. ))
  20358. characterMakers.push(() => makeCharacter(
  20359. { name: "Rory" },
  20360. {
  20361. front: {
  20362. height: math.unit(5 + 4 / 12, "feet"),
  20363. weight: math.unit(120, "lb"),
  20364. name: "Front",
  20365. image: {
  20366. source: "./media/characters/rory/front.svg",
  20367. extra: 589 / 556,
  20368. bottom: 45.7 / 635.76
  20369. }
  20370. },
  20371. frontNude: {
  20372. height: math.unit(5 + 4 / 12, "feet"),
  20373. weight: math.unit(120, "lb"),
  20374. name: "Front (Nude)",
  20375. image: {
  20376. source: "./media/characters/rory/front-nude.svg",
  20377. extra: 589 / 556,
  20378. bottom: 45.7 / 635.76
  20379. }
  20380. },
  20381. side: {
  20382. height: math.unit(5 + 4 / 12, "feet"),
  20383. weight: math.unit(120, "lb"),
  20384. name: "Side",
  20385. image: {
  20386. source: "./media/characters/rory/side.svg",
  20387. extra: 597 / 564,
  20388. bottom: 55 / 653
  20389. }
  20390. },
  20391. back: {
  20392. height: math.unit(5 + 4 / 12, "feet"),
  20393. weight: math.unit(120, "lb"),
  20394. name: "Back",
  20395. image: {
  20396. source: "./media/characters/rory/back.svg",
  20397. extra: 620 / 585,
  20398. bottom: 8.86 / 630.43
  20399. }
  20400. },
  20401. dick: {
  20402. height: math.unit(0.86, "feet"),
  20403. name: "Dick",
  20404. image: {
  20405. source: "./media/characters/rory/dick.svg"
  20406. }
  20407. },
  20408. },
  20409. [
  20410. {
  20411. name: "Normal",
  20412. height: math.unit(5 + 4 / 12, "feet"),
  20413. default: true
  20414. },
  20415. {
  20416. name: "Macro",
  20417. height: math.unit(100, "feet")
  20418. },
  20419. {
  20420. name: "Macro+",
  20421. height: math.unit(140, "feet")
  20422. },
  20423. {
  20424. name: "Macro++",
  20425. height: math.unit(300, "feet")
  20426. },
  20427. ]
  20428. ))
  20429. characterMakers.push(() => makeCharacter(
  20430. { name: "Sprisk" },
  20431. {
  20432. front: {
  20433. height: math.unit(5 + 9 / 12, "feet"),
  20434. weight: math.unit(190, "lb"),
  20435. name: "Front",
  20436. image: {
  20437. source: "./media/characters/sprisk/front.svg",
  20438. extra: 1225 / 1180,
  20439. bottom: 42.7 / 1266.4
  20440. }
  20441. },
  20442. frontNsfw: {
  20443. height: math.unit(5 + 9 / 12, "feet"),
  20444. weight: math.unit(190, "lb"),
  20445. name: "Front (NSFW)",
  20446. image: {
  20447. source: "./media/characters/sprisk/front-nsfw.svg",
  20448. extra: 1225 / 1180,
  20449. bottom: 42.7 / 1266.4
  20450. }
  20451. },
  20452. back: {
  20453. height: math.unit(5 + 9 / 12, "feet"),
  20454. weight: math.unit(190, "lb"),
  20455. name: "Back",
  20456. image: {
  20457. source: "./media/characters/sprisk/back.svg",
  20458. extra: 1247 / 1200,
  20459. bottom: 5.6 / 1253.04
  20460. }
  20461. },
  20462. },
  20463. [
  20464. {
  20465. name: "Tiny",
  20466. height: math.unit(2, "inches")
  20467. },
  20468. {
  20469. name: "Normal",
  20470. height: math.unit(5 + 9 / 12, "feet"),
  20471. default: true
  20472. },
  20473. {
  20474. name: "Mini Macro",
  20475. height: math.unit(18, "feet")
  20476. },
  20477. {
  20478. name: "Macro",
  20479. height: math.unit(100, "feet")
  20480. },
  20481. {
  20482. name: "MACRO",
  20483. height: math.unit(50, "miles")
  20484. },
  20485. {
  20486. name: "M A C R O",
  20487. height: math.unit(300, "miles")
  20488. },
  20489. ]
  20490. ))
  20491. characterMakers.push(() => makeCharacter(
  20492. { name: "Bunsen" },
  20493. {
  20494. side: {
  20495. height: math.unit(15.6, "meters"),
  20496. weight: math.unit(700000, "kg"),
  20497. name: "Side",
  20498. image: {
  20499. source: "./media/characters/bunsen/side.svg",
  20500. extra: 1644 / 358
  20501. }
  20502. },
  20503. foot: {
  20504. height: math.unit(1.611 * 1644 / 358, "meter"),
  20505. name: "Foot",
  20506. image: {
  20507. source: "./media/characters/bunsen/foot.svg"
  20508. }
  20509. },
  20510. },
  20511. [
  20512. {
  20513. name: "Small",
  20514. height: math.unit(10, "feet")
  20515. },
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(15.6, "meters"),
  20519. default: true
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Sesh" },
  20525. {
  20526. front: {
  20527. height: math.unit(4 + 11 / 12, "feet"),
  20528. weight: math.unit(140, "lb"),
  20529. name: "Front",
  20530. image: {
  20531. source: "./media/characters/sesh/front.svg",
  20532. extra: 3420 / 3231,
  20533. bottom: 72 / 3949.5
  20534. }
  20535. },
  20536. },
  20537. [
  20538. {
  20539. name: "Normal",
  20540. height: math.unit(4 + 11 / 12, "feet")
  20541. },
  20542. {
  20543. name: "Grown",
  20544. height: math.unit(15, "feet"),
  20545. default: true
  20546. },
  20547. {
  20548. name: "Macro",
  20549. height: math.unit(1500, "feet")
  20550. },
  20551. {
  20552. name: "Megamacro",
  20553. height: math.unit(30, "miles")
  20554. },
  20555. {
  20556. name: "Continental",
  20557. height: math.unit(3000, "miles")
  20558. },
  20559. {
  20560. name: "Gravity Mass",
  20561. height: math.unit(300000, "miles")
  20562. },
  20563. {
  20564. name: "Planet Buster",
  20565. height: math.unit(30000000, "miles")
  20566. },
  20567. {
  20568. name: "Big",
  20569. height: math.unit(3000000000, "miles")
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Pepper" },
  20575. {
  20576. front: {
  20577. height: math.unit(9, "feet"),
  20578. weight: math.unit(350, "lb"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/pepper/front.svg",
  20582. extra: 1448/1312,
  20583. bottom: 9.4/1457.88
  20584. }
  20585. },
  20586. back: {
  20587. height: math.unit(9, "feet"),
  20588. weight: math.unit(350, "lb"),
  20589. name: "Back",
  20590. image: {
  20591. source: "./media/characters/pepper/back.svg",
  20592. extra: 1423/1300,
  20593. bottom: 4.6/1429
  20594. }
  20595. },
  20596. maw: {
  20597. height: math.unit(0.932, "feet"),
  20598. name: "Maw",
  20599. image: {
  20600. source: "./media/characters/pepper/maw.svg"
  20601. }
  20602. },
  20603. },
  20604. [
  20605. {
  20606. name: "Normal",
  20607. height: math.unit(9, "feet"),
  20608. default: true
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Maelstrom" },
  20614. {
  20615. front: {
  20616. height: math.unit(6, "feet"),
  20617. weight: math.unit(150, "lb"),
  20618. name: "Front",
  20619. image: {
  20620. source: "./media/characters/maelstrom/front.svg",
  20621. extra: 2100/1883,
  20622. bottom: 94/2196.7
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Less Kaiju",
  20629. height: math.unit(200, "feet")
  20630. },
  20631. {
  20632. name: "Kaiju",
  20633. height: math.unit(400, "feet"),
  20634. default: true
  20635. },
  20636. {
  20637. name: "Kaiju-er",
  20638. height: math.unit(600, "feet")
  20639. },
  20640. ]
  20641. ))
  20642. characterMakers.push(() => makeCharacter(
  20643. { name: "Lexir" },
  20644. {
  20645. front: {
  20646. height: math.unit(6 + 5/12, "feet"),
  20647. weight: math.unit(180, "lb"),
  20648. name: "Front",
  20649. image: {
  20650. source: "./media/characters/lexir/front.svg",
  20651. extra: 180/172,
  20652. bottom: 12/192
  20653. }
  20654. },
  20655. back: {
  20656. height: math.unit(6 + 5/12, "feet"),
  20657. weight: math.unit(180, "lb"),
  20658. name: "Back",
  20659. image: {
  20660. source: "./media/characters/lexir/back.svg",
  20661. extra: 183.84/175.5,
  20662. bottom: 3.1/187
  20663. }
  20664. },
  20665. },
  20666. [
  20667. {
  20668. name: "Very Smal",
  20669. height: math.unit(1, "nm")
  20670. },
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(6 + 5/12, "feet"),
  20674. default: true
  20675. },
  20676. {
  20677. name: "Macro",
  20678. height: math.unit(1, "mile")
  20679. },
  20680. {
  20681. name: "Megamacro",
  20682. height: math.unit(50, "miles")
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Maksio" },
  20688. {
  20689. front: {
  20690. height: math.unit(1.5, "meters"),
  20691. weight: math.unit(100, "lb"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/maksio/front.svg",
  20695. extra: 1549/1531,
  20696. bottom: 123.7/1674.5429
  20697. }
  20698. },
  20699. back: {
  20700. height: math.unit(1.5, "meters"),
  20701. weight: math.unit(100, "lb"),
  20702. name: "Back",
  20703. image: {
  20704. source: "./media/characters/maksio/back.svg",
  20705. extra: 1541/1509,
  20706. bottom: 97/1639
  20707. }
  20708. },
  20709. hand: {
  20710. height: math.unit(0.621, "feet"),
  20711. name: "Hand",
  20712. image: {
  20713. source: "./media/characters/maksio/hand.svg"
  20714. }
  20715. },
  20716. foot: {
  20717. height: math.unit(1.611, "feet"),
  20718. name: "Foot",
  20719. image: {
  20720. source: "./media/characters/maksio/foot.svg"
  20721. }
  20722. },
  20723. },
  20724. [
  20725. {
  20726. name: "Shrunken",
  20727. height: math.unit(10, "cm")
  20728. },
  20729. {
  20730. name: "Normal",
  20731. height: math.unit(150, "cm"),
  20732. default: true
  20733. },
  20734. ]
  20735. ))
  20736. characterMakers.push(() => makeCharacter(
  20737. { name: "Erza Bear" },
  20738. {
  20739. front: {
  20740. height: math.unit(100, "feet"),
  20741. name: "Front",
  20742. image: {
  20743. source: "./media/characters/erza-bear/front.svg",
  20744. extra: 2449/2390,
  20745. bottom: 46/2494
  20746. }
  20747. },
  20748. back: {
  20749. height: math.unit(100, "feet"),
  20750. name: "Back",
  20751. image: {
  20752. source: "./media/characters/erza-bear/back.svg",
  20753. extra: 2489/2430,
  20754. bottom: 85.4/2480
  20755. }
  20756. },
  20757. tail: {
  20758. height: math.unit(42, "feet"),
  20759. name: "Tail",
  20760. image: {
  20761. source: "./media/characters/erza-bear/tail.svg"
  20762. }
  20763. },
  20764. tongue: {
  20765. height: math.unit(8, "feet"),
  20766. name: "Tongue",
  20767. image: {
  20768. source: "./media/characters/erza-bear/tongue.svg"
  20769. }
  20770. },
  20771. dick: {
  20772. height: math.unit(10.5, "feet"),
  20773. name: "Dick",
  20774. image: {
  20775. source: "./media/characters/erza-bear/dick.svg"
  20776. }
  20777. },
  20778. dickVertical: {
  20779. height: math.unit(16.9, "feet"),
  20780. name: "Dick (Vertical)",
  20781. image: {
  20782. source: "./media/characters/erza-bear/dick-vertical.svg"
  20783. }
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Macro",
  20789. height: math.unit(100, "feet"),
  20790. default: true
  20791. },
  20792. ]
  20793. ))
  20794. characterMakers.push(() => makeCharacter(
  20795. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  20796. {
  20797. front: {
  20798. height: math.unit(172, "cm"),
  20799. weight: math.unit(73, "kg"),
  20800. name: "Front",
  20801. image: {
  20802. source: "./media/characters/violet-flor/front.svg",
  20803. extra: 1530/1442,
  20804. bottom: 61.9/1588.8
  20805. }
  20806. },
  20807. back: {
  20808. height: math.unit(180, "cm"),
  20809. weight: math.unit(73, "kg"),
  20810. name: "Back",
  20811. image: {
  20812. source: "./media/characters/violet-flor/back.svg",
  20813. extra: 1692/1630,
  20814. bottom: 20/1712
  20815. }
  20816. },
  20817. },
  20818. [
  20819. {
  20820. name: "Normal",
  20821. height: math.unit(172, "cm"),
  20822. default: true
  20823. },
  20824. ]
  20825. ))
  20826. characterMakers.push(() => makeCharacter(
  20827. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  20828. {
  20829. front: {
  20830. height: math.unit(6, "feet"),
  20831. weight: math.unit(220, "lb"),
  20832. name: "Front",
  20833. image: {
  20834. source: "./media/characters/lynn-rhea/front.svg",
  20835. extra: 310/273
  20836. }
  20837. },
  20838. back: {
  20839. height: math.unit(6, "feet"),
  20840. weight: math.unit(220, "lb"),
  20841. name: "Back",
  20842. image: {
  20843. source: "./media/characters/lynn-rhea/back.svg",
  20844. extra: 310/273
  20845. }
  20846. },
  20847. dicks: {
  20848. height: math.unit(0.9, "feet"),
  20849. name: "Dicks",
  20850. image: {
  20851. source: "./media/characters/lynn-rhea/dicks.svg"
  20852. }
  20853. },
  20854. slit: {
  20855. height: math.unit(0.4, "feet"),
  20856. name: "Slit",
  20857. image: {
  20858. source: "./media/characters/lynn-rhea/slit.svg"
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Micro",
  20865. height: math.unit(1, "inch")
  20866. },
  20867. {
  20868. name: "Macro",
  20869. height: math.unit(60, "feet"),
  20870. default: true
  20871. },
  20872. {
  20873. name: "Megamacro",
  20874. height: math.unit(2, "miles")
  20875. },
  20876. {
  20877. name: "Gigamacro",
  20878. height: math.unit(3, "earths")
  20879. },
  20880. {
  20881. name: "Galactic",
  20882. height: math.unit(0.8, "galaxies")
  20883. },
  20884. ]
  20885. ))
  20886. characterMakers.push(() => makeCharacter(
  20887. { name: "Valathos" },
  20888. {
  20889. front: {
  20890. height: math.unit(1600, "feet"),
  20891. weight: math.unit(85758785169, "kg"),
  20892. name: "Front",
  20893. image: {
  20894. source: "./media/characters/valathos/front.svg",
  20895. extra: 1451/1339
  20896. }
  20897. },
  20898. },
  20899. [
  20900. {
  20901. name: "Macro",
  20902. height: math.unit(1600, "feet"),
  20903. default: true
  20904. },
  20905. ]
  20906. ))
  20907. characterMakers.push(() => makeCharacter(
  20908. { name: "Azula" },
  20909. {
  20910. front: {
  20911. height: math.unit(7 + 5/12, "feet"),
  20912. weight: math.unit(300, "lb"),
  20913. name: "Front",
  20914. image: {
  20915. source: "./media/characters/azula/front.svg",
  20916. extra: 3208/2880,
  20917. bottom: 80.2/3277
  20918. }
  20919. },
  20920. back: {
  20921. height: math.unit(7 + 5/12, "feet"),
  20922. weight: math.unit(300, "lb"),
  20923. name: "Back",
  20924. image: {
  20925. source: "./media/characters/azula/back.svg",
  20926. extra: 3169/2822,
  20927. bottom: 150.6/3321
  20928. }
  20929. },
  20930. },
  20931. [
  20932. {
  20933. name: "Normal",
  20934. height: math.unit(7 + 5/12, "feet"),
  20935. default: true
  20936. },
  20937. {
  20938. name: "Big",
  20939. height: math.unit(20, "feet")
  20940. },
  20941. ]
  20942. ))
  20943. characterMakers.push(() => makeCharacter(
  20944. { name: "Rupert" },
  20945. {
  20946. front: {
  20947. height: math.unit(5 + 1/12, "feet"),
  20948. weight: math.unit(110, "lb"),
  20949. name: "Front",
  20950. image: {
  20951. source: "./media/characters/rupert/front.svg",
  20952. extra: 1549/1495,
  20953. bottom: 54.2/1604.4
  20954. }
  20955. },
  20956. },
  20957. [
  20958. {
  20959. name: "Normal",
  20960. height: math.unit(5 + 1/12, "feet"),
  20961. default: true
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Sheera Castellar" },
  20967. {
  20968. front: {
  20969. height: math.unit(8 + 4/12, "feet"),
  20970. weight: math.unit(350, "lb"),
  20971. name: "Front",
  20972. image: {
  20973. source: "./media/characters/sheera-castellar/front.svg",
  20974. extra: 1957/1894,
  20975. bottom: 26.97/1975.017
  20976. }
  20977. },
  20978. side: {
  20979. height: math.unit(8 + 4/12, "feet"),
  20980. weight: math.unit(350, "lb"),
  20981. name: "Side",
  20982. image: {
  20983. source: "./media/characters/sheera-castellar/side.svg",
  20984. extra: 1957/1894
  20985. }
  20986. },
  20987. back: {
  20988. height: math.unit(8 + 4/12, "feet"),
  20989. weight: math.unit(350, "lb"),
  20990. name: "Back",
  20991. image: {
  20992. source: "./media/characters/sheera-castellar/back.svg",
  20993. extra: 1957/1894
  20994. }
  20995. },
  20996. angled: {
  20997. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20998. weight: math.unit(350, "lb"),
  20999. name: "Angled",
  21000. image: {
  21001. source: "./media/characters/sheera-castellar/angled.svg",
  21002. extra: 1807/1707,
  21003. bottom: 68/1875
  21004. }
  21005. },
  21006. genitals: {
  21007. height: math.unit(2.2, "feet"),
  21008. name: "Genitals",
  21009. image: {
  21010. source: "./media/characters/sheera-castellar/genitals.svg"
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(8 + 4/12, "feet")
  21018. },
  21019. {
  21020. name: "Macro",
  21021. height: math.unit(150, "feet"),
  21022. default: true
  21023. },
  21024. {
  21025. name: "Macro+",
  21026. height: math.unit(800, "feet")
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21032. {
  21033. front: {
  21034. height: math.unit(6, "feet"),
  21035. weight: math.unit(150, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/jaipur/front.svg",
  21039. extra: 3860/3731,
  21040. bottom: 287/4140
  21041. }
  21042. },
  21043. back: {
  21044. height: math.unit(6, "feet"),
  21045. weight: math.unit(150, "lb"),
  21046. name: "Back",
  21047. image: {
  21048. source: "./media/characters/jaipur/back.svg",
  21049. extra: 4060/3930,
  21050. bottom: 151/4200
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(1.85, "meters"),
  21058. default: true
  21059. },
  21060. {
  21061. name: "Macro",
  21062. height: math.unit(150, "meters")
  21063. },
  21064. {
  21065. name: "Macro+",
  21066. height: math.unit(0.5, "miles")
  21067. },
  21068. {
  21069. name: "Macro++",
  21070. height: math.unit(2.5, "miles")
  21071. },
  21072. {
  21073. name: "Macro+++",
  21074. height: math.unit(12, "miles")
  21075. },
  21076. {
  21077. name: "Macro++++",
  21078. height: math.unit(120, "miles")
  21079. },
  21080. {
  21081. name: "Macro+++++",
  21082. height: math.unit(1200, "miles")
  21083. },
  21084. ]
  21085. ))
  21086. characterMakers.push(() => makeCharacter(
  21087. { name: "Sheila (Wolf)" },
  21088. {
  21089. front: {
  21090. height: math.unit(6, "feet"),
  21091. weight: math.unit(150, "lb"),
  21092. name: "Front",
  21093. image: {
  21094. source: "./media/characters/sheila-wolf/front.svg",
  21095. extra: 1931/1808,
  21096. bottom: 29.5/1960
  21097. }
  21098. },
  21099. dick: {
  21100. height: math.unit(1.464, "feet"),
  21101. name: "Dick",
  21102. image: {
  21103. source: "./media/characters/sheila-wolf/dick.svg"
  21104. }
  21105. },
  21106. muzzle: {
  21107. height: math.unit(0.513, "feet"),
  21108. name: "Muzzle",
  21109. image: {
  21110. source: "./media/characters/sheila-wolf/muzzle.svg"
  21111. }
  21112. },
  21113. },
  21114. [
  21115. {
  21116. name: "Macro",
  21117. height: math.unit(70, "feet"),
  21118. default: true
  21119. },
  21120. ]
  21121. ))
  21122. characterMakers.push(() => makeCharacter(
  21123. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21124. {
  21125. front: {
  21126. height: math.unit(32, "meters"),
  21127. weight: math.unit(300000, "kg"),
  21128. name: "Front",
  21129. image: {
  21130. source: "./media/characters/almor/front.svg",
  21131. extra: 1408/1322,
  21132. bottom: 94.6/1506.5
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Macro",
  21139. height: math.unit(32, "meters"),
  21140. default: true
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Silver" },
  21146. {
  21147. front: {
  21148. height: math.unit(7, "feet"),
  21149. weight: math.unit(200, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/silver/front.svg",
  21153. extra: 472.1/450.5,
  21154. bottom: 26.5/499.424
  21155. }
  21156. },
  21157. },
  21158. [
  21159. {
  21160. name: "Normal",
  21161. height: math.unit(7, "feet"),
  21162. default: true
  21163. },
  21164. {
  21165. name: "Macro",
  21166. height: math.unit(800, "feet")
  21167. },
  21168. {
  21169. name: "Megamacro",
  21170. height: math.unit(250, "miles")
  21171. },
  21172. ]
  21173. ))
  21174. characterMakers.push(() => makeCharacter(
  21175. { name: "Pliskin" },
  21176. {
  21177. front: {
  21178. height: math.unit(6, "feet"),
  21179. weight: math.unit(150, "lb"),
  21180. name: "Front",
  21181. image: {
  21182. source: "./media/characters/pliskin/front.svg",
  21183. extra: 1469/1359,
  21184. bottom: 70/1540
  21185. }
  21186. },
  21187. },
  21188. [
  21189. {
  21190. name: "Micro",
  21191. height: math.unit(3, "inches")
  21192. },
  21193. {
  21194. name: "Normal",
  21195. height: math.unit(5 + 11/12, "feet"),
  21196. default: true
  21197. },
  21198. {
  21199. name: "Macro",
  21200. height: math.unit(120, "feet")
  21201. },
  21202. ]
  21203. ))
  21204. characterMakers.push(() => makeCharacter(
  21205. { name: "Sammy" },
  21206. {
  21207. front: {
  21208. height: math.unit(6, "feet"),
  21209. weight: math.unit(150, "lb"),
  21210. name: "Front",
  21211. image: {
  21212. source: "./media/characters/sammy/front.svg",
  21213. extra: 1193/1089,
  21214. bottom: 30.5/1226
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Macro",
  21221. height: math.unit(1700, "feet"),
  21222. default: true
  21223. },
  21224. {
  21225. name: "Examacro",
  21226. height: math.unit(2.5e9, "lightyears")
  21227. },
  21228. ]
  21229. ))
  21230. characterMakers.push(() => makeCharacter(
  21231. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21232. {
  21233. front: {
  21234. height: math.unit(21, "meters"),
  21235. weight: math.unit(12, "tonnes"),
  21236. name: "Front",
  21237. image: {
  21238. source: "./media/characters/kuru/front.svg",
  21239. extra: 4301/3785,
  21240. bottom: 371.3/4691
  21241. }
  21242. },
  21243. },
  21244. [
  21245. {
  21246. name: "Macro",
  21247. height: math.unit(21, "meters"),
  21248. default: true
  21249. },
  21250. ]
  21251. ))
  21252. characterMakers.push(() => makeCharacter(
  21253. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  21254. {
  21255. front: {
  21256. height: math.unit(23, "meters"),
  21257. weight: math.unit(12.2, "tonnes"),
  21258. name: "Front",
  21259. image: {
  21260. source: "./media/characters/rakka/front.svg",
  21261. extra: 4670/4169,
  21262. bottom: 301/4968.7
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Macro",
  21269. height: math.unit(23, "meters"),
  21270. default: true
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Rhys (Feline)" },
  21276. {
  21277. front: {
  21278. height: math.unit(6, "feet"),
  21279. weight: math.unit(150, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/rhys-feline/front.svg",
  21283. extra: 2488/2308,
  21284. bottom: 35.67/2519.19
  21285. }
  21286. },
  21287. },
  21288. [
  21289. {
  21290. name: "Really Small",
  21291. height: math.unit(1, "nm")
  21292. },
  21293. {
  21294. name: "Micro",
  21295. height: math.unit(4, "inches")
  21296. },
  21297. {
  21298. name: "Normal",
  21299. height: math.unit(4 + 10/12, "feet"),
  21300. default: true
  21301. },
  21302. {
  21303. name: "Macro",
  21304. height: math.unit(100, "feet")
  21305. },
  21306. {
  21307. name: "Megamacto",
  21308. height: math.unit(50, "miles")
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  21314. {
  21315. side: {
  21316. height: math.unit(30, "feet"),
  21317. weight: math.unit(35000, "kg"),
  21318. name: "Side",
  21319. image: {
  21320. source: "./media/characters/alydar/side.svg",
  21321. extra: 234/222,
  21322. bottom: 6.5/241
  21323. }
  21324. },
  21325. front: {
  21326. height: math.unit(30, "feet"),
  21327. weight: math.unit(35000, "kg"),
  21328. name: "Front",
  21329. image: {
  21330. source: "./media/characters/alydar/front.svg",
  21331. extra: 223.37/210.2,
  21332. bottom: 22.3/246.76
  21333. }
  21334. },
  21335. top: {
  21336. height: math.unit(64.54, "feet"),
  21337. weight: math.unit(35000, "kg"),
  21338. name: "Top",
  21339. image: {
  21340. source: "./media/characters/alydar/top.svg"
  21341. }
  21342. },
  21343. anthro: {
  21344. height: math.unit(30, "feet"),
  21345. weight: math.unit(9000, "kg"),
  21346. name: "Anthro",
  21347. image: {
  21348. source: "./media/characters/alydar/anthro.svg",
  21349. extra: 432/421,
  21350. bottom: 7.18/440
  21351. }
  21352. },
  21353. maw: {
  21354. height: math.unit(11.693, "feet"),
  21355. name: "Maw",
  21356. image: {
  21357. source: "./media/characters/alydar/maw.svg"
  21358. }
  21359. },
  21360. head: {
  21361. height: math.unit(11.693, "feet"),
  21362. name: "Head",
  21363. image: {
  21364. source: "./media/characters/alydar/head.svg"
  21365. }
  21366. },
  21367. headAlt: {
  21368. height: math.unit(12.861, "feet"),
  21369. name: "Head (Alt)",
  21370. image: {
  21371. source: "./media/characters/alydar/head-alt.svg"
  21372. }
  21373. },
  21374. wing: {
  21375. height: math.unit(20.712, "feet"),
  21376. name: "Wing",
  21377. image: {
  21378. source: "./media/characters/alydar/wing.svg"
  21379. }
  21380. },
  21381. wingFeather: {
  21382. height: math.unit(9.662, "feet"),
  21383. name: "Wing Feather",
  21384. image: {
  21385. source: "./media/characters/alydar/wing-feather.svg"
  21386. }
  21387. },
  21388. countourFeather: {
  21389. height: math.unit(4.154, "feet"),
  21390. name: "Contour Feather",
  21391. image: {
  21392. source: "./media/characters/alydar/contour-feather.svg"
  21393. }
  21394. },
  21395. },
  21396. [
  21397. {
  21398. name: "Diplomatic",
  21399. height: math.unit(13, "feet"),
  21400. default: true
  21401. },
  21402. {
  21403. name: "Small",
  21404. height: math.unit(30, "feet")
  21405. },
  21406. {
  21407. name: "Normal",
  21408. height: math.unit(95, "feet"),
  21409. default: true
  21410. },
  21411. {
  21412. name: "Large",
  21413. height: math.unit(285, "feet")
  21414. },
  21415. {
  21416. name: "Incomprehensible",
  21417. height: math.unit(450, "megameters")
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Selicia" },
  21423. {
  21424. side: {
  21425. height: math.unit(11, "feet"),
  21426. weight: math.unit(1750, "kg"),
  21427. name: "Side",
  21428. image: {
  21429. source: "./media/characters/selicia/side.svg",
  21430. extra: 440/396,
  21431. bottom: 24.8/465.979
  21432. }
  21433. },
  21434. maw: {
  21435. height: math.unit(4.665, "feet"),
  21436. name: "Maw",
  21437. image: {
  21438. source: "./media/characters/selicia/maw.svg"
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(11, "feet"),
  21446. default: true
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Layla" },
  21452. {
  21453. side: {
  21454. height: math.unit(2 + 6 /12, "feet"),
  21455. weight: math.unit(30, "lb"),
  21456. name: "Side",
  21457. image: {
  21458. source: "./media/characters/layla/side.svg",
  21459. extra: 244/188,
  21460. bottom: 18.2/262.1
  21461. }
  21462. },
  21463. back: {
  21464. height: math.unit(2 + 6 /12, "feet"),
  21465. weight: math.unit(30, "lb"),
  21466. name: "Back",
  21467. image: {
  21468. source: "./media/characters/layla/back.svg",
  21469. extra: 308/241.5,
  21470. bottom: 8.9/316.8
  21471. }
  21472. },
  21473. cumming: {
  21474. height: math.unit(2 + 6 /12, "feet"),
  21475. weight: math.unit(30, "lb"),
  21476. name: "Cumming",
  21477. image: {
  21478. source: "./media/characters/layla/cumming.svg",
  21479. extra: 342/279,
  21480. bottom: 595/938
  21481. }
  21482. },
  21483. dickFlaccid: {
  21484. height: math.unit(2.595, "feet"),
  21485. name: "Flaccid Genitals",
  21486. image: {
  21487. source: "./media/characters/layla/dick-flaccid.svg"
  21488. }
  21489. },
  21490. dickErect: {
  21491. height: math.unit(2.359, "feet"),
  21492. name: "Erect Genitals",
  21493. image: {
  21494. source: "./media/characters/layla/dick-erect.svg"
  21495. }
  21496. },
  21497. },
  21498. [
  21499. {
  21500. name: "Micro",
  21501. height: math.unit(1, "inch")
  21502. },
  21503. {
  21504. name: "Small",
  21505. height: math.unit(1, "foot")
  21506. },
  21507. {
  21508. name: "Normal",
  21509. height: math.unit(2 + 6/12, "feet"),
  21510. default: true
  21511. },
  21512. {
  21513. name: "Macro",
  21514. height: math.unit(200, "feet")
  21515. },
  21516. {
  21517. name: "Megamacro",
  21518. height: math.unit(1000, "miles")
  21519. },
  21520. {
  21521. name: "Planetary",
  21522. height: math.unit(8000, "miles")
  21523. },
  21524. {
  21525. name: "True Layla",
  21526. height: math.unit(200000*7, "multiverses")
  21527. },
  21528. ]
  21529. ))
  21530. characterMakers.push(() => makeCharacter(
  21531. { name: "Knox" },
  21532. {
  21533. back: {
  21534. height: math.unit(10.5, "feet"),
  21535. weight: math.unit(800, "lb"),
  21536. name: "Back",
  21537. image: {
  21538. source: "./media/characters/knox/back.svg",
  21539. extra: 1486/1089,
  21540. bottom: 107/1601.4
  21541. }
  21542. },
  21543. side: {
  21544. height: math.unit(10.5, "feet"),
  21545. weight: math.unit(800, "lb"),
  21546. name: "Side",
  21547. image: {
  21548. source: "./media/characters/knox/side.svg",
  21549. extra: 244/218,
  21550. bottom: 14/260
  21551. }
  21552. },
  21553. },
  21554. [
  21555. {
  21556. name: "Compact",
  21557. height: math.unit(10.5, "feet"),
  21558. default: true
  21559. },
  21560. {
  21561. name: "Dynamax",
  21562. height: math.unit(210, "feet")
  21563. },
  21564. {
  21565. name: "Full Macro",
  21566. height: math.unit(850, "feet")
  21567. },
  21568. ]
  21569. ))
  21570. characterMakers.push(() => makeCharacter(
  21571. { name: "Shin (Pikachu)" },
  21572. {
  21573. front: {
  21574. height: math.unit(6, "feet"),
  21575. weight: math.unit(152, "lb"),
  21576. name: "Front",
  21577. image: {
  21578. source: "./media/characters/shin-pikachu/front.svg",
  21579. extra: 1574/1480,
  21580. bottom: 53.3/1626
  21581. }
  21582. },
  21583. hand: {
  21584. height: math.unit(1.055, "feet"),
  21585. name: "Hand",
  21586. image: {
  21587. source: "./media/characters/shin-pikachu/hand.svg"
  21588. }
  21589. },
  21590. foot: {
  21591. height: math.unit(1.1, "feet"),
  21592. name: "Foot",
  21593. image: {
  21594. source: "./media/characters/shin-pikachu/foot.svg"
  21595. }
  21596. },
  21597. collar: {
  21598. height: math.unit(0.386, "feet"),
  21599. name: "Collar",
  21600. image: {
  21601. source: "./media/characters/shin-pikachu/collar.svg"
  21602. }
  21603. },
  21604. },
  21605. [
  21606. {
  21607. name: "Smallest",
  21608. height: math.unit(0.5, "inches")
  21609. },
  21610. {
  21611. name: "Micro",
  21612. height: math.unit(6, "inches")
  21613. },
  21614. {
  21615. name: "Normal",
  21616. height: math.unit(6, "feet"),
  21617. default: true
  21618. },
  21619. {
  21620. name: "Macro",
  21621. height: math.unit(150, "feet")
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Kayda" },
  21627. {
  21628. front: {
  21629. height: math.unit(28, "feet"),
  21630. weight: math.unit(10500, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/kayda/front.svg",
  21634. extra: 1536/1428,
  21635. bottom: 68.7/1603
  21636. }
  21637. },
  21638. back: {
  21639. height: math.unit(28, "feet"),
  21640. weight: math.unit(10500, "lb"),
  21641. name: "Back",
  21642. image: {
  21643. source: "./media/characters/kayda/back.svg",
  21644. extra: 1557/1464,
  21645. bottom: 39.5/1597.49
  21646. }
  21647. },
  21648. dick: {
  21649. height: math.unit(3.858, "feet"),
  21650. name: "Dick",
  21651. image: {
  21652. source: "./media/characters/kayda/dick.svg"
  21653. }
  21654. },
  21655. },
  21656. [
  21657. {
  21658. name: "Macro",
  21659. height: math.unit(28, "feet"),
  21660. default: true
  21661. },
  21662. ]
  21663. ))
  21664. characterMakers.push(() => makeCharacter(
  21665. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  21666. {
  21667. front: {
  21668. height: math.unit(10 + 11/12, "feet"),
  21669. weight: math.unit(1400, "lb"),
  21670. name: "Front",
  21671. image: {
  21672. source: "./media/characters/brian/front.svg",
  21673. extra: 737/692,
  21674. bottom: 55.4/785
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(10 + 11/12, "feet"),
  21682. default: true
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  21688. {
  21689. front: {
  21690. height: math.unit(5 + 8/12, "feet"),
  21691. weight: math.unit(140, "lb"),
  21692. name: "Front",
  21693. image: {
  21694. source: "./media/characters/khemri/front.svg",
  21695. extra: 4780/4059,
  21696. bottom: 80.1/4859.25
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Micro",
  21703. height: math.unit(6, "inches")
  21704. },
  21705. {
  21706. name: "Normal",
  21707. height: math.unit(5 + 8/12, "feet"),
  21708. default: true
  21709. },
  21710. ]
  21711. ))
  21712. characterMakers.push(() => makeCharacter(
  21713. { name: "Felix Braveheart" },
  21714. {
  21715. front: {
  21716. height: math.unit(13, "feet"),
  21717. weight: math.unit(1700, "lb"),
  21718. name: "Front",
  21719. image: {
  21720. source: "./media/characters/felix-braveheart/front.svg",
  21721. extra: 1222/1157,
  21722. bottom: 53.2/1280
  21723. }
  21724. },
  21725. back: {
  21726. height: math.unit(13, "feet"),
  21727. weight: math.unit(1700, "lb"),
  21728. name: "Back",
  21729. image: {
  21730. source: "./media/characters/felix-braveheart/back.svg",
  21731. extra: 1277/1203,
  21732. bottom: 50.2/1327
  21733. }
  21734. },
  21735. feral: {
  21736. height: math.unit(6, "feet"),
  21737. weight: math.unit(400, "lb"),
  21738. name: "Feral",
  21739. image: {
  21740. source: "./media/characters/felix-braveheart/feral.svg",
  21741. extra: 682/625,
  21742. bottom: 6.9/688
  21743. }
  21744. },
  21745. },
  21746. [
  21747. {
  21748. name: "Normal",
  21749. height: math.unit(13, "feet"),
  21750. default: true
  21751. },
  21752. ]
  21753. ))
  21754. characterMakers.push(() => makeCharacter(
  21755. { name: "Shadow Blade" },
  21756. {
  21757. side: {
  21758. height: math.unit(5 + 11/12, "feet"),
  21759. weight: math.unit(1400, "lb"),
  21760. name: "Side",
  21761. image: {
  21762. source: "./media/characters/shadow-blade/side.svg",
  21763. extra: 1726/1267,
  21764. bottom: 58.4/1785
  21765. }
  21766. },
  21767. },
  21768. [
  21769. {
  21770. name: "Normal",
  21771. height: math.unit(5 + 11/12, "feet"),
  21772. default: true
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Karla Halldor" },
  21778. {
  21779. front: {
  21780. height: math.unit(1 + 6/12, "feet"),
  21781. weight: math.unit(25, "lb"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/karla-halldor/front.svg",
  21785. extra: 1459/1383,
  21786. bottom: 12/1472
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Normal",
  21793. height: math.unit(1 + 6/12, "feet"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Ariam" },
  21800. {
  21801. front: {
  21802. height: math.unit(6 + 2/12, "feet"),
  21803. weight: math.unit(160, "lb"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/ariam/front.svg",
  21807. extra: 714/617,
  21808. bottom: 23.4/737,
  21809. }
  21810. },
  21811. squatting: {
  21812. height: math.unit(4.1, "feet"),
  21813. weight: math.unit(160, "lb"),
  21814. name: "Squatting",
  21815. image: {
  21816. source: "./media/characters/ariam/squatting.svg",
  21817. extra: 2617/2112,
  21818. bottom: 61.2/2681,
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Normal",
  21825. height: math.unit(6 + 2/12, "feet"),
  21826. default: true
  21827. },
  21828. {
  21829. name: "Normal+",
  21830. height: math.unit(4, "meters")
  21831. },
  21832. {
  21833. name: "Macro",
  21834. height: math.unit(50, "meters")
  21835. },
  21836. {
  21837. name: "Macro+",
  21838. height: math.unit(100, "meters")
  21839. },
  21840. {
  21841. name: "Megamacro",
  21842. height: math.unit(20, "km")
  21843. },
  21844. ]
  21845. ))
  21846. characterMakers.push(() => makeCharacter(
  21847. { name: "Qodri Class-of-'Fortwelve-Six" },
  21848. {
  21849. front: {
  21850. height: math.unit(1.67, "meters"),
  21851. weight: math.unit(140, "lb"),
  21852. name: "Front",
  21853. image: {
  21854. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21855. extra: 438/410,
  21856. bottom: 0.75/439
  21857. }
  21858. },
  21859. },
  21860. [
  21861. {
  21862. name: "Shrunken",
  21863. height: math.unit(7.6, "cm")
  21864. },
  21865. {
  21866. name: "Human Scale",
  21867. height: math.unit(1.67, "meters")
  21868. },
  21869. {
  21870. name: "Wolxi Scale",
  21871. height: math.unit(36.7, "meters"),
  21872. default: true
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Izue Two-Mothers" },
  21878. {
  21879. front: {
  21880. height: math.unit(1.73, "meters"),
  21881. weight: math.unit(240, "lb"),
  21882. name: "Front",
  21883. image: {
  21884. source: "./media/characters/izue-two-mothers/front.svg",
  21885. extra: 469/437,
  21886. bottom: 1.24/470.6
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Shrunken",
  21893. height: math.unit(7.86, "cm")
  21894. },
  21895. {
  21896. name: "Human Scale",
  21897. height: math.unit(1.73, "meters")
  21898. },
  21899. {
  21900. name: "Wolxi Scale",
  21901. height: math.unit(38, "meters"),
  21902. default: true
  21903. },
  21904. ]
  21905. ))
  21906. characterMakers.push(() => makeCharacter(
  21907. { name: "Teeku Love-Shack" },
  21908. {
  21909. front: {
  21910. height: math.unit(1.55, "meters"),
  21911. weight: math.unit(120, "lb"),
  21912. name: "Front",
  21913. image: {
  21914. source: "./media/characters/teeku-love-shack/front.svg",
  21915. extra: 387/362,
  21916. bottom: 1.51/388
  21917. }
  21918. },
  21919. },
  21920. [
  21921. {
  21922. name: "Shrunken",
  21923. height: math.unit(7, "cm")
  21924. },
  21925. {
  21926. name: "Human Scale",
  21927. height: math.unit(1.55, "meters")
  21928. },
  21929. {
  21930. name: "Wolxi Scale",
  21931. height: math.unit(34.1, "meters"),
  21932. default: true
  21933. },
  21934. ]
  21935. ))
  21936. characterMakers.push(() => makeCharacter(
  21937. { name: "Dejma the Red" },
  21938. {
  21939. front: {
  21940. height: math.unit(1.83, "meters"),
  21941. weight: math.unit(135, "lb"),
  21942. name: "Front",
  21943. image: {
  21944. source: "./media/characters/dejma-the-red/front.svg",
  21945. extra: 480/458,
  21946. bottom: 1.8/482
  21947. }
  21948. },
  21949. },
  21950. [
  21951. {
  21952. name: "Shrunken",
  21953. height: math.unit(8.3, "cm")
  21954. },
  21955. {
  21956. name: "Human Scale",
  21957. height: math.unit(1.83, "meters")
  21958. },
  21959. {
  21960. name: "Wolxi Scale",
  21961. height: math.unit(40, "meters"),
  21962. default: true
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Aki" },
  21968. {
  21969. front: {
  21970. height: math.unit(1.78, "meters"),
  21971. weight: math.unit(65, "kg"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/aki/front.svg",
  21975. extra: 452/415
  21976. }
  21977. },
  21978. frontNsfw: {
  21979. height: math.unit(1.78, "meters"),
  21980. weight: math.unit(65, "kg"),
  21981. name: "Front (NSFW)",
  21982. image: {
  21983. source: "./media/characters/aki/front-nsfw.svg",
  21984. extra: 452/415
  21985. }
  21986. },
  21987. back: {
  21988. height: math.unit(1.78, "meters"),
  21989. weight: math.unit(65, "kg"),
  21990. name: "Back",
  21991. image: {
  21992. source: "./media/characters/aki/back.svg",
  21993. extra: 452/415
  21994. }
  21995. },
  21996. rump: {
  21997. height: math.unit(2.05, "feet"),
  21998. name: "Rump",
  21999. image: {
  22000. source: "./media/characters/aki/rump.svg"
  22001. }
  22002. },
  22003. dick: {
  22004. height: math.unit(0.95, "feet"),
  22005. name: "Dick",
  22006. image: {
  22007. source: "./media/characters/aki/dick.svg"
  22008. }
  22009. },
  22010. },
  22011. [
  22012. {
  22013. name: "Micro",
  22014. height: math.unit(15, "cm")
  22015. },
  22016. {
  22017. name: "Normal",
  22018. height: math.unit(178, "cm"),
  22019. default: true
  22020. },
  22021. {
  22022. name: "Macro",
  22023. height: math.unit(214, "m")
  22024. },
  22025. {
  22026. name: "Macro+",
  22027. height: math.unit(534, "m")
  22028. },
  22029. ]
  22030. ))
  22031. characterMakers.push(() => makeCharacter(
  22032. { name: "Ari" },
  22033. {
  22034. front: {
  22035. height: math.unit(5 + 5/12, "feet"),
  22036. weight: math.unit(120, "lb"),
  22037. name: "Front",
  22038. image: {
  22039. source: "./media/characters/ari/front.svg",
  22040. extra: 714.5/682,
  22041. bottom: 8/722.5
  22042. }
  22043. },
  22044. },
  22045. [
  22046. {
  22047. name: "Normal",
  22048. height: math.unit(5 + 5/12, "feet")
  22049. },
  22050. {
  22051. name: "Macro",
  22052. height: math.unit(100, "feet"),
  22053. default: true
  22054. },
  22055. {
  22056. name: "Megamacro",
  22057. height: math.unit(100, "miles")
  22058. },
  22059. {
  22060. name: "Gigamacro",
  22061. height: math.unit(80000, "miles")
  22062. },
  22063. ]
  22064. ))
  22065. characterMakers.push(() => makeCharacter(
  22066. { name: "Bolt" },
  22067. {
  22068. side: {
  22069. height: math.unit(9, "feet"),
  22070. weight: math.unit(400, "kg"),
  22071. name: "Side",
  22072. image: {
  22073. source: "./media/characters/bolt/side.svg",
  22074. extra: 1126/896,
  22075. bottom: 60/1187.3,
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "Micro",
  22082. height: math.unit(5, "inches")
  22083. },
  22084. {
  22085. name: "Normal",
  22086. height: math.unit(9, "feet"),
  22087. default: true
  22088. },
  22089. {
  22090. name: "Macro",
  22091. height: math.unit(700, "feet")
  22092. },
  22093. {
  22094. name: "Max Size",
  22095. height: math.unit(1.52e22, "yottameters")
  22096. },
  22097. ]
  22098. ))
  22099. characterMakers.push(() => makeCharacter(
  22100. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22101. {
  22102. front: {
  22103. height: math.unit(4.53, "meters"),
  22104. weight: math.unit(3, "tons"),
  22105. name: "Front",
  22106. image: {
  22107. source: "./media/characters/draekon-sylviar/front.svg",
  22108. extra: 1228/1068,
  22109. bottom: 41/1270
  22110. }
  22111. },
  22112. tail: {
  22113. height: math.unit(1.772, "meter"),
  22114. name: "Tail",
  22115. image: {
  22116. source: "./media/characters/draekon-sylviar/tail.svg"
  22117. }
  22118. },
  22119. head: {
  22120. height: math.unit(1.331, "meter"),
  22121. name: "Head",
  22122. image: {
  22123. source: "./media/characters/draekon-sylviar/head.svg"
  22124. }
  22125. },
  22126. hand: {
  22127. height: math.unit(0.564, "meter"),
  22128. name: "Hand",
  22129. image: {
  22130. source: "./media/characters/draekon-sylviar/hand.svg"
  22131. }
  22132. },
  22133. foot: {
  22134. height: math.unit(0.621, "meter"),
  22135. name: "Foot",
  22136. image: {
  22137. source: "./media/characters/draekon-sylviar/foot.svg",
  22138. bottom: 32/324
  22139. }
  22140. },
  22141. dick: {
  22142. height: math.unit(61, "cm"),
  22143. name: "Dick",
  22144. image: {
  22145. source: "./media/characters/draekon-sylviar/dick.svg"
  22146. }
  22147. },
  22148. dickseparated: {
  22149. height: math.unit(61, "cm"),
  22150. name: "Dick-separated",
  22151. image: {
  22152. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22153. }
  22154. },
  22155. },
  22156. [
  22157. {
  22158. name: "Small",
  22159. height: math.unit(4.53/2, "meters"),
  22160. default: true
  22161. },
  22162. {
  22163. name: "Normal",
  22164. height: math.unit(4.53, "meters"),
  22165. default: true
  22166. },
  22167. {
  22168. name: "Large",
  22169. height: math.unit(4.53*2, "meters"),
  22170. },
  22171. ]
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22175. {
  22176. front: {
  22177. height: math.unit(6 + 2/12, "feet"),
  22178. weight: math.unit(180, "lb"),
  22179. name: "Front",
  22180. image: {
  22181. source: "./media/characters/brawler/front.svg",
  22182. extra: 3301/3027,
  22183. bottom: 138/3439
  22184. }
  22185. },
  22186. },
  22187. [
  22188. {
  22189. name: "Normal",
  22190. height: math.unit(6 + 2/12, "feet"),
  22191. default: true
  22192. },
  22193. ]
  22194. ))
  22195. characterMakers.push(() => makeCharacter(
  22196. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22197. {
  22198. front: {
  22199. height: math.unit(11, "feet"),
  22200. weight: math.unit(1000, "lb"),
  22201. name: "Front",
  22202. image: {
  22203. source: "./media/characters/alex/front.svg",
  22204. bottom: 44.5/620
  22205. }
  22206. },
  22207. },
  22208. [
  22209. {
  22210. name: "Micro",
  22211. height: math.unit(5, "inches")
  22212. },
  22213. {
  22214. name: "Normal",
  22215. height: math.unit(11, "feet"),
  22216. default: true
  22217. },
  22218. {
  22219. name: "Macro",
  22220. height: math.unit(9.5e9, "feet")
  22221. },
  22222. {
  22223. name: "Max Size",
  22224. height: math.unit(1.4e283, "yottameters")
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Zenari" },
  22230. {
  22231. female: {
  22232. height: math.unit(29.9, "m"),
  22233. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  22234. name: "Female",
  22235. image: {
  22236. source: "./media/characters/zenari/female.svg",
  22237. extra: 3281.6/3217,
  22238. bottom: 72.2/3353
  22239. }
  22240. },
  22241. male: {
  22242. height: math.unit(27.7, "m"),
  22243. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  22244. name: "Male",
  22245. image: {
  22246. source: "./media/characters/zenari/male.svg",
  22247. extra: 3008/2991,
  22248. bottom: 54.6/3069
  22249. }
  22250. },
  22251. },
  22252. [
  22253. {
  22254. name: "Macro",
  22255. height: math.unit(29.7, "meters"),
  22256. default: true
  22257. },
  22258. ]
  22259. ))
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Mactarian" },
  22262. {
  22263. female: {
  22264. height: math.unit(23.8, "m"),
  22265. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22266. name: "Female",
  22267. image: {
  22268. source: "./media/characters/mactarian/female.svg",
  22269. extra: 2662/2569,
  22270. bottom: 73/2736
  22271. }
  22272. },
  22273. male: {
  22274. height: math.unit(23.8, "m"),
  22275. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22276. name: "Male",
  22277. image: {
  22278. source: "./media/characters/mactarian/male.svg",
  22279. extra: 2673/2600,
  22280. bottom: 76/2750
  22281. }
  22282. },
  22283. },
  22284. [
  22285. {
  22286. name: "Macro",
  22287. height: math.unit(23.8, "meters"),
  22288. default: true
  22289. },
  22290. ]
  22291. ))
  22292. characterMakers.push(() => makeCharacter(
  22293. { name: "Umok" },
  22294. {
  22295. female: {
  22296. height: math.unit(19.3, "m"),
  22297. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  22298. name: "Female",
  22299. image: {
  22300. source: "./media/characters/umok/female.svg",
  22301. extra: 2186/2078,
  22302. bottom: 87/2277
  22303. }
  22304. },
  22305. male: {
  22306. height: math.unit(19.5, "m"),
  22307. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  22308. name: "Male",
  22309. image: {
  22310. source: "./media/characters/umok/male.svg",
  22311. extra: 2233/2140,
  22312. bottom: 24.4/2258
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Macro",
  22319. height: math.unit(19.3, "meters"),
  22320. default: true
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Joraxian" },
  22326. {
  22327. female: {
  22328. height: math.unit(26.15, "m"),
  22329. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  22330. name: "Female",
  22331. image: {
  22332. source: "./media/characters/joraxian/female.svg",
  22333. extra: 2943/2831,
  22334. bottom: 27/2972
  22335. }
  22336. },
  22337. male: {
  22338. height: math.unit(25.4, "m"),
  22339. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  22340. name: "Male",
  22341. image: {
  22342. source: "./media/characters/joraxian/male.svg",
  22343. extra: 2835/2741,
  22344. bottom: 27/2862
  22345. }
  22346. },
  22347. },
  22348. [
  22349. {
  22350. name: "Macro",
  22351. height: math.unit(26.15, "meters"),
  22352. default: true
  22353. },
  22354. ]
  22355. ))
  22356. characterMakers.push(() => makeCharacter(
  22357. { name: "Sthara" },
  22358. {
  22359. female: {
  22360. height: math.unit(21.6, "m"),
  22361. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  22362. name: "Female",
  22363. image: {
  22364. source: "./media/characters/sthara/female.svg",
  22365. extra: 2516/2347,
  22366. bottom: 21.5/2537
  22367. }
  22368. },
  22369. male: {
  22370. height: math.unit(24, "m"),
  22371. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  22372. name: "Male",
  22373. image: {
  22374. source: "./media/characters/sthara/male.svg",
  22375. extra: 2732/2607,
  22376. bottom: 23/2732
  22377. }
  22378. },
  22379. },
  22380. [
  22381. {
  22382. name: "Macro",
  22383. height: math.unit(21.6, "meters"),
  22384. default: true
  22385. },
  22386. ]
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Luka Bryzant" },
  22390. {
  22391. front: {
  22392. height: math.unit(6 + 4/12, "feet"),
  22393. weight: math.unit(175, "lb"),
  22394. name: "Front",
  22395. image: {
  22396. source: "./media/characters/luka-bryzant/front.svg",
  22397. extra: 311/289,
  22398. bottom: 4/315
  22399. }
  22400. },
  22401. back: {
  22402. height: math.unit(6 + 4/12, "feet"),
  22403. weight: math.unit(175, "lb"),
  22404. name: "Back",
  22405. image: {
  22406. source: "./media/characters/luka-bryzant/back.svg",
  22407. extra: 311/289,
  22408. bottom: 3.8/313.7
  22409. }
  22410. },
  22411. },
  22412. [
  22413. {
  22414. name: "Micro",
  22415. height: math.unit(10, "inches")
  22416. },
  22417. {
  22418. name: "Normal",
  22419. height: math.unit(6 + 4/12, "feet"),
  22420. default: true
  22421. },
  22422. {
  22423. name: "Large",
  22424. height: math.unit(12, "feet")
  22425. },
  22426. ]
  22427. ))
  22428. characterMakers.push(() => makeCharacter(
  22429. { name: "Aman Aquila" },
  22430. {
  22431. front: {
  22432. height: math.unit(5 + 7/12, "feet"),
  22433. weight: math.unit(185, "lb"),
  22434. name: "Front",
  22435. image: {
  22436. source: "./media/characters/aman-aquila/front.svg",
  22437. extra: 1013/976,
  22438. bottom: 45.6/1057
  22439. }
  22440. },
  22441. side: {
  22442. height: math.unit(5 + 7/12, "feet"),
  22443. weight: math.unit(185, "lb"),
  22444. name: "Side",
  22445. image: {
  22446. source: "./media/characters/aman-aquila/side.svg",
  22447. extra: 1054/1011,
  22448. bottom: 15/1070
  22449. }
  22450. },
  22451. back: {
  22452. height: math.unit(5 + 7/12, "feet"),
  22453. weight: math.unit(185, "lb"),
  22454. name: "Back",
  22455. image: {
  22456. source: "./media/characters/aman-aquila/back.svg",
  22457. extra: 1026/970,
  22458. bottom: 12/1039
  22459. }
  22460. },
  22461. head: {
  22462. height: math.unit(1.211, "feet"),
  22463. name: "Head",
  22464. image: {
  22465. source: "./media/characters/aman-aquila/head.svg",
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Minimicro",
  22472. height: math.unit(0.057, "inches")
  22473. },
  22474. {
  22475. name: "Micro",
  22476. height: math.unit(7, "inches")
  22477. },
  22478. {
  22479. name: "Mini",
  22480. height: math.unit(3 + 7/12, "feet")
  22481. },
  22482. {
  22483. name: "Normal",
  22484. height: math.unit(5 + 7/12, "feet"),
  22485. default: true
  22486. },
  22487. {
  22488. name: "Macro",
  22489. height: math.unit(157 + 7/12, "feet")
  22490. },
  22491. {
  22492. name: "Megamacro",
  22493. height: math.unit(1557 + 7/12, "feet")
  22494. },
  22495. {
  22496. name: "Gigamacro",
  22497. height: math.unit(15557 + 7/12, "feet")
  22498. },
  22499. ]
  22500. ))
  22501. characterMakers.push(() => makeCharacter(
  22502. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  22503. {
  22504. front: {
  22505. height: math.unit(3 + 2/12, "inches"),
  22506. weight: math.unit(0.3, "ounces"),
  22507. name: "Front",
  22508. image: {
  22509. source: "./media/characters/hiphae/front.svg",
  22510. extra: 1931/1683,
  22511. bottom: 24/1955
  22512. }
  22513. },
  22514. },
  22515. [
  22516. {
  22517. name: "Normal",
  22518. height: math.unit(3 + 1/2, "inches"),
  22519. default: true
  22520. },
  22521. ]
  22522. ))
  22523. characterMakers.push(() => makeCharacter(
  22524. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  22525. {
  22526. front: {
  22527. height: math.unit(5 + 10/12, "feet"),
  22528. weight: math.unit(165, "lb"),
  22529. name: "Front",
  22530. image: {
  22531. source: "./media/characters/nicky/front.svg",
  22532. extra: 3144/2886,
  22533. bottom: 45.6/3192
  22534. }
  22535. },
  22536. back: {
  22537. height: math.unit(5 + 10/12, "feet"),
  22538. weight: math.unit(165, "lb"),
  22539. name: "Back",
  22540. image: {
  22541. source: "./media/characters/nicky/back.svg",
  22542. extra: 3055/2804,
  22543. bottom: 28.4/3087
  22544. }
  22545. },
  22546. frontclothed: {
  22547. height: math.unit(5 + 10/12, "feet"),
  22548. weight: math.unit(165, "lb"),
  22549. name: "Front-clothed",
  22550. image: {
  22551. source: "./media/characters/nicky/front-clothed.svg",
  22552. extra: 3184.9/2926.9,
  22553. bottom: 86.5/3239.9
  22554. }
  22555. },
  22556. foot: {
  22557. height: math.unit(1.16, "feet"),
  22558. name: "Foot",
  22559. image: {
  22560. source: "./media/characters/nicky/foot.svg"
  22561. }
  22562. },
  22563. feet: {
  22564. height: math.unit(1.34, "feet"),
  22565. name: "Feet",
  22566. image: {
  22567. source: "./media/characters/nicky/feet.svg"
  22568. }
  22569. },
  22570. maw: {
  22571. height: math.unit(0.9, "feet"),
  22572. name: "Maw",
  22573. image: {
  22574. source: "./media/characters/nicky/maw.svg"
  22575. }
  22576. },
  22577. },
  22578. [
  22579. {
  22580. name: "Normal",
  22581. height: math.unit(5 + 10/12, "feet"),
  22582. default: true
  22583. },
  22584. {
  22585. name: "Macro",
  22586. height: math.unit(60, "feet")
  22587. },
  22588. {
  22589. name: "Megamacro",
  22590. height: math.unit(1, "mile")
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Blair" },
  22596. {
  22597. side: {
  22598. height: math.unit(10, "feet"),
  22599. weight: math.unit(600, "lb"),
  22600. name: "Side",
  22601. image: {
  22602. source: "./media/characters/blair/side.svg",
  22603. bottom: 16.6/475,
  22604. extra: 458/431
  22605. }
  22606. },
  22607. },
  22608. [
  22609. {
  22610. name: "Micro",
  22611. height: math.unit(8, "inches")
  22612. },
  22613. {
  22614. name: "Normal",
  22615. height: math.unit(10, "feet"),
  22616. default: true
  22617. },
  22618. {
  22619. name: "Macro",
  22620. height: math.unit(180, "feet")
  22621. },
  22622. ]
  22623. ))
  22624. characterMakers.push(() => makeCharacter(
  22625. { name: "Fisher" },
  22626. {
  22627. front: {
  22628. height: math.unit(5 + 4/12, "feet"),
  22629. weight: math.unit(125, "lb"),
  22630. name: "Front",
  22631. image: {
  22632. source: "./media/characters/fisher/front.svg",
  22633. extra: 444/390,
  22634. bottom: 2/444.8
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Micro",
  22641. height: math.unit(4, "inches")
  22642. },
  22643. {
  22644. name: "Normal",
  22645. height: math.unit(5 + 4/12, "feet"),
  22646. default: true
  22647. },
  22648. {
  22649. name: "Macro",
  22650. height: math.unit(100, "feet")
  22651. },
  22652. ]
  22653. ))
  22654. characterMakers.push(() => makeCharacter(
  22655. { name: "Gliss" },
  22656. {
  22657. front: {
  22658. height: math.unit(6.71, "feet"),
  22659. weight: math.unit(200, "lb"),
  22660. capacity: math.unit(1000000, "people"),
  22661. name: "Front",
  22662. image: {
  22663. source: "./media/characters/gliss/front.svg",
  22664. extra: 2347/2231,
  22665. bottom: 113/2462
  22666. }
  22667. },
  22668. hammerspaceSize: {
  22669. height: math.unit(6.71*717, "feet"),
  22670. weight: math.unit(200, "lb"),
  22671. capacity: math.unit(1000000, "people"),
  22672. name: "Hammerspace Size",
  22673. image: {
  22674. source: "./media/characters/gliss/front.svg",
  22675. extra: 2347/2231,
  22676. bottom: 113/2462
  22677. }
  22678. },
  22679. },
  22680. [
  22681. {
  22682. name: "Normal",
  22683. height: math.unit(6.71, "feet"),
  22684. default: true
  22685. },
  22686. ]
  22687. ))
  22688. characterMakers.push(() => makeCharacter(
  22689. { name: "Dune Anderson" },
  22690. {
  22691. side: {
  22692. height: math.unit(1.44, "m"),
  22693. weight: math.unit(80, "kg"),
  22694. name: "Side",
  22695. image: {
  22696. source: "./media/characters/dune-anderson/side.svg",
  22697. bottom: 49/1426
  22698. }
  22699. },
  22700. },
  22701. [
  22702. {
  22703. name: "Wolf-sized",
  22704. height: math.unit(1.44, "meters")
  22705. },
  22706. {
  22707. name: "Normal",
  22708. height: math.unit(5.05, "meters"),
  22709. default: true
  22710. },
  22711. {
  22712. name: "Big",
  22713. height: math.unit(14.4, "meters")
  22714. },
  22715. {
  22716. name: "Huge",
  22717. height: math.unit(144, "meters")
  22718. },
  22719. ]
  22720. ))
  22721. characterMakers.push(() => makeCharacter(
  22722. { name: "Hind" },
  22723. {
  22724. front: {
  22725. height: math.unit(7, "feet"),
  22726. weight: math.unit(425, "lb"),
  22727. name: "Front",
  22728. image: {
  22729. source: "./media/characters/hind/front.svg",
  22730. extra: 2091/1860,
  22731. bottom: 129/2220
  22732. }
  22733. },
  22734. back: {
  22735. height: math.unit(7, "feet"),
  22736. weight: math.unit(425, "lb"),
  22737. name: "Back",
  22738. image: {
  22739. source: "./media/characters/hind/back.svg",
  22740. extra: 2091/1860,
  22741. bottom: 24.6/2309
  22742. }
  22743. },
  22744. tail: {
  22745. height: math.unit(2.8, "feet"),
  22746. name: "Tail",
  22747. image: {
  22748. source: "./media/characters/hind/tail.svg"
  22749. }
  22750. },
  22751. head: {
  22752. height: math.unit(2.55, "feet"),
  22753. name: "Head",
  22754. image: {
  22755. source: "./media/characters/hind/head.svg"
  22756. }
  22757. },
  22758. },
  22759. [
  22760. {
  22761. name: "XS",
  22762. height: math.unit(0.7, "feet")
  22763. },
  22764. {
  22765. name: "Normal",
  22766. height: math.unit(7, "feet"),
  22767. default: true
  22768. },
  22769. {
  22770. name: "XL",
  22771. height: math.unit(70, "feet")
  22772. },
  22773. ]
  22774. ))
  22775. characterMakers.push(() => makeCharacter(
  22776. { name: "Dylan (Skaven)" },
  22777. {
  22778. front: {
  22779. height: math.unit(6, "feet"),
  22780. weight: math.unit(150, "lb"),
  22781. name: "Front",
  22782. image: {
  22783. source: "./media/characters/dylan-skaven/front.svg",
  22784. extra: 2318/2063,
  22785. bottom: 93.4/2410
  22786. }
  22787. },
  22788. },
  22789. [
  22790. {
  22791. name: "Nano",
  22792. height: math.unit(1, "mm")
  22793. },
  22794. {
  22795. name: "Micro",
  22796. height: math.unit(1, "cm")
  22797. },
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(2.1, "meters"),
  22801. default: true
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(7 + 5/12, "feet"),
  22810. weight: math.unit(357, "lb"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/solex-draconov/front.svg",
  22814. extra: 1993/1865,
  22815. bottom: 117/2111
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Natural Height",
  22822. height: math.unit(7 + 5/12, "feet"),
  22823. default: true
  22824. },
  22825. {
  22826. name: "Macro",
  22827. height: math.unit(350, "feet")
  22828. },
  22829. {
  22830. name: "Macro+",
  22831. height: math.unit(1000, "feet")
  22832. },
  22833. {
  22834. name: "Megamacro",
  22835. height: math.unit(20, "km")
  22836. },
  22837. {
  22838. name: "Megamacro+",
  22839. height: math.unit(1000, "km")
  22840. },
  22841. {
  22842. name: "Gigamacro",
  22843. height: math.unit(2.5, "Gm")
  22844. },
  22845. {
  22846. name: "Teramacro",
  22847. height: math.unit(15, "Tm")
  22848. },
  22849. {
  22850. name: "Galactic",
  22851. height: math.unit(30, "Zm")
  22852. },
  22853. {
  22854. name: "Universal",
  22855. height: math.unit(21000, "Ym")
  22856. },
  22857. {
  22858. name: "Omniversal",
  22859. height: math.unit(9.861e50, "Ym")
  22860. },
  22861. {
  22862. name: "Existential",
  22863. height: math.unit(1e300, "meters")
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Mandarax" },
  22869. {
  22870. side: {
  22871. height: math.unit(25, "feet"),
  22872. weight: math.unit(90000, "lb"),
  22873. name: "Side",
  22874. image: {
  22875. source: "./media/characters/mandarax/side.svg",
  22876. extra: 614/332,
  22877. bottom: 55/630
  22878. }
  22879. },
  22880. head: {
  22881. height: math.unit(11.4, "feet"),
  22882. name: "Head",
  22883. image: {
  22884. source: "./media/characters/mandarax/head.svg"
  22885. }
  22886. },
  22887. belly: {
  22888. height: math.unit(33, "feet"),
  22889. name: "Belly",
  22890. capacity: math.unit(500, "people"),
  22891. image: {
  22892. source: "./media/characters/mandarax/belly.svg"
  22893. }
  22894. },
  22895. dick: {
  22896. height: math.unit(8.46, "feet"),
  22897. name: "Dick",
  22898. image: {
  22899. source: "./media/characters/mandarax/dick.svg"
  22900. }
  22901. },
  22902. top: {
  22903. height: math.unit(28, "meters"),
  22904. name: "Top",
  22905. image: {
  22906. source: "./media/characters/mandarax/top.svg"
  22907. }
  22908. },
  22909. },
  22910. [
  22911. {
  22912. name: "Normal",
  22913. height: math.unit(25, "feet"),
  22914. default: true
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(5, "feet"),
  22923. weight: math.unit(90, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/pixil/front.svg",
  22927. extra: 2000/1618,
  22928. bottom: 12.3/2011
  22929. }
  22930. },
  22931. },
  22932. [
  22933. {
  22934. name: "Normal",
  22935. height: math.unit(5, "feet"),
  22936. default: true
  22937. },
  22938. {
  22939. name: "Megamacro",
  22940. height: math.unit(10, "miles"),
  22941. },
  22942. ]
  22943. ))
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  22946. {
  22947. front: {
  22948. height: math.unit(7 + 2/12, "feet"),
  22949. weight: math.unit(200, "lb"),
  22950. name: "Front",
  22951. image: {
  22952. source: "./media/characters/angel/front.svg",
  22953. extra: 1830/1737,
  22954. bottom: 22.6/1854,
  22955. }
  22956. },
  22957. },
  22958. [
  22959. {
  22960. name: "Normal",
  22961. height: math.unit(7 + 2/12, "feet"),
  22962. default: true
  22963. },
  22964. {
  22965. name: "Macro",
  22966. height: math.unit(1000, "feet")
  22967. },
  22968. {
  22969. name: "Megamacro",
  22970. height: math.unit(2, "miles")
  22971. },
  22972. {
  22973. name: "Gigamacro",
  22974. height: math.unit(20, "earths")
  22975. },
  22976. ]
  22977. ))
  22978. characterMakers.push(() => makeCharacter(
  22979. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  22980. {
  22981. front: {
  22982. height: math.unit(5, "feet"),
  22983. weight: math.unit(180, "lb"),
  22984. name: "Front",
  22985. image: {
  22986. source: "./media/characters/mekana/front.svg",
  22987. extra: 1671/1605,
  22988. bottom: 3.5/1691
  22989. }
  22990. },
  22991. side: {
  22992. height: math.unit(5, "feet"),
  22993. weight: math.unit(180, "lb"),
  22994. name: "Side",
  22995. image: {
  22996. source: "./media/characters/mekana/side.svg",
  22997. extra: 1671/1605,
  22998. bottom: 3.5/1691
  22999. }
  23000. },
  23001. back: {
  23002. height: math.unit(5, "feet"),
  23003. weight: math.unit(180, "lb"),
  23004. name: "Back",
  23005. image: {
  23006. source: "./media/characters/mekana/back.svg",
  23007. extra: 1671/1605,
  23008. bottom: 3.5/1691
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Normal",
  23015. height: math.unit(5, "feet"),
  23016. default: true
  23017. },
  23018. ]
  23019. ))
  23020. characterMakers.push(() => makeCharacter(
  23021. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23022. {
  23023. front: {
  23024. height: math.unit(4 + 6/12, "feet"),
  23025. weight: math.unit(80, "lb"),
  23026. name: "Front",
  23027. image: {
  23028. source: "./media/characters/pixie/front.svg",
  23029. extra: 1924/1825,
  23030. bottom: 22.4/1946
  23031. }
  23032. },
  23033. },
  23034. [
  23035. {
  23036. name: "Normal",
  23037. height: math.unit(4 + 6/12, "feet"),
  23038. default: true
  23039. },
  23040. {
  23041. name: "Macro",
  23042. height: math.unit(40, "feet")
  23043. },
  23044. ]
  23045. ))
  23046. //characters
  23047. function makeCharacters() {
  23048. const results = [];
  23049. characterMakers.forEach(character => {
  23050. results.push(character());
  23051. });
  23052. return results;
  23053. }