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.
 
 
 

23544 line
565 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "mammal"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. }
  496. function getSpeciesInfo(speciesList) {
  497. let result = new Set();
  498. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  499. result.add(entry)
  500. });
  501. return Array.from(result);
  502. };
  503. function getSpeciesInfoHelper(species) {
  504. if (!speciesData[species]) {
  505. console.warn(species + " doesn't exist");
  506. return [];
  507. }
  508. if (speciesData[species].parents) {
  509. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  510. } else {
  511. return [species];
  512. }
  513. }
  514. characterMakers.push(() => makeCharacter(
  515. {
  516. name: "Fen",
  517. species: ["crux"],
  518. description: {
  519. title: "Bio",
  520. text: "Very furry. Sheds on everything."
  521. },
  522. tags: [
  523. "anthro"
  524. ]
  525. },
  526. {
  527. back: {
  528. height: math.unit(2.2428, "meter"),
  529. weight: math.unit(124.738, "kg"),
  530. name: "Back",
  531. image: {
  532. source: "./media/characters/fen/back.svg",
  533. extra: 1025 / 935,
  534. bottom: 0.01
  535. },
  536. info: {
  537. description: {
  538. mode: "append",
  539. text: "\n\nHe is not currently looking at you."
  540. }
  541. }
  542. },
  543. full: {
  544. height: math.unit(1.34, "meter"),
  545. weight: math.unit(225, "kg"),
  546. name: "Full",
  547. image: {
  548. source: "./media/characters/fen/full.svg"
  549. },
  550. info: {
  551. description: {
  552. mode: "append",
  553. text: "\n\nMunch."
  554. }
  555. }
  556. },
  557. kneeling: {
  558. height: math.unit(5.4, "feet"),
  559. weight: math.unit(124.738, "kg"),
  560. name: "Kneeling",
  561. image: {
  562. source: "./media/characters/fen/kneeling.svg",
  563. extra: 563 / 507
  564. }
  565. },
  566. goo: {
  567. height: math.unit(2.8, "feet"),
  568. weight: math.unit(125, "kg"),
  569. capacity: math.unit(1, "people"),
  570. name: "Goo",
  571. image: {
  572. source: "./media/characters/fen/goo.svg",
  573. bottom: 116/613
  574. }
  575. },
  576. lounging: {
  577. height: math.unit(6.5, "feet"),
  578. weight: math.unit(125, "kg"),
  579. name: "Lounging",
  580. image: {
  581. source: "./media/characters/fen/lounging.svg"
  582. }
  583. },
  584. },
  585. [
  586. {
  587. name: "Normal",
  588. height: math.unit(2.2428, "meter")
  589. },
  590. {
  591. name: "Big",
  592. height: math.unit(12, "feet")
  593. },
  594. {
  595. name: "Minimacro",
  596. height: math.unit(40, "feet"),
  597. default: true,
  598. info: {
  599. description: {
  600. mode: "append",
  601. text: "\n\nTOO DAMN BIG"
  602. }
  603. }
  604. },
  605. {
  606. name: "Macro",
  607. height: math.unit(100, "feet"),
  608. info: {
  609. description: {
  610. mode: "append",
  611. text: "\n\nTOO DAMN BIG"
  612. }
  613. }
  614. },
  615. {
  616. name: "Macro+",
  617. height: math.unit(300, "feet")
  618. },
  619. {
  620. name: "Megamacro",
  621. height: math.unit(2, "miles")
  622. }
  623. ]
  624. ))
  625. characterMakers.push(() => makeCharacter(
  626. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  627. {
  628. front: {
  629. height: math.unit(183, "cm"),
  630. weight: math.unit(80, "kg"),
  631. name: "Front",
  632. image: {
  633. source: "./media/characters/sofia-fluttertail/front.svg",
  634. bottom: 0.01,
  635. extra: 2154 / 2081
  636. }
  637. },
  638. frontAlt: {
  639. height: math.unit(183, "cm"),
  640. weight: math.unit(80, "kg"),
  641. name: "Front (alt)",
  642. image: {
  643. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  644. }
  645. },
  646. back: {
  647. height: math.unit(183, "cm"),
  648. weight: math.unit(80, "kg"),
  649. name: "Back",
  650. image: {
  651. source: "./media/characters/sofia-fluttertail/back.svg"
  652. }
  653. },
  654. kneeling: {
  655. height: math.unit(125, "cm"),
  656. weight: math.unit(80, "kg"),
  657. name: "Kneeling",
  658. image: {
  659. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  660. extra: 1033/977,
  661. bottom: 23.7/1057
  662. }
  663. },
  664. maw: {
  665. height: math.unit(183 / 5, "cm"),
  666. name: "Maw",
  667. image: {
  668. source: "./media/characters/sofia-fluttertail/maw.svg"
  669. }
  670. },
  671. mawcloseup: {
  672. height: math.unit(183 / 5 * 0.41, "cm"),
  673. name: "Maw (Closeup)",
  674. image: {
  675. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  676. }
  677. },
  678. },
  679. [
  680. {
  681. name: "Normal",
  682. height: math.unit(1.83, "meter")
  683. },
  684. {
  685. name: "Size Thief",
  686. height: math.unit(18, "feet")
  687. },
  688. {
  689. name: "50 Foot Collie",
  690. height: math.unit(50, "feet")
  691. },
  692. {
  693. name: "Macro",
  694. height: math.unit(96, "feet"),
  695. default: true
  696. },
  697. {
  698. name: "Megamerger",
  699. height: math.unit(650, "feet")
  700. },
  701. ]
  702. ))
  703. characterMakers.push(() => makeCharacter(
  704. { name: "March", species: ["dragon"], tags: ["anthro"] },
  705. {
  706. front: {
  707. height: math.unit(7, "feet"),
  708. weight: math.unit(100, "kg"),
  709. name: "Front",
  710. image: {
  711. source: "./media/characters/march/front.svg",
  712. extra: 1,
  713. bottom: 0.015
  714. }
  715. },
  716. foot: {
  717. height: math.unit(0.9, "feet"),
  718. name: "Foot",
  719. image: {
  720. source: "./media/characters/march/foot.svg"
  721. }
  722. },
  723. },
  724. [
  725. {
  726. name: "Normal",
  727. height: math.unit(7.9, "feet")
  728. },
  729. {
  730. name: "Macro",
  731. height: math.unit(220, "meters")
  732. },
  733. {
  734. name: "Megamacro",
  735. height: math.unit(2.98, "km"),
  736. default: true
  737. },
  738. {
  739. name: "Gigamacro",
  740. height: math.unit(15963, "km")
  741. },
  742. {
  743. name: "Teramacro",
  744. height: math.unit(2980000000, "km")
  745. },
  746. {
  747. name: "Examacro",
  748. height: math.unit(250, "parsecs")
  749. },
  750. ]
  751. ))
  752. characterMakers.push(() => makeCharacter(
  753. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  754. {
  755. front: {
  756. height: math.unit(6, "feet"),
  757. weight: math.unit(60, "kg"),
  758. name: "Front",
  759. image: {
  760. source: "./media/characters/noir/front.svg",
  761. extra: 1,
  762. bottom: 0.032
  763. }
  764. },
  765. },
  766. [
  767. {
  768. name: "Normal",
  769. height: math.unit(6.6, "feet")
  770. },
  771. {
  772. name: "Macro",
  773. height: math.unit(500, "feet")
  774. },
  775. {
  776. name: "Megamacro",
  777. height: math.unit(2.5, "km"),
  778. default: true
  779. },
  780. {
  781. name: "Gigamacro",
  782. height: math.unit(22500, "km")
  783. },
  784. {
  785. name: "Teramacro",
  786. height: math.unit(2500000000, "km")
  787. },
  788. {
  789. name: "Examacro",
  790. height: math.unit(200, "parsecs")
  791. },
  792. ]
  793. ))
  794. characterMakers.push(() => makeCharacter(
  795. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  796. {
  797. front: {
  798. height: math.unit(7, "feet"),
  799. weight: math.unit(100, "kg"),
  800. name: "Front",
  801. image: {
  802. source: "./media/characters/okuri/front.svg",
  803. extra: 1,
  804. bottom: 0.037
  805. }
  806. },
  807. back: {
  808. height: math.unit(7, "feet"),
  809. weight: math.unit(100, "kg"),
  810. name: "Back",
  811. image: {
  812. source: "./media/characters/okuri/back.svg",
  813. extra: 1,
  814. bottom: 0.007
  815. }
  816. },
  817. },
  818. [
  819. {
  820. name: "Megamacro",
  821. height: math.unit(100, "miles"),
  822. default: true
  823. },
  824. ]
  825. ))
  826. characterMakers.push(() => makeCharacter(
  827. { name: "Manny", species: ["pokemon"], tags: ["anthro"] },
  828. {
  829. front: {
  830. height: math.unit(7, "feet"),
  831. weight: math.unit(100, "kg"),
  832. name: "Front",
  833. image: {
  834. source: "./media/characters/manny/front.svg",
  835. extra: 1,
  836. bottom: 0.06
  837. }
  838. },
  839. back: {
  840. height: math.unit(7, "feet"),
  841. weight: math.unit(100, "kg"),
  842. name: "Back",
  843. image: {
  844. source: "./media/characters/manny/back.svg",
  845. extra: 1,
  846. bottom: 0.014
  847. }
  848. },
  849. },
  850. [
  851. {
  852. name: "Normal",
  853. height: math.unit(7, "feet"),
  854. },
  855. {
  856. name: "Macro",
  857. height: math.unit(78, "feet"),
  858. default: true
  859. },
  860. {
  861. name: "Macro+",
  862. height: math.unit(300, "meters")
  863. },
  864. {
  865. name: "Macro++",
  866. height: math.unit(2400, "meters")
  867. },
  868. {
  869. name: "Megamacro",
  870. height: math.unit(5167, "meters")
  871. },
  872. {
  873. name: "Gigamacro",
  874. height: math.unit(41769, "miles")
  875. },
  876. ]
  877. ))
  878. characterMakers.push(() => makeCharacter(
  879. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  880. {
  881. front: {
  882. height: math.unit(7, "feet"),
  883. weight: math.unit(100, "kg"),
  884. name: "Front",
  885. image: {
  886. source: "./media/characters/adake/front-1.svg"
  887. }
  888. },
  889. frontAlt: {
  890. height: math.unit(7, "feet"),
  891. weight: math.unit(100, "kg"),
  892. name: "Front (Alt)",
  893. image: {
  894. source: "./media/characters/adake/front-2.svg",
  895. extra: 1,
  896. bottom: 0.01
  897. }
  898. },
  899. back: {
  900. height: math.unit(7, "feet"),
  901. weight: math.unit(100, "kg"),
  902. name: "Back",
  903. image: {
  904. source: "./media/characters/adake/back.svg",
  905. }
  906. },
  907. kneel: {
  908. height: math.unit(5.385, "feet"),
  909. weight: math.unit(100, "kg"),
  910. name: "Kneeling",
  911. image: {
  912. source: "./media/characters/adake/kneel.svg",
  913. bottom: 0.052
  914. }
  915. },
  916. },
  917. [
  918. {
  919. name: "Normal",
  920. height: math.unit(7, "feet"),
  921. },
  922. {
  923. name: "Macro",
  924. height: math.unit(78, "feet"),
  925. default: true
  926. },
  927. {
  928. name: "Macro+",
  929. height: math.unit(300, "meters")
  930. },
  931. {
  932. name: "Macro++",
  933. height: math.unit(2400, "meters")
  934. },
  935. {
  936. name: "Megamacro",
  937. height: math.unit(5167, "meters")
  938. },
  939. {
  940. name: "Gigamacro",
  941. height: math.unit(41769, "miles")
  942. },
  943. ]
  944. ))
  945. characterMakers.push(() => makeCharacter(
  946. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  947. {
  948. front: {
  949. height: math.unit(1.65, "meters"),
  950. weight: math.unit(50, "kg"),
  951. name: "Front",
  952. image: {
  953. source: "./media/characters/elijah/front.svg",
  954. extra: 858/830,
  955. bottom: 95.5/953.8559
  956. }
  957. },
  958. back: {
  959. height: math.unit(1.65, "meters"),
  960. weight: math.unit(50, "kg"),
  961. name: "Back",
  962. image: {
  963. source: "./media/characters/elijah/back.svg",
  964. extra: 895/850,
  965. bottom: 5.3/897.956
  966. }
  967. },
  968. frontNsfw: {
  969. height: math.unit(1.65, "meters"),
  970. weight: math.unit(50, "kg"),
  971. name: "Front (NSFW)",
  972. image: {
  973. source: "./media/characters/elijah/front-nsfw.svg",
  974. extra: 858/830,
  975. bottom: 95.5/953.8559
  976. }
  977. },
  978. backNsfw: {
  979. height: math.unit(1.65, "meters"),
  980. weight: math.unit(50, "kg"),
  981. name: "Back (NSFW)",
  982. image: {
  983. source: "./media/characters/elijah/back-nsfw.svg",
  984. extra: 895/850,
  985. bottom: 5.3/897.956
  986. }
  987. },
  988. dick: {
  989. height: math.unit(1, "feet"),
  990. name: "Dick",
  991. image: {
  992. source: "./media/characters/elijah/dick.svg"
  993. }
  994. },
  995. beakOpen: {
  996. height: math.unit(1.25, "feet"),
  997. name: "Beak (Open)",
  998. image: {
  999. source: "./media/characters/elijah/beak-open.svg"
  1000. }
  1001. },
  1002. beakShut: {
  1003. height: math.unit(1.25, "feet"),
  1004. name: "Beak (Shut)",
  1005. image: {
  1006. source: "./media/characters/elijah/beak-shut.svg"
  1007. }
  1008. },
  1009. footFlexing: {
  1010. height: math.unit(1.61, "feet"),
  1011. name: "Foot (Flexing)",
  1012. image: {
  1013. source: "./media/characters/elijah/foot-flexing.svg"
  1014. }
  1015. },
  1016. footStepping: {
  1017. height: math.unit(1.44, "feet"),
  1018. name: "Foot (Stepping)",
  1019. image: {
  1020. source: "./media/characters/elijah/foot-stepping.svg"
  1021. }
  1022. },
  1023. plantigradeLeg: {
  1024. height: math.unit(2.34, "feet"),
  1025. name: "Plantigrade Leg",
  1026. image: {
  1027. source: "./media/characters/elijah/plantigrade-leg.svg"
  1028. }
  1029. },
  1030. plantigradeFootLeft: {
  1031. height: math.unit(0.9, "feet"),
  1032. name: "Plantigrade Foot (Left)",
  1033. image: {
  1034. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1035. }
  1036. },
  1037. plantigradeFootRight: {
  1038. height: math.unit(0.9, "feet"),
  1039. name: "Plantigrade Foot (Right)",
  1040. image: {
  1041. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1042. }
  1043. },
  1044. },
  1045. [
  1046. {
  1047. name: "Normal",
  1048. height: math.unit(1.65, "meters")
  1049. },
  1050. {
  1051. name: "Macro",
  1052. height: math.unit(55, "meters"),
  1053. default: true
  1054. },
  1055. {
  1056. name: "Macro+",
  1057. height: math.unit(105, "meters")
  1058. },
  1059. ]
  1060. ))
  1061. characterMakers.push(() => makeCharacter(
  1062. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1063. {
  1064. front: {
  1065. height: math.unit(11, "feet"),
  1066. weight: math.unit(80, "kg"),
  1067. name: "Front",
  1068. image: {
  1069. source: "./media/characters/rai/front.svg",
  1070. extra: 1,
  1071. bottom: 0.03
  1072. }
  1073. },
  1074. side: {
  1075. height: math.unit(11, "feet"),
  1076. weight: math.unit(80, "kg"),
  1077. name: "Side",
  1078. image: {
  1079. source: "./media/characters/rai/side.svg"
  1080. }
  1081. },
  1082. back: {
  1083. height: math.unit(11, "feet"),
  1084. weight: math.unit(80, "lb"),
  1085. name: "Back",
  1086. image: {
  1087. source: "./media/characters/rai/back.svg",
  1088. extra: 1,
  1089. bottom: 0.01
  1090. }
  1091. },
  1092. feral: {
  1093. height: math.unit(11, "feet"),
  1094. weight: math.unit(800, "lb"),
  1095. name: "Feral",
  1096. image: {
  1097. source: "./media/characters/rai/feral.svg",
  1098. extra: 1050 / 659,
  1099. bottom: 0.07
  1100. }
  1101. },
  1102. dragon: {
  1103. height: math.unit(23, "feet"),
  1104. weight: math.unit(50000, "lb"),
  1105. name: "Dragon",
  1106. image: {
  1107. source: "./media/characters/rai/dragon.svg",
  1108. extra: 2498/2030,
  1109. bottom: 85.2/2584
  1110. }
  1111. },
  1112. maw: {
  1113. height: math.unit(6 / 3.81416, "feet"),
  1114. name: "Maw",
  1115. image: {
  1116. source: "./media/characters/rai/maw.svg"
  1117. }
  1118. },
  1119. },
  1120. [
  1121. {
  1122. name: "Normal",
  1123. height: math.unit(11, "feet")
  1124. },
  1125. {
  1126. name: "Macro",
  1127. height: math.unit(302, "feet"),
  1128. default: true
  1129. },
  1130. ]
  1131. ))
  1132. characterMakers.push(() => makeCharacter(
  1133. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1134. {
  1135. front: {
  1136. height: math.unit(7, "feet"),
  1137. weight: math.unit(80, "kg"),
  1138. name: "Front",
  1139. image: {
  1140. source: "./media/characters/jazzy/front.svg",
  1141. extra: 1,
  1142. bottom: 0.01
  1143. }
  1144. },
  1145. back: {
  1146. height: math.unit(7, "feet"),
  1147. weight: math.unit(80, "kg"),
  1148. name: "Back",
  1149. image: {
  1150. source: "./media/characters/jazzy/back.svg",
  1151. extra: 1,
  1152. bottom: 0.01
  1153. }
  1154. },
  1155. },
  1156. [
  1157. {
  1158. name: "Macro",
  1159. height: math.unit(216, "feet"),
  1160. default: true
  1161. },
  1162. ]
  1163. ))
  1164. characterMakers.push(() => makeCharacter(
  1165. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1166. {
  1167. front: {
  1168. height: math.unit(7, "feet"),
  1169. weight: math.unit(80, "kg"),
  1170. name: "Front",
  1171. image: {
  1172. source: "./media/characters/flamm/front.svg",
  1173. extra: 1794 / 1677,
  1174. bottom: 31.7 / 1828.5
  1175. }
  1176. },
  1177. },
  1178. [
  1179. {
  1180. name: "Normal",
  1181. height: math.unit(9.5, "feet")
  1182. },
  1183. {
  1184. name: "Macro",
  1185. height: math.unit(200, "feet"),
  1186. default: true
  1187. },
  1188. ]
  1189. ))
  1190. characterMakers.push(() => makeCharacter(
  1191. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1192. {
  1193. front: {
  1194. height: math.unit(7, "feet"),
  1195. weight: math.unit(80, "kg"),
  1196. name: "Front",
  1197. image: {
  1198. source: "./media/characters/zephiro/front.svg",
  1199. extra: 2309 / 2162,
  1200. bottom: 0.069
  1201. }
  1202. },
  1203. side: {
  1204. height: math.unit(7, "feet"),
  1205. weight: math.unit(80, "kg"),
  1206. name: "Side",
  1207. image: {
  1208. source: "./media/characters/zephiro/side.svg",
  1209. extra: 2403 / 2279,
  1210. bottom: 0.015
  1211. }
  1212. },
  1213. back: {
  1214. height: math.unit(7, "feet"),
  1215. weight: math.unit(80, "kg"),
  1216. name: "Back",
  1217. image: {
  1218. source: "./media/characters/zephiro/back.svg",
  1219. extra: 2373 / 2244,
  1220. bottom: 0.013
  1221. }
  1222. },
  1223. },
  1224. [
  1225. {
  1226. name: "Micro",
  1227. height: math.unit(3, "inches")
  1228. },
  1229. {
  1230. name: "Normal",
  1231. height: math.unit(5 + 3 / 12, "feet"),
  1232. default: true
  1233. },
  1234. {
  1235. name: "Macro",
  1236. height: math.unit(118, "feet")
  1237. },
  1238. ]
  1239. ))
  1240. characterMakers.push(() => makeCharacter(
  1241. { name: "Fory", species: ["weasel"], tags: ["anthro"] },
  1242. {
  1243. front: {
  1244. height: math.unit(5, "feet"),
  1245. weight: math.unit(90, "kg"),
  1246. name: "Front",
  1247. image: {
  1248. source: "./media/characters/fory/front.svg",
  1249. extra: 2862 / 2674,
  1250. bottom: 180 / 3043.8
  1251. }
  1252. },
  1253. back: {
  1254. height: math.unit(5, "feet"),
  1255. weight: math.unit(90, "kg"),
  1256. name: "Back",
  1257. image: {
  1258. source: "./media/characters/fory/back.svg",
  1259. extra: 2962 / 2791,
  1260. bottom: 106 / 3071.8
  1261. }
  1262. },
  1263. foot: {
  1264. height: math.unit(2.14, "feet"),
  1265. name: "Foot",
  1266. image: {
  1267. source: "./media/characters/fory/foot.svg"
  1268. }
  1269. },
  1270. },
  1271. [
  1272. {
  1273. name: "Normal",
  1274. height: math.unit(5, "feet")
  1275. },
  1276. {
  1277. name: "Macro",
  1278. height: math.unit(50, "feet"),
  1279. default: true
  1280. },
  1281. {
  1282. name: "Megamacro",
  1283. height: math.unit(10, "miles")
  1284. },
  1285. {
  1286. name: "Gigamacro",
  1287. height: math.unit(5, "earths")
  1288. },
  1289. ]
  1290. ))
  1291. characterMakers.push(() => makeCharacter(
  1292. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  1293. {
  1294. front: {
  1295. height: math.unit(7, "feet"),
  1296. weight: math.unit(90, "kg"),
  1297. name: "Front",
  1298. image: {
  1299. source: "./media/characters/kurrikage/front.svg",
  1300. extra: 1,
  1301. bottom: 0.035
  1302. }
  1303. },
  1304. back: {
  1305. height: math.unit(7, "feet"),
  1306. weight: math.unit(90, "lb"),
  1307. name: "Back",
  1308. image: {
  1309. source: "./media/characters/kurrikage/back.svg"
  1310. }
  1311. },
  1312. paw: {
  1313. height: math.unit(1.5, "feet"),
  1314. name: "Paw",
  1315. image: {
  1316. source: "./media/characters/kurrikage/paw.svg"
  1317. }
  1318. },
  1319. staff: {
  1320. height: math.unit(6.7, "feet"),
  1321. name: "Staff",
  1322. image: {
  1323. source: "./media/characters/kurrikage/staff.svg"
  1324. }
  1325. },
  1326. peek: {
  1327. height: math.unit(1.05, "feet"),
  1328. name: "Peeking",
  1329. image: {
  1330. source: "./media/characters/kurrikage/peek.svg",
  1331. bottom: 0.08
  1332. }
  1333. },
  1334. },
  1335. [
  1336. {
  1337. name: "Normal",
  1338. height: math.unit(12, "feet"),
  1339. default: true
  1340. },
  1341. {
  1342. name: "Big",
  1343. height: math.unit(20, "feet")
  1344. },
  1345. {
  1346. name: "Macro",
  1347. height: math.unit(500, "feet")
  1348. },
  1349. {
  1350. name: "Megamacro",
  1351. height: math.unit(20, "miles")
  1352. },
  1353. ]
  1354. ))
  1355. characterMakers.push(() => makeCharacter(
  1356. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  1357. {
  1358. front: {
  1359. height: math.unit(6, "feet"),
  1360. weight: math.unit(75, "kg"),
  1361. name: "Front",
  1362. image: {
  1363. source: "./media/characters/shingo/front.svg",
  1364. extra: 3511 / 3338,
  1365. bottom: 0.005
  1366. }
  1367. },
  1368. },
  1369. [
  1370. {
  1371. name: "Micro",
  1372. height: math.unit(4, "inches")
  1373. },
  1374. {
  1375. name: "Normal",
  1376. height: math.unit(6, "feet"),
  1377. default: true
  1378. },
  1379. {
  1380. name: "Macro",
  1381. height: math.unit(108, "feet")
  1382. }
  1383. ]
  1384. ))
  1385. characterMakers.push(() => makeCharacter(
  1386. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  1387. {
  1388. side: {
  1389. height: math.unit(6, "feet"),
  1390. weight: math.unit(75, "kg"),
  1391. name: "Side",
  1392. image: {
  1393. source: "./media/characters/aigey/side.svg"
  1394. }
  1395. },
  1396. },
  1397. [
  1398. {
  1399. name: "Macro",
  1400. height: math.unit(200, "feet"),
  1401. default: true
  1402. },
  1403. {
  1404. name: "Megamacro",
  1405. height: math.unit(100, "miles")
  1406. },
  1407. ]
  1408. )
  1409. )
  1410. characterMakers.push(() => makeCharacter(
  1411. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  1412. {
  1413. front: {
  1414. height: math.unit(5 + 5 / 12, "feet"),
  1415. weight: math.unit(75, "kg"),
  1416. name: "Front",
  1417. image: {
  1418. source: "./media/characters/natasha/front.svg",
  1419. extra: 859/824,
  1420. bottom: 23/879.6
  1421. }
  1422. },
  1423. frontNsfw: {
  1424. height: math.unit(5 + 5 / 12, "feet"),
  1425. weight: math.unit(75, "kg"),
  1426. name: "Front (NSFW)",
  1427. image: {
  1428. source: "./media/characters/natasha/front-nsfw.svg",
  1429. extra: 859/824,
  1430. bottom: 23/879.6
  1431. }
  1432. },
  1433. frontErect: {
  1434. height: math.unit(5 + 5 / 12, "feet"),
  1435. weight: math.unit(75, "kg"),
  1436. name: "Front (Erect)",
  1437. image: {
  1438. source: "./media/characters/natasha/front-erect.svg",
  1439. extra: 859/824,
  1440. bottom: 23/879.6
  1441. }
  1442. },
  1443. back: {
  1444. height: math.unit(5 + 5 / 12, "feet"),
  1445. weight: math.unit(75, "kg"),
  1446. name: "Back",
  1447. image: {
  1448. source: "./media/characters/natasha/back.svg",
  1449. extra: 887.9/852.6,
  1450. bottom: 9.7/896.4
  1451. }
  1452. },
  1453. backAlt: {
  1454. height: math.unit(5 + 5 / 12, "feet"),
  1455. weight: math.unit(75, "kg"),
  1456. name: "Back (Alt)",
  1457. image: {
  1458. source: "./media/characters/natasha/back-alt.svg",
  1459. extra: 1236.7/1192,
  1460. bottom: 22.3/1258.2
  1461. }
  1462. },
  1463. dick: {
  1464. height: math.unit(1.772, "feet"),
  1465. name: "Dick",
  1466. image: {
  1467. source: "./media/characters/natasha/dick.svg"
  1468. }
  1469. },
  1470. },
  1471. [
  1472. {
  1473. name: "Normal",
  1474. height: math.unit(5 + 5 / 12, "feet")
  1475. },
  1476. {
  1477. name: "Large",
  1478. height: math.unit(12, "feet")
  1479. },
  1480. {
  1481. name: "Macro",
  1482. height: math.unit(100, "feet"),
  1483. default: true
  1484. },
  1485. {
  1486. name: "Macro+",
  1487. height: math.unit(260, "feet")
  1488. },
  1489. {
  1490. name: "Macro++",
  1491. height: math.unit(1, "mile")
  1492. },
  1493. ]
  1494. ))
  1495. characterMakers.push(() => makeCharacter(
  1496. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  1497. {
  1498. front: {
  1499. height: math.unit(6, "feet"),
  1500. weight: math.unit(75, "kg"),
  1501. name: "Front",
  1502. image: {
  1503. source: "./media/characters/malik/front.svg"
  1504. }
  1505. },
  1506. side: {
  1507. height: math.unit(6, "feet"),
  1508. weight: math.unit(75, "kg"),
  1509. name: "Side",
  1510. image: {
  1511. source: "./media/characters/malik/side.svg",
  1512. extra: 1.1539
  1513. }
  1514. },
  1515. back: {
  1516. height: math.unit(6, "feet"),
  1517. weight: math.unit(75, "kg"),
  1518. name: "Back",
  1519. image: {
  1520. source: "./media/characters/malik/back.svg"
  1521. }
  1522. },
  1523. },
  1524. [
  1525. {
  1526. name: "Macro",
  1527. height: math.unit(156, "feet"),
  1528. default: true
  1529. },
  1530. {
  1531. name: "Macro+",
  1532. height: math.unit(1188, "feet")
  1533. },
  1534. ]
  1535. ))
  1536. characterMakers.push(() => makeCharacter(
  1537. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  1538. {
  1539. front: {
  1540. height: math.unit(6, "feet"),
  1541. weight: math.unit(75, "kg"),
  1542. name: "Front",
  1543. image: {
  1544. source: "./media/characters/sefer/front.svg"
  1545. }
  1546. },
  1547. back: {
  1548. height: math.unit(6, "feet"),
  1549. weight: math.unit(75, "kg"),
  1550. name: "Back",
  1551. image: {
  1552. source: "./media/characters/sefer/back.svg"
  1553. }
  1554. },
  1555. },
  1556. [
  1557. {
  1558. name: "Normal",
  1559. height: math.unit(6, "feet"),
  1560. default: true
  1561. },
  1562. ]
  1563. ))
  1564. characterMakers.push(() => makeCharacter(
  1565. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  1566. {
  1567. body: {
  1568. height: math.unit(2.2428, "meter"),
  1569. weight: math.unit(124.738, "kg"),
  1570. name: "Body",
  1571. image: {
  1572. extra: 1225 / 1050,
  1573. source: "./media/characters/north/front.svg"
  1574. }
  1575. }
  1576. },
  1577. [
  1578. {
  1579. name: "Micro",
  1580. height: math.unit(4, "inches")
  1581. },
  1582. {
  1583. name: "Macro",
  1584. height: math.unit(63, "meters")
  1585. },
  1586. {
  1587. name: "Megamacro",
  1588. height: math.unit(101, "miles"),
  1589. default: true
  1590. }
  1591. ]
  1592. ))
  1593. characterMakers.push(() => makeCharacter(
  1594. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  1595. {
  1596. angled: {
  1597. height: math.unit(4, "meter"),
  1598. weight: math.unit(150, "kg"),
  1599. name: "Angled",
  1600. image: {
  1601. source: "./media/characters/talan/angled-sfw.svg",
  1602. bottom: 29 / 3734
  1603. }
  1604. },
  1605. angledNsfw: {
  1606. height: math.unit(4, "meter"),
  1607. weight: math.unit(150, "kg"),
  1608. name: "Angled (NSFW)",
  1609. image: {
  1610. source: "./media/characters/talan/angled-nsfw.svg",
  1611. bottom: 29 / 3734
  1612. }
  1613. },
  1614. frontNsfw: {
  1615. height: math.unit(4, "meter"),
  1616. weight: math.unit(150, "kg"),
  1617. name: "Front (NSFW)",
  1618. image: {
  1619. source: "./media/characters/talan/front-nsfw.svg",
  1620. bottom: 29 / 3734
  1621. }
  1622. },
  1623. sideNsfw: {
  1624. height: math.unit(4, "meter"),
  1625. weight: math.unit(150, "kg"),
  1626. name: "Side (NSFW)",
  1627. image: {
  1628. source: "./media/characters/talan/side-nsfw.svg",
  1629. bottom: 29 / 3734
  1630. }
  1631. },
  1632. back: {
  1633. height: math.unit(4, "meter"),
  1634. weight: math.unit(150, "kg"),
  1635. name: "Back",
  1636. image: {
  1637. source: "./media/characters/talan/back.svg"
  1638. }
  1639. },
  1640. dickBottom: {
  1641. height: math.unit(0.621, "meter"),
  1642. name: "Dick (Bottom)",
  1643. image: {
  1644. source: "./media/characters/talan/dick-bottom.svg"
  1645. }
  1646. },
  1647. dickTop: {
  1648. height: math.unit(0.621, "meter"),
  1649. name: "Dick (Top)",
  1650. image: {
  1651. source: "./media/characters/talan/dick-top.svg"
  1652. }
  1653. },
  1654. dickSide: {
  1655. height: math.unit(0.305, "meter"),
  1656. name: "Dick (Side)",
  1657. image: {
  1658. source: "./media/characters/talan/dick-side.svg"
  1659. }
  1660. },
  1661. dickFront: {
  1662. height: math.unit(0.305, "meter"),
  1663. name: "Dick (Front)",
  1664. image: {
  1665. source: "./media/characters/talan/dick-front.svg"
  1666. }
  1667. },
  1668. },
  1669. [
  1670. {
  1671. name: "Normal",
  1672. height: math.unit(4, "meters")
  1673. },
  1674. {
  1675. name: "Macro",
  1676. height: math.unit(100, "meters")
  1677. },
  1678. {
  1679. name: "Megamacro",
  1680. height: math.unit(2, "miles"),
  1681. default: true
  1682. },
  1683. {
  1684. name: "Gigamacro",
  1685. height: math.unit(5000, "miles")
  1686. },
  1687. {
  1688. name: "Teramacro",
  1689. height: math.unit(100, "parsecs")
  1690. }
  1691. ]
  1692. ))
  1693. characterMakers.push(() => makeCharacter(
  1694. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  1695. {
  1696. front: {
  1697. height: math.unit(2, "meter"),
  1698. weight: math.unit(90, "kg"),
  1699. name: "Front",
  1700. image: {
  1701. source: "./media/characters/gael'rathus/front.svg"
  1702. }
  1703. },
  1704. frontAlt: {
  1705. height: math.unit(2, "meter"),
  1706. weight: math.unit(90, "kg"),
  1707. name: "Front (alt)",
  1708. image: {
  1709. source: "./media/characters/gael'rathus/front-alt.svg"
  1710. }
  1711. },
  1712. frontAlt2: {
  1713. height: math.unit(2, "meter"),
  1714. weight: math.unit(90, "kg"),
  1715. name: "Front (alt 2)",
  1716. image: {
  1717. source: "./media/characters/gael'rathus/front-alt-2.svg"
  1718. }
  1719. }
  1720. },
  1721. [
  1722. {
  1723. name: "Normal",
  1724. height: math.unit(9, "feet"),
  1725. default: true
  1726. },
  1727. {
  1728. name: "Large",
  1729. height: math.unit(25, "feet")
  1730. },
  1731. {
  1732. name: "Macro",
  1733. height: math.unit(0.25, "miles")
  1734. },
  1735. {
  1736. name: "Megamacro",
  1737. height: math.unit(10, "miles")
  1738. }
  1739. ]
  1740. ))
  1741. characterMakers.push(() => makeCharacter(
  1742. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  1743. {
  1744. side: {
  1745. height: math.unit(2, "meter"),
  1746. weight: math.unit(140, "kg"),
  1747. name: "Side",
  1748. image: {
  1749. source: "./media/characters/sosha/side.svg",
  1750. bottom: 0.042
  1751. }
  1752. },
  1753. },
  1754. [
  1755. {
  1756. name: "Normal",
  1757. height: math.unit(12, "feet"),
  1758. default: true
  1759. }
  1760. ]
  1761. ))
  1762. characterMakers.push(() => makeCharacter(
  1763. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  1764. {
  1765. side: {
  1766. height: math.unit(5 + 5 / 12, "feet"),
  1767. weight: math.unit(170, "kg"),
  1768. name: "Side",
  1769. image: {
  1770. source: "./media/characters/runnola/side.svg",
  1771. extra: 741 / 448,
  1772. bottom: 0.05
  1773. }
  1774. },
  1775. },
  1776. [
  1777. {
  1778. name: "Small",
  1779. height: math.unit(3, "feet")
  1780. },
  1781. {
  1782. name: "Normal",
  1783. height: math.unit(5 + 5 / 12, "feet"),
  1784. default: true
  1785. },
  1786. {
  1787. name: "Big",
  1788. height: math.unit(10, "feet")
  1789. },
  1790. ]
  1791. ))
  1792. characterMakers.push(() => makeCharacter(
  1793. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  1794. {
  1795. front: {
  1796. height: math.unit(2, "meter"),
  1797. weight: math.unit(50, "kg"),
  1798. name: "Front",
  1799. image: {
  1800. source: "./media/characters/kurribird/front.svg",
  1801. bottom: 0.015
  1802. }
  1803. },
  1804. frontAlt: {
  1805. height: math.unit(1.5, "meter"),
  1806. weight: math.unit(50, "kg"),
  1807. name: "Front (Alt)",
  1808. image: {
  1809. source: "./media/characters/kurribird/front-alt.svg",
  1810. extra: 1.45
  1811. }
  1812. },
  1813. },
  1814. [
  1815. {
  1816. name: "Normal",
  1817. height: math.unit(7, "feet")
  1818. },
  1819. {
  1820. name: "Big",
  1821. height: math.unit(12, "feet"),
  1822. default: true
  1823. },
  1824. {
  1825. name: "Macro",
  1826. height: math.unit(1500, "feet")
  1827. },
  1828. {
  1829. name: "Megamacro",
  1830. height: math.unit(2, "miles")
  1831. }
  1832. ]
  1833. ))
  1834. characterMakers.push(() => makeCharacter(
  1835. { name: "Elbial", species: ["goat", "lion", "demon"], tags: ["anthro"] },
  1836. {
  1837. front: {
  1838. height: math.unit(2, "meter"),
  1839. weight: math.unit(80, "kg"),
  1840. name: "Front",
  1841. image: {
  1842. source: "./media/characters/elbial/front.svg",
  1843. extra: 1643 / 1556,
  1844. bottom: 60.2 / 1696
  1845. }
  1846. },
  1847. side: {
  1848. height: math.unit(2, "meter"),
  1849. weight: math.unit(80, "kg"),
  1850. name: "Side",
  1851. image: {
  1852. source: "./media/characters/elbial/side.svg",
  1853. extra: 1630 / 1565,
  1854. bottom: 71.5 / 1697
  1855. }
  1856. },
  1857. back: {
  1858. height: math.unit(2, "meter"),
  1859. weight: math.unit(80, "kg"),
  1860. name: "Back",
  1861. image: {
  1862. source: "./media/characters/elbial/back.svg",
  1863. extra: 1668 / 1595,
  1864. bottom: 5.6 / 1672
  1865. }
  1866. },
  1867. frontDressed: {
  1868. height: math.unit(2, "meter"),
  1869. weight: math.unit(80, "kg"),
  1870. name: "Front (Dressed)",
  1871. image: {
  1872. source: "./media/characters/elbial/front-dressed.svg",
  1873. extra: 1653 / 1584,
  1874. bottom: 57 / 1708
  1875. }
  1876. },
  1877. genitals: {
  1878. height: math.unit(2 / 3.367, "meter"),
  1879. name: "Genitals",
  1880. image: {
  1881. source: "./media/characters/elbial/genitals.svg"
  1882. }
  1883. },
  1884. },
  1885. [
  1886. {
  1887. name: "Large",
  1888. height: math.unit(100, "feet")
  1889. },
  1890. {
  1891. name: "Macro",
  1892. height: math.unit(500, "feet"),
  1893. default: true
  1894. },
  1895. {
  1896. name: "Megamacro",
  1897. height: math.unit(10, "miles")
  1898. },
  1899. {
  1900. name: "Gigamacro",
  1901. height: math.unit(25000, "miles")
  1902. },
  1903. {
  1904. name: "Full-Size",
  1905. height: math.unit(8000000, "gigaparsecs")
  1906. }
  1907. ]
  1908. ))
  1909. characterMakers.push(() => makeCharacter(
  1910. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  1911. {
  1912. front: {
  1913. height: math.unit(2, "meter"),
  1914. weight: math.unit(60, "kg"),
  1915. name: "Front",
  1916. image: {
  1917. source: "./media/characters/noah/front.svg"
  1918. }
  1919. },
  1920. talons: {
  1921. height: math.unit(0.315, "meter"),
  1922. name: "Talons",
  1923. image: {
  1924. source: "./media/characters/noah/talons.svg"
  1925. }
  1926. }
  1927. },
  1928. [
  1929. {
  1930. name: "Large",
  1931. height: math.unit(50, "feet")
  1932. },
  1933. {
  1934. name: "Macro",
  1935. height: math.unit(750, "feet"),
  1936. default: true
  1937. },
  1938. {
  1939. name: "Megamacro",
  1940. height: math.unit(50, "miles")
  1941. },
  1942. {
  1943. name: "Gigamacro",
  1944. height: math.unit(100000, "miles")
  1945. },
  1946. {
  1947. name: "Full-Size",
  1948. height: math.unit(3000000000, "miles")
  1949. }
  1950. ]
  1951. ))
  1952. characterMakers.push(() => makeCharacter(
  1953. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  1954. {
  1955. front: {
  1956. height: math.unit(2, "meter"),
  1957. weight: math.unit(80, "kg"),
  1958. name: "Front",
  1959. image: {
  1960. source: "./media/characters/natalya/front.svg"
  1961. }
  1962. },
  1963. back: {
  1964. height: math.unit(2, "meter"),
  1965. weight: math.unit(80, "kg"),
  1966. name: "Back",
  1967. image: {
  1968. source: "./media/characters/natalya/back.svg"
  1969. }
  1970. }
  1971. },
  1972. [
  1973. {
  1974. name: "Normal",
  1975. height: math.unit(150, "feet"),
  1976. default: true
  1977. },
  1978. {
  1979. name: "Megamacro",
  1980. height: math.unit(5, "miles")
  1981. },
  1982. {
  1983. name: "Full-Size",
  1984. height: math.unit(600, "kiloparsecs")
  1985. }
  1986. ]
  1987. ))
  1988. characterMakers.push(() => makeCharacter(
  1989. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  1990. {
  1991. front: {
  1992. height: math.unit(2, "meter"),
  1993. weight: math.unit(50, "kg"),
  1994. name: "Front",
  1995. image: {
  1996. source: "./media/characters/erestrebah/front.svg",
  1997. extra: 208 / 193,
  1998. bottom: 0.055
  1999. }
  2000. },
  2001. back: {
  2002. height: math.unit(2, "meter"),
  2003. weight: math.unit(50, "kg"),
  2004. name: "Back",
  2005. image: {
  2006. source: "./media/characters/erestrebah/back.svg",
  2007. extra: 1.3
  2008. }
  2009. }
  2010. },
  2011. [
  2012. {
  2013. name: "Normal",
  2014. height: math.unit(10, "feet")
  2015. },
  2016. {
  2017. name: "Large",
  2018. height: math.unit(50, "feet"),
  2019. default: true
  2020. },
  2021. {
  2022. name: "Macro",
  2023. height: math.unit(300, "feet")
  2024. },
  2025. {
  2026. name: "Macro+",
  2027. height: math.unit(750, "feet")
  2028. },
  2029. {
  2030. name: "Megamacro",
  2031. height: math.unit(3, "miles")
  2032. }
  2033. ]
  2034. ))
  2035. characterMakers.push(() => makeCharacter(
  2036. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2037. {
  2038. front: {
  2039. height: math.unit(2, "meter"),
  2040. weight: math.unit(80, "kg"),
  2041. name: "Front",
  2042. image: {
  2043. source: "./media/characters/jennifer/front.svg",
  2044. bottom: 0.11,
  2045. extra: 1.16
  2046. }
  2047. },
  2048. frontAlt: {
  2049. height: math.unit(2, "meter"),
  2050. weight: math.unit(80, "kg"),
  2051. name: "Front (Alt)",
  2052. image: {
  2053. source: "./media/characters/jennifer/front-alt.svg"
  2054. }
  2055. }
  2056. },
  2057. [
  2058. {
  2059. name: "Canon Height",
  2060. height: math.unit(120, "feet"),
  2061. default: true
  2062. },
  2063. {
  2064. name: "Macro+",
  2065. height: math.unit(300, "feet")
  2066. },
  2067. {
  2068. name: "Megamacro",
  2069. height: math.unit(20000, "feet")
  2070. }
  2071. ]
  2072. ))
  2073. characterMakers.push(() => makeCharacter(
  2074. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2075. {
  2076. front: {
  2077. height: math.unit(2, "meter"),
  2078. weight: math.unit(50, "kg"),
  2079. name: "Front",
  2080. image: {
  2081. source: "./media/characters/kalista/front.svg",
  2082. extra: 1947 / 1700,
  2083. bottom: 76.6/1412.98
  2084. }
  2085. },
  2086. back: {
  2087. height: math.unit(2, "meter"),
  2088. weight: math.unit(50, "kg"),
  2089. name: "Back",
  2090. image: {
  2091. source: "./media/characters/kalista/back.svg",
  2092. extra: 1366 / 1156,
  2093. bottom: 33.9/1362.78
  2094. }
  2095. }
  2096. },
  2097. [
  2098. {
  2099. name: "Uncomfortably Small",
  2100. height: math.unit(10, "feet")
  2101. },
  2102. {
  2103. name: "Small",
  2104. height: math.unit(30, "feet")
  2105. },
  2106. {
  2107. name: "Macro",
  2108. height: math.unit(100, "feet"),
  2109. default: true
  2110. },
  2111. {
  2112. name: "Macro+",
  2113. height: math.unit(2000, "feet")
  2114. },
  2115. {
  2116. name: "True Form",
  2117. height: math.unit(8924, "miles")
  2118. }
  2119. ]
  2120. ))
  2121. characterMakers.push(() => makeCharacter(
  2122. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2123. {
  2124. front: {
  2125. height: math.unit(2, "meter"),
  2126. weight: math.unit(120, "kg"),
  2127. name: "Front",
  2128. image: {
  2129. source: "./media/characters/ggv/front.svg"
  2130. }
  2131. },
  2132. side: {
  2133. height: math.unit(2, "meter"),
  2134. weight: math.unit(120, "kg"),
  2135. name: "Side",
  2136. image: {
  2137. source: "./media/characters/ggv/side.svg"
  2138. }
  2139. }
  2140. },
  2141. [
  2142. {
  2143. name: "Extremely Puny",
  2144. height: math.unit(9 + 5 / 12, "feet")
  2145. },
  2146. {
  2147. name: "Horribly Small",
  2148. height: math.unit(47.7, "miles"),
  2149. default: true
  2150. },
  2151. {
  2152. name: "Reasonably Sized",
  2153. height: math.unit(25000, "parsecs")
  2154. },
  2155. {
  2156. name: "Slightly Uncompressed",
  2157. height: math.unit(7.77e31, "parsecs")
  2158. },
  2159. {
  2160. name: "Omniversal",
  2161. height: math.unit(1e300, "meters")
  2162. },
  2163. ]
  2164. ))
  2165. characterMakers.push(() => makeCharacter(
  2166. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2167. {
  2168. front: {
  2169. height: math.unit(2, "meter"),
  2170. weight: math.unit(75, "lb"),
  2171. name: "Front",
  2172. image: {
  2173. source: "./media/characters/napalm/front.svg"
  2174. }
  2175. },
  2176. back: {
  2177. height: math.unit(2, "meter"),
  2178. weight: math.unit(75, "lb"),
  2179. name: "Back",
  2180. image: {
  2181. source: "./media/characters/napalm/back.svg"
  2182. }
  2183. }
  2184. },
  2185. [
  2186. {
  2187. name: "Standard",
  2188. height: math.unit(55, "feet"),
  2189. default: true
  2190. }
  2191. ]
  2192. ))
  2193. characterMakers.push(() => makeCharacter(
  2194. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2195. {
  2196. front: {
  2197. height: math.unit(7 + 5 / 6, "feet"),
  2198. weight: math.unit(325, "lb"),
  2199. name: "Front",
  2200. image: {
  2201. source: "./media/characters/asana/front.svg",
  2202. extra: 1128 / 1068
  2203. }
  2204. },
  2205. back: {
  2206. height: math.unit(7 + 5 / 6, "feet"),
  2207. weight: math.unit(325, "lb"),
  2208. name: "Back",
  2209. image: {
  2210. source: "./media/characters/asana/back.svg",
  2211. extra: 1128 / 1068
  2212. }
  2213. },
  2214. },
  2215. [
  2216. {
  2217. name: "Standard",
  2218. height: math.unit(7 + 5 / 6, "feet"),
  2219. default: true
  2220. },
  2221. {
  2222. name: "Large",
  2223. height: math.unit(10, "meters")
  2224. },
  2225. {
  2226. name: "Macro",
  2227. height: math.unit(2500, "meters")
  2228. },
  2229. {
  2230. name: "Megamacro",
  2231. height: math.unit(5e6, "meters")
  2232. },
  2233. {
  2234. name: "Examacro",
  2235. height: math.unit(5e12, "lightyears")
  2236. },
  2237. {
  2238. name: "Max Size",
  2239. height: math.unit(1e31, "lightyears")
  2240. }
  2241. ]
  2242. ))
  2243. characterMakers.push(() => makeCharacter(
  2244. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  2245. {
  2246. front: {
  2247. height: math.unit(2, "meter"),
  2248. weight: math.unit(60, "kg"),
  2249. name: "Front",
  2250. image: {
  2251. source: "./media/characters/ebony/front.svg",
  2252. bottom: 0.03,
  2253. extra: 1045 / 810 + 0.03
  2254. }
  2255. },
  2256. side: {
  2257. height: math.unit(2, "meter"),
  2258. weight: math.unit(60, "kg"),
  2259. name: "Side",
  2260. image: {
  2261. source: "./media/characters/ebony/side.svg",
  2262. bottom: 0.03,
  2263. extra: 1045 / 810 + 0.03
  2264. }
  2265. },
  2266. back: {
  2267. height: math.unit(2, "meter"),
  2268. weight: math.unit(60, "kg"),
  2269. name: "Back",
  2270. image: {
  2271. source: "./media/characters/ebony/back.svg",
  2272. bottom: 0.01,
  2273. extra: 1045 / 810 + 0.01
  2274. }
  2275. },
  2276. },
  2277. [
  2278. // TODO check why I did this lol
  2279. {
  2280. name: "Standard",
  2281. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  2282. default: true
  2283. },
  2284. {
  2285. name: "Macro",
  2286. height: math.unit(200, "feet")
  2287. },
  2288. {
  2289. name: "Gigamacro",
  2290. height: math.unit(13000, "km")
  2291. }
  2292. ]
  2293. ))
  2294. characterMakers.push(() => makeCharacter(
  2295. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  2296. {
  2297. front: {
  2298. height: math.unit(6, "feet"),
  2299. weight: math.unit(175, "lb"),
  2300. name: "Front",
  2301. image: {
  2302. source: "./media/characters/mountain/front.svg"
  2303. }
  2304. },
  2305. back: {
  2306. height: math.unit(6, "feet"),
  2307. weight: math.unit(175, "lb"),
  2308. name: "Back",
  2309. image: {
  2310. source: "./media/characters/mountain/back.svg"
  2311. }
  2312. },
  2313. },
  2314. [
  2315. {
  2316. name: "Large",
  2317. height: math.unit(20, "meters")
  2318. },
  2319. {
  2320. name: "Macro",
  2321. height: math.unit(300, "meters")
  2322. },
  2323. {
  2324. name: "Gigamacro",
  2325. height: math.unit(10000, "km"),
  2326. default: true
  2327. },
  2328. {
  2329. name: "Examacro",
  2330. height: math.unit(10e9, "lightyears")
  2331. }
  2332. ]
  2333. ))
  2334. characterMakers.push(() => makeCharacter(
  2335. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  2336. {
  2337. front: {
  2338. height: math.unit(8, "feet"),
  2339. weight: math.unit(500, "lb"),
  2340. name: "Front",
  2341. image: {
  2342. source: "./media/characters/rick/front.svg"
  2343. }
  2344. }
  2345. },
  2346. [
  2347. {
  2348. name: "Normal",
  2349. height: math.unit(8, "feet"),
  2350. default: true
  2351. },
  2352. {
  2353. name: "Macro",
  2354. height: math.unit(5, "km")
  2355. }
  2356. ]
  2357. ))
  2358. characterMakers.push(() => makeCharacter(
  2359. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  2360. {
  2361. front: {
  2362. height: math.unit(8, "feet"),
  2363. weight: math.unit(120, "lb"),
  2364. name: "Front",
  2365. image: {
  2366. source: "./media/characters/ona/front.svg"
  2367. }
  2368. },
  2369. frontAlt: {
  2370. height: math.unit(8, "feet"),
  2371. weight: math.unit(120, "lb"),
  2372. name: "Front (Alt)",
  2373. image: {
  2374. source: "./media/characters/ona/front-alt.svg"
  2375. }
  2376. },
  2377. back: {
  2378. height: math.unit(8, "feet"),
  2379. weight: math.unit(120, "lb"),
  2380. name: "Back",
  2381. image: {
  2382. source: "./media/characters/ona/back.svg"
  2383. }
  2384. },
  2385. foot: {
  2386. height: math.unit(1.1, "feet"),
  2387. name: "Foot",
  2388. image: {
  2389. source: "./media/characters/ona/foot.svg"
  2390. }
  2391. }
  2392. },
  2393. [
  2394. {
  2395. name: "Megamacro",
  2396. height: math.unit(70, "km"),
  2397. default: true
  2398. },
  2399. {
  2400. name: "Gigamacro",
  2401. height: math.unit(681818, "miles")
  2402. },
  2403. {
  2404. name: "Examacro",
  2405. height: math.unit(3800000, "lightyears")
  2406. },
  2407. ]
  2408. ))
  2409. characterMakers.push(() => makeCharacter(
  2410. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  2411. {
  2412. front: {
  2413. height: math.unit(12, "feet"),
  2414. weight: math.unit(3000, "lb"),
  2415. name: "Front",
  2416. image: {
  2417. source: "./media/characters/mech/front.svg",
  2418. bottom: 0.025,
  2419. }
  2420. },
  2421. back: {
  2422. height: math.unit(12, "feet"),
  2423. weight: math.unit(3000, "lb"),
  2424. name: "Back",
  2425. image: {
  2426. source: "./media/characters/mech/back.svg",
  2427. bottom: 0.03,
  2428. }
  2429. }
  2430. },
  2431. [
  2432. {
  2433. name: "Normal",
  2434. height: math.unit(12, "feet")
  2435. },
  2436. {
  2437. name: "Macro",
  2438. height: math.unit(300, "feet"),
  2439. default: true
  2440. },
  2441. {
  2442. name: "Macro+",
  2443. height: math.unit(1500, "feet")
  2444. },
  2445. ]
  2446. ))
  2447. characterMakers.push(() => makeCharacter(
  2448. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  2449. {
  2450. front: {
  2451. height: math.unit(1.3, "meter"),
  2452. weight: math.unit(30, "kg"),
  2453. name: "Front",
  2454. image: {
  2455. source: "./media/characters/gregory/front.svg",
  2456. }
  2457. }
  2458. },
  2459. [
  2460. {
  2461. name: "Normal",
  2462. height: math.unit(1.3, "meter"),
  2463. default: true
  2464. },
  2465. {
  2466. name: "Macro",
  2467. height: math.unit(20, "meter")
  2468. }
  2469. ]
  2470. ))
  2471. characterMakers.push(() => makeCharacter(
  2472. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  2473. {
  2474. front: {
  2475. height: math.unit(2.8, "meter"),
  2476. weight: math.unit(200, "kg"),
  2477. name: "Front",
  2478. image: {
  2479. source: "./media/characters/elory/front.svg",
  2480. }
  2481. }
  2482. },
  2483. [
  2484. {
  2485. name: "Normal",
  2486. height: math.unit(2.8, "meter"),
  2487. default: true
  2488. },
  2489. {
  2490. name: "Macro",
  2491. height: math.unit(38, "meter")
  2492. }
  2493. ]
  2494. ))
  2495. characterMakers.push(() => makeCharacter(
  2496. { name: "Angelpatamon", species: ["patamon"], tags: ["anthro"] },
  2497. {
  2498. front: {
  2499. height: math.unit(470, "feet"),
  2500. weight: math.unit(924, "tons"),
  2501. name: "Front",
  2502. image: {
  2503. source: "./media/characters/angelpatamon/front.svg",
  2504. }
  2505. }
  2506. },
  2507. [
  2508. {
  2509. name: "Normal",
  2510. height: math.unit(470, "feet"),
  2511. default: true
  2512. },
  2513. {
  2514. name: "Deity Size I",
  2515. height: math.unit(28651.2, "km")
  2516. },
  2517. {
  2518. name: "Deity Size II",
  2519. height: math.unit(171907.2, "km")
  2520. }
  2521. ]
  2522. ))
  2523. characterMakers.push(() => makeCharacter(
  2524. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  2525. {
  2526. side: {
  2527. height: math.unit(7.2, "meter"),
  2528. weight: math.unit(8.2, "tons"),
  2529. name: "Side",
  2530. image: {
  2531. source: "./media/characters/cryae/side.svg",
  2532. extra: 3500 / 1500
  2533. }
  2534. }
  2535. },
  2536. [
  2537. {
  2538. name: "Normal",
  2539. height: math.unit(7.2, "meter"),
  2540. default: true
  2541. }
  2542. ]
  2543. ))
  2544. characterMakers.push(() => makeCharacter(
  2545. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  2546. {
  2547. front: {
  2548. height: math.unit(6, "feet"),
  2549. weight: math.unit(175, "lb"),
  2550. name: "Front",
  2551. image: {
  2552. source: "./media/characters/xera/front.svg",
  2553. extra: 2300 / 2061
  2554. }
  2555. },
  2556. side: {
  2557. height: math.unit(6, "feet"),
  2558. weight: math.unit(175, "lb"),
  2559. name: "Side",
  2560. image: {
  2561. source: "./media/characters/xera/side.svg",
  2562. extra: 2300 / 2061
  2563. }
  2564. },
  2565. back: {
  2566. height: math.unit(6, "feet"),
  2567. weight: math.unit(175, "lb"),
  2568. name: "Back",
  2569. image: {
  2570. source: "./media/characters/xera/back.svg"
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Small",
  2577. height: math.unit(10, "feet")
  2578. },
  2579. {
  2580. name: "Macro",
  2581. height: math.unit(500, "meters"),
  2582. default: true
  2583. },
  2584. {
  2585. name: "Macro+",
  2586. height: math.unit(10, "km")
  2587. },
  2588. {
  2589. name: "Gigamacro",
  2590. height: math.unit(25000, "km")
  2591. },
  2592. {
  2593. name: "Teramacro",
  2594. height: math.unit(3e6, "km")
  2595. }
  2596. ]
  2597. ))
  2598. characterMakers.push(() => makeCharacter(
  2599. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  2600. {
  2601. front: {
  2602. height: math.unit(6, "feet"),
  2603. weight: math.unit(175, "lb"),
  2604. name: "Front",
  2605. image: {
  2606. source: "./media/characters/nebula/front.svg",
  2607. extra: 2600 / 2450
  2608. }
  2609. }
  2610. },
  2611. [
  2612. {
  2613. name: "Small",
  2614. height: math.unit(4.5, "meters")
  2615. },
  2616. {
  2617. name: "Macro",
  2618. height: math.unit(1500, "meters"),
  2619. default: true
  2620. },
  2621. {
  2622. name: "Megamacro",
  2623. height: math.unit(150, "km")
  2624. },
  2625. {
  2626. name: "Gigamacro",
  2627. height: math.unit(27000, "km")
  2628. }
  2629. ]
  2630. ))
  2631. characterMakers.push(() => makeCharacter(
  2632. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  2633. {
  2634. front: {
  2635. height: math.unit(6, "feet"),
  2636. weight: math.unit(225, "lb"),
  2637. name: "Front",
  2638. image: {
  2639. source: "./media/characters/abysgar/front.svg"
  2640. }
  2641. }
  2642. },
  2643. [
  2644. {
  2645. name: "Small",
  2646. height: math.unit(4.5, "meters")
  2647. },
  2648. {
  2649. name: "Macro",
  2650. height: math.unit(1250, "meters"),
  2651. default: true
  2652. },
  2653. {
  2654. name: "Megamacro",
  2655. height: math.unit(125, "km")
  2656. },
  2657. {
  2658. name: "Gigamacro",
  2659. height: math.unit(26000, "km")
  2660. }
  2661. ]
  2662. ))
  2663. characterMakers.push(() => makeCharacter(
  2664. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  2665. {
  2666. front: {
  2667. height: math.unit(6, "feet"),
  2668. weight: math.unit(180, "lb"),
  2669. name: "Front",
  2670. image: {
  2671. source: "./media/characters/yakuz/front.svg"
  2672. }
  2673. }
  2674. },
  2675. [
  2676. {
  2677. name: "Small",
  2678. height: math.unit(5, "meters")
  2679. },
  2680. {
  2681. name: "Macro",
  2682. height: math.unit(1500, "meters"),
  2683. default: true
  2684. },
  2685. {
  2686. name: "Megamacro",
  2687. height: math.unit(200, "km")
  2688. },
  2689. {
  2690. name: "Gigamacro",
  2691. height: math.unit(100000, "km")
  2692. }
  2693. ]
  2694. ))
  2695. characterMakers.push(() => makeCharacter(
  2696. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  2697. {
  2698. front: {
  2699. height: math.unit(6, "feet"),
  2700. weight: math.unit(175, "lb"),
  2701. name: "Front",
  2702. image: {
  2703. source: "./media/characters/mirova/front.svg"
  2704. }
  2705. }
  2706. },
  2707. [
  2708. {
  2709. name: "Small",
  2710. height: math.unit(5, "meters")
  2711. },
  2712. {
  2713. name: "Macro",
  2714. height: math.unit(900, "meters"),
  2715. default: true
  2716. },
  2717. {
  2718. name: "Megamacro",
  2719. height: math.unit(135, "km")
  2720. },
  2721. {
  2722. name: "Gigamacro",
  2723. height: math.unit(20000, "km")
  2724. }
  2725. ]
  2726. ))
  2727. characterMakers.push(() => makeCharacter(
  2728. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  2729. {
  2730. side: {
  2731. height: math.unit(28.35, "feet"),
  2732. weight: math.unit(99.75, "tons"),
  2733. name: "Side",
  2734. image: {
  2735. source: "./media/characters/asana-mech/side.svg"
  2736. }
  2737. }
  2738. },
  2739. [
  2740. {
  2741. name: "Normal",
  2742. height: math.unit(28.35, "feet"),
  2743. default: true
  2744. },
  2745. {
  2746. name: "Macro",
  2747. height: math.unit(2500, "feet")
  2748. },
  2749. {
  2750. name: "Megamacro",
  2751. height: math.unit(25, "miles")
  2752. },
  2753. {
  2754. name: "Examacro",
  2755. height: math.unit(6e8, "lightyears")
  2756. },
  2757. ]
  2758. ))
  2759. characterMakers.push(() => makeCharacter(
  2760. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  2761. {
  2762. front: {
  2763. height: math.unit(2, "meters"),
  2764. weight: math.unit(70, "kg"),
  2765. name: "Front",
  2766. image: {
  2767. source: "./media/characters/ashtrek/front.svg",
  2768. extra: 560 / 524,
  2769. bottom: 0.01
  2770. }
  2771. },
  2772. frontArmor: {
  2773. height: math.unit(2, "meters"),
  2774. weight: math.unit(76, "kg"),
  2775. name: "Front (Armor)",
  2776. image: {
  2777. source: "./media/characters/ashtrek/front-armor.svg",
  2778. extra: 561 / 527,
  2779. bottom: 0.01
  2780. }
  2781. },
  2782. side: {
  2783. height: math.unit(2, "meters"),
  2784. weight: math.unit(70, "kg"),
  2785. name: "Side",
  2786. image: {
  2787. source: "./media/characters/ashtrek/side.svg",
  2788. extra: 1717 / 1609,
  2789. bottom: 0.005
  2790. }
  2791. },
  2792. back: {
  2793. height: math.unit(2, "meters"),
  2794. weight: math.unit(70, "kg"),
  2795. name: "Back",
  2796. image: {
  2797. source: "./media/characters/ashtrek/back.svg",
  2798. extra: 1570 / 1501
  2799. }
  2800. },
  2801. },
  2802. [
  2803. {
  2804. name: "DEFCON 5",
  2805. height: math.unit(5, "meters")
  2806. },
  2807. {
  2808. name: "DEFCON 4",
  2809. height: math.unit(500, "meters"),
  2810. default: true
  2811. },
  2812. {
  2813. name: "DEFCON 3",
  2814. height: math.unit(5, "km")
  2815. },
  2816. {
  2817. name: "DEFCON 2",
  2818. height: math.unit(500, "km")
  2819. },
  2820. {
  2821. name: "DEFCON 1",
  2822. height: math.unit(500000, "km")
  2823. },
  2824. {
  2825. name: "DEFCON 0",
  2826. height: math.unit(3, "gigaparsecs")
  2827. },
  2828. ]
  2829. ))
  2830. characterMakers.push(() => makeCharacter(
  2831. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  2832. {
  2833. front: {
  2834. height: math.unit(2, "meters"),
  2835. weight: math.unit(76, "kg"),
  2836. name: "Front",
  2837. image: {
  2838. source: "./media/characters/gale/front.svg"
  2839. }
  2840. },
  2841. frontAlt1: {
  2842. height: math.unit(2, "meters"),
  2843. weight: math.unit(76, "kg"),
  2844. name: "Front (Alt 1)",
  2845. image: {
  2846. source: "./media/characters/gale/front-alt-1.svg"
  2847. }
  2848. },
  2849. frontAlt2: {
  2850. height: math.unit(2, "meters"),
  2851. weight: math.unit(76, "kg"),
  2852. name: "Front (Alt 2)",
  2853. image: {
  2854. source: "./media/characters/gale/front-alt-2.svg"
  2855. }
  2856. },
  2857. },
  2858. [
  2859. {
  2860. name: "Normal",
  2861. height: math.unit(7, "feet")
  2862. },
  2863. {
  2864. name: "Macro",
  2865. height: math.unit(150, "feet"),
  2866. default: true
  2867. },
  2868. {
  2869. name: "Macro+",
  2870. height: math.unit(300, "feet")
  2871. },
  2872. ]
  2873. ))
  2874. characterMakers.push(() => makeCharacter(
  2875. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  2876. {
  2877. front: {
  2878. height: math.unit(2, "meters"),
  2879. weight: math.unit(76, "kg"),
  2880. name: "Front",
  2881. image: {
  2882. source: "./media/characters/draylen/front.svg"
  2883. }
  2884. }
  2885. },
  2886. [
  2887. {
  2888. name: "Macro",
  2889. height: math.unit(150, "feet"),
  2890. default: true
  2891. }
  2892. ]
  2893. ))
  2894. characterMakers.push(() => makeCharacter(
  2895. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  2896. {
  2897. front: {
  2898. height: math.unit(7 + 9 / 12, "feet"),
  2899. weight: math.unit(379, "lbs"),
  2900. name: "Front",
  2901. image: {
  2902. source: "./media/characters/chez/front.svg"
  2903. }
  2904. },
  2905. side: {
  2906. height: math.unit(7 + 9 / 12, "feet"),
  2907. weight: math.unit(379, "lbs"),
  2908. name: "Side",
  2909. image: {
  2910. source: "./media/characters/chez/side.svg"
  2911. }
  2912. }
  2913. },
  2914. [
  2915. {
  2916. name: "Normal",
  2917. height: math.unit(7 + 9 / 12, "feet"),
  2918. default: true
  2919. },
  2920. {
  2921. name: "God King",
  2922. height: math.unit(9750000, "meters")
  2923. }
  2924. ]
  2925. ))
  2926. characterMakers.push(() => makeCharacter(
  2927. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  2928. {
  2929. front: {
  2930. height: math.unit(6, "feet"),
  2931. weight: math.unit(275, "lbs"),
  2932. name: "Front",
  2933. image: {
  2934. source: "./media/characters/kaylum/front.svg",
  2935. bottom: 0.01,
  2936. extra: 1166 / 1031
  2937. }
  2938. },
  2939. frontWingless: {
  2940. height: math.unit(6, "feet"),
  2941. weight: math.unit(275, "lbs"),
  2942. name: "Front (Wingless)",
  2943. image: {
  2944. source: "./media/characters/kaylum/front-wingless.svg",
  2945. bottom: 0.01,
  2946. extra: 1117 / 1031
  2947. }
  2948. }
  2949. },
  2950. [
  2951. {
  2952. name: "Normal",
  2953. height: math.unit(3.05, "meters")
  2954. },
  2955. {
  2956. name: "Master",
  2957. height: math.unit(5.5, "meters")
  2958. },
  2959. {
  2960. name: "Rampage",
  2961. height: math.unit(19, "meters")
  2962. },
  2963. {
  2964. name: "Macro Lite",
  2965. height: math.unit(37, "meters")
  2966. },
  2967. {
  2968. name: "Hyper Predator",
  2969. height: math.unit(61, "meters")
  2970. },
  2971. {
  2972. name: "Macro",
  2973. height: math.unit(138, "meters"),
  2974. default: true
  2975. }
  2976. ]
  2977. ))
  2978. characterMakers.push(() => makeCharacter(
  2979. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  2980. {
  2981. front: {
  2982. height: math.unit(6, "feet"),
  2983. weight: math.unit(150, "lbs"),
  2984. name: "Front",
  2985. image: {
  2986. source: "./media/characters/geta/front.svg"
  2987. }
  2988. }
  2989. },
  2990. [
  2991. {
  2992. name: "Micro",
  2993. height: math.unit(3, "inches"),
  2994. default: true
  2995. },
  2996. {
  2997. name: "Normal",
  2998. height: math.unit(5 + 5 / 12, "feet")
  2999. }
  3000. ]
  3001. ))
  3002. characterMakers.push(() => makeCharacter(
  3003. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3004. {
  3005. front: {
  3006. height: math.unit(6, "feet"),
  3007. weight: math.unit(300, "lbs"),
  3008. name: "Front",
  3009. image: {
  3010. source: "./media/characters/tyrnn/front.svg"
  3011. }
  3012. }
  3013. },
  3014. [
  3015. {
  3016. name: "Main Height",
  3017. height: math.unit(355, "feet"),
  3018. default: true
  3019. },
  3020. {
  3021. name: "Fave. Height",
  3022. height: math.unit(2400, "feet")
  3023. }
  3024. ]
  3025. ))
  3026. characterMakers.push(() => makeCharacter(
  3027. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3028. {
  3029. front: {
  3030. height: math.unit(6, "feet"),
  3031. weight: math.unit(300, "lbs"),
  3032. name: "Front",
  3033. image: {
  3034. source: "./media/characters/appledectomy/front.svg"
  3035. }
  3036. }
  3037. },
  3038. [
  3039. {
  3040. name: "Macro",
  3041. height: math.unit(2500, "feet")
  3042. },
  3043. {
  3044. name: "Megamacro",
  3045. height: math.unit(50, "miles"),
  3046. default: true
  3047. },
  3048. {
  3049. name: "Gigamacro",
  3050. height: math.unit(5000, "miles")
  3051. },
  3052. {
  3053. name: "Teramacro",
  3054. height: math.unit(250000, "miles")
  3055. },
  3056. ]
  3057. ))
  3058. characterMakers.push(() => makeCharacter(
  3059. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3060. {
  3061. front: {
  3062. height: math.unit(6, "feet"),
  3063. weight: math.unit(200, "lbs"),
  3064. name: "Front",
  3065. image: {
  3066. source: "./media/characters/vulpes/front.svg",
  3067. extra: 573 / 543,
  3068. bottom: 0.033
  3069. }
  3070. },
  3071. side: {
  3072. height: math.unit(6, "feet"),
  3073. weight: math.unit(200, "lbs"),
  3074. name: "Side",
  3075. image: {
  3076. source: "./media/characters/vulpes/side.svg",
  3077. extra: 573 / 543,
  3078. bottom: 0.01
  3079. }
  3080. },
  3081. back: {
  3082. height: math.unit(6, "feet"),
  3083. weight: math.unit(200, "lbs"),
  3084. name: "Back",
  3085. image: {
  3086. source: "./media/characters/vulpes/back.svg",
  3087. extra: 573 / 543,
  3088. }
  3089. },
  3090. feet: {
  3091. height: math.unit(1.276, "feet"),
  3092. name: "Feet",
  3093. image: {
  3094. source: "./media/characters/vulpes/feet.svg"
  3095. }
  3096. },
  3097. maw: {
  3098. height: math.unit(1.18, "feet"),
  3099. name: "Maw",
  3100. image: {
  3101. source: "./media/characters/vulpes/maw.svg"
  3102. }
  3103. },
  3104. },
  3105. [
  3106. {
  3107. name: "Micro",
  3108. height: math.unit(2, "inches")
  3109. },
  3110. {
  3111. name: "Normal",
  3112. height: math.unit(6.3, "feet")
  3113. },
  3114. {
  3115. name: "Macro",
  3116. height: math.unit(850, "feet")
  3117. },
  3118. {
  3119. name: "Megamacro",
  3120. height: math.unit(7500, "feet"),
  3121. default: true
  3122. },
  3123. {
  3124. name: "Gigamacro",
  3125. height: math.unit(570000, "miles")
  3126. }
  3127. ]
  3128. ))
  3129. characterMakers.push(() => makeCharacter(
  3130. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3131. {
  3132. front: {
  3133. height: math.unit(6, "feet"),
  3134. weight: math.unit(210, "lbs"),
  3135. name: "Front",
  3136. image: {
  3137. source: "./media/characters/rain-fallen/front.svg"
  3138. }
  3139. },
  3140. side: {
  3141. height: math.unit(6, "feet"),
  3142. weight: math.unit(210, "lbs"),
  3143. name: "Side",
  3144. image: {
  3145. source: "./media/characters/rain-fallen/side.svg"
  3146. }
  3147. },
  3148. back: {
  3149. height: math.unit(6, "feet"),
  3150. weight: math.unit(210, "lbs"),
  3151. name: "Back",
  3152. image: {
  3153. source: "./media/characters/rain-fallen/back.svg"
  3154. }
  3155. },
  3156. feral: {
  3157. height: math.unit(9, "feet"),
  3158. weight: math.unit(700, "lbs"),
  3159. name: "Feral",
  3160. image: {
  3161. source: "./media/characters/rain-fallen/feral.svg"
  3162. }
  3163. },
  3164. },
  3165. [
  3166. {
  3167. name: "Normal",
  3168. height: math.unit(5, "meter")
  3169. },
  3170. {
  3171. name: "Macro",
  3172. height: math.unit(150, "meter"),
  3173. default: true
  3174. },
  3175. {
  3176. name: "Megamacro",
  3177. height: math.unit(278e6, "meter")
  3178. },
  3179. {
  3180. name: "Gigamacro",
  3181. height: math.unit(2e9, "meter")
  3182. },
  3183. {
  3184. name: "Teramacro",
  3185. height: math.unit(8e12, "meter")
  3186. },
  3187. {
  3188. name: "Devourer",
  3189. height: math.unit(14, "zettameters")
  3190. },
  3191. {
  3192. name: "Scarlet King",
  3193. height: math.unit(18, "yottameters")
  3194. },
  3195. {
  3196. name: "Void",
  3197. height: math.unit(6.66e66, "yottameters")
  3198. }
  3199. ]
  3200. ))
  3201. characterMakers.push(() => makeCharacter(
  3202. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  3203. {
  3204. standing: {
  3205. height: math.unit(6, "feet"),
  3206. weight: math.unit(180, "lbs"),
  3207. name: "Standing",
  3208. image: {
  3209. source: "./media/characters/zaakira/standing.svg"
  3210. }
  3211. },
  3212. laying: {
  3213. height: math.unit(3, "feet"),
  3214. weight: math.unit(180, "lbs"),
  3215. name: "Laying",
  3216. image: {
  3217. source: "./media/characters/zaakira/laying.svg"
  3218. }
  3219. },
  3220. },
  3221. [
  3222. {
  3223. name: "Normal",
  3224. height: math.unit(12, "feet")
  3225. },
  3226. {
  3227. name: "Macro",
  3228. height: math.unit(279, "feet"),
  3229. default: true
  3230. }
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  3235. {
  3236. front: {
  3237. height: math.unit(6, "feet"),
  3238. weight: math.unit(250, "lbs"),
  3239. name: "Front",
  3240. image: {
  3241. source: "./media/characters/sigvald/front.svg",
  3242. extra: 1000 / 850
  3243. }
  3244. },
  3245. back: {
  3246. height: math.unit(6, "feet"),
  3247. weight: math.unit(250, "lbs"),
  3248. name: "Back",
  3249. image: {
  3250. source: "./media/characters/sigvald/back.svg"
  3251. }
  3252. },
  3253. },
  3254. [
  3255. {
  3256. name: "Normal",
  3257. height: math.unit(8, "feet")
  3258. },
  3259. {
  3260. name: "Large",
  3261. height: math.unit(12, "feet")
  3262. },
  3263. {
  3264. name: "Larger",
  3265. height: math.unit(20, "feet")
  3266. },
  3267. {
  3268. name: "Macro",
  3269. height: math.unit(150, "feet")
  3270. },
  3271. {
  3272. name: "Macro+",
  3273. height: math.unit(200, "feet"),
  3274. default: true
  3275. },
  3276. ]
  3277. ))
  3278. characterMakers.push(() => makeCharacter(
  3279. { name: "Scott", species: ["fox"], tags: ["taur"] },
  3280. {
  3281. side: {
  3282. height: math.unit(12, "feet"),
  3283. weight: math.unit(2000, "kg"),
  3284. name: "Side",
  3285. image: {
  3286. source: "./media/characters/scott/side.svg",
  3287. extra: 754/724,
  3288. bottom: 0.069
  3289. }
  3290. },
  3291. upright: {
  3292. height: math.unit(12, "feet"),
  3293. weight: math.unit(2000, "kg"),
  3294. name: "Upright",
  3295. image: {
  3296. source: "./media/characters/scott/upright.svg",
  3297. extra: 3881/3722,
  3298. bottom: 0.05
  3299. }
  3300. },
  3301. },
  3302. [
  3303. {
  3304. name: "Normal",
  3305. height: math.unit(12, "feet"),
  3306. default: true
  3307. },
  3308. ]
  3309. ))
  3310. characterMakers.push(() => makeCharacter(
  3311. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  3312. {
  3313. side: {
  3314. height: math.unit(8, "meters"),
  3315. weight: math.unit(84755, "lbs"),
  3316. name: "Side",
  3317. image: {
  3318. source: "./media/characters/tobias/side.svg",
  3319. extra: 1474 / 1096,
  3320. bottom: 38.9 / 1513.1235
  3321. }
  3322. },
  3323. },
  3324. [
  3325. {
  3326. name: "Normal",
  3327. height: math.unit(8, "meters"),
  3328. default: true
  3329. },
  3330. ]
  3331. ))
  3332. characterMakers.push(() => makeCharacter(
  3333. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  3334. {
  3335. front: {
  3336. height: math.unit(5.5, "feet"),
  3337. weight: math.unit(400, "lbs"),
  3338. name: "Front",
  3339. image: {
  3340. source: "./media/characters/kieran/front.svg",
  3341. extra: 2694/2364,
  3342. bottom: 217/2908
  3343. }
  3344. },
  3345. side: {
  3346. height: math.unit(5.5, "feet"),
  3347. weight: math.unit(400, "lbs"),
  3348. name: "Side",
  3349. image: {
  3350. source: "./media/characters/kieran/side.svg",
  3351. extra: 875/777,
  3352. bottom: 84.6/959
  3353. }
  3354. },
  3355. },
  3356. [
  3357. {
  3358. name: "Normal",
  3359. height: math.unit(5.5, "feet"),
  3360. default: true
  3361. },
  3362. ]
  3363. ))
  3364. characterMakers.push(() => makeCharacter(
  3365. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  3366. {
  3367. side: {
  3368. height: math.unit(2, "meters"),
  3369. weight: math.unit(70, "kg"),
  3370. name: "Side",
  3371. image: {
  3372. source: "./media/characters/sanya/side.svg",
  3373. bottom: 0.02,
  3374. extra: 1.02
  3375. }
  3376. },
  3377. },
  3378. [
  3379. {
  3380. name: "Small",
  3381. height: math.unit(2, "meters")
  3382. },
  3383. {
  3384. name: "Normal",
  3385. height: math.unit(3, "meters")
  3386. },
  3387. {
  3388. name: "Macro",
  3389. height: math.unit(16, "meters"),
  3390. default: true
  3391. },
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  3396. {
  3397. side: {
  3398. height: math.unit(2, "meters"),
  3399. weight: math.unit(120, "kg"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/miranda/front.svg",
  3403. extra: 10.6 / 10
  3404. }
  3405. },
  3406. },
  3407. [
  3408. {
  3409. name: "Normal",
  3410. height: math.unit(10, "feet"),
  3411. default: true
  3412. }
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "James", species: ["deer"], tags: ["anthro"] },
  3417. {
  3418. side: {
  3419. height: math.unit(2, "meters"),
  3420. weight: math.unit(100, "kg"),
  3421. name: "Front",
  3422. image: {
  3423. source: "./media/characters/james/front.svg",
  3424. extra: 10 / 8.5
  3425. }
  3426. },
  3427. },
  3428. [
  3429. {
  3430. name: "Normal",
  3431. height: math.unit(8.5, "feet"),
  3432. default: true
  3433. }
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Heather", species: ["cow"], tags: ["taur"] },
  3438. {
  3439. side: {
  3440. height: math.unit(9.5, "feet"),
  3441. weight: math.unit(2500, "lbs"),
  3442. name: "Side",
  3443. image: {
  3444. source: "./media/characters/heather/side.svg"
  3445. }
  3446. },
  3447. },
  3448. [
  3449. {
  3450. name: "Normal",
  3451. height: math.unit(9.5, "feet"),
  3452. default: true
  3453. }
  3454. ]
  3455. ))
  3456. characterMakers.push(() => makeCharacter(
  3457. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  3458. {
  3459. side: {
  3460. height: math.unit(6.5, "feet"),
  3461. weight: math.unit(400, "lbs"),
  3462. name: "Side",
  3463. image: {
  3464. source: "./media/characters/lukas/side.svg",
  3465. extra: 7.25 / 6.5
  3466. }
  3467. },
  3468. },
  3469. [
  3470. {
  3471. name: "Normal",
  3472. height: math.unit(6.5, "feet"),
  3473. default: true
  3474. }
  3475. ]
  3476. ))
  3477. characterMakers.push(() => makeCharacter(
  3478. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  3479. {
  3480. side: {
  3481. height: math.unit(5, "feet"),
  3482. weight: math.unit(3000, "lbs"),
  3483. name: "Side",
  3484. image: {
  3485. source: "./media/characters/louise/side.svg"
  3486. }
  3487. },
  3488. },
  3489. [
  3490. {
  3491. name: "Normal",
  3492. height: math.unit(5, "feet"),
  3493. default: true
  3494. }
  3495. ]
  3496. ))
  3497. characterMakers.push(() => makeCharacter(
  3498. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  3499. {
  3500. side: {
  3501. height: math.unit(6, "feet"),
  3502. weight: math.unit(150, "lbs"),
  3503. name: "Side",
  3504. image: {
  3505. source: "./media/characters/ramona/side.svg"
  3506. }
  3507. },
  3508. },
  3509. [
  3510. {
  3511. name: "Normal",
  3512. height: math.unit(5.3, "meters"),
  3513. default: true
  3514. },
  3515. {
  3516. name: "Macro",
  3517. height: math.unit(20, "stories")
  3518. },
  3519. {
  3520. name: "Macro+",
  3521. height: math.unit(50, "stories")
  3522. },
  3523. ]
  3524. ))
  3525. characterMakers.push(() => makeCharacter(
  3526. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  3527. {
  3528. standing: {
  3529. height: math.unit(5.75, "feet"),
  3530. weight: math.unit(160, "lbs"),
  3531. name: "Standing",
  3532. image: {
  3533. source: "./media/characters/deerpuff/standing.svg",
  3534. extra: 682 / 624
  3535. }
  3536. },
  3537. sitting: {
  3538. height: math.unit(5.75 / 1.79, "feet"),
  3539. weight: math.unit(160, "lbs"),
  3540. name: "Sitting",
  3541. image: {
  3542. source: "./media/characters/deerpuff/sitting.svg",
  3543. bottom: 44 / 400,
  3544. extra: 1
  3545. }
  3546. },
  3547. taurLaying: {
  3548. height: math.unit(6, "feet"),
  3549. weight: math.unit(400, "lbs"),
  3550. name: "Taur (Laying)",
  3551. image: {
  3552. source: "./media/characters/deerpuff/taur-laying.svg"
  3553. }
  3554. },
  3555. },
  3556. [
  3557. {
  3558. name: "Puffball",
  3559. height: math.unit(6, "inches")
  3560. },
  3561. {
  3562. name: "Normalpuff",
  3563. height: math.unit(5.75, "feet")
  3564. },
  3565. {
  3566. name: "Macropuff",
  3567. height: math.unit(1500, "feet"),
  3568. default: true
  3569. },
  3570. {
  3571. name: "Megapuff",
  3572. height: math.unit(500, "miles")
  3573. },
  3574. {
  3575. name: "Gigapuff",
  3576. height: math.unit(250000, "miles")
  3577. },
  3578. {
  3579. name: "Omegapuff",
  3580. height: math.unit(1000, "lightyears")
  3581. },
  3582. ]
  3583. ))
  3584. characterMakers.push(() => makeCharacter(
  3585. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  3586. {
  3587. stomping: {
  3588. height: math.unit(6, "feet"),
  3589. weight: math.unit(170, "lbs"),
  3590. name: "Stomping",
  3591. image: {
  3592. source: "./media/characters/vivian/stomping.svg"
  3593. }
  3594. },
  3595. sitting: {
  3596. height: math.unit(6 / 1.75, "feet"),
  3597. weight: math.unit(170, "lbs"),
  3598. name: "Sitting",
  3599. image: {
  3600. source: "./media/characters/vivian/sitting.svg",
  3601. bottom: 1 / 6.4,
  3602. extra: 1,
  3603. }
  3604. },
  3605. },
  3606. [
  3607. {
  3608. name: "Normal",
  3609. height: math.unit(7, "feet"),
  3610. default: true
  3611. },
  3612. {
  3613. name: "Macro",
  3614. height: math.unit(10, "stories")
  3615. },
  3616. {
  3617. name: "Macro+",
  3618. height: math.unit(30, "stories")
  3619. },
  3620. {
  3621. name: "Megamacro",
  3622. height: math.unit(10, "miles")
  3623. },
  3624. {
  3625. name: "Megamacro+",
  3626. height: math.unit(2750000, "meters")
  3627. },
  3628. ]
  3629. ))
  3630. characterMakers.push(() => makeCharacter(
  3631. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  3632. {
  3633. front: {
  3634. height: math.unit(6, "feet"),
  3635. weight: math.unit(160, "lbs"),
  3636. name: "Front",
  3637. image: {
  3638. source: "./media/characters/prince/front.svg",
  3639. extra: 3400 / 3000
  3640. }
  3641. },
  3642. jumping: {
  3643. height: math.unit(6, "feet"),
  3644. weight: math.unit(160, "lbs"),
  3645. name: "Jumping",
  3646. image: {
  3647. source: "./media/characters/prince/jump.svg",
  3648. extra: 2555 / 2134
  3649. }
  3650. },
  3651. },
  3652. [
  3653. {
  3654. name: "Normal",
  3655. height: math.unit(7.75, "feet"),
  3656. default: true
  3657. },
  3658. {
  3659. name: "Not cute",
  3660. height: math.unit(17, "feet")
  3661. },
  3662. {
  3663. name: "I said NOT",
  3664. height: math.unit(91, "feet")
  3665. },
  3666. {
  3667. name: "Please stop",
  3668. height: math.unit(560, "feet")
  3669. },
  3670. {
  3671. name: "What have you done",
  3672. height: math.unit(2200, "feet")
  3673. },
  3674. {
  3675. name: "Deer God",
  3676. height: math.unit(3.6, "miles")
  3677. },
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  3682. {
  3683. standing: {
  3684. height: math.unit(6, "feet"),
  3685. weight: math.unit(300, "lbs"),
  3686. name: "Standing",
  3687. image: {
  3688. source: "./media/characters/psymon/standing.svg",
  3689. extra: 1888 / 1810,
  3690. bottom: 0.05
  3691. }
  3692. },
  3693. slithering: {
  3694. height: math.unit(6, "feet"),
  3695. weight: math.unit(300, "lbs"),
  3696. name: "Slithering",
  3697. image: {
  3698. source: "./media/characters/psymon/slithering.svg",
  3699. extra: 1330 / 1224
  3700. }
  3701. },
  3702. slitheringAlt: {
  3703. height: math.unit(6, "feet"),
  3704. weight: math.unit(300, "lbs"),
  3705. name: "Slithering (Alt)",
  3706. image: {
  3707. source: "./media/characters/psymon/slithering-alt.svg",
  3708. extra: 1330 / 1224
  3709. }
  3710. },
  3711. },
  3712. [
  3713. {
  3714. name: "Normal",
  3715. height: math.unit(11.25, "feet"),
  3716. default: true
  3717. },
  3718. {
  3719. name: "Large",
  3720. height: math.unit(27, "feet")
  3721. },
  3722. {
  3723. name: "Giant",
  3724. height: math.unit(87, "feet")
  3725. },
  3726. {
  3727. name: "Macro",
  3728. height: math.unit(365, "feet")
  3729. },
  3730. {
  3731. name: "Megamacro",
  3732. height: math.unit(3, "miles")
  3733. },
  3734. {
  3735. name: "World Serpent",
  3736. height: math.unit(8000, "miles")
  3737. },
  3738. ]
  3739. ))
  3740. characterMakers.push(() => makeCharacter(
  3741. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  3742. {
  3743. front: {
  3744. height: math.unit(6, "feet"),
  3745. weight: math.unit(180, "lbs"),
  3746. name: "Front",
  3747. image: {
  3748. source: "./media/characters/daimos/front.svg",
  3749. extra: 4160 / 3897,
  3750. bottom: 0.021
  3751. }
  3752. }
  3753. },
  3754. [
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(8, "feet"),
  3758. default: true
  3759. },
  3760. {
  3761. name: "Big Dog",
  3762. height: math.unit(22, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(127, "feet")
  3767. },
  3768. {
  3769. name: "Megamacro",
  3770. height: math.unit(3600, "feet")
  3771. },
  3772. ]
  3773. ))
  3774. characterMakers.push(() => makeCharacter(
  3775. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  3776. {
  3777. side: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(180, "lbs"),
  3780. name: "Side",
  3781. image: {
  3782. source: "./media/characters/blake/side.svg",
  3783. extra: 1212 / 1120,
  3784. bottom: 0.05
  3785. }
  3786. },
  3787. crouched: {
  3788. height: math.unit(6 * 0.57, "feet"),
  3789. weight: math.unit(180, "lbs"),
  3790. name: "Crouched",
  3791. image: {
  3792. source: "./media/characters/blake/crouched.svg",
  3793. extra: 840 / 587,
  3794. bottom: 0.04
  3795. }
  3796. },
  3797. bent: {
  3798. height: math.unit(6 * 0.75, "feet"),
  3799. weight: math.unit(180, "lbs"),
  3800. name: "Bent",
  3801. image: {
  3802. source: "./media/characters/blake/bent.svg",
  3803. extra: 592 / 544,
  3804. bottom: 0.035
  3805. }
  3806. },
  3807. },
  3808. [
  3809. {
  3810. name: "Normal",
  3811. height: math.unit(8 + 1 / 6, "feet"),
  3812. default: true
  3813. },
  3814. {
  3815. name: "Big Backside",
  3816. height: math.unit(37, "feet")
  3817. },
  3818. {
  3819. name: "Subway Shredder",
  3820. height: math.unit(72, "feet")
  3821. },
  3822. {
  3823. name: "City Carver",
  3824. height: math.unit(1675, "feet")
  3825. },
  3826. {
  3827. name: "Tectonic Tweaker",
  3828. height: math.unit(2300, "miles")
  3829. },
  3830. ]
  3831. ))
  3832. characterMakers.push(() => makeCharacter(
  3833. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  3834. {
  3835. front: {
  3836. height: math.unit(6, "feet"),
  3837. weight: math.unit(180, "lbs"),
  3838. name: "Front",
  3839. image: {
  3840. source: "./media/characters/guisetto/front.svg",
  3841. extra: 856 / 817,
  3842. bottom: 0.06
  3843. }
  3844. },
  3845. airborne: {
  3846. height: math.unit(6, "feet"),
  3847. weight: math.unit(180, "lbs"),
  3848. name: "Airborne",
  3849. image: {
  3850. source: "./media/characters/guisetto/airborne.svg",
  3851. extra: 584 / 525
  3852. }
  3853. },
  3854. },
  3855. [
  3856. {
  3857. name: "Normal",
  3858. height: math.unit(10 + 11 / 12, "feet"),
  3859. default: true
  3860. },
  3861. {
  3862. name: "Large",
  3863. height: math.unit(35, "feet")
  3864. },
  3865. {
  3866. name: "Macro",
  3867. height: math.unit(475, "feet")
  3868. },
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(6, "feet"),
  3876. weight: math.unit(180, "lbs"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/luxor/front.svg",
  3880. extra: 2940 / 2152
  3881. }
  3882. },
  3883. back: {
  3884. height: math.unit(6, "feet"),
  3885. weight: math.unit(180, "lbs"),
  3886. name: "Back",
  3887. image: {
  3888. source: "./media/characters/luxor/back.svg",
  3889. extra: 1083 / 960
  3890. }
  3891. },
  3892. },
  3893. [
  3894. {
  3895. name: "Normal",
  3896. height: math.unit(5 + 5 / 6, "feet"),
  3897. default: true
  3898. },
  3899. {
  3900. name: "Lamp",
  3901. height: math.unit(50, "feet")
  3902. },
  3903. {
  3904. name: "Lämp",
  3905. height: math.unit(300, "feet")
  3906. },
  3907. {
  3908. name: "The sun is a lamp",
  3909. height: math.unit(250000, "miles")
  3910. },
  3911. ]
  3912. ))
  3913. characterMakers.push(() => makeCharacter(
  3914. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  3915. {
  3916. front: {
  3917. height: math.unit(6, "feet"),
  3918. weight: math.unit(50, "lbs"),
  3919. name: "Front",
  3920. image: {
  3921. source: "./media/characters/huoyan/front.svg"
  3922. }
  3923. },
  3924. side: {
  3925. height: math.unit(6, "feet"),
  3926. weight: math.unit(180, "lbs"),
  3927. name: "Side",
  3928. image: {
  3929. source: "./media/characters/huoyan/side.svg"
  3930. }
  3931. },
  3932. },
  3933. [
  3934. {
  3935. name: "Chef",
  3936. height: math.unit(9, "feet")
  3937. },
  3938. {
  3939. name: "Normal",
  3940. height: math.unit(65, "feet"),
  3941. default: true
  3942. },
  3943. {
  3944. name: "Macro",
  3945. height: math.unit(780, "feet")
  3946. },
  3947. {
  3948. name: "Flaming Mountain",
  3949. height: math.unit(4.8, "miles")
  3950. },
  3951. {
  3952. name: "Celestial",
  3953. height: math.unit(765000, "miles")
  3954. },
  3955. ]
  3956. ))
  3957. characterMakers.push(() => makeCharacter(
  3958. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  3959. {
  3960. front: {
  3961. height: math.unit(5 + 3 / 4, "feet"),
  3962. weight: math.unit(120, "lbs"),
  3963. name: "Front",
  3964. image: {
  3965. source: "./media/characters/tails/front.svg"
  3966. }
  3967. }
  3968. },
  3969. [
  3970. {
  3971. name: "Normal",
  3972. height: math.unit(5 + 3 / 4, "feet"),
  3973. default: true
  3974. }
  3975. ]
  3976. ))
  3977. characterMakers.push(() => makeCharacter(
  3978. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  3979. {
  3980. front: {
  3981. height: math.unit(4, "feet"),
  3982. weight: math.unit(50, "lbs"),
  3983. name: "Front",
  3984. image: {
  3985. source: "./media/characters/rainy/front.svg"
  3986. }
  3987. }
  3988. },
  3989. [
  3990. {
  3991. name: "Macro",
  3992. height: math.unit(800, "feet"),
  3993. default: true
  3994. }
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  3999. {
  4000. front: {
  4001. height: math.unit(6, "feet"),
  4002. weight: math.unit(150, "lbs"),
  4003. name: "Front",
  4004. image: {
  4005. source: "./media/characters/rainier/front.svg"
  4006. }
  4007. }
  4008. },
  4009. [
  4010. {
  4011. name: "Micro",
  4012. height: math.unit(2, "mm"),
  4013. default: true
  4014. }
  4015. ]
  4016. ))
  4017. characterMakers.push(() => makeCharacter(
  4018. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4019. {
  4020. front: {
  4021. height: math.unit(6, "feet"),
  4022. weight: math.unit(180, "lbs"),
  4023. name: "Front",
  4024. image: {
  4025. source: "./media/characters/andy/front.svg"
  4026. }
  4027. }
  4028. },
  4029. [
  4030. {
  4031. name: "Normal",
  4032. height: math.unit(8, "feet"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Macro",
  4037. height: math.unit(1000, "feet")
  4038. },
  4039. {
  4040. name: "Megamacro",
  4041. height: math.unit(5, "miles")
  4042. },
  4043. {
  4044. name: "Gigamacro",
  4045. height: math.unit(5000, "miles")
  4046. },
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4051. {
  4052. front: {
  4053. height: math.unit(6, "feet"),
  4054. weight: math.unit(210, "lbs"),
  4055. name: "Front",
  4056. image: {
  4057. source: "./media/characters/cimmaron/front-sfw.svg",
  4058. extra: 701 / 676,
  4059. bottom: 0.046
  4060. }
  4061. },
  4062. back: {
  4063. height: math.unit(6, "feet"),
  4064. weight: math.unit(210, "lbs"),
  4065. name: "Back",
  4066. image: {
  4067. source: "./media/characters/cimmaron/back-sfw.svg",
  4068. extra: 701 / 676,
  4069. bottom: 0.046
  4070. }
  4071. },
  4072. frontNsfw: {
  4073. height: math.unit(6, "feet"),
  4074. weight: math.unit(210, "lbs"),
  4075. name: "Front (NSFW)",
  4076. image: {
  4077. source: "./media/characters/cimmaron/front-nsfw.svg",
  4078. extra: 701 / 676,
  4079. bottom: 0.046
  4080. }
  4081. },
  4082. backNsfw: {
  4083. height: math.unit(6, "feet"),
  4084. weight: math.unit(210, "lbs"),
  4085. name: "Back (NSFW)",
  4086. image: {
  4087. source: "./media/characters/cimmaron/back-nsfw.svg",
  4088. extra: 701 / 676,
  4089. bottom: 0.046
  4090. }
  4091. },
  4092. dick: {
  4093. height: math.unit(1.714, "feet"),
  4094. name: "Dick",
  4095. image: {
  4096. source: "./media/characters/cimmaron/dick.svg"
  4097. }
  4098. },
  4099. },
  4100. [
  4101. {
  4102. name: "Normal",
  4103. height: math.unit(6, "feet"),
  4104. default: true
  4105. },
  4106. {
  4107. name: "Macro Mayor",
  4108. height: math.unit(350, "meters")
  4109. },
  4110. ]
  4111. ))
  4112. characterMakers.push(() => makeCharacter(
  4113. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4114. {
  4115. front: {
  4116. height: math.unit(6, "feet"),
  4117. weight: math.unit(200, "lbs"),
  4118. name: "Front",
  4119. image: {
  4120. source: "./media/characters/akari/front.svg",
  4121. extra: 962 / 901,
  4122. bottom: 0.04
  4123. }
  4124. }
  4125. },
  4126. [
  4127. {
  4128. name: "Micro",
  4129. height: math.unit(5, "inches"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Normal",
  4134. height: math.unit(7, "feet")
  4135. },
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4140. {
  4141. front: {
  4142. height: math.unit(6, "feet"),
  4143. weight: math.unit(140, "lbs"),
  4144. name: "Front",
  4145. image: {
  4146. source: "./media/characters/cynosura/front.svg",
  4147. extra: 896 / 847
  4148. }
  4149. },
  4150. back: {
  4151. height: math.unit(6, "feet"),
  4152. weight: math.unit(140, "lbs"),
  4153. name: "Back",
  4154. image: {
  4155. source: "./media/characters/cynosura/back.svg",
  4156. extra: 1365 / 1250
  4157. }
  4158. },
  4159. },
  4160. [
  4161. {
  4162. name: "Micro",
  4163. height: math.unit(4, "inches")
  4164. },
  4165. {
  4166. name: "Normal",
  4167. height: math.unit(5.75, "feet"),
  4168. default: true
  4169. },
  4170. {
  4171. name: "Tall",
  4172. height: math.unit(10, "feet")
  4173. },
  4174. {
  4175. name: "Big",
  4176. height: math.unit(20, "feet")
  4177. },
  4178. {
  4179. name: "Macro",
  4180. height: math.unit(50, "feet")
  4181. },
  4182. ]
  4183. ))
  4184. characterMakers.push(() => makeCharacter(
  4185. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4186. {
  4187. front: {
  4188. height: math.unit(6, "feet"),
  4189. weight: math.unit(170, "lbs"),
  4190. name: "Front",
  4191. image: {
  4192. source: "./media/characters/gin/front.svg",
  4193. extra: 1.053,
  4194. bottom: 0.025
  4195. }
  4196. },
  4197. foot: {
  4198. height: math.unit(6 / 4.25, "feet"),
  4199. name: "Foot",
  4200. image: {
  4201. source: "./media/characters/gin/foot.svg"
  4202. }
  4203. },
  4204. sole: {
  4205. height: math.unit(6 / 4.40, "feet"),
  4206. name: "Sole",
  4207. image: {
  4208. source: "./media/characters/gin/sole.svg"
  4209. }
  4210. },
  4211. },
  4212. [
  4213. {
  4214. name: "Normal",
  4215. height: math.unit(13 + 2/12, "feet")
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(1500, "feet")
  4220. },
  4221. {
  4222. name: "Megamacro",
  4223. height: math.unit(200, "miles"),
  4224. default: true
  4225. },
  4226. {
  4227. name: "Gigamacro",
  4228. height: math.unit(500, "megameters")
  4229. },
  4230. {
  4231. name: "Teramacro",
  4232. height: math.unit(15, "lightyears")
  4233. }
  4234. ]
  4235. ))
  4236. characterMakers.push(() => makeCharacter(
  4237. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  4238. {
  4239. front: {
  4240. height: math.unit(6 + 1 / 6, "feet"),
  4241. weight: math.unit(178, "lbs"),
  4242. name: "Front",
  4243. image: {
  4244. source: "./media/characters/guy/front.svg"
  4245. }
  4246. }
  4247. },
  4248. [
  4249. {
  4250. name: "Normal",
  4251. height: math.unit(6 + 1 / 6, "feet"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Large",
  4256. height: math.unit(25 + 7 / 12, "feet")
  4257. },
  4258. {
  4259. name: "Macro",
  4260. height: math.unit(60 + 9 / 12, "feet")
  4261. },
  4262. {
  4263. name: "Macro+",
  4264. height: math.unit(246, "feet")
  4265. },
  4266. {
  4267. name: "Macro++",
  4268. height: math.unit(878, "feet")
  4269. }
  4270. ]
  4271. ))
  4272. characterMakers.push(() => makeCharacter(
  4273. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  4274. {
  4275. front: {
  4276. height: math.unit(9, "feet"),
  4277. weight: math.unit(800, "lbs"),
  4278. name: "Front",
  4279. image: {
  4280. source: "./media/characters/tiberius/front.svg",
  4281. extra: 2295 / 2071
  4282. }
  4283. },
  4284. back: {
  4285. height: math.unit(9, "feet"),
  4286. weight: math.unit(800, "lbs"),
  4287. name: "Back",
  4288. image: {
  4289. source: "./media/characters/tiberius/back.svg",
  4290. extra: 2373 / 2160
  4291. }
  4292. },
  4293. },
  4294. [
  4295. {
  4296. name: "Normal",
  4297. height: math.unit(9, "feet"),
  4298. default: true
  4299. }
  4300. ]
  4301. ))
  4302. characterMakers.push(() => makeCharacter(
  4303. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  4304. {
  4305. front: {
  4306. height: math.unit(6, "feet"),
  4307. weight: math.unit(600, "lbs"),
  4308. name: "Front",
  4309. image: {
  4310. source: "./media/characters/surgo/front.svg",
  4311. extra: 3591 / 2227
  4312. }
  4313. },
  4314. back: {
  4315. height: math.unit(6, "feet"),
  4316. weight: math.unit(600, "lbs"),
  4317. name: "Back",
  4318. image: {
  4319. source: "./media/characters/surgo/back.svg",
  4320. extra: 3557 / 2228
  4321. }
  4322. },
  4323. laying: {
  4324. height: math.unit(6 * 0.85, "feet"),
  4325. weight: math.unit(600, "lbs"),
  4326. name: "Laying",
  4327. image: {
  4328. source: "./media/characters/surgo/laying.svg"
  4329. }
  4330. },
  4331. },
  4332. [
  4333. {
  4334. name: "Normal",
  4335. height: math.unit(6, "feet"),
  4336. default: true
  4337. }
  4338. ]
  4339. ))
  4340. characterMakers.push(() => makeCharacter(
  4341. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  4342. {
  4343. side: {
  4344. height: math.unit(6, "feet"),
  4345. weight: math.unit(150, "lbs"),
  4346. name: "Side",
  4347. image: {
  4348. source: "./media/characters/cibus/side.svg",
  4349. extra: 800 / 400
  4350. }
  4351. },
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(6, "feet"),
  4357. default: true
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  4363. {
  4364. front: {
  4365. height: math.unit(6, "feet"),
  4366. weight: math.unit(240, "lbs"),
  4367. name: "Front",
  4368. image: {
  4369. source: "./media/characters/nibbles/front.svg"
  4370. }
  4371. },
  4372. side: {
  4373. height: math.unit(6, "feet"),
  4374. weight: math.unit(240, "lbs"),
  4375. name: "Side",
  4376. image: {
  4377. source: "./media/characters/nibbles/side.svg"
  4378. }
  4379. },
  4380. },
  4381. [
  4382. {
  4383. name: "Normal",
  4384. height: math.unit(9, "feet"),
  4385. default: true
  4386. }
  4387. ]
  4388. ))
  4389. characterMakers.push(() => makeCharacter(
  4390. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  4391. {
  4392. side: {
  4393. height: math.unit(5 + 1 / 6, "feet"),
  4394. weight: math.unit(130, "lbs"),
  4395. name: "Side",
  4396. image: {
  4397. source: "./media/characters/rikky/side.svg"
  4398. }
  4399. },
  4400. },
  4401. [
  4402. {
  4403. name: "Normal",
  4404. height: math.unit(5 + 1 / 6, "feet")
  4405. },
  4406. {
  4407. name: "Macro",
  4408. height: math.unit(152, "feet"),
  4409. default: true
  4410. },
  4411. {
  4412. name: "Megamacro",
  4413. height: math.unit(7, "miles")
  4414. }
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  4419. {
  4420. side: {
  4421. height: math.unit(370, "cm"),
  4422. weight: math.unit(350, "lbs"),
  4423. name: "Side",
  4424. image: {
  4425. source: "./media/characters/malfressa/side.svg"
  4426. }
  4427. },
  4428. walking: {
  4429. height: math.unit(370, "cm"),
  4430. weight: math.unit(350, "lbs"),
  4431. name: "Walking",
  4432. image: {
  4433. source: "./media/characters/malfressa/walking.svg"
  4434. }
  4435. },
  4436. feral: {
  4437. height: math.unit(2500, "cm"),
  4438. weight: math.unit(100000, "lbs"),
  4439. name: "Feral",
  4440. image: {
  4441. source: "./media/characters/malfressa/feral.svg",
  4442. extra: 2108 / 837,
  4443. bottom: 0.02
  4444. }
  4445. },
  4446. },
  4447. [
  4448. {
  4449. name: "Normal",
  4450. height: math.unit(370, "cm")
  4451. },
  4452. {
  4453. name: "Macro",
  4454. height: math.unit(300, "meters"),
  4455. default: true
  4456. }
  4457. ]
  4458. ))
  4459. characterMakers.push(() => makeCharacter(
  4460. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  4461. {
  4462. front: {
  4463. height: math.unit(6, "feet"),
  4464. weight: math.unit(60, "kg"),
  4465. name: "Front",
  4466. image: {
  4467. source: "./media/characters/jaro/front.svg"
  4468. }
  4469. },
  4470. back: {
  4471. height: math.unit(6, "feet"),
  4472. weight: math.unit(60, "kg"),
  4473. name: "Back",
  4474. image: {
  4475. source: "./media/characters/jaro/back.svg"
  4476. }
  4477. },
  4478. },
  4479. [
  4480. {
  4481. name: "Micro",
  4482. height: math.unit(7, "inches")
  4483. },
  4484. {
  4485. name: "Normal",
  4486. height: math.unit(5.5, "feet"),
  4487. default: true
  4488. },
  4489. {
  4490. name: "Minimacro",
  4491. height: math.unit(20, "feet")
  4492. },
  4493. {
  4494. name: "Macro",
  4495. height: math.unit(200, "meters")
  4496. }
  4497. ]
  4498. ))
  4499. characterMakers.push(() => makeCharacter(
  4500. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  4501. {
  4502. front: {
  4503. height: math.unit(6, "feet"),
  4504. weight: math.unit(195, "lb"),
  4505. name: "Front",
  4506. image: {
  4507. source: "./media/characters/rogue/front.svg"
  4508. }
  4509. },
  4510. },
  4511. [
  4512. {
  4513. name: "Macro",
  4514. height: math.unit(90, "feet"),
  4515. default: true
  4516. },
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  4521. {
  4522. front: {
  4523. height: math.unit(5 + 8 / 12, "feet"),
  4524. weight: math.unit(140, "lb"),
  4525. name: "Front",
  4526. image: {
  4527. source: "./media/characters/piper/front.svg",
  4528. extra: 3928 / 3681
  4529. }
  4530. },
  4531. },
  4532. [
  4533. {
  4534. name: "Micro",
  4535. height: math.unit(2, "inches")
  4536. },
  4537. {
  4538. name: "Normal",
  4539. height: math.unit(5 + 8 / 12, "feet")
  4540. },
  4541. {
  4542. name: "Macro",
  4543. height: math.unit(250, "feet"),
  4544. default: true
  4545. },
  4546. {
  4547. name: "Megamacro",
  4548. height: math.unit(7, "miles")
  4549. },
  4550. ]
  4551. ))
  4552. characterMakers.push(() => makeCharacter(
  4553. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  4554. {
  4555. front: {
  4556. height: math.unit(6, "feet"),
  4557. weight: math.unit(220, "lb"),
  4558. name: "Front",
  4559. image: {
  4560. source: "./media/characters/gemini/front.svg"
  4561. }
  4562. },
  4563. back: {
  4564. height: math.unit(6, "feet"),
  4565. weight: math.unit(220, "lb"),
  4566. name: "Back",
  4567. image: {
  4568. source: "./media/characters/gemini/back.svg"
  4569. }
  4570. },
  4571. kneeling: {
  4572. height: math.unit(6 / 1.5, "feet"),
  4573. weight: math.unit(220, "lb"),
  4574. name: "Kneeling",
  4575. image: {
  4576. source: "./media/characters/gemini/kneeling.svg",
  4577. bottom: 0.02
  4578. }
  4579. },
  4580. },
  4581. [
  4582. {
  4583. name: "Macro",
  4584. height: math.unit(300, "meters"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(6900, "meters")
  4590. },
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "Alicia" },
  4595. {
  4596. anthro: {
  4597. height: math.unit(2.35, "meters"),
  4598. weight: math.unit(73, "kg"),
  4599. name: "Anthro",
  4600. image: {
  4601. source: "./media/characters/alicia/anthro.svg"
  4602. }
  4603. },
  4604. feral: {
  4605. height: math.unit(1.69, "meters"),
  4606. weight: math.unit(73, "kg"),
  4607. name: "Feral",
  4608. image: {
  4609. source: "./media/characters/alicia/feral.svg"
  4610. }
  4611. },
  4612. },
  4613. [
  4614. {
  4615. name: "Normal",
  4616. height: math.unit(2.35, "meters")
  4617. },
  4618. {
  4619. name: "Macro",
  4620. height: math.unit(60, "meters"),
  4621. default: true
  4622. },
  4623. {
  4624. name: "Megamacro",
  4625. height: math.unit(10000, "kilometers")
  4626. },
  4627. ]
  4628. ))
  4629. characterMakers.push(() => makeCharacter(
  4630. { name: "Archy" },
  4631. {
  4632. front: {
  4633. height: math.unit(7, "feet"),
  4634. weight: math.unit(250, "lbs"),
  4635. name: "Front",
  4636. image: {
  4637. source: "./media/characters/archy/front.svg"
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Micro",
  4644. height: math.unit(1, "inch")
  4645. },
  4646. {
  4647. name: "Shorty",
  4648. height: math.unit(5, "feet")
  4649. },
  4650. {
  4651. name: "Normal",
  4652. height: math.unit(7, "feet")
  4653. },
  4654. {
  4655. name: "Macro",
  4656. height: math.unit(600, "meters"),
  4657. default: true
  4658. },
  4659. {
  4660. name: "Megamacro",
  4661. height: math.unit(1, "mile")
  4662. },
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "Berri" },
  4667. {
  4668. front: {
  4669. height: math.unit(1.65, "meters"),
  4670. weight: math.unit(74, "kg"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/berri/front.svg"
  4674. }
  4675. }
  4676. },
  4677. [
  4678. {
  4679. name: "Normal",
  4680. height: math.unit(1.65, "meters")
  4681. },
  4682. {
  4683. name: "Macro",
  4684. height: math.unit(60, "m"),
  4685. default: true
  4686. },
  4687. {
  4688. name: "Megamacro",
  4689. height: math.unit(9.213, "km")
  4690. },
  4691. {
  4692. name: "Planet Eater",
  4693. height: math.unit(489, "megameters")
  4694. },
  4695. {
  4696. name: "Teramacro",
  4697. height: math.unit(2471635000000, "meters")
  4698. },
  4699. {
  4700. name: "Examacro",
  4701. height: math.unit(8.0624e+26, "meters")
  4702. }
  4703. ]
  4704. ))
  4705. characterMakers.push(() => makeCharacter(
  4706. { name: "Lexi" },
  4707. {
  4708. front: {
  4709. height: math.unit(1.72, "meters"),
  4710. weight: math.unit(68, "kg"),
  4711. name: "Front",
  4712. image: {
  4713. source: "./media/characters/lexi/front.svg"
  4714. }
  4715. }
  4716. },
  4717. [
  4718. {
  4719. name: "Very Smol",
  4720. height: math.unit(10, "mm")
  4721. },
  4722. {
  4723. name: "Micro",
  4724. height: math.unit(6.8, "cm"),
  4725. default: true
  4726. },
  4727. {
  4728. name: "Normal",
  4729. height: math.unit(1.72, "m")
  4730. }
  4731. ]
  4732. ))
  4733. characterMakers.push(() => makeCharacter(
  4734. { name: "Martin" },
  4735. {
  4736. front: {
  4737. height: math.unit(1.69, "meters"),
  4738. weight: math.unit(68, "kg"),
  4739. name: "Front",
  4740. image: {
  4741. source: "./media/characters/martin/front.svg",
  4742. extra: 596 / 581
  4743. }
  4744. }
  4745. },
  4746. [
  4747. {
  4748. name: "Micro",
  4749. height: math.unit(6.85, "cm"),
  4750. default: true
  4751. },
  4752. {
  4753. name: "Normal",
  4754. height: math.unit(1.69, "m")
  4755. }
  4756. ]
  4757. ))
  4758. characterMakers.push(() => makeCharacter(
  4759. { name: "Juno" },
  4760. {
  4761. front: {
  4762. height: math.unit(1.69, "meters"),
  4763. weight: math.unit(68, "kg"),
  4764. name: "Front",
  4765. image: {
  4766. source: "./media/characters/juno/front.svg"
  4767. }
  4768. }
  4769. },
  4770. [
  4771. {
  4772. name: "Micro",
  4773. height: math.unit(7, "cm")
  4774. },
  4775. {
  4776. name: "Normal",
  4777. height: math.unit(1.89, "m")
  4778. },
  4779. {
  4780. name: "Macro",
  4781. height: math.unit(353, "meters"),
  4782. default: true
  4783. }
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Samantha" },
  4788. {
  4789. front: {
  4790. height: math.unit(1.93, "meters"),
  4791. weight: math.unit(83, "kg"),
  4792. name: "Front",
  4793. image: {
  4794. source: "./media/characters/samantha/front.svg"
  4795. }
  4796. },
  4797. frontClothed: {
  4798. height: math.unit(1.93, "meters"),
  4799. weight: math.unit(83, "kg"),
  4800. name: "Front (Clothed)",
  4801. image: {
  4802. source: "./media/characters/samantha/front-clothed.svg"
  4803. }
  4804. },
  4805. back: {
  4806. height: math.unit(1.93, "meters"),
  4807. weight: math.unit(83, "kg"),
  4808. name: "Back",
  4809. image: {
  4810. source: "./media/characters/samantha/back.svg"
  4811. }
  4812. },
  4813. },
  4814. [
  4815. {
  4816. name: "Normal",
  4817. height: math.unit(1.93, "m")
  4818. },
  4819. {
  4820. name: "Macro",
  4821. height: math.unit(74, "meters"),
  4822. default: true
  4823. },
  4824. {
  4825. name: "Macro+",
  4826. height: math.unit(223, "meters"),
  4827. },
  4828. {
  4829. name: "Megamacro",
  4830. height: math.unit(8381, "meters"),
  4831. },
  4832. {
  4833. name: "Megamacro+",
  4834. height: math.unit(12000, "kilometers")
  4835. },
  4836. ]
  4837. ))
  4838. characterMakers.push(() => makeCharacter(
  4839. { name: "Dr. Clay" },
  4840. {
  4841. front: {
  4842. height: math.unit(1.92, "meters"),
  4843. weight: math.unit(80, "kg"),
  4844. name: "Front",
  4845. image: {
  4846. source: "./media/characters/dr-clay/front.svg"
  4847. }
  4848. },
  4849. frontClothed: {
  4850. height: math.unit(1.92, "meters"),
  4851. weight: math.unit(80, "kg"),
  4852. name: "Front (Clothed)",
  4853. image: {
  4854. source: "./media/characters/dr-clay/front-clothed.svg"
  4855. }
  4856. }
  4857. },
  4858. [
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(1.92, "m")
  4862. },
  4863. {
  4864. name: "Macro",
  4865. height: math.unit(214, "meters"),
  4866. default: true
  4867. },
  4868. {
  4869. name: "Macro+",
  4870. height: math.unit(12.237, "meters"),
  4871. },
  4872. {
  4873. name: "Megamacro",
  4874. height: math.unit(557, "megameters"),
  4875. },
  4876. {
  4877. name: "Unimaginable",
  4878. height: math.unit(120e9, "lightyears")
  4879. },
  4880. ]
  4881. ))
  4882. characterMakers.push(() => makeCharacter(
  4883. { name: "Wyvrn Ripsnarl" },
  4884. {
  4885. front: {
  4886. height: math.unit(2, "meters"),
  4887. weight: math.unit(80, "kg"),
  4888. name: "Front",
  4889. image: {
  4890. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  4891. }
  4892. }
  4893. },
  4894. [
  4895. {
  4896. name: "Teramacro",
  4897. height: math.unit(500000, "lightyears"),
  4898. default: true
  4899. },
  4900. ]
  4901. ))
  4902. characterMakers.push(() => makeCharacter(
  4903. { name: "Vemus" },
  4904. {
  4905. front: {
  4906. height: math.unit(2, "meters"),
  4907. weight: math.unit(150, "kg"),
  4908. name: "Front",
  4909. image: {
  4910. source: "./media/characters/vemus/front.svg",
  4911. extra: 2384 / 2084,
  4912. bottom: 0.0123
  4913. }
  4914. }
  4915. },
  4916. [
  4917. {
  4918. name: "Normal",
  4919. height: math.unit(3.75, "meters"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Big",
  4924. height: math.unit(8, "meters")
  4925. },
  4926. {
  4927. name: "Macro",
  4928. height: math.unit(100, "meters")
  4929. },
  4930. {
  4931. name: "Macro+",
  4932. height: math.unit(1500, "meters")
  4933. },
  4934. {
  4935. name: "Stellar",
  4936. height: math.unit(14e8, "meters")
  4937. },
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Beherit" },
  4942. {
  4943. front: {
  4944. height: math.unit(2, "meters"),
  4945. weight: math.unit(70, "kg"),
  4946. name: "Front",
  4947. image: {
  4948. source: "./media/characters/beherit/front.svg",
  4949. extra: 1408 / 1242
  4950. }
  4951. }
  4952. },
  4953. [
  4954. {
  4955. name: "Normal",
  4956. height: math.unit(6, "feet")
  4957. },
  4958. {
  4959. name: "Lorg",
  4960. height: math.unit(25, "feet"),
  4961. default: true
  4962. },
  4963. {
  4964. name: "Lorger",
  4965. height: math.unit(75, "feet")
  4966. },
  4967. {
  4968. name: "Macro",
  4969. height: math.unit(200, "meters")
  4970. },
  4971. ]
  4972. ))
  4973. characterMakers.push(() => makeCharacter(
  4974. { name: "Everett" },
  4975. {
  4976. front: {
  4977. height: math.unit(2, "meters"),
  4978. weight: math.unit(150, "kg"),
  4979. name: "Front",
  4980. image: {
  4981. source: "./media/characters/everett/front.svg",
  4982. extra: 2038 / 1737,
  4983. bottom: 0.03
  4984. }
  4985. },
  4986. paw: {
  4987. height: math.unit(2 / 3.6, "meters"),
  4988. name: "Paw",
  4989. image: {
  4990. source: "./media/characters/everett/paw.svg"
  4991. }
  4992. },
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(15, "feet"),
  4998. default: true
  4999. },
  5000. {
  5001. name: "Lorg",
  5002. height: math.unit(70, "feet"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Lorger",
  5007. height: math.unit(250, "feet")
  5008. },
  5009. {
  5010. name: "Macro",
  5011. height: math.unit(500, "meters")
  5012. },
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Rose Lion" },
  5017. {
  5018. front: {
  5019. height: math.unit(2, "meters"),
  5020. weight: math.unit(86, "kg"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/rose-lion/front.svg"
  5024. }
  5025. },
  5026. bent: {
  5027. height: math.unit(2 / 1.4288, "meters"),
  5028. weight: math.unit(86, "kg"),
  5029. name: "Bent",
  5030. image: {
  5031. source: "./media/characters/rose-lion/bent.svg"
  5032. }
  5033. }
  5034. },
  5035. [
  5036. {
  5037. name: "Mini-Micro",
  5038. height: math.unit(1, "cm")
  5039. },
  5040. {
  5041. name: "Micro",
  5042. height: math.unit(3.5, "inches"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Normal",
  5047. height: math.unit(6 + 1 / 6, "feet")
  5048. },
  5049. {
  5050. name: "Mini-Macro",
  5051. height: math.unit(9 + 10 / 12, "feet")
  5052. },
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Regal" },
  5057. {
  5058. front: {
  5059. height: math.unit(2, "meters"),
  5060. weight: math.unit(350, "lbs"),
  5061. name: "Front",
  5062. image: {
  5063. source: "./media/characters/regal/front.svg"
  5064. }
  5065. },
  5066. back: {
  5067. height: math.unit(2, "meters"),
  5068. weight: math.unit(350, "lbs"),
  5069. name: "Back",
  5070. image: {
  5071. source: "./media/characters/regal/back.svg"
  5072. }
  5073. },
  5074. },
  5075. [
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(350, "feet"),
  5079. default: true
  5080. }
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Opal" },
  5085. {
  5086. front: {
  5087. height: math.unit(4 + 11 / 12, "feet"),
  5088. weight: math.unit(100, "lbs"),
  5089. name: "Front",
  5090. image: {
  5091. source: "./media/characters/opal/front.svg"
  5092. }
  5093. },
  5094. frontAlt: {
  5095. height: math.unit(4 + 11 / 12, "feet"),
  5096. weight: math.unit(100, "lbs"),
  5097. name: "Front (Alt)",
  5098. image: {
  5099. source: "./media/characters/opal/front-alt.svg"
  5100. }
  5101. },
  5102. },
  5103. [
  5104. {
  5105. name: "Small",
  5106. height: math.unit(4 + 11 / 12, "feet")
  5107. },
  5108. {
  5109. name: "Normal",
  5110. height: math.unit(20, "feet"),
  5111. default: true
  5112. },
  5113. {
  5114. name: "Macro",
  5115. height: math.unit(120, "feet")
  5116. },
  5117. {
  5118. name: "Megamacro",
  5119. height: math.unit(80, "miles")
  5120. },
  5121. {
  5122. name: "True Size",
  5123. height: math.unit(100000, "lightyears")
  5124. },
  5125. ]
  5126. ))
  5127. characterMakers.push(() => makeCharacter(
  5128. { name: "Vector Wuff" },
  5129. {
  5130. front: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(200, "lbs"),
  5133. name: "Front",
  5134. image: {
  5135. source: "./media/characters/vector-wuff/front.svg"
  5136. }
  5137. }
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(2.8, "meters")
  5143. },
  5144. {
  5145. name: "Macro",
  5146. height: math.unit(450, "meters"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Megamacro",
  5151. height: math.unit(15, "kilometers")
  5152. }
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Dannik" },
  5157. {
  5158. front: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(256, "lbs"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/dannik/front.svg"
  5164. }
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Macro",
  5170. height: math.unit(69.57, "meters"),
  5171. default: true
  5172. },
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Azura Saharah" },
  5177. {
  5178. front: {
  5179. height: math.unit(6, "feet"),
  5180. weight: math.unit(120, "lbs"),
  5181. name: "Front",
  5182. image: {
  5183. source: "./media/characters/azura-saharah/front.svg"
  5184. }
  5185. },
  5186. back: {
  5187. height: math.unit(6, "feet"),
  5188. weight: math.unit(120, "lbs"),
  5189. name: "Back",
  5190. image: {
  5191. source: "./media/characters/azura-saharah/back.svg"
  5192. }
  5193. },
  5194. },
  5195. [
  5196. {
  5197. name: "Macro",
  5198. height: math.unit(100, "feet"),
  5199. default: true
  5200. },
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Kennedy" },
  5205. {
  5206. side: {
  5207. height: math.unit(5 + 4 / 12, "feet"),
  5208. weight: math.unit(163, "lbs"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/kennedy/side.svg"
  5212. }
  5213. }
  5214. },
  5215. [
  5216. {
  5217. name: "Standard Doggo",
  5218. height: math.unit(5 + 4 / 12, "feet")
  5219. },
  5220. {
  5221. name: "Big Doggo",
  5222. height: math.unit(25 + 3 / 12, "feet"),
  5223. default: true
  5224. },
  5225. ]
  5226. ))
  5227. characterMakers.push(() => makeCharacter(
  5228. { name: "Odi Lunar" },
  5229. {
  5230. front: {
  5231. height: math.unit(6, "feet"),
  5232. weight: math.unit(90, "lbs"),
  5233. name: "Front",
  5234. image: {
  5235. source: "./media/characters/odi-lunar/front.svg"
  5236. }
  5237. }
  5238. },
  5239. [
  5240. {
  5241. name: "Micro",
  5242. height: math.unit(3, "inches"),
  5243. default: true
  5244. },
  5245. {
  5246. name: "Normal",
  5247. height: math.unit(5.5, "feet")
  5248. }
  5249. ]
  5250. ))
  5251. characterMakers.push(() => makeCharacter(
  5252. { name: "Mandake" },
  5253. {
  5254. back: {
  5255. height: math.unit(6, "feet"),
  5256. weight: math.unit(220, "lbs"),
  5257. name: "Back",
  5258. image: {
  5259. source: "./media/characters/mandake/back.svg"
  5260. }
  5261. }
  5262. },
  5263. [
  5264. {
  5265. name: "Normal",
  5266. height: math.unit(7, "feet"),
  5267. default: true
  5268. },
  5269. {
  5270. name: "Macro",
  5271. height: math.unit(78, "feet")
  5272. },
  5273. {
  5274. name: "Macro+",
  5275. height: math.unit(300, "meters")
  5276. },
  5277. {
  5278. name: "Macro++",
  5279. height: math.unit(2400, "feet")
  5280. },
  5281. {
  5282. name: "Megamacro",
  5283. height: math.unit(5167, "meters")
  5284. },
  5285. {
  5286. name: "Gigamacro",
  5287. height: math.unit(41769, "miles")
  5288. },
  5289. ]
  5290. ))
  5291. characterMakers.push(() => makeCharacter(
  5292. { name: "Yozey" },
  5293. {
  5294. front: {
  5295. height: math.unit(6, "feet"),
  5296. weight: math.unit(120, "lbs"),
  5297. name: "Front",
  5298. image: {
  5299. source: "./media/characters/yozey/front.svg"
  5300. }
  5301. },
  5302. frontAlt: {
  5303. height: math.unit(6, "feet"),
  5304. weight: math.unit(120, "lbs"),
  5305. name: "Front (Alt)",
  5306. image: {
  5307. source: "./media/characters/yozey/front-alt.svg"
  5308. }
  5309. },
  5310. side: {
  5311. height: math.unit(6, "feet"),
  5312. weight: math.unit(120, "lbs"),
  5313. name: "Side",
  5314. image: {
  5315. source: "./media/characters/yozey/side.svg"
  5316. }
  5317. },
  5318. },
  5319. [
  5320. {
  5321. name: "Micro",
  5322. height: math.unit(3, "inches"),
  5323. default: true
  5324. },
  5325. {
  5326. name: "Normal",
  5327. height: math.unit(6, "feet")
  5328. }
  5329. ]
  5330. ))
  5331. characterMakers.push(() => makeCharacter(
  5332. { name: "Valeska Voss" },
  5333. {
  5334. front: {
  5335. height: math.unit(6, "feet"),
  5336. weight: math.unit(103, "lbs"),
  5337. name: "Front",
  5338. image: {
  5339. source: "./media/characters/valeska-voss/front.svg"
  5340. }
  5341. }
  5342. },
  5343. [
  5344. {
  5345. name: "Mini-Sized Sub",
  5346. height: math.unit(3.1, "inches")
  5347. },
  5348. {
  5349. name: "Mid-Sized Sub",
  5350. height: math.unit(6.2, "inches")
  5351. },
  5352. {
  5353. name: "Full-Sized Sub",
  5354. height: math.unit(9.3, "inches")
  5355. },
  5356. {
  5357. name: "Normal",
  5358. height: math.unit(5 + 2 / 12, "foot"),
  5359. default: true
  5360. },
  5361. ]
  5362. ))
  5363. characterMakers.push(() => makeCharacter(
  5364. { name: "Gene Zeta" },
  5365. {
  5366. front: {
  5367. height: math.unit(6, "feet"),
  5368. weight: math.unit(160, "lbs"),
  5369. name: "Front",
  5370. image: {
  5371. source: "./media/characters/gene-zeta/front.svg",
  5372. bottom: 0.03,
  5373. extra: 1
  5374. }
  5375. }
  5376. },
  5377. [
  5378. {
  5379. name: "Normal",
  5380. height: math.unit(6.25, "foot"),
  5381. default: true
  5382. },
  5383. ]
  5384. ))
  5385. characterMakers.push(() => makeCharacter(
  5386. { name: "Razinox" },
  5387. {
  5388. front: {
  5389. height: math.unit(6, "feet"),
  5390. weight: math.unit(350, "lbs"),
  5391. name: "Front",
  5392. image: {
  5393. source: "./media/characters/razinox/front.svg",
  5394. extra: 1686 / 1548,
  5395. bottom: 28.2/1868
  5396. }
  5397. },
  5398. back: {
  5399. height: math.unit(6, "feet"),
  5400. weight: math.unit(350, "lbs"),
  5401. name: "Back",
  5402. image: {
  5403. source: "./media/characters/razinox/back.svg",
  5404. extra: 1660 / 1590,
  5405. bottom: 15/1665
  5406. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Normal",
  5412. height: math.unit(10 + 8 / 12, "foot")
  5413. },
  5414. {
  5415. name: "Minimacro",
  5416. height: math.unit(15, "foot")
  5417. },
  5418. {
  5419. name: "Macro",
  5420. height: math.unit(60, "foot"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "Megamacro",
  5425. height: math.unit(5, "miles")
  5426. },
  5427. {
  5428. name: "Gigamacro",
  5429. height: math.unit(6000, "miles")
  5430. },
  5431. ]
  5432. ))
  5433. characterMakers.push(() => makeCharacter(
  5434. { name: "Cobalt" },
  5435. {
  5436. front: {
  5437. height: math.unit(6, "feet"),
  5438. weight: math.unit(150, "lbs"),
  5439. name: "Front",
  5440. image: {
  5441. source: "./media/characters/cobalt/front.svg"
  5442. }
  5443. }
  5444. },
  5445. [
  5446. {
  5447. name: "Normal",
  5448. height: math.unit(8 + 1 / 12, "foot")
  5449. },
  5450. {
  5451. name: "Macro",
  5452. height: math.unit(111, "foot"),
  5453. default: true
  5454. },
  5455. {
  5456. name: "Supracosmic",
  5457. height: math.unit(1e42, "feet")
  5458. },
  5459. ]
  5460. ))
  5461. characterMakers.push(() => makeCharacter(
  5462. { name: "Amanda" },
  5463. {
  5464. front: {
  5465. height: math.unit(6, "feet"),
  5466. weight: math.unit(140, "lbs"),
  5467. name: "Front",
  5468. image: {
  5469. source: "./media/characters/amanda/front.svg"
  5470. }
  5471. }
  5472. },
  5473. [
  5474. {
  5475. name: "Micro",
  5476. height: math.unit(5, "inches"),
  5477. default: true
  5478. },
  5479. ]
  5480. ))
  5481. characterMakers.push(() => makeCharacter(
  5482. { name: "Teal" },
  5483. {
  5484. front: {
  5485. height: math.unit(5.59, "feet"),
  5486. weight: math.unit(250, "lbs"),
  5487. name: "Front",
  5488. image: {
  5489. source: "./media/characters/teal/front.svg"
  5490. }
  5491. },
  5492. frontAlt: {
  5493. height: math.unit(6, "feet"),
  5494. weight: math.unit(250, "lbs"),
  5495. name: "Front (Alt)",
  5496. image: {
  5497. source: "./media/characters/teal/front-alt.svg",
  5498. bottom: 0.04,
  5499. extra: 1
  5500. }
  5501. },
  5502. },
  5503. [
  5504. {
  5505. name: "Normal",
  5506. height: math.unit(12, "feet"),
  5507. default: true
  5508. },
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(300, "feet")
  5512. },
  5513. ]
  5514. ))
  5515. characterMakers.push(() => makeCharacter(
  5516. { name: "Ravin Amulet" },
  5517. {
  5518. frontCat: {
  5519. height: math.unit(6, "feet"),
  5520. weight: math.unit(180, "lbs"),
  5521. name: "Front (Cat)",
  5522. image: {
  5523. source: "./media/characters/ravin-amulet/front-cat.svg"
  5524. }
  5525. },
  5526. frontCatAlt: {
  5527. height: math.unit(6, "feet"),
  5528. weight: math.unit(180, "lbs"),
  5529. name: "Front (Alt, Cat)",
  5530. image: {
  5531. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  5532. }
  5533. },
  5534. frontWerewolf: {
  5535. height: math.unit(6 * 1.2, "feet"),
  5536. weight: math.unit(225, "lbs"),
  5537. name: "Front (Werewolf)",
  5538. image: {
  5539. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  5540. }
  5541. },
  5542. backWerewolf: {
  5543. height: math.unit(6 * 1.2, "feet"),
  5544. weight: math.unit(225, "lbs"),
  5545. name: "Back (Werewolf)",
  5546. image: {
  5547. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  5548. }
  5549. },
  5550. },
  5551. [
  5552. {
  5553. name: "Nano",
  5554. height: math.unit(1, "micrometer")
  5555. },
  5556. {
  5557. name: "Micro",
  5558. height: math.unit(1, "inch")
  5559. },
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(6, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Macro",
  5567. height: math.unit(60, "feet")
  5568. }
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Fluoresce" },
  5573. {
  5574. front: {
  5575. height: math.unit(6, "feet"),
  5576. weight: math.unit(165, "lbs"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/fluoresce/front.svg"
  5580. }
  5581. }
  5582. },
  5583. [
  5584. {
  5585. name: "Micro",
  5586. height: math.unit(6, "cm")
  5587. },
  5588. {
  5589. name: "Normal",
  5590. height: math.unit(5 + 7 / 12, "feet"),
  5591. default: true
  5592. },
  5593. {
  5594. name: "Macro",
  5595. height: math.unit(56, "feet")
  5596. },
  5597. {
  5598. name: "Megamacro",
  5599. height: math.unit(1.9, "miles")
  5600. },
  5601. ]
  5602. ))
  5603. characterMakers.push(() => makeCharacter(
  5604. { name: "Aurora" },
  5605. {
  5606. front: {
  5607. height: math.unit(9 + 6 / 12, "feet"),
  5608. weight: math.unit(523, "lbs"),
  5609. name: "Side",
  5610. image: {
  5611. source: "./media/characters/aurora/side.svg"
  5612. }
  5613. }
  5614. },
  5615. [
  5616. {
  5617. name: "Normal",
  5618. height: math.unit(9 + 6 / 12, "feet")
  5619. },
  5620. {
  5621. name: "Macro",
  5622. height: math.unit(96, "feet"),
  5623. default: true
  5624. },
  5625. {
  5626. name: "Macro+",
  5627. height: math.unit(243, "feet")
  5628. },
  5629. ]
  5630. ))
  5631. characterMakers.push(() => makeCharacter(
  5632. { name: "Ranek" },
  5633. {
  5634. front: {
  5635. height: math.unit(194, "cm"),
  5636. weight: math.unit(90, "kg"),
  5637. name: "Front",
  5638. image: {
  5639. source: "./media/characters/ranek/front.svg"
  5640. }
  5641. },
  5642. side: {
  5643. height: math.unit(194, "cm"),
  5644. weight: math.unit(90, "kg"),
  5645. name: "Side",
  5646. image: {
  5647. source: "./media/characters/ranek/side.svg"
  5648. }
  5649. },
  5650. back: {
  5651. height: math.unit(194, "cm"),
  5652. weight: math.unit(90, "kg"),
  5653. name: "Back",
  5654. image: {
  5655. source: "./media/characters/ranek/back.svg"
  5656. }
  5657. },
  5658. feral: {
  5659. height: math.unit(30, "cm"),
  5660. weight: math.unit(1.6, "lbs"),
  5661. name: "Feral",
  5662. image: {
  5663. source: "./media/characters/ranek/feral.svg"
  5664. }
  5665. },
  5666. },
  5667. [
  5668. {
  5669. name: "Normal",
  5670. height: math.unit(194, "cm"),
  5671. default: true
  5672. },
  5673. {
  5674. name: "Macro",
  5675. height: math.unit(100, "meters")
  5676. },
  5677. ]
  5678. ))
  5679. characterMakers.push(() => makeCharacter(
  5680. { name: "Andrew Cooper" },
  5681. {
  5682. front: {
  5683. height: math.unit(5 + 6 / 12, "feet"),
  5684. weight: math.unit(153, "lbs"),
  5685. name: "Front",
  5686. image: {
  5687. source: "./media/characters/andrew-cooper/front.svg"
  5688. }
  5689. },
  5690. },
  5691. [
  5692. {
  5693. name: "Nano",
  5694. height: math.unit(1, "mm")
  5695. },
  5696. {
  5697. name: "Micro",
  5698. height: math.unit(2, "inches")
  5699. },
  5700. {
  5701. name: "Normal",
  5702. height: math.unit(5 + 6 / 12, "feet"),
  5703. default: true
  5704. }
  5705. ]
  5706. ))
  5707. characterMakers.push(() => makeCharacter(
  5708. { name: "Akane Sato" },
  5709. {
  5710. front: {
  5711. height: math.unit(6, "feet"),
  5712. weight: math.unit(180, "lbs"),
  5713. name: "Front",
  5714. image: {
  5715. source: "./media/characters/akane-sato/front.svg",
  5716. extra: 1219 / 1140
  5717. }
  5718. },
  5719. back: {
  5720. height: math.unit(6, "feet"),
  5721. weight: math.unit(180, "lbs"),
  5722. name: "Back",
  5723. image: {
  5724. source: "./media/characters/akane-sato/back.svg",
  5725. extra: 1219 / 1170
  5726. }
  5727. },
  5728. },
  5729. [
  5730. {
  5731. name: "Normal",
  5732. height: math.unit(2.5, "meters")
  5733. },
  5734. {
  5735. name: "Macro",
  5736. height: math.unit(250, "meters"),
  5737. default: true
  5738. },
  5739. {
  5740. name: "Megamacro",
  5741. height: math.unit(25, "km")
  5742. },
  5743. ]
  5744. ))
  5745. characterMakers.push(() => makeCharacter(
  5746. { name: "Rook" },
  5747. {
  5748. front: {
  5749. height: math.unit(6, "feet"),
  5750. weight: math.unit(65, "kg"),
  5751. name: "Front",
  5752. image: {
  5753. source: "./media/characters/rook/front.svg",
  5754. extra: 960/950
  5755. }
  5756. }
  5757. },
  5758. [
  5759. {
  5760. name: "Normal",
  5761. height: math.unit(8.8, "feet")
  5762. },
  5763. {
  5764. name: "Macro",
  5765. height: math.unit(88, "feet"),
  5766. default: true
  5767. },
  5768. {
  5769. name: "Megamacro",
  5770. height: math.unit(8, "miles")
  5771. },
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Prodigy" },
  5776. {
  5777. front: {
  5778. height: math.unit(12 + 2 / 12, "feet"),
  5779. weight: math.unit(808, "lbs"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/prodigy/front.svg"
  5783. }
  5784. }
  5785. },
  5786. [
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(12 + 2 / 12, "feet"),
  5790. default: true
  5791. },
  5792. {
  5793. name: "Macro",
  5794. height: math.unit(143, "feet")
  5795. },
  5796. {
  5797. name: "Macro+",
  5798. height: math.unit(400, "feet")
  5799. },
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Daniel" },
  5804. {
  5805. front: {
  5806. height: math.unit(6, "feet"),
  5807. weight: math.unit(225, "lbs"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/daniel/front.svg"
  5811. }
  5812. },
  5813. leaning: {
  5814. height: math.unit(6, "feet"),
  5815. weight: math.unit(225, "lbs"),
  5816. name: "Leaning",
  5817. image: {
  5818. source: "./media/characters/daniel/leaning.svg"
  5819. }
  5820. },
  5821. },
  5822. [
  5823. {
  5824. name: "Macro",
  5825. height: math.unit(1000, "feet"),
  5826. default: true
  5827. },
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Chiros" },
  5832. {
  5833. front: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(88, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/chiros/front.svg",
  5839. extra: 306 / 226
  5840. }
  5841. },
  5842. side: {
  5843. height: math.unit(6, "feet"),
  5844. weight: math.unit(88, "lbs"),
  5845. name: "Side",
  5846. image: {
  5847. source: "./media/characters/chiros/side.svg",
  5848. extra: 306 / 226
  5849. }
  5850. },
  5851. },
  5852. [
  5853. {
  5854. name: "Normal",
  5855. height: math.unit(6, "cm"),
  5856. default: true
  5857. },
  5858. ]
  5859. ))
  5860. characterMakers.push(() => makeCharacter(
  5861. { name: "Selka" },
  5862. {
  5863. front: {
  5864. height: math.unit(6, "feet"),
  5865. weight: math.unit(100, "lbs"),
  5866. name: "Front",
  5867. image: {
  5868. source: "./media/characters/selka/front.svg",
  5869. extra: 947 / 887
  5870. }
  5871. }
  5872. },
  5873. [
  5874. {
  5875. name: "Normal",
  5876. height: math.unit(5, "cm"),
  5877. default: true
  5878. },
  5879. ]
  5880. ))
  5881. characterMakers.push(() => makeCharacter(
  5882. { name: "Verin" },
  5883. {
  5884. front: {
  5885. height: math.unit(8 + 3 / 12, "feet"),
  5886. weight: math.unit(424, "lbs"),
  5887. name: "Front",
  5888. image: {
  5889. source: "./media/characters/verin/front.svg",
  5890. extra: 1845 / 1550
  5891. }
  5892. },
  5893. frontArmored: {
  5894. height: math.unit(8 + 3 / 12, "feet"),
  5895. weight: math.unit(424, "lbs"),
  5896. name: "Front (Armored)",
  5897. image: {
  5898. source: "./media/characters/verin/front-armor.svg",
  5899. extra: 1845 / 1550,
  5900. bottom: 0.01
  5901. }
  5902. },
  5903. back: {
  5904. height: math.unit(8 + 3 / 12, "feet"),
  5905. weight: math.unit(424, "lbs"),
  5906. name: "Back",
  5907. image: {
  5908. source: "./media/characters/verin/back.svg",
  5909. bottom: 0.1,
  5910. extra: 1
  5911. }
  5912. },
  5913. foot: {
  5914. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  5915. name: "Foot",
  5916. image: {
  5917. source: "./media/characters/verin/foot.svg"
  5918. }
  5919. },
  5920. },
  5921. [
  5922. {
  5923. name: "Normal",
  5924. height: math.unit(8 + 3 / 12, "feet")
  5925. },
  5926. {
  5927. name: "Minimacro",
  5928. height: math.unit(21, "feet"),
  5929. default: true
  5930. },
  5931. {
  5932. name: "Macro",
  5933. height: math.unit(626, "feet")
  5934. },
  5935. ]
  5936. ))
  5937. characterMakers.push(() => makeCharacter(
  5938. { name: "Sovrim Terraquian" },
  5939. {
  5940. front: {
  5941. height: math.unit(2.718, "meters"),
  5942. weight: math.unit(150, "lbs"),
  5943. name: "Front",
  5944. image: {
  5945. source: "./media/characters/sovrim-terraquian/front.svg"
  5946. }
  5947. },
  5948. back: {
  5949. height: math.unit(2.718, "meters"),
  5950. weight: math.unit(150, "lbs"),
  5951. name: "Back",
  5952. image: {
  5953. source: "./media/characters/sovrim-terraquian/back.svg"
  5954. }
  5955. }
  5956. },
  5957. [
  5958. {
  5959. name: "Micro",
  5960. height: math.unit(2, "inches")
  5961. },
  5962. {
  5963. name: "Small",
  5964. height: math.unit(1, "meter")
  5965. },
  5966. {
  5967. name: "Normal",
  5968. height: math.unit(Math.E, "meters"),
  5969. default: true
  5970. },
  5971. {
  5972. name: "Macro",
  5973. height: math.unit(20, "meters")
  5974. },
  5975. {
  5976. name: "Macro+",
  5977. height: math.unit(400, "meters")
  5978. },
  5979. ]
  5980. ))
  5981. characterMakers.push(() => makeCharacter(
  5982. { name: "Reece Silvermane" },
  5983. {
  5984. front: {
  5985. height: math.unit(7, "feet"),
  5986. weight: math.unit(489, "lbs"),
  5987. name: "Front",
  5988. image: {
  5989. source: "./media/characters/reece-silvermane/front.svg",
  5990. bottom: 0.02,
  5991. extra: 1
  5992. }
  5993. },
  5994. },
  5995. [
  5996. {
  5997. name: "Macro",
  5998. height: math.unit(1.5, "miles"),
  5999. default: true
  6000. },
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Kane" },
  6005. {
  6006. front: {
  6007. height: math.unit(6, "feet"),
  6008. weight: math.unit(78, "kg"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/kane/front.svg",
  6012. extra: 978 / 899
  6013. }
  6014. },
  6015. },
  6016. [
  6017. {
  6018. name: "Normal",
  6019. height: math.unit(2.1, "m"),
  6020. },
  6021. {
  6022. name: "Macro",
  6023. height: math.unit(1, "km"),
  6024. default: true
  6025. },
  6026. ]
  6027. ))
  6028. characterMakers.push(() => makeCharacter(
  6029. { name: "Tegon" },
  6030. {
  6031. front: {
  6032. height: math.unit(6, "feet"),
  6033. weight: math.unit(200, "kg"),
  6034. name: "Front",
  6035. image: {
  6036. source: "./media/characters/tegon/front.svg",
  6037. bottom: 0.01,
  6038. extra: 1
  6039. }
  6040. },
  6041. },
  6042. [
  6043. {
  6044. name: "Micro",
  6045. height: math.unit(1, "inch")
  6046. },
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(6 + 3 / 12, "feet"),
  6050. default: true
  6051. },
  6052. {
  6053. name: "Macro",
  6054. height: math.unit(300, "feet")
  6055. },
  6056. {
  6057. name: "Megamacro",
  6058. height: math.unit(69, "miles")
  6059. },
  6060. ]
  6061. ))
  6062. characterMakers.push(() => makeCharacter(
  6063. { name: "Arcturax" },
  6064. {
  6065. side: {
  6066. height: math.unit(6, "feet"),
  6067. weight: math.unit(2304, "lbs"),
  6068. name: "Side",
  6069. image: {
  6070. source: "./media/characters/arcturax/side.svg",
  6071. extra: 790 / 376,
  6072. bottom: 0.01
  6073. }
  6074. },
  6075. },
  6076. [
  6077. {
  6078. name: "Micro",
  6079. height: math.unit(2, "inch")
  6080. },
  6081. {
  6082. name: "Normal",
  6083. height: math.unit(6, "feet")
  6084. },
  6085. {
  6086. name: "Macro",
  6087. height: math.unit(39, "feet"),
  6088. default: true
  6089. },
  6090. {
  6091. name: "Megamacro",
  6092. height: math.unit(7, "miles")
  6093. },
  6094. ]
  6095. ))
  6096. characterMakers.push(() => makeCharacter(
  6097. { name: "Sentri" },
  6098. {
  6099. front: {
  6100. height: math.unit(6, "feet"),
  6101. weight: math.unit(50, "lbs"),
  6102. name: "Front",
  6103. image: {
  6104. source: "./media/characters/sentri/front.svg",
  6105. extra: 1750 / 1570,
  6106. bottom: 0.025
  6107. }
  6108. },
  6109. frontAlt: {
  6110. height: math.unit(6, "feet"),
  6111. weight: math.unit(50, "lbs"),
  6112. name: "Front (Alt)",
  6113. image: {
  6114. source: "./media/characters/sentri/front-alt.svg",
  6115. extra: 1750 / 1570,
  6116. bottom: 0.025
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(15, "feet"),
  6124. default: true
  6125. },
  6126. {
  6127. name: "Macro",
  6128. height: math.unit(2500, "feet")
  6129. }
  6130. ]
  6131. ))
  6132. characterMakers.push(() => makeCharacter(
  6133. { name: "Corvin" },
  6134. {
  6135. front: {
  6136. height: math.unit(5 + 8 / 12, "feet"),
  6137. weight: math.unit(130, "lbs"),
  6138. name: "Front",
  6139. image: {
  6140. source: "./media/characters/corvin/front.svg",
  6141. extra: 1803 / 1629
  6142. }
  6143. },
  6144. frontShirt: {
  6145. height: math.unit(5 + 8 / 12, "feet"),
  6146. weight: math.unit(130, "lbs"),
  6147. name: "Front (Shirt)",
  6148. image: {
  6149. source: "./media/characters/corvin/front-shirt.svg",
  6150. extra: 1803 / 1629
  6151. }
  6152. },
  6153. frontPoncho: {
  6154. height: math.unit(5 + 8 / 12, "feet"),
  6155. weight: math.unit(130, "lbs"),
  6156. name: "Front (Poncho)",
  6157. image: {
  6158. source: "./media/characters/corvin/front-poncho.svg",
  6159. extra: 1803 / 1629
  6160. }
  6161. },
  6162. side: {
  6163. height: math.unit(5 + 8 / 12, "feet"),
  6164. weight: math.unit(130, "lbs"),
  6165. name: "Side",
  6166. image: {
  6167. source: "./media/characters/corvin/side.svg",
  6168. extra: 1012 / 945
  6169. }
  6170. },
  6171. back: {
  6172. height: math.unit(5 + 8 / 12, "feet"),
  6173. weight: math.unit(130, "lbs"),
  6174. name: "Back",
  6175. image: {
  6176. source: "./media/characters/corvin/back.svg",
  6177. extra: 1803 / 1629
  6178. }
  6179. },
  6180. },
  6181. [
  6182. {
  6183. name: "Micro",
  6184. height: math.unit(3, "inches")
  6185. },
  6186. {
  6187. name: "Normal",
  6188. height: math.unit(5 + 8 / 12, "feet")
  6189. },
  6190. {
  6191. name: "Macro",
  6192. height: math.unit(300, "feet"),
  6193. default: true
  6194. },
  6195. {
  6196. name: "Megamacro",
  6197. height: math.unit(500, "miles")
  6198. }
  6199. ]
  6200. ))
  6201. characterMakers.push(() => makeCharacter(
  6202. { name: "Q" },
  6203. {
  6204. front: {
  6205. height: math.unit(6, "feet"),
  6206. weight: math.unit(135, "lbs"),
  6207. name: "Front",
  6208. image: {
  6209. source: "./media/characters/q/front.svg",
  6210. extra: 854 / 752,
  6211. bottom: 0.005
  6212. }
  6213. },
  6214. back: {
  6215. height: math.unit(6, "feet"),
  6216. weight: math.unit(130, "lbs"),
  6217. name: "Back",
  6218. image: {
  6219. source: "./media/characters/q/back.svg",
  6220. extra: 854 / 752
  6221. }
  6222. },
  6223. },
  6224. [
  6225. {
  6226. name: "Macro",
  6227. height: math.unit(90, "feet"),
  6228. default: true
  6229. },
  6230. {
  6231. name: "Extra Macro",
  6232. height: math.unit(300, "feet"),
  6233. },
  6234. {
  6235. name: "BIG WALF",
  6236. height: math.unit(750, "feet"),
  6237. },
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Carley" },
  6242. {
  6243. front: {
  6244. height: math.unit(6, "feet"),
  6245. weight: math.unit(150, "lbs"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/carley/front.svg",
  6249. extra: 3927 / 3540,
  6250. bottom: 0.03
  6251. }
  6252. }
  6253. },
  6254. [
  6255. {
  6256. name: "Normal",
  6257. height: math.unit(6 + 3 / 12, "feet")
  6258. },
  6259. {
  6260. name: "Macro",
  6261. height: math.unit(185, "feet"),
  6262. default: true
  6263. },
  6264. {
  6265. name: "Megamacro",
  6266. height: math.unit(8, "miles"),
  6267. },
  6268. ]
  6269. ))
  6270. characterMakers.push(() => makeCharacter(
  6271. { name: "Citrine" },
  6272. {
  6273. front: {
  6274. height: math.unit(3, "feet"),
  6275. weight: math.unit(28, "lbs"),
  6276. name: "Front",
  6277. image: {
  6278. source: "./media/characters/citrine/front.svg"
  6279. }
  6280. }
  6281. },
  6282. [
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(3, "feet"),
  6286. default: true
  6287. }
  6288. ]
  6289. ))
  6290. characterMakers.push(() => makeCharacter(
  6291. { name: "Aura Starwind" },
  6292. {
  6293. front: {
  6294. height: math.unit(14, "feet"),
  6295. weight: math.unit(1450, "kg"),
  6296. capacity: math.unit(15, "people"),
  6297. name: "Front",
  6298. image: {
  6299. source: "./media/characters/aura-starwind/front.svg",
  6300. extra: 1455 / 1335
  6301. }
  6302. },
  6303. side: {
  6304. height: math.unit(14, "feet"),
  6305. weight: math.unit(1450, "kg"),
  6306. capacity: math.unit(15, "people"),
  6307. name: "Side",
  6308. image: {
  6309. source: "./media/characters/aura-starwind/side.svg",
  6310. extra: 1654 / 1497
  6311. }
  6312. },
  6313. taur: {
  6314. height: math.unit(18, "feet"),
  6315. weight: math.unit(5500, "kg"),
  6316. capacity: math.unit(50, "people"),
  6317. name: "Taur",
  6318. image: {
  6319. source: "./media/characters/aura-starwind/taur.svg",
  6320. extra: 1760 / 1650
  6321. }
  6322. },
  6323. feral: {
  6324. height: math.unit(46, "feet"),
  6325. weight: math.unit(25000, "kg"),
  6326. capacity: math.unit(120, "people"),
  6327. name: "Feral",
  6328. image: {
  6329. source: "./media/characters/aura-starwind/feral.svg"
  6330. }
  6331. },
  6332. },
  6333. [
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(14, "feet"),
  6337. default: true
  6338. },
  6339. {
  6340. name: "Macro",
  6341. height: math.unit(50, "meters")
  6342. },
  6343. {
  6344. name: "Megamacro",
  6345. height: math.unit(5000, "meters")
  6346. },
  6347. {
  6348. name: "Gigamacro",
  6349. height: math.unit(100000, "kilometers")
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Rivet" },
  6355. {
  6356. front: {
  6357. height: math.unit(2 + 7 / 12, "feet"),
  6358. weight: math.unit(32, "lbs"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/rivet/front.svg",
  6362. extra: 1716 / 1658,
  6363. bottom: 0.03
  6364. }
  6365. },
  6366. foot: {
  6367. height: math.unit(0.551, "feet"),
  6368. name: "Rivet's Foot",
  6369. image: {
  6370. source: "./media/characters/rivet/foot.svg"
  6371. },
  6372. rename: true
  6373. }
  6374. },
  6375. [
  6376. {
  6377. name: "Micro",
  6378. height: math.unit(1.5, "inches"),
  6379. },
  6380. {
  6381. name: "Normal",
  6382. height: math.unit(2 + 7 / 12, "feet"),
  6383. default: true
  6384. },
  6385. {
  6386. name: "Macro",
  6387. height: math.unit(85, "feet")
  6388. },
  6389. {
  6390. name: "Megamacro",
  6391. height: math.unit(2.2, "km")
  6392. }
  6393. ]
  6394. ))
  6395. characterMakers.push(() => makeCharacter(
  6396. { name: "Coffee" },
  6397. {
  6398. front: {
  6399. height: math.unit(5 + 9 / 12, "feet"),
  6400. weight: math.unit(150, "lbs"),
  6401. name: "Front",
  6402. image: {
  6403. source: "./media/characters/coffee/front.svg",
  6404. extra: 3666 / 3032,
  6405. bottom: 0.04
  6406. }
  6407. },
  6408. foot: {
  6409. height: math.unit(1.29, "feet"),
  6410. name: "Foot",
  6411. image: {
  6412. source: "./media/characters/coffee/foot.svg"
  6413. }
  6414. },
  6415. },
  6416. [
  6417. {
  6418. name: "Micro",
  6419. height: math.unit(2, "inches"),
  6420. },
  6421. {
  6422. name: "Normal",
  6423. height: math.unit(5 + 9 / 12, "feet"),
  6424. default: true
  6425. },
  6426. {
  6427. name: "Macro",
  6428. height: math.unit(800, "feet")
  6429. },
  6430. {
  6431. name: "Megamacro",
  6432. height: math.unit(25, "miles")
  6433. }
  6434. ]
  6435. ))
  6436. characterMakers.push(() => makeCharacter(
  6437. { name: "Chari-Gal" },
  6438. {
  6439. front: {
  6440. height: math.unit(6, "feet"),
  6441. weight: math.unit(200, "lbs"),
  6442. name: "Front",
  6443. image: {
  6444. source: "./media/characters/chari-gal/front.svg",
  6445. extra: 1568 / 1385,
  6446. bottom: 0.047
  6447. }
  6448. },
  6449. gigantamax: {
  6450. height: math.unit(6 * 16, "feet"),
  6451. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  6452. name: "Gigantamax",
  6453. image: {
  6454. source: "./media/characters/chari-gal/gigantamax.svg",
  6455. extra: 1124 / 888,
  6456. bottom: 0.03
  6457. }
  6458. },
  6459. },
  6460. [
  6461. {
  6462. name: "Normal",
  6463. height: math.unit(5 + 7 / 12, "feet")
  6464. },
  6465. {
  6466. name: "Macro",
  6467. height: math.unit(200, "feet"),
  6468. default: true
  6469. }
  6470. ]
  6471. ))
  6472. characterMakers.push(() => makeCharacter(
  6473. { name: "Nova" },
  6474. {
  6475. front: {
  6476. height: math.unit(6, "feet"),
  6477. weight: math.unit(150, "lbs"),
  6478. name: "Front",
  6479. image: {
  6480. source: "./media/characters/nova/front.svg",
  6481. extra: 5000 / 4722,
  6482. bottom: 0.02
  6483. }
  6484. }
  6485. },
  6486. [
  6487. {
  6488. name: "Micro-",
  6489. height: math.unit(0.8, "inches")
  6490. },
  6491. {
  6492. name: "Micro",
  6493. height: math.unit(2, "inches"),
  6494. default: true
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Argent" },
  6500. {
  6501. front: {
  6502. height: math.unit(3 + 1 / 12, "feet"),
  6503. weight: math.unit(21.7, "lbs"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/argent/front.svg",
  6507. extra: 1565 / 1416,
  6508. bottom: 0.01
  6509. }
  6510. }
  6511. },
  6512. [
  6513. {
  6514. name: "Micro",
  6515. height: math.unit(2, "inches")
  6516. },
  6517. {
  6518. name: "Normal",
  6519. height: math.unit(3 + 1 / 12, "feet"),
  6520. default: true
  6521. },
  6522. {
  6523. name: "Macro",
  6524. height: math.unit(120, "feet")
  6525. },
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Mira al-Cul" },
  6530. {
  6531. lamp: {
  6532. height: math.unit(7 * 1559 / 989, "feet"),
  6533. name: "Magic Lamp",
  6534. image: {
  6535. source: "./media/characters/mira-al-cul/lamp.svg",
  6536. extra: 1617 / 1559
  6537. }
  6538. },
  6539. front: {
  6540. height: math.unit(7, "feet"),
  6541. name: "Front",
  6542. image: {
  6543. source: "./media/characters/mira-al-cul/front.svg",
  6544. extra: 1044 / 990
  6545. }
  6546. },
  6547. },
  6548. [
  6549. {
  6550. name: "Heavily Restricted",
  6551. height: math.unit(7 * 1559 / 989, "feet")
  6552. },
  6553. {
  6554. name: "Freshly Freed",
  6555. height: math.unit(50 * 1559 / 989, "feet")
  6556. },
  6557. {
  6558. name: "World Encompassing",
  6559. height: math.unit(10000 * 1559 / 989, "miles")
  6560. },
  6561. {
  6562. name: "Galactic",
  6563. height: math.unit(1.433 * 1559 / 989, "zettameters")
  6564. },
  6565. {
  6566. name: "Palmed Universe",
  6567. height: math.unit(6000 * 1559 / 989, "yottameters"),
  6568. default: true
  6569. },
  6570. {
  6571. name: "Multiversal Matriarch",
  6572. height: math.unit(8.87e10, "yottameters")
  6573. },
  6574. {
  6575. name: "Void Mother",
  6576. height: math.unit(3.14e110, "yottaparsecs")
  6577. },
  6578. ]
  6579. ))
  6580. characterMakers.push(() => makeCharacter(
  6581. { name: "Kuro-shi Uchū" },
  6582. {
  6583. front: {
  6584. height: math.unit(17 + 1 / 12, "feet"),
  6585. weight: math.unit(476.2 * 5, "lbs"),
  6586. name: "Front",
  6587. image: {
  6588. source: "./media/characters/kuro-shi-uchū/front.svg",
  6589. extra: 2329 / 1835,
  6590. bottom: 0.02
  6591. }
  6592. },
  6593. },
  6594. [
  6595. {
  6596. name: "Micro",
  6597. height: math.unit(2, "inches")
  6598. },
  6599. {
  6600. name: "Normal",
  6601. height: math.unit(12, "meters")
  6602. },
  6603. {
  6604. name: "Planetary",
  6605. height: math.unit(0.00929, "AU"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Universal",
  6610. height: math.unit(20, "gigaparsecs")
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Katherine" },
  6616. {
  6617. front: {
  6618. height: math.unit(5 + 2 / 12, "feet"),
  6619. weight: math.unit(120, "lbs"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/katherine/front.svg",
  6623. extra: 2075 / 1969
  6624. }
  6625. },
  6626. dress: {
  6627. height: math.unit(5 + 2 / 12, "feet"),
  6628. weight: math.unit(120, "lbs"),
  6629. name: "Dress",
  6630. image: {
  6631. source: "./media/characters/katherine/dress.svg",
  6632. extra: 2258 / 2064
  6633. }
  6634. },
  6635. },
  6636. [
  6637. {
  6638. name: "Micro",
  6639. height: math.unit(1, "inches"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Normal",
  6644. height: math.unit(5 + 2 / 12, "feet")
  6645. },
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(100, "meters")
  6649. },
  6650. {
  6651. name: "Megamacro",
  6652. height: math.unit(80, "miles")
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Yevis" },
  6658. {
  6659. front: {
  6660. height: math.unit(7 + 8 / 12, "feet"),
  6661. weight: math.unit(250, "lbs"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/yevis/front.svg",
  6665. extra: 1938 / 1755
  6666. }
  6667. }
  6668. },
  6669. [
  6670. {
  6671. name: "Mortal",
  6672. height: math.unit(7 + 8 / 12, "feet")
  6673. },
  6674. {
  6675. name: "Battle",
  6676. height: math.unit(25 + 11 / 12, "feet")
  6677. },
  6678. {
  6679. name: "Wrath",
  6680. height: math.unit(1654 + 11 / 12, "feet")
  6681. },
  6682. {
  6683. name: "Planet Destroyer",
  6684. height: math.unit(12000, "miles")
  6685. },
  6686. {
  6687. name: "Galaxy Conqueror",
  6688. height: math.unit(1.45, "zettameters"),
  6689. default: true
  6690. },
  6691. {
  6692. name: "Universal War",
  6693. height: math.unit(184, "gigaparsecs")
  6694. },
  6695. {
  6696. name: "Eternity War",
  6697. height: math.unit(1.98e55, "yottaparsecs")
  6698. },
  6699. ]
  6700. ))
  6701. characterMakers.push(() => makeCharacter(
  6702. { name: "Xavier" },
  6703. {
  6704. front: {
  6705. height: math.unit(5 + 8 / 12, "feet"),
  6706. weight: math.unit(63, "kg"),
  6707. name: "Front",
  6708. image: {
  6709. source: "./media/characters/xavier/front.svg",
  6710. extra: 944 / 883
  6711. }
  6712. },
  6713. frontStretch: {
  6714. height: math.unit(5 + 8 / 12, "feet"),
  6715. weight: math.unit(63, "kg"),
  6716. name: "Stretching",
  6717. image: {
  6718. source: "./media/characters/xavier/front-stretch.svg",
  6719. extra: 962 / 820
  6720. }
  6721. },
  6722. },
  6723. [
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(5 + 8 / 12, "feet")
  6727. },
  6728. {
  6729. name: "Macro",
  6730. height: math.unit(100, "meters"),
  6731. default: true
  6732. },
  6733. {
  6734. name: "McLargeHuge",
  6735. height: math.unit(10, "miles")
  6736. },
  6737. ]
  6738. ))
  6739. characterMakers.push(() => makeCharacter(
  6740. { name: "Joshii" },
  6741. {
  6742. front: {
  6743. height: math.unit(5 + 5 / 12, "feet"),
  6744. weight: math.unit(150, "lb"),
  6745. name: "Front",
  6746. image: {
  6747. source: "./media/characters/joshii/front.svg"
  6748. }
  6749. },
  6750. foot: {
  6751. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  6752. name: "Foot",
  6753. image: {
  6754. source: "./media/characters/joshii/foot.svg"
  6755. }
  6756. },
  6757. },
  6758. [
  6759. {
  6760. name: "Micro",
  6761. height: math.unit(2, "inches")
  6762. },
  6763. {
  6764. name: "Normal",
  6765. height: math.unit(5 + 5 / 12, "feet"),
  6766. default: true
  6767. },
  6768. {
  6769. name: "Macro",
  6770. height: math.unit(785, "feet")
  6771. },
  6772. {
  6773. name: "Megamacro",
  6774. height: math.unit(24.5, "miles")
  6775. },
  6776. ]
  6777. ))
  6778. characterMakers.push(() => makeCharacter(
  6779. { name: "Goddess Elizabeth" },
  6780. {
  6781. front: {
  6782. height: math.unit(6, "feet"),
  6783. weight: math.unit(150, "lb"),
  6784. name: "Front",
  6785. image: {
  6786. source: "./media/characters/goddess-elizabeth/front.svg",
  6787. extra: 1800 / 1525,
  6788. bottom: 0.005
  6789. }
  6790. },
  6791. foot: {
  6792. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  6793. name: "Foot",
  6794. image: {
  6795. source: "./media/characters/goddess-elizabeth/foot.svg"
  6796. }
  6797. },
  6798. mouth: {
  6799. height: math.unit(6, "feet"),
  6800. name: "Mouth",
  6801. image: {
  6802. source: "./media/characters/goddess-elizabeth/mouth.svg"
  6803. }
  6804. },
  6805. },
  6806. [
  6807. {
  6808. name: "Micro",
  6809. height: math.unit(12, "feet")
  6810. },
  6811. {
  6812. name: "Normal",
  6813. height: math.unit(80, "miles"),
  6814. default: true
  6815. },
  6816. {
  6817. name: "Macro",
  6818. height: math.unit(15000, "parsecs")
  6819. },
  6820. ]
  6821. ))
  6822. characterMakers.push(() => makeCharacter(
  6823. { name: "Kara" },
  6824. {
  6825. front: {
  6826. height: math.unit(5 + 9 / 12, "feet"),
  6827. weight: math.unit(144, "lb"),
  6828. name: "Front",
  6829. image: {
  6830. source: "./media/characters/kara/front.svg"
  6831. }
  6832. },
  6833. feet: {
  6834. height: math.unit(6 / 6.765, "feet"),
  6835. name: "Kara's Feet",
  6836. rename: true,
  6837. image: {
  6838. source: "./media/characters/kara/feet.svg"
  6839. }
  6840. },
  6841. },
  6842. [
  6843. {
  6844. name: "Normal",
  6845. height: math.unit(5 + 9 / 12, "feet")
  6846. },
  6847. {
  6848. name: "Macro",
  6849. height: math.unit(174, "feet"),
  6850. default: true
  6851. },
  6852. ]
  6853. ))
  6854. characterMakers.push(() => makeCharacter(
  6855. { name: "Tyrone" },
  6856. {
  6857. front: {
  6858. height: math.unit(18, "feet"),
  6859. weight: math.unit(4050, "lb"),
  6860. name: "Front",
  6861. image: {
  6862. source: "./media/characters/tyrone/front.svg",
  6863. extra: 2520 / 2402,
  6864. bottom: 0.025
  6865. }
  6866. },
  6867. },
  6868. [
  6869. {
  6870. name: "Normal",
  6871. height: math.unit(18, "feet"),
  6872. default: true
  6873. },
  6874. {
  6875. name: "Macro",
  6876. height: math.unit(300, "feet")
  6877. },
  6878. ]
  6879. ))
  6880. characterMakers.push(() => makeCharacter(
  6881. { name: "Danny" },
  6882. {
  6883. front: {
  6884. height: math.unit(7 + 8 / 12, "feet"),
  6885. weight: math.unit(120, "lb"),
  6886. name: "Front",
  6887. image: {
  6888. source: "./media/characters/danny/front.svg",
  6889. extra: 1490 / 1350
  6890. }
  6891. },
  6892. back: {
  6893. height: math.unit(7 + 8 / 12, "feet"),
  6894. weight: math.unit(120, "lb"),
  6895. name: "Back",
  6896. image: {
  6897. source: "./media/characters/danny/back.svg",
  6898. extra: 1490 / 1350
  6899. }
  6900. },
  6901. },
  6902. [
  6903. {
  6904. name: "Normal",
  6905. height: math.unit(7 + 8 / 12, "feet"),
  6906. default: true
  6907. },
  6908. ]
  6909. ))
  6910. characterMakers.push(() => makeCharacter(
  6911. { name: "Mallow" },
  6912. {
  6913. front: {
  6914. height: math.unit(3.5, "inches"),
  6915. weight: math.unit(19, "grams"),
  6916. name: "Front",
  6917. image: {
  6918. source: "./media/characters/mallow/front.svg",
  6919. extra: 471 / 431
  6920. }
  6921. },
  6922. back: {
  6923. height: math.unit(3.5, "inches"),
  6924. weight: math.unit(19, "grams"),
  6925. name: "Back",
  6926. image: {
  6927. source: "./media/characters/mallow/back.svg",
  6928. extra: 471 / 431
  6929. }
  6930. },
  6931. },
  6932. [
  6933. {
  6934. name: "Normal",
  6935. height: math.unit(3.5, "inches"),
  6936. default: true
  6937. },
  6938. ]
  6939. ))
  6940. characterMakers.push(() => makeCharacter(
  6941. { name: "Starry Aqua" },
  6942. {
  6943. front: {
  6944. height: math.unit(9, "feet"),
  6945. weight: math.unit(230, "kg"),
  6946. name: "Front",
  6947. image: {
  6948. source: "./media/characters/starry-aqua/front.svg"
  6949. }
  6950. },
  6951. back: {
  6952. height: math.unit(9, "feet"),
  6953. weight: math.unit(230, "kg"),
  6954. name: "Back",
  6955. image: {
  6956. source: "./media/characters/starry-aqua/back.svg"
  6957. }
  6958. },
  6959. hand: {
  6960. height: math.unit(9 * 0.1168, "feet"),
  6961. name: "Hand",
  6962. image: {
  6963. source: "./media/characters/starry-aqua/hand.svg"
  6964. }
  6965. },
  6966. foot: {
  6967. height: math.unit(9 * 0.18, "feet"),
  6968. name: "Foot",
  6969. image: {
  6970. source: "./media/characters/starry-aqua/foot.svg"
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Micro",
  6977. height: math.unit(3, "inches")
  6978. },
  6979. {
  6980. name: "Normal",
  6981. height: math.unit(9, "feet")
  6982. },
  6983. {
  6984. name: "Macro",
  6985. height: math.unit(300, "feet"),
  6986. default: true
  6987. },
  6988. {
  6989. name: "Megamacro",
  6990. height: math.unit(3200, "feet")
  6991. }
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Luka" },
  6996. {
  6997. front: {
  6998. height: math.unit(6, "feet"),
  6999. weight: math.unit(230, "lb"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/luka/front.svg",
  7003. extra: 1,
  7004. bottom: 0.025
  7005. }
  7006. },
  7007. },
  7008. [
  7009. {
  7010. name: "Normal",
  7011. height: math.unit(12 + 8 / 12, "feet"),
  7012. default: true
  7013. },
  7014. {
  7015. name: "Minimacro",
  7016. height: math.unit(20, "feet")
  7017. },
  7018. {
  7019. name: "Macro",
  7020. height: math.unit(250, "feet")
  7021. },
  7022. {
  7023. name: "Megamacro",
  7024. height: math.unit(5, "miles")
  7025. },
  7026. {
  7027. name: "Gigamacro",
  7028. height: math.unit(8000, "miles")
  7029. },
  7030. ]
  7031. ))
  7032. characterMakers.push(() => makeCharacter(
  7033. { name: "Natalie Nightring" },
  7034. {
  7035. front: {
  7036. height: math.unit(6, "feet"),
  7037. weight: math.unit(150, "lb"),
  7038. name: "Front",
  7039. image: {
  7040. source: "./media/characters/natalie-nightring/front.svg",
  7041. extra: 1,
  7042. bottom: 0.06
  7043. }
  7044. },
  7045. },
  7046. [
  7047. {
  7048. name: "Uh Oh",
  7049. height: math.unit(0.1, "mm")
  7050. },
  7051. {
  7052. name: "Small",
  7053. height: math.unit(3, "inches")
  7054. },
  7055. {
  7056. name: "Human Scale",
  7057. height: math.unit(6, "feet")
  7058. },
  7059. {
  7060. name: "Librarian",
  7061. height: math.unit(50, "feet"),
  7062. default: true
  7063. },
  7064. {
  7065. name: "Immense",
  7066. height: math.unit(200, "miles")
  7067. },
  7068. ]
  7069. ))
  7070. characterMakers.push(() => makeCharacter(
  7071. { name: "Danni Rosie" },
  7072. {
  7073. front: {
  7074. height: math.unit(6, "feet"),
  7075. weight: math.unit(180, "lbs"),
  7076. name: "Front",
  7077. image: {
  7078. source: "./media/characters/danni-rosie/front.svg",
  7079. extra: 1260 / 1128,
  7080. bottom: 0.022
  7081. }
  7082. },
  7083. },
  7084. [
  7085. {
  7086. name: "Micro",
  7087. height: math.unit(2, "inches"),
  7088. default: true
  7089. },
  7090. ]
  7091. ))
  7092. characterMakers.push(() => makeCharacter(
  7093. { name: "Samantha Kruse" },
  7094. {
  7095. front: {
  7096. height: math.unit(5 + 9 / 12, "feet"),
  7097. weight: math.unit(220, "lb"),
  7098. name: "Front",
  7099. image: {
  7100. source: "./media/characters/samantha-kruse/front.svg",
  7101. extra: (985 / 935),
  7102. bottom: 0.03
  7103. }
  7104. },
  7105. frontUndressed: {
  7106. height: math.unit(5 + 9 / 12, "feet"),
  7107. weight: math.unit(220, "lb"),
  7108. name: "Front (Undressed)",
  7109. image: {
  7110. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7111. extra: (973 / 923),
  7112. bottom: 0.025
  7113. }
  7114. },
  7115. fat: {
  7116. height: math.unit(5 + 9 / 12, "feet"),
  7117. weight: math.unit(900, "lb"),
  7118. name: "Front (Fat)",
  7119. image: {
  7120. source: "./media/characters/samantha-kruse/fat.svg",
  7121. extra: 2688 / 2561
  7122. }
  7123. },
  7124. },
  7125. [
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(5 + 9 / 12, "feet"),
  7129. default: true
  7130. }
  7131. ]
  7132. ))
  7133. characterMakers.push(() => makeCharacter(
  7134. { name: "Amelia Rosie" },
  7135. {
  7136. back: {
  7137. height: math.unit(5 + 4 / 12, "feet"),
  7138. weight: math.unit(4963, "lb"),
  7139. name: "Back",
  7140. image: {
  7141. source: "./media/characters/amelia-rosie/back.svg",
  7142. extra: 1113 / 963,
  7143. bottom: 0.01
  7144. }
  7145. },
  7146. },
  7147. [
  7148. {
  7149. name: "Level 0",
  7150. height: math.unit(5 + 4 / 12, "feet")
  7151. },
  7152. {
  7153. name: "Level 1",
  7154. height: math.unit(164597, "feet"),
  7155. default: true
  7156. },
  7157. {
  7158. name: "Level 2",
  7159. height: math.unit(956243, "miles")
  7160. },
  7161. {
  7162. name: "Level 3",
  7163. height: math.unit(29421709423, "miles")
  7164. },
  7165. {
  7166. name: "Level 4",
  7167. height: math.unit(154, "lightyears")
  7168. },
  7169. {
  7170. name: "Level 5",
  7171. height: math.unit(4738272, "lightyears")
  7172. },
  7173. {
  7174. name: "Level 6",
  7175. height: math.unit(145787152896, "lightyears")
  7176. },
  7177. ]
  7178. ))
  7179. characterMakers.push(() => makeCharacter(
  7180. { name: "Rook Kitara" },
  7181. {
  7182. front: {
  7183. height: math.unit(5 + 11 / 12, "feet"),
  7184. weight: math.unit(65, "kg"),
  7185. name: "Front",
  7186. image: {
  7187. source: "./media/characters/rook-kitara/front.svg",
  7188. extra: 1347 / 1274,
  7189. bottom: 0.005
  7190. }
  7191. },
  7192. },
  7193. [
  7194. {
  7195. name: "Totally Unfair",
  7196. height: math.unit(1.8, "mm")
  7197. },
  7198. {
  7199. name: "Lap Rookie",
  7200. height: math.unit(1.4, "feet")
  7201. },
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(5 + 11 / 12, "feet"),
  7205. default: true
  7206. },
  7207. {
  7208. name: "How Did This Happen",
  7209. height: math.unit(80, "miles")
  7210. }
  7211. ]
  7212. ))
  7213. characterMakers.push(() => makeCharacter(
  7214. { name: "Pisces" },
  7215. {
  7216. front: {
  7217. height: math.unit(7, "feet"),
  7218. weight: math.unit(300, "lb"),
  7219. name: "Front",
  7220. image: {
  7221. source: "./media/characters/pisces/front.svg",
  7222. extra: 2255 / 2115,
  7223. bottom: 0.03
  7224. }
  7225. },
  7226. back: {
  7227. height: math.unit(7, "feet"),
  7228. weight: math.unit(300, "lb"),
  7229. name: "Back",
  7230. image: {
  7231. source: "./media/characters/pisces/back.svg",
  7232. extra: 2146 / 2055,
  7233. bottom: 0.04
  7234. }
  7235. },
  7236. },
  7237. [
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(7, "feet"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Swimming Pool",
  7245. height: math.unit(12.2, "meters")
  7246. },
  7247. {
  7248. name: "Olympic Swimming Pool",
  7249. height: math.unit(56.3, "meters")
  7250. },
  7251. {
  7252. name: "Lake Superior",
  7253. height: math.unit(93900, "meters")
  7254. },
  7255. {
  7256. name: "Mediterranean Sea",
  7257. height: math.unit(644457, "meters")
  7258. },
  7259. {
  7260. name: "World's Oceans",
  7261. height: math.unit(4567491, "meters")
  7262. },
  7263. ]
  7264. ))
  7265. characterMakers.push(() => makeCharacter(
  7266. { name: "Zelas" },
  7267. {
  7268. front: {
  7269. height: math.unit(2.3, "meters"),
  7270. weight: math.unit(120, "kg"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/zelas/front.svg"
  7274. }
  7275. },
  7276. side: {
  7277. height: math.unit(2.3, "meters"),
  7278. weight: math.unit(120, "kg"),
  7279. name: "Side",
  7280. image: {
  7281. source: "./media/characters/zelas/side.svg"
  7282. }
  7283. },
  7284. back: {
  7285. height: math.unit(2.3, "meters"),
  7286. weight: math.unit(120, "kg"),
  7287. name: "Back",
  7288. image: {
  7289. source: "./media/characters/zelas/back.svg"
  7290. }
  7291. },
  7292. foot: {
  7293. height: math.unit(1.116, "feet"),
  7294. name: "Foot",
  7295. image: {
  7296. source: "./media/characters/zelas/foot.svg"
  7297. }
  7298. },
  7299. },
  7300. [
  7301. {
  7302. name: "Normal",
  7303. height: math.unit(2.3, "meters")
  7304. },
  7305. {
  7306. name: "Macro",
  7307. height: math.unit(30, "meters"),
  7308. default: true
  7309. },
  7310. ]
  7311. ))
  7312. characterMakers.push(() => makeCharacter(
  7313. { name: "Talbot" },
  7314. {
  7315. front: {
  7316. height: math.unit(1, "inch"),
  7317. weight: math.unit(0.21, "grams"),
  7318. name: "Front",
  7319. image: {
  7320. source: "./media/characters/talbot/front.svg",
  7321. extra: 594 / 544
  7322. }
  7323. },
  7324. },
  7325. [
  7326. {
  7327. name: "Micro",
  7328. height: math.unit(1, "inch"),
  7329. default: true
  7330. },
  7331. ]
  7332. ))
  7333. characterMakers.push(() => makeCharacter(
  7334. { name: "Fliss" },
  7335. {
  7336. front: {
  7337. height: math.unit(3 + 3 / 12, "feet"),
  7338. weight: math.unit(51.8, "lb"),
  7339. name: "Front",
  7340. image: {
  7341. source: "./media/characters/fliss/front.svg",
  7342. extra: 840 / 640
  7343. }
  7344. },
  7345. },
  7346. [
  7347. {
  7348. name: "Teeny Tiny",
  7349. height: math.unit(1, "mm")
  7350. },
  7351. {
  7352. name: "Small",
  7353. height: math.unit(1, "inch"),
  7354. default: true
  7355. },
  7356. {
  7357. name: "Standard Sylveon",
  7358. height: math.unit(3 + 3 / 12, "feet")
  7359. },
  7360. {
  7361. name: "Large Nuisance",
  7362. height: math.unit(33, "feet")
  7363. },
  7364. {
  7365. name: "City Filler",
  7366. height: math.unit(3000, "feet")
  7367. },
  7368. {
  7369. name: "New Horizon",
  7370. height: math.unit(6000, "miles")
  7371. },
  7372. ]
  7373. ))
  7374. characterMakers.push(() => makeCharacter(
  7375. { name: "Fleta" },
  7376. {
  7377. front: {
  7378. height: math.unit(5, "cm"),
  7379. weight: math.unit(1.94, "g"),
  7380. name: "Front",
  7381. image: {
  7382. source: "./media/characters/fleta/front.svg",
  7383. extra: 835 / 803
  7384. }
  7385. },
  7386. back: {
  7387. height: math.unit(5, "cm"),
  7388. weight: math.unit(1.94, "g"),
  7389. name: "Back",
  7390. image: {
  7391. source: "./media/characters/fleta/back.svg",
  7392. extra: 835 / 803
  7393. }
  7394. },
  7395. },
  7396. [
  7397. {
  7398. name: "Micro",
  7399. height: math.unit(5, "cm"),
  7400. default: true
  7401. },
  7402. ]
  7403. ))
  7404. characterMakers.push(() => makeCharacter(
  7405. { name: "Dominic" },
  7406. {
  7407. front: {
  7408. height: math.unit(6, "feet"),
  7409. weight: math.unit(225, "lb"),
  7410. name: "Front",
  7411. image: {
  7412. source: "./media/characters/dominic/front.svg",
  7413. extra: 1770 / 1620,
  7414. bottom: 0.025
  7415. }
  7416. },
  7417. back: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(225, "lb"),
  7420. name: "Back",
  7421. image: {
  7422. source: "./media/characters/dominic/back.svg",
  7423. extra: 1745 / 1620,
  7424. bottom: 0.065
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Nano",
  7431. height: math.unit(0.1, "mm")
  7432. },
  7433. {
  7434. name: "Micro-",
  7435. height: math.unit(1, "mm")
  7436. },
  7437. {
  7438. name: "Micro",
  7439. height: math.unit(4, "inches")
  7440. },
  7441. {
  7442. name: "Normal",
  7443. height: math.unit(6 + 4 / 12, "feet"),
  7444. default: true
  7445. },
  7446. {
  7447. name: "Macro",
  7448. height: math.unit(115, "feet")
  7449. },
  7450. {
  7451. name: "Macro+",
  7452. height: math.unit(955, "feet")
  7453. },
  7454. {
  7455. name: "Megamacro",
  7456. height: math.unit(8990, "feet")
  7457. },
  7458. {
  7459. name: "Gigmacro",
  7460. height: math.unit(9310, "miles")
  7461. },
  7462. {
  7463. name: "Teramacro",
  7464. height: math.unit(1567005010, "miles")
  7465. },
  7466. {
  7467. name: "Examacro",
  7468. height: math.unit(1425, "parsecs")
  7469. },
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Major Colonel" },
  7474. {
  7475. front: {
  7476. height: math.unit(400, "feet"),
  7477. weight: math.unit(44444444, "lb"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/major-colonel/front.svg"
  7481. }
  7482. },
  7483. back: {
  7484. height: math.unit(400, "feet"),
  7485. weight: math.unit(44444444, "lb"),
  7486. name: "Back",
  7487. image: {
  7488. source: "./media/characters/major-colonel/back.svg"
  7489. }
  7490. },
  7491. },
  7492. [
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(400, "feet"),
  7496. default: true
  7497. },
  7498. ]
  7499. ))
  7500. characterMakers.push(() => makeCharacter(
  7501. { name: "Axel Lycan" },
  7502. {
  7503. front: {
  7504. height: math.unit(6, "feet"),
  7505. weight: math.unit(120, "lb"),
  7506. name: "Front",
  7507. image: {
  7508. source: "./media/characters/axel-lycan/front.svg",
  7509. extra: 1,
  7510. bottom: 0.08
  7511. }
  7512. },
  7513. },
  7514. [
  7515. {
  7516. name: "Macro",
  7517. height: math.unit(1, "km"),
  7518. default: true
  7519. },
  7520. ]
  7521. ))
  7522. characterMakers.push(() => makeCharacter(
  7523. { name: "Vanrel (Hyena)" },
  7524. {
  7525. front: {
  7526. height: math.unit(5 + 9 / 12, "feet"),
  7527. weight: math.unit(175, "lb"),
  7528. name: "Front",
  7529. image: {
  7530. source: "./media/characters/vanrel-hyena/front.svg",
  7531. extra: 1086 / 1010,
  7532. bottom: 0.04
  7533. }
  7534. },
  7535. },
  7536. [
  7537. {
  7538. name: "Normal",
  7539. height: math.unit(5 + 9 / 12, "feet"),
  7540. default: true
  7541. },
  7542. ]
  7543. ))
  7544. characterMakers.push(() => makeCharacter(
  7545. { name: "Abbott Absol" },
  7546. {
  7547. front: {
  7548. height: math.unit(6, "feet"),
  7549. weight: math.unit(103, "lb"),
  7550. name: "Front",
  7551. image: {
  7552. source: "./media/characters/abbott-absol/front.svg",
  7553. extra: 2010 / 1842
  7554. }
  7555. },
  7556. },
  7557. [
  7558. {
  7559. name: "Megamicro",
  7560. height: math.unit(0.1, "mm")
  7561. },
  7562. {
  7563. name: "Micro",
  7564. height: math.unit(1, "inch")
  7565. },
  7566. {
  7567. name: "Normal",
  7568. height: math.unit(6, "feet"),
  7569. default: true
  7570. },
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Hector" },
  7575. {
  7576. front: {
  7577. height: math.unit(6, "feet"),
  7578. weight: math.unit(264, "lb"),
  7579. name: "Front",
  7580. image: {
  7581. source: "./media/characters/hector/front.svg",
  7582. extra: 2280 / 2130,
  7583. bottom: 0.07
  7584. }
  7585. },
  7586. },
  7587. [
  7588. {
  7589. name: "Normal",
  7590. height: math.unit(12.25, "foot"),
  7591. default: true
  7592. },
  7593. {
  7594. name: "Macro",
  7595. height: math.unit(160, "feet")
  7596. },
  7597. ]
  7598. ))
  7599. characterMakers.push(() => makeCharacter(
  7600. { name: "Sal" },
  7601. {
  7602. front: {
  7603. height: math.unit(6, "feet"),
  7604. weight: math.unit(150, "lb"),
  7605. name: "Front",
  7606. image: {
  7607. source: "./media/characters/sal/front.svg",
  7608. extra: 1846 / 1699,
  7609. bottom: 0.04
  7610. }
  7611. },
  7612. },
  7613. [
  7614. {
  7615. name: "Megamacro",
  7616. height: math.unit(10, "miles"),
  7617. default: true
  7618. },
  7619. ]
  7620. ))
  7621. characterMakers.push(() => makeCharacter(
  7622. { name: "Ranger" },
  7623. {
  7624. front: {
  7625. height: math.unit(3, "meters"),
  7626. weight: math.unit(450, "kg"),
  7627. name: "front",
  7628. image: {
  7629. source: "./media/characters/ranger/front.svg",
  7630. extra: 2401 / 2243,
  7631. bottom: 0.05
  7632. }
  7633. },
  7634. },
  7635. [
  7636. {
  7637. name: "Normal",
  7638. height: math.unit(3, "meters"),
  7639. default: true
  7640. },
  7641. ]
  7642. ))
  7643. characterMakers.push(() => makeCharacter(
  7644. { name: "Theresa" },
  7645. {
  7646. front: {
  7647. height: math.unit(14, "feet"),
  7648. weight: math.unit(800, "kg"),
  7649. name: "Front",
  7650. image: {
  7651. source: "./media/characters/theresa/front.svg",
  7652. extra: 3575 / 3346,
  7653. bottom: 0.03
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(14, "feet"),
  7661. default: true
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Ine" },
  7667. {
  7668. front: {
  7669. height: math.unit(6, "feet"),
  7670. weight: math.unit(3, "kg"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/ine/front.svg",
  7674. extra: 678 / 539,
  7675. bottom: 0.023
  7676. }
  7677. },
  7678. },
  7679. [
  7680. {
  7681. name: "Normal",
  7682. height: math.unit(2.265, "feet"),
  7683. default: true
  7684. },
  7685. ]
  7686. ))
  7687. characterMakers.push(() => makeCharacter(
  7688. { name: "Vial" },
  7689. {
  7690. front: {
  7691. height: math.unit(5, "feet"),
  7692. weight: math.unit(30, "kg"),
  7693. name: "Front",
  7694. image: {
  7695. source: "./media/characters/vial/front.svg",
  7696. extra: 1365 / 1277,
  7697. bottom: 0.04
  7698. }
  7699. },
  7700. },
  7701. [
  7702. {
  7703. name: "Normal",
  7704. height: math.unit(5, "feet"),
  7705. default: true
  7706. },
  7707. ]
  7708. ))
  7709. characterMakers.push(() => makeCharacter(
  7710. { name: "Rovoska" },
  7711. {
  7712. side: {
  7713. height: math.unit(3.4, "meters"),
  7714. weight: math.unit(1000, "lb"),
  7715. name: "Side",
  7716. image: {
  7717. source: "./media/characters/rovoska/side.svg",
  7718. extra: 4403 / 1515
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Normal",
  7725. height: math.unit(3.4, "meters"),
  7726. default: true
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Gunner Rotthbauer" },
  7732. {
  7733. front: {
  7734. height: math.unit(8, "feet"),
  7735. weight: math.unit(315, "lb"),
  7736. name: "Front",
  7737. image: {
  7738. source: "./media/characters/gunner-rotthbauer/front.svg"
  7739. }
  7740. },
  7741. back: {
  7742. height: math.unit(8, "feet"),
  7743. weight: math.unit(315, "lb"),
  7744. name: "Back",
  7745. image: {
  7746. source: "./media/characters/gunner-rotthbauer/back.svg"
  7747. }
  7748. },
  7749. },
  7750. [
  7751. {
  7752. name: "Micro",
  7753. height: math.unit(3.5, "inches")
  7754. },
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(8, "feet"),
  7758. default: true
  7759. },
  7760. {
  7761. name: "Macro",
  7762. height: math.unit(250, "feet")
  7763. },
  7764. {
  7765. name: "Megamacro",
  7766. height: math.unit(1, "AU")
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Allatia" },
  7772. {
  7773. front: {
  7774. height: math.unit(5 + 5 / 12, "feet"),
  7775. weight: math.unit(140, "lb"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/allatia/front.svg",
  7779. extra: 1227 / 1180,
  7780. bottom: 0.027
  7781. }
  7782. },
  7783. },
  7784. [
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(5 + 5 / 12, "feet")
  7788. },
  7789. {
  7790. name: "Macro",
  7791. height: math.unit(250, "feet"),
  7792. default: true
  7793. },
  7794. {
  7795. name: "Megamacro",
  7796. height: math.unit(8, "miles")
  7797. }
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Tene" },
  7802. {
  7803. front: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(120, "lb"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/tene/front.svg",
  7809. extra: 1728 / 1578,
  7810. bottom: 0.022
  7811. }
  7812. },
  7813. stomping: {
  7814. height: math.unit(2.025, "meters"),
  7815. weight: math.unit(120, "lb"),
  7816. name: "Stomping",
  7817. image: {
  7818. source: "./media/characters/tene/stomping.svg",
  7819. extra: 938 / 873,
  7820. bottom: 0.01
  7821. }
  7822. },
  7823. sitting: {
  7824. height: math.unit(1, "meter"),
  7825. weight: math.unit(120, "lb"),
  7826. name: "Sitting",
  7827. image: {
  7828. source: "./media/characters/tene/sitting.svg",
  7829. extra: 437 / 415,
  7830. bottom: 0.1
  7831. }
  7832. },
  7833. feral: {
  7834. height: math.unit(3.9, "feet"),
  7835. weight: math.unit(250, "lb"),
  7836. name: "Feral",
  7837. image: {
  7838. source: "./media/characters/tene/feral.svg",
  7839. extra: 717 / 458,
  7840. bottom: 0.179
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Normal",
  7847. height: math.unit(6, "feet")
  7848. },
  7849. {
  7850. name: "Macro",
  7851. height: math.unit(300, "feet"),
  7852. default: true
  7853. },
  7854. {
  7855. name: "Megamacro",
  7856. height: math.unit(5, "miles")
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Evander" },
  7862. {
  7863. side: {
  7864. height: math.unit(6, "feet"),
  7865. name: "Side",
  7866. image: {
  7867. source: "./media/characters/evander/side.svg",
  7868. extra: 877 / 477
  7869. }
  7870. },
  7871. },
  7872. [
  7873. {
  7874. name: "Normal",
  7875. height: math.unit(0.83, "meters"),
  7876. default: true
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Ka'Tamra \"Spaz\" Ci'Karan" },
  7882. {
  7883. front: {
  7884. height: math.unit(12, "feet"),
  7885. weight: math.unit(1000, "lb"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  7889. extra: 1762 / 1611
  7890. }
  7891. },
  7892. back: {
  7893. height: math.unit(12, "feet"),
  7894. weight: math.unit(1000, "lb"),
  7895. name: "Back",
  7896. image: {
  7897. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  7898. extra: 1762 / 1611
  7899. }
  7900. },
  7901. },
  7902. [
  7903. {
  7904. name: "Normal",
  7905. height: math.unit(12, "feet"),
  7906. default: true
  7907. },
  7908. {
  7909. name: "Kaiju",
  7910. height: math.unit(150, "feet")
  7911. },
  7912. ]
  7913. ))
  7914. characterMakers.push(() => makeCharacter(
  7915. { name: "Zero Alurus" },
  7916. {
  7917. front: {
  7918. height: math.unit(6, "feet"),
  7919. weight: math.unit(150, "lb"),
  7920. name: "Front",
  7921. image: {
  7922. source: "./media/characters/zero-alurus/front.svg"
  7923. }
  7924. },
  7925. back: {
  7926. height: math.unit(6, "feet"),
  7927. weight: math.unit(150, "lb"),
  7928. name: "Back",
  7929. image: {
  7930. source: "./media/characters/zero-alurus/back.svg"
  7931. }
  7932. },
  7933. },
  7934. [
  7935. {
  7936. name: "Normal",
  7937. height: math.unit(5 + 10 / 12, "feet")
  7938. },
  7939. {
  7940. name: "Macro",
  7941. height: math.unit(60, "feet"),
  7942. default: true
  7943. },
  7944. {
  7945. name: "Macro+",
  7946. height: math.unit(450, "feet")
  7947. },
  7948. ]
  7949. ))
  7950. characterMakers.push(() => makeCharacter(
  7951. { name: "Mega Shi" },
  7952. {
  7953. front: {
  7954. height: math.unit(6, "feet"),
  7955. weight: math.unit(200, "lb"),
  7956. name: "Front",
  7957. image: {
  7958. source: "./media/characters/mega-shi/front.svg",
  7959. extra: 1279 / 1250,
  7960. bottom: 0.02
  7961. }
  7962. },
  7963. back: {
  7964. height: math.unit(6, "feet"),
  7965. weight: math.unit(200, "lb"),
  7966. name: "Back",
  7967. image: {
  7968. source: "./media/characters/mega-shi/back.svg",
  7969. extra: 1279 / 1250,
  7970. bottom: 0.02
  7971. }
  7972. },
  7973. },
  7974. [
  7975. {
  7976. name: "Micro",
  7977. height: math.unit(16 + 6 / 12, "feet")
  7978. },
  7979. {
  7980. name: "Third Dimension",
  7981. height: math.unit(40, "meters")
  7982. },
  7983. {
  7984. name: "Normal",
  7985. height: math.unit(660, "feet"),
  7986. default: true
  7987. },
  7988. {
  7989. name: "Megamacro",
  7990. height: math.unit(10, "miles")
  7991. },
  7992. {
  7993. name: "Planetary Launch",
  7994. height: math.unit(500, "miles")
  7995. },
  7996. {
  7997. name: "Interstellar",
  7998. height: math.unit(1e9, "miles")
  7999. },
  8000. {
  8001. name: "Leaving the Universe",
  8002. height: math.unit(1, "gigaparsec")
  8003. },
  8004. {
  8005. name: "Travelling Universes",
  8006. height: math.unit(30e15, "parsecs")
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Odyssey" },
  8012. {
  8013. front: {
  8014. height: math.unit(6, "feet"),
  8015. weight: math.unit(150, "lb"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/odyssey/front.svg",
  8019. extra: 1782 / 1582,
  8020. bottom: 0.01
  8021. }
  8022. },
  8023. side: {
  8024. height: math.unit(5.7, "feet"),
  8025. weight: math.unit(140, "lb"),
  8026. name: "Side",
  8027. image: {
  8028. source: "./media/characters/odyssey/side.svg",
  8029. extra: 6462 / 5700
  8030. }
  8031. },
  8032. },
  8033. [
  8034. {
  8035. name: "Normal",
  8036. height: math.unit(5 + 4 / 12, "feet")
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(1, "km")
  8041. },
  8042. {
  8043. name: "Megamacro",
  8044. height: math.unit(3000, "km")
  8045. },
  8046. {
  8047. name: "Gigamacro",
  8048. height: math.unit(1, "AU"),
  8049. default: true
  8050. },
  8051. {
  8052. name: "Omniversal",
  8053. height: math.unit(100e14, "lightyears")
  8054. },
  8055. ]
  8056. ))
  8057. characterMakers.push(() => makeCharacter(
  8058. { name: "Mekuto" },
  8059. {
  8060. front: {
  8061. height: math.unit(6, "feet"),
  8062. weight: math.unit(300, "lb"),
  8063. name: "Front",
  8064. image: {
  8065. source: "./media/characters/mekuto/front.svg",
  8066. extra: 921 / 832,
  8067. bottom: 0.03
  8068. }
  8069. },
  8070. hand: {
  8071. height: math.unit(6 / 10.24, "feet"),
  8072. name: "Hand",
  8073. image: {
  8074. source: "./media/characters/mekuto/hand.svg"
  8075. }
  8076. },
  8077. foot: {
  8078. height: math.unit(6 / 5.05, "feet"),
  8079. name: "Foot",
  8080. image: {
  8081. source: "./media/characters/mekuto/foot.svg"
  8082. }
  8083. },
  8084. },
  8085. [
  8086. {
  8087. name: "Minimicro",
  8088. height: math.unit(0.2, "inches")
  8089. },
  8090. {
  8091. name: "Micro",
  8092. height: math.unit(1.5, "inches")
  8093. },
  8094. {
  8095. name: "Normal",
  8096. height: math.unit(5 + 11 / 12, "feet"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Minimacro",
  8101. height: math.unit(17 + 9 / 12, "feet")
  8102. },
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(177.5, "feet")
  8106. },
  8107. {
  8108. name: "Megamacro",
  8109. height: math.unit(152, "miles")
  8110. },
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Dafydd Tomos" },
  8115. {
  8116. front: {
  8117. height: math.unit(6.5, "inches"),
  8118. weight: math.unit(13, "oz"),
  8119. name: "Front",
  8120. image: {
  8121. source: "./media/characters/dafydd-tomos/front.svg",
  8122. extra: 2990 / 2603,
  8123. bottom: 0.03
  8124. }
  8125. },
  8126. },
  8127. [
  8128. {
  8129. name: "Micro",
  8130. height: math.unit(6.5, "inches"),
  8131. default: true
  8132. },
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Splinter" },
  8137. {
  8138. front: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(150, "lb"),
  8141. name: "Front",
  8142. image: {
  8143. source: "./media/characters/splinter/front.svg",
  8144. extra: 2990 / 2882,
  8145. bottom: 0.04
  8146. }
  8147. },
  8148. back: {
  8149. height: math.unit(6, "feet"),
  8150. weight: math.unit(150, "lb"),
  8151. name: "Back",
  8152. image: {
  8153. source: "./media/characters/splinter/back.svg",
  8154. extra: 2990 / 2882,
  8155. bottom: 0.04
  8156. }
  8157. },
  8158. },
  8159. [
  8160. {
  8161. name: "Normal",
  8162. height: math.unit(6, "feet")
  8163. },
  8164. {
  8165. name: "Macro",
  8166. height: math.unit(230, "meters"),
  8167. default: true
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "SnowGabumon" },
  8173. {
  8174. front: {
  8175. height: math.unit(4 + 10 / 12, "feet"),
  8176. weight: math.unit(480, "lb"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/snow-gabumon/front.svg",
  8180. extra: 1140 / 963,
  8181. bottom: 0.058
  8182. }
  8183. },
  8184. back: {
  8185. height: math.unit(4 + 10 / 12, "feet"),
  8186. weight: math.unit(480, "lb"),
  8187. name: "Back",
  8188. image: {
  8189. source: "./media/characters/snow-gabumon/back.svg",
  8190. extra: 1115 / 962,
  8191. bottom: 0.041
  8192. }
  8193. },
  8194. frontUndresed: {
  8195. height: math.unit(4 + 10 / 12, "feet"),
  8196. weight: math.unit(480, "lb"),
  8197. name: "Front (Undressed)",
  8198. image: {
  8199. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8200. extra: 1061 / 960,
  8201. bottom: 0.045
  8202. }
  8203. },
  8204. },
  8205. [
  8206. {
  8207. name: "Micro",
  8208. height: math.unit(1, "inch")
  8209. },
  8210. {
  8211. name: "Normal",
  8212. height: math.unit(4 + 10 / 12, "feet"),
  8213. default: true
  8214. },
  8215. {
  8216. name: "Macro",
  8217. height: math.unit(200, "feet")
  8218. },
  8219. {
  8220. name: "Megamacro",
  8221. height: math.unit(120, "miles")
  8222. },
  8223. {
  8224. name: "Gigamacro",
  8225. height: math.unit(9800, "miles")
  8226. },
  8227. ]
  8228. ))
  8229. characterMakers.push(() => makeCharacter(
  8230. { name: "Moody" },
  8231. {
  8232. front: {
  8233. height: math.unit(1.7, "meters"),
  8234. weight: math.unit(140, "lb"),
  8235. name: "Front",
  8236. image: {
  8237. source: "./media/characters/moody/front.svg",
  8238. extra: 3226 / 3007,
  8239. bottom: 0.087
  8240. }
  8241. },
  8242. },
  8243. [
  8244. {
  8245. name: "Micro",
  8246. height: math.unit(1, "mm")
  8247. },
  8248. {
  8249. name: "Normal",
  8250. height: math.unit(1.7, "meters"),
  8251. default: true
  8252. },
  8253. {
  8254. name: "Macro",
  8255. height: math.unit(80, "meters")
  8256. },
  8257. {
  8258. name: "Macro+",
  8259. height: math.unit(500, "meters")
  8260. },
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Zyas" },
  8265. {
  8266. front: {
  8267. height: math.unit(6, "feet"),
  8268. weight: math.unit(150, "lb"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/zyas/front.svg",
  8272. extra: 1180 / 1120,
  8273. bottom: 0.045
  8274. }
  8275. },
  8276. },
  8277. [
  8278. {
  8279. name: "Normal",
  8280. height: math.unit(10, "feet"),
  8281. default: true
  8282. },
  8283. {
  8284. name: "Macro",
  8285. height: math.unit(500, "feet")
  8286. },
  8287. {
  8288. name: "Megamacro",
  8289. height: math.unit(5, "miles")
  8290. },
  8291. {
  8292. name: "Teramacro",
  8293. height: math.unit(150000, "miles")
  8294. },
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "Cuon" },
  8299. {
  8300. front: {
  8301. height: math.unit(6, "feet"),
  8302. weight: math.unit(150, "lb"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/cuon/front.svg",
  8306. extra: 1390 / 1320,
  8307. bottom: 0.008
  8308. }
  8309. },
  8310. },
  8311. [
  8312. {
  8313. name: "Micro",
  8314. height: math.unit(3, "inches")
  8315. },
  8316. {
  8317. name: "Normal",
  8318. height: math.unit(18 + 9 / 12, "feet"),
  8319. default: true
  8320. },
  8321. {
  8322. name: "Macro",
  8323. height: math.unit(360, "feet")
  8324. },
  8325. {
  8326. name: "Megamacro",
  8327. height: math.unit(360, "miles")
  8328. },
  8329. ]
  8330. ))
  8331. characterMakers.push(() => makeCharacter(
  8332. { name: "Nyanuxk" },
  8333. {
  8334. front: {
  8335. height: math.unit(2.4, "meters"),
  8336. weight: math.unit(70, "kg"),
  8337. name: "Front",
  8338. image: {
  8339. source: "./media/characters/nyanuxk/front.svg",
  8340. extra: 1172 / 1084,
  8341. bottom: 0.065
  8342. }
  8343. },
  8344. side: {
  8345. height: math.unit(2.4, "meters"),
  8346. weight: math.unit(70, "kg"),
  8347. name: "Side",
  8348. image: {
  8349. source: "./media/characters/nyanuxk/side.svg",
  8350. extra: 1190 / 1132,
  8351. bottom: 0.007
  8352. }
  8353. },
  8354. back: {
  8355. height: math.unit(2.4, "meters"),
  8356. weight: math.unit(70, "kg"),
  8357. name: "Back",
  8358. image: {
  8359. source: "./media/characters/nyanuxk/back.svg",
  8360. extra: 1200 / 1141,
  8361. bottom: 0.015
  8362. }
  8363. },
  8364. foot: {
  8365. height: math.unit(0.52, "meters"),
  8366. name: "Foot",
  8367. image: {
  8368. source: "./media/characters/nyanuxk/foot.svg"
  8369. }
  8370. },
  8371. },
  8372. [
  8373. {
  8374. name: "Micro",
  8375. height: math.unit(2, "cm")
  8376. },
  8377. {
  8378. name: "Normal",
  8379. height: math.unit(2.4, "meters"),
  8380. default: true
  8381. },
  8382. {
  8383. name: "Smaller Macro",
  8384. height: math.unit(120, "meters")
  8385. },
  8386. {
  8387. name: "Bigger Macro",
  8388. height: math.unit(1.2, "km")
  8389. },
  8390. {
  8391. name: "Megamacro",
  8392. height: math.unit(15, "kilometers")
  8393. },
  8394. {
  8395. name: "Gigamacro",
  8396. height: math.unit(2000, "km")
  8397. },
  8398. {
  8399. name: "Teramacro",
  8400. height: math.unit(500000, "km")
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Ailbhe" },
  8406. {
  8407. side: {
  8408. height: math.unit(6, "feet"),
  8409. name: "Side",
  8410. image: {
  8411. source: "./media/characters/ailbhe/side.svg",
  8412. extra: 757 / 464,
  8413. bottom: 0.041
  8414. }
  8415. },
  8416. },
  8417. [
  8418. {
  8419. name: "Normal",
  8420. height: math.unit(1.07, "meters"),
  8421. default: true
  8422. },
  8423. ]
  8424. ))
  8425. characterMakers.push(() => makeCharacter(
  8426. { name: "Zevulfius" },
  8427. {
  8428. front: {
  8429. height: math.unit(6, "feet"),
  8430. weight: math.unit(120, "kg"),
  8431. name: "Front",
  8432. image: {
  8433. source: "./media/characters/zevulfius/front.svg",
  8434. extra: 965 / 903
  8435. }
  8436. },
  8437. side: {
  8438. height: math.unit(6, "feet"),
  8439. weight: math.unit(120, "kg"),
  8440. name: "Side",
  8441. image: {
  8442. source: "./media/characters/zevulfius/side.svg",
  8443. extra: 939 / 900
  8444. }
  8445. },
  8446. back: {
  8447. height: math.unit(6, "feet"),
  8448. weight: math.unit(120, "kg"),
  8449. name: "Back",
  8450. image: {
  8451. source: "./media/characters/zevulfius/back.svg",
  8452. extra: 918 / 854,
  8453. bottom: 0.005
  8454. }
  8455. },
  8456. foot: {
  8457. height: math.unit(6 / 3.72, "feet"),
  8458. name: "Foot",
  8459. image: {
  8460. source: "./media/characters/zevulfius/foot.svg"
  8461. }
  8462. },
  8463. },
  8464. [
  8465. {
  8466. name: "Macro",
  8467. height: math.unit(750, "meters")
  8468. },
  8469. {
  8470. name: "Megamacro",
  8471. height: math.unit(20, "km"),
  8472. default: true
  8473. },
  8474. {
  8475. name: "Gigamacro",
  8476. height: math.unit(2000, "km")
  8477. },
  8478. {
  8479. name: "Teramacro",
  8480. height: math.unit(250000, "km")
  8481. },
  8482. ]
  8483. ))
  8484. characterMakers.push(() => makeCharacter(
  8485. { name: "Rikes" },
  8486. {
  8487. front: {
  8488. height: math.unit(100, "feet"),
  8489. weight: math.unit(350, "kg"),
  8490. name: "Front",
  8491. image: {
  8492. source: "./media/characters/rikes/front.svg",
  8493. extra: 1565 / 1483,
  8494. bottom: 0.017
  8495. }
  8496. },
  8497. },
  8498. [
  8499. {
  8500. name: "Macro",
  8501. height: math.unit(100, "feet"),
  8502. default: true
  8503. },
  8504. ]
  8505. ))
  8506. characterMakers.push(() => makeCharacter(
  8507. { name: "Adam Silver-Mane" },
  8508. {
  8509. anthro: {
  8510. height: math.unit(8, "feet"),
  8511. weight: math.unit(120, "kg"),
  8512. name: "Anthro",
  8513. image: {
  8514. source: "./media/characters/adam-silver-mane/anthro.svg",
  8515. extra: 5743 / 5339,
  8516. bottom: 0.07
  8517. }
  8518. },
  8519. taur: {
  8520. height: math.unit(16, "feet"),
  8521. weight: math.unit(1500, "kg"),
  8522. name: "Taur",
  8523. image: {
  8524. source: "./media/characters/adam-silver-mane/taur.svg",
  8525. extra: 1713 / 1571,
  8526. bottom: 0.01
  8527. }
  8528. },
  8529. },
  8530. [
  8531. {
  8532. name: "Normal",
  8533. height: math.unit(8, "feet")
  8534. },
  8535. {
  8536. name: "Minimacro",
  8537. height: math.unit(80, "feet")
  8538. },
  8539. {
  8540. name: "Macro",
  8541. height: math.unit(800, "feet"),
  8542. default: true
  8543. },
  8544. {
  8545. name: "Megamacro",
  8546. height: math.unit(8000, "feet")
  8547. },
  8548. {
  8549. name: "Gigamacro",
  8550. height: math.unit(800, "miles")
  8551. },
  8552. {
  8553. name: "Teramacro",
  8554. height: math.unit(80000, "miles")
  8555. },
  8556. {
  8557. name: "Celestial",
  8558. height: math.unit(8e6, "miles")
  8559. },
  8560. {
  8561. name: "Star Dragon",
  8562. height: math.unit(800000, "parsecs")
  8563. },
  8564. {
  8565. name: "Godly",
  8566. height: math.unit(800, "teraparsecs")
  8567. },
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Ky'owin" },
  8572. {
  8573. front: {
  8574. height: math.unit(6, "feet"),
  8575. weight: math.unit(150, "lb"),
  8576. name: "Front",
  8577. image: {
  8578. source: "./media/characters/ky'owin/front.svg",
  8579. extra: 3888 / 3068,
  8580. bottom: 0.015
  8581. }
  8582. },
  8583. },
  8584. [
  8585. {
  8586. name: "Normal",
  8587. height: math.unit(6 + 8 / 12, "feet")
  8588. },
  8589. {
  8590. name: "Large",
  8591. height: math.unit(68, "feet")
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(132, "feet")
  8596. },
  8597. {
  8598. name: "Macro+",
  8599. height: math.unit(340, "feet")
  8600. },
  8601. {
  8602. name: "Macro++",
  8603. height: math.unit(680, "feet"),
  8604. default: true
  8605. },
  8606. {
  8607. name: "Megamacro",
  8608. height: math.unit(1, "mile")
  8609. },
  8610. {
  8611. name: "Megamacro+",
  8612. height: math.unit(10, "miles")
  8613. },
  8614. ]
  8615. ))
  8616. characterMakers.push(() => makeCharacter(
  8617. { name: "Mal" },
  8618. {
  8619. front: {
  8620. height: math.unit(4, "feet"),
  8621. weight: math.unit(50, "lb"),
  8622. name: "Front",
  8623. image: {
  8624. source: "./media/characters/mal/front.svg",
  8625. extra: 785 / 724,
  8626. bottom: 0.07
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Micro",
  8633. height: math.unit(4, "inches")
  8634. },
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(4, "feet"),
  8638. default: true
  8639. },
  8640. {
  8641. name: "Macro",
  8642. height: math.unit(200, "feet")
  8643. },
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Jordan Deware" },
  8648. {
  8649. front: {
  8650. height: math.unit(6, "feet"),
  8651. weight: math.unit(150, "lb"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/jordan-deware/front.svg",
  8655. extra: 1191 / 1012
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Nano",
  8662. height: math.unit(0.01, "mm")
  8663. },
  8664. {
  8665. name: "Minimicro",
  8666. height: math.unit(1, "mm")
  8667. },
  8668. {
  8669. name: "Micro",
  8670. height: math.unit(0.5, "inches")
  8671. },
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(4, "feet"),
  8675. default: true
  8676. },
  8677. {
  8678. name: "Minimacro",
  8679. height: math.unit(40, "meters")
  8680. },
  8681. {
  8682. name: "Small Macro",
  8683. height: math.unit(400, "meters")
  8684. },
  8685. {
  8686. name: "Macro",
  8687. height: math.unit(4, "miles")
  8688. },
  8689. {
  8690. name: "Megamacro",
  8691. height: math.unit(40, "miles")
  8692. },
  8693. {
  8694. name: "Megamacro+",
  8695. height: math.unit(400, "miles")
  8696. },
  8697. {
  8698. name: "Gigamacro",
  8699. height: math.unit(400000, "miles")
  8700. },
  8701. ]
  8702. ))
  8703. characterMakers.push(() => makeCharacter(
  8704. { name: "Kimiko" },
  8705. {
  8706. side: {
  8707. height: math.unit(6, "feet"),
  8708. weight: math.unit(150, "lb"),
  8709. name: "Side",
  8710. image: {
  8711. source: "./media/characters/kimiko/side.svg",
  8712. extra: 600 / 358
  8713. }
  8714. },
  8715. },
  8716. [
  8717. {
  8718. name: "Normal",
  8719. height: math.unit(15, "feet"),
  8720. default: true
  8721. },
  8722. {
  8723. name: "Macro",
  8724. height: math.unit(220, "feet")
  8725. },
  8726. {
  8727. name: "Macro+",
  8728. height: math.unit(1450, "feet")
  8729. },
  8730. {
  8731. name: "Megamacro",
  8732. height: math.unit(11500, "feet")
  8733. },
  8734. {
  8735. name: "Gigamacro",
  8736. height: math.unit(9500, "miles")
  8737. },
  8738. {
  8739. name: "Teramacro",
  8740. height: math.unit(2208005005, "miles")
  8741. },
  8742. {
  8743. name: "Examacro",
  8744. height: math.unit(2750, "parsecs")
  8745. },
  8746. {
  8747. name: "Zettamacro",
  8748. height: math.unit(101500, "parsecs")
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Andrew Sleepy" },
  8754. {
  8755. front: {
  8756. height: math.unit(6, "feet"),
  8757. weight: math.unit(70, "kg"),
  8758. name: "Front",
  8759. image: {
  8760. source: "./media/characters/andrew-sleepy/front.svg"
  8761. }
  8762. },
  8763. side: {
  8764. height: math.unit(6, "feet"),
  8765. weight: math.unit(70, "kg"),
  8766. name: "Side",
  8767. image: {
  8768. source: "./media/characters/andrew-sleepy/side.svg"
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Micro",
  8775. height: math.unit(1, "mm"),
  8776. default: true
  8777. },
  8778. ]
  8779. ))
  8780. characterMakers.push(() => makeCharacter(
  8781. { name: "Judio" },
  8782. {
  8783. front: {
  8784. height: math.unit(6, "feet"),
  8785. weight: math.unit(150, "lb"),
  8786. name: "Front",
  8787. image: {
  8788. source: "./media/characters/judio/front.svg",
  8789. extra: 1258 / 1110
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Normal",
  8796. height: math.unit(5 + 6 / 12, "feet")
  8797. },
  8798. {
  8799. name: "Macro",
  8800. height: math.unit(1000, "feet"),
  8801. default: true
  8802. },
  8803. {
  8804. name: "Megamacro",
  8805. height: math.unit(10, "miles")
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Nomaxice" },
  8811. {
  8812. front: {
  8813. height: math.unit(6, "feet"),
  8814. weight: math.unit(68, "kg"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/nomaxice/front.svg",
  8818. extra: 1498 / 1073,
  8819. bottom: 0.075
  8820. }
  8821. },
  8822. foot: {
  8823. height: math.unit(1.1, "feet"),
  8824. name: "Foot",
  8825. image: {
  8826. source: "./media/characters/nomaxice/foot.svg"
  8827. }
  8828. },
  8829. },
  8830. [
  8831. {
  8832. name: "Micro",
  8833. height: math.unit(8, "cm")
  8834. },
  8835. {
  8836. name: "Norm",
  8837. height: math.unit(1.82, "m")
  8838. },
  8839. {
  8840. name: "Norm+",
  8841. height: math.unit(8.8, "feet")
  8842. },
  8843. {
  8844. name: "Big",
  8845. height: math.unit(8, "meters"),
  8846. default: true
  8847. },
  8848. {
  8849. name: "Macro",
  8850. height: math.unit(18, "meters")
  8851. },
  8852. {
  8853. name: "Macro+",
  8854. height: math.unit(88, "meters")
  8855. },
  8856. ]
  8857. ))
  8858. characterMakers.push(() => makeCharacter(
  8859. { name: "Dydros" },
  8860. {
  8861. front: {
  8862. height: math.unit(12, "feet"),
  8863. weight: math.unit(1.5, "tons"),
  8864. name: "Front",
  8865. image: {
  8866. source: "./media/characters/dydros/front.svg",
  8867. extra: 863 / 800,
  8868. bottom: 0.015
  8869. }
  8870. },
  8871. back: {
  8872. height: math.unit(12, "feet"),
  8873. weight: math.unit(1.5, "tons"),
  8874. name: "Back",
  8875. image: {
  8876. source: "./media/characters/dydros/back.svg",
  8877. extra: 900 / 843,
  8878. bottom: 0.005
  8879. }
  8880. },
  8881. },
  8882. [
  8883. {
  8884. name: "Normal",
  8885. height: math.unit(12, "feet"),
  8886. default: true
  8887. },
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Riggi" },
  8892. {
  8893. front: {
  8894. height: math.unit(6, "feet"),
  8895. weight: math.unit(100, "kg"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/riggi/front.svg",
  8899. extra: 5787 / 5303
  8900. }
  8901. },
  8902. hyper: {
  8903. height: math.unit(6 * 5 / 3, "feet"),
  8904. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  8905. name: "Hyper",
  8906. image: {
  8907. source: "./media/characters/riggi/hyper.svg",
  8908. extra: 3595 / 3485
  8909. }
  8910. },
  8911. },
  8912. [
  8913. {
  8914. name: "Small Macro",
  8915. height: math.unit(50, "feet")
  8916. },
  8917. {
  8918. name: "Default",
  8919. height: math.unit(200, "feet"),
  8920. default: true
  8921. },
  8922. {
  8923. name: "Loom",
  8924. height: math.unit(10000, "feet")
  8925. },
  8926. {
  8927. name: "Cruising Altitude",
  8928. height: math.unit(30000, "feet")
  8929. },
  8930. {
  8931. name: "Megamacro",
  8932. height: math.unit(100, "miles")
  8933. },
  8934. {
  8935. name: "Continent Sized",
  8936. height: math.unit(2800, "miles")
  8937. },
  8938. {
  8939. name: "Earth Sized",
  8940. height: math.unit(8000, "miles")
  8941. },
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Alexi" },
  8946. {
  8947. front: {
  8948. height: math.unit(6, "feet"),
  8949. weight: math.unit(250, "lb"),
  8950. name: "Front",
  8951. image: {
  8952. source: "./media/characters/alexi/front.svg",
  8953. extra: 3483 / 3291,
  8954. bottom: 0.04
  8955. }
  8956. },
  8957. back: {
  8958. height: math.unit(6, "feet"),
  8959. weight: math.unit(250, "lb"),
  8960. name: "Back",
  8961. image: {
  8962. source: "./media/characters/alexi/back.svg",
  8963. extra: 3533 / 3356,
  8964. bottom: 0.021
  8965. }
  8966. },
  8967. frontTransforming: {
  8968. height: math.unit(8.58, "feet"),
  8969. weight: math.unit(1300, "lb"),
  8970. name: "Transforming",
  8971. image: {
  8972. source: "./media/characters/alexi/front-transforming.svg",
  8973. extra: 437 / 409,
  8974. bottom: 19/458.66
  8975. }
  8976. },
  8977. frontTransformed: {
  8978. height: math.unit(12.5, "feet"),
  8979. weight: math.unit(4000, "lb"),
  8980. name: "Transformed",
  8981. image: {
  8982. source: "./media/characters/alexi/front-transformed.svg",
  8983. extra: 639 / 614,
  8984. bottom: 30.55/671
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Normal",
  8991. height: math.unit(3, "meters"),
  8992. default: true
  8993. },
  8994. {
  8995. name: "Minimacro",
  8996. height: math.unit(30, "meters")
  8997. },
  8998. {
  8999. name: "Macro",
  9000. height: math.unit(500, "meters")
  9001. },
  9002. {
  9003. name: "Megamacro",
  9004. height: math.unit(9000, "km")
  9005. },
  9006. {
  9007. name: "Teramacro",
  9008. height: math.unit(384000, "km")
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Kayroo" },
  9014. {
  9015. front: {
  9016. height: math.unit(6, "feet"),
  9017. weight: math.unit(150, "lb"),
  9018. name: "Front",
  9019. image: {
  9020. source: "./media/characters/kayroo/front.svg",
  9021. extra: 1153 / 1038,
  9022. bottom: 0.06
  9023. }
  9024. },
  9025. foot: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(150, "lb"),
  9028. name: "Foot",
  9029. image: {
  9030. source: "./media/characters/kayroo/foot.svg"
  9031. }
  9032. },
  9033. },
  9034. [
  9035. {
  9036. name: "Normal",
  9037. height: math.unit(8, "feet"),
  9038. default: true
  9039. },
  9040. {
  9041. name: "Minimacro",
  9042. height: math.unit(250, "feet")
  9043. },
  9044. {
  9045. name: "Macro",
  9046. height: math.unit(2800, "feet")
  9047. },
  9048. {
  9049. name: "Megamacro",
  9050. height: math.unit(5200, "feet")
  9051. },
  9052. {
  9053. name: "Gigamacro",
  9054. height: math.unit(27000, "feet")
  9055. },
  9056. {
  9057. name: "Omega",
  9058. height: math.unit(45000, "feet")
  9059. },
  9060. ]
  9061. ))
  9062. characterMakers.push(() => makeCharacter(
  9063. { name: "Rhys" },
  9064. {
  9065. front: {
  9066. height: math.unit(18, "feet"),
  9067. weight: math.unit(5800, "lb"),
  9068. name: "Front",
  9069. image: {
  9070. source: "./media/characters/rhys/front.svg",
  9071. extra: 3386 / 3090,
  9072. bottom: 0.07
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(18, "feet"),
  9080. default: true
  9081. },
  9082. {
  9083. name: "Working Size",
  9084. height: math.unit(200, "feet")
  9085. },
  9086. {
  9087. name: "Demolition Size",
  9088. height: math.unit(2000, "feet")
  9089. },
  9090. {
  9091. name: "Maximum Licensed Size",
  9092. height: math.unit(5, "miles")
  9093. },
  9094. {
  9095. name: "Maximum Observed Size",
  9096. height: math.unit(10, "yottameters")
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Toto" },
  9102. {
  9103. front: {
  9104. height: math.unit(6, "feet"),
  9105. weight: math.unit(250, "lb"),
  9106. name: "Front",
  9107. image: {
  9108. source: "./media/characters/toto/front.svg",
  9109. extra: 527 / 479,
  9110. bottom: 0.05
  9111. }
  9112. },
  9113. },
  9114. [
  9115. {
  9116. name: "Micro",
  9117. height: math.unit(3, "feet")
  9118. },
  9119. {
  9120. name: "Normal",
  9121. height: math.unit(10, "feet")
  9122. },
  9123. {
  9124. name: "Macro",
  9125. height: math.unit(150, "feet"),
  9126. default: true
  9127. },
  9128. {
  9129. name: "Megamacro",
  9130. height: math.unit(1200, "feet")
  9131. },
  9132. ]
  9133. ))
  9134. characterMakers.push(() => makeCharacter(
  9135. { name: "King" },
  9136. {
  9137. back: {
  9138. height: math.unit(6, "feet"),
  9139. weight: math.unit(150, "lb"),
  9140. name: "Back",
  9141. image: {
  9142. source: "./media/characters/king/back.svg"
  9143. }
  9144. },
  9145. },
  9146. [
  9147. {
  9148. name: "Micro",
  9149. height: math.unit(2, "inches")
  9150. },
  9151. {
  9152. name: "Normal",
  9153. height: math.unit(8, "feet")
  9154. },
  9155. {
  9156. name: "Macro",
  9157. height: math.unit(200, "feet"),
  9158. default: true
  9159. },
  9160. {
  9161. name: "Megamacro",
  9162. height: math.unit(50, "miles")
  9163. },
  9164. ]
  9165. ))
  9166. characterMakers.push(() => makeCharacter(
  9167. { name: "Cordite" },
  9168. {
  9169. anthro: {
  9170. height: math.unit(6 + 5 / 12, "feet"),
  9171. weight: math.unit(280, "lb"),
  9172. name: "Anthro",
  9173. image: {
  9174. source: "./media/characters/cordite/anthro.svg",
  9175. extra: 1986 / 1905,
  9176. bottom: 0.025
  9177. }
  9178. },
  9179. feral: {
  9180. height: math.unit(2, "feet"),
  9181. weight: math.unit(90, "lb"),
  9182. name: "Feral",
  9183. image: {
  9184. source: "./media/characters/cordite/feral.svg",
  9185. extra: 1260 / 755,
  9186. bottom: 0.05
  9187. }
  9188. },
  9189. },
  9190. [
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(6 + 5 / 12, "feet"),
  9194. default: true
  9195. },
  9196. ]
  9197. ))
  9198. characterMakers.push(() => makeCharacter(
  9199. { name: "Pianostrong" },
  9200. {
  9201. front: {
  9202. height: math.unit(6, "feet"),
  9203. weight: math.unit(150, "lb"),
  9204. name: "Front",
  9205. image: {
  9206. source: "./media/characters/pianostrong/front.svg",
  9207. extra: 6577 / 6254,
  9208. bottom: 0.02
  9209. }
  9210. },
  9211. side: {
  9212. height: math.unit(6, "feet"),
  9213. weight: math.unit(150, "lb"),
  9214. name: "Side",
  9215. image: {
  9216. source: "./media/characters/pianostrong/side.svg",
  9217. extra: 6106 / 5730
  9218. }
  9219. },
  9220. back: {
  9221. height: math.unit(6, "feet"),
  9222. weight: math.unit(150, "lb"),
  9223. name: "Back",
  9224. image: {
  9225. source: "./media/characters/pianostrong/back.svg",
  9226. extra: 6085 / 5733,
  9227. bottom: 0.01
  9228. }
  9229. },
  9230. },
  9231. [
  9232. {
  9233. name: "Macro",
  9234. height: math.unit(100, "feet")
  9235. },
  9236. {
  9237. name: "Macro+",
  9238. height: math.unit(300, "feet"),
  9239. default: true
  9240. },
  9241. {
  9242. name: "Macro++",
  9243. height: math.unit(1000, "feet")
  9244. },
  9245. ]
  9246. ))
  9247. characterMakers.push(() => makeCharacter(
  9248. { name: "Kona" },
  9249. {
  9250. front: {
  9251. height: math.unit(6, "feet"),
  9252. weight: math.unit(150, "lb"),
  9253. name: "Front",
  9254. image: {
  9255. source: "./media/characters/kona/front.svg",
  9256. extra: 2960 / 2629,
  9257. bottom: 0.005
  9258. }
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Normal",
  9264. height: math.unit(11 + 8 / 12, "feet")
  9265. },
  9266. {
  9267. name: "Macro",
  9268. height: math.unit(850, "feet"),
  9269. default: true
  9270. },
  9271. {
  9272. name: "Macro+",
  9273. height: math.unit(1.5, "km"),
  9274. default: true
  9275. },
  9276. {
  9277. name: "Megamacro",
  9278. height: math.unit(80, "miles")
  9279. },
  9280. {
  9281. name: "Gigamacro",
  9282. height: math.unit(3500, "miles")
  9283. },
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Levi" },
  9288. {
  9289. side: {
  9290. height: math.unit(1.9, "meters"),
  9291. weight: math.unit(326, "kg"),
  9292. name: "Side",
  9293. image: {
  9294. source: "./media/characters/levi/side.svg",
  9295. extra: 1704 / 1334,
  9296. bottom: 0.02
  9297. }
  9298. },
  9299. },
  9300. [
  9301. {
  9302. name: "Normal",
  9303. height: math.unit(1.9, "meters"),
  9304. default: true
  9305. },
  9306. {
  9307. name: "Macro",
  9308. height: math.unit(20, "meters")
  9309. },
  9310. {
  9311. name: "Macro+",
  9312. height: math.unit(200, "meters")
  9313. },
  9314. {
  9315. name: "Megamacro",
  9316. height: math.unit(2, "km")
  9317. },
  9318. {
  9319. name: "Megamacro+",
  9320. height: math.unit(20, "km")
  9321. },
  9322. {
  9323. name: "Gigamacro",
  9324. height: math.unit(2500, "km")
  9325. },
  9326. {
  9327. name: "Gigamacro+",
  9328. height: math.unit(120000, "km")
  9329. },
  9330. {
  9331. name: "Teramacro",
  9332. height: math.unit(7.77e6, "km")
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "BMC" },
  9338. {
  9339. front: {
  9340. height: math.unit(6 + 4 / 12, "feet"),
  9341. weight: math.unit(188, "lb"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/bmc/front.svg",
  9345. extra: 1067 / 1022,
  9346. bottom: 0.047
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Human-sized",
  9353. height: math.unit(6 + 4 / 12, "feet")
  9354. },
  9355. {
  9356. name: "Small",
  9357. height: math.unit(250, "feet")
  9358. },
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(1250, "feet"),
  9362. default: true
  9363. },
  9364. {
  9365. name: "Good Day",
  9366. height: math.unit(88, "miles")
  9367. },
  9368. {
  9369. name: "Largest Measured Size",
  9370. height: math.unit(11.2e6, "lightyears")
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Sven the Kaiju" },
  9376. {
  9377. front: {
  9378. height: math.unit(20, "feet"),
  9379. weight: math.unit(2016, "kg"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/sven-the-kaiju/front.svg",
  9383. extra: 1479 / 1449,
  9384. bottom: 0.05
  9385. }
  9386. },
  9387. },
  9388. [
  9389. {
  9390. name: "Fairy",
  9391. height: math.unit(6, "inches")
  9392. },
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(20, "feet"),
  9396. default: true
  9397. },
  9398. {
  9399. name: "Rampage",
  9400. height: math.unit(200, "feet")
  9401. },
  9402. {
  9403. name: "Archfey Forest Guardian",
  9404. height: math.unit(1, "mile")
  9405. },
  9406. ]
  9407. ))
  9408. characterMakers.push(() => makeCharacter(
  9409. { name: "Marik" },
  9410. {
  9411. front: {
  9412. height: math.unit(4, "meters"),
  9413. weight: math.unit(2, "tons"),
  9414. name: "Front",
  9415. image: {
  9416. source: "./media/characters/marik/front.svg",
  9417. extra: 1057 / 1003,
  9418. bottom: 0.08
  9419. }
  9420. },
  9421. },
  9422. [
  9423. {
  9424. name: "Normal",
  9425. height: math.unit(4, "meters"),
  9426. default: true
  9427. },
  9428. {
  9429. name: "Macro",
  9430. height: math.unit(20, "meters")
  9431. },
  9432. {
  9433. name: "Megamacro",
  9434. height: math.unit(50, "km")
  9435. },
  9436. {
  9437. name: "Gigamacro",
  9438. height: math.unit(100, "km")
  9439. },
  9440. {
  9441. name: "Alpha Macro",
  9442. height: math.unit(7.88e7, "yottameters")
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Mel" },
  9448. {
  9449. front: {
  9450. height: math.unit(6, "feet"),
  9451. weight: math.unit(110, "lb"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/mel/front.svg",
  9455. extra: 736 / 617,
  9456. bottom: 0.017
  9457. }
  9458. },
  9459. },
  9460. [
  9461. {
  9462. name: "Pico",
  9463. height: math.unit(3, "pm")
  9464. },
  9465. {
  9466. name: "Nano",
  9467. height: math.unit(3, "nm")
  9468. },
  9469. {
  9470. name: "Micro",
  9471. height: math.unit(0.3, "mm"),
  9472. default: true
  9473. },
  9474. {
  9475. name: "Micro+",
  9476. height: math.unit(3, "mm")
  9477. },
  9478. {
  9479. name: "Normal",
  9480. height: math.unit(5 + 10.5 / 12, "feet")
  9481. },
  9482. ]
  9483. ))
  9484. characterMakers.push(() => makeCharacter(
  9485. { name: "Lykonous" },
  9486. {
  9487. kaiju: {
  9488. height: math.unit(1.75, "meters"),
  9489. weight: math.unit(55, "kg"),
  9490. name: "Kaiju",
  9491. image: {
  9492. source: "./media/characters/lykonous/kaiju.svg",
  9493. extra: 1055 / 946,
  9494. bottom: 0.135
  9495. }
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Normal",
  9501. height: math.unit(2.5, "meters"),
  9502. default: true
  9503. },
  9504. {
  9505. name: "Kaiju Dragon",
  9506. height: math.unit(60, "meters")
  9507. },
  9508. {
  9509. name: "Mega Kaiju",
  9510. height: math.unit(120, "km")
  9511. },
  9512. {
  9513. name: "Giga Kaiju",
  9514. height: math.unit(200, "megameters")
  9515. },
  9516. {
  9517. name: "Terra Kaiju",
  9518. height: math.unit(400, "gigameters")
  9519. },
  9520. {
  9521. name: "Kaiju Dragon God",
  9522. height: math.unit(13000, "exaparsecs")
  9523. },
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Blü" },
  9528. {
  9529. front: {
  9530. height: math.unit(6, "feet"),
  9531. weight: math.unit(150, "lb"),
  9532. name: "Front",
  9533. image: {
  9534. source: "./media/characters/blü/front.svg",
  9535. extra: 1883 / 1564,
  9536. bottom: 0.031
  9537. }
  9538. },
  9539. },
  9540. [
  9541. {
  9542. name: "Normal",
  9543. height: math.unit(13, "feet"),
  9544. default: true
  9545. },
  9546. {
  9547. name: "Big Boi",
  9548. height: math.unit(150, "meters")
  9549. },
  9550. {
  9551. name: "Mini Stomper",
  9552. height: math.unit(300, "meters")
  9553. },
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(1000, "meters")
  9557. },
  9558. {
  9559. name: "Megamacro",
  9560. height: math.unit(11000, "meters")
  9561. },
  9562. {
  9563. name: "Gigamacro",
  9564. height: math.unit(11000, "km")
  9565. },
  9566. {
  9567. name: "Teramacro",
  9568. height: math.unit(420000, "km")
  9569. },
  9570. {
  9571. name: "Examacro",
  9572. height: math.unit(120, "parsecs")
  9573. },
  9574. {
  9575. name: "God Tho",
  9576. height: math.unit(98000000000, "parsecs")
  9577. },
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Scales" },
  9582. {
  9583. taurFront: {
  9584. height: math.unit(6, "feet"),
  9585. weight: math.unit(200, "lb"),
  9586. name: "Taur (Front)",
  9587. image: {
  9588. source: "./media/characters/scales/taur-front.svg",
  9589. extra: 1,
  9590. bottom: 0.05
  9591. }
  9592. },
  9593. taurBack: {
  9594. height: math.unit(6, "feet"),
  9595. weight: math.unit(200, "lb"),
  9596. name: "Taur (Back)",
  9597. image: {
  9598. source: "./media/characters/scales/taur-back.svg",
  9599. extra: 1,
  9600. bottom: 0.08
  9601. }
  9602. },
  9603. anthro: {
  9604. height: math.unit(6 * 7 / 12, "feet"),
  9605. weight: math.unit(100, "lb"),
  9606. name: "Anthro",
  9607. image: {
  9608. source: "./media/characters/scales/anthro.svg",
  9609. extra: 1,
  9610. bottom: 0.06
  9611. }
  9612. },
  9613. },
  9614. [
  9615. {
  9616. name: "Normal",
  9617. height: math.unit(12, "feet"),
  9618. default: true
  9619. },
  9620. ]
  9621. ))
  9622. characterMakers.push(() => makeCharacter(
  9623. { name: "Koragos" },
  9624. {
  9625. front: {
  9626. height: math.unit(6, "feet"),
  9627. weight: math.unit(150, "lb"),
  9628. name: "Front",
  9629. image: {
  9630. source: "./media/characters/koragos/front.svg",
  9631. extra: 841 / 794,
  9632. bottom: 0.035
  9633. }
  9634. },
  9635. back: {
  9636. height: math.unit(6, "feet"),
  9637. weight: math.unit(150, "lb"),
  9638. name: "Back",
  9639. image: {
  9640. source: "./media/characters/koragos/back.svg",
  9641. extra: 841 / 810,
  9642. bottom: 0.022
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Normal",
  9649. height: math.unit(6 + 11 / 12, "feet"),
  9650. default: true
  9651. },
  9652. {
  9653. name: "Macro",
  9654. height: math.unit(490, "feet")
  9655. },
  9656. {
  9657. name: "Megamacro",
  9658. height: math.unit(10, "miles")
  9659. },
  9660. {
  9661. name: "Gigamacro",
  9662. height: math.unit(50, "miles")
  9663. },
  9664. ]
  9665. ))
  9666. characterMakers.push(() => makeCharacter(
  9667. { name: "Xylrem" },
  9668. {
  9669. front: {
  9670. height: math.unit(6, "feet"),
  9671. weight: math.unit(250, "lb"),
  9672. name: "Front",
  9673. image: {
  9674. source: "./media/characters/xylrem/front.svg",
  9675. extra: 3323 / 3050,
  9676. bottom: 0.065
  9677. }
  9678. },
  9679. },
  9680. [
  9681. {
  9682. name: "Micro",
  9683. height: math.unit(4, "feet")
  9684. },
  9685. {
  9686. name: "Normal",
  9687. height: math.unit(16, "feet"),
  9688. default: true
  9689. },
  9690. {
  9691. name: "Macro",
  9692. height: math.unit(2720, "feet")
  9693. },
  9694. {
  9695. name: "Megamacro",
  9696. height: math.unit(25000, "miles")
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Ikideru" },
  9702. {
  9703. front: {
  9704. height: math.unit(8, "feet"),
  9705. weight: math.unit(250, "kg"),
  9706. name: "Front",
  9707. image: {
  9708. source: "./media/characters/ikideru/front.svg",
  9709. extra: 930 / 870,
  9710. bottom: 0.087
  9711. }
  9712. },
  9713. back: {
  9714. height: math.unit(8, "feet"),
  9715. weight: math.unit(250, "kg"),
  9716. name: "Back",
  9717. image: {
  9718. source: "./media/characters/ikideru/back.svg",
  9719. extra: 919 / 852,
  9720. bottom: 0.055
  9721. }
  9722. },
  9723. },
  9724. [
  9725. {
  9726. name: "Rare",
  9727. height: math.unit(8, "feet"),
  9728. default: true
  9729. },
  9730. {
  9731. name: "Playful Loom",
  9732. height: math.unit(80, "feet")
  9733. },
  9734. {
  9735. name: "City Leaner",
  9736. height: math.unit(230, "feet")
  9737. },
  9738. {
  9739. name: "Megamacro",
  9740. height: math.unit(2500, "feet")
  9741. },
  9742. {
  9743. name: "Gigamacro",
  9744. height: math.unit(26400, "feet")
  9745. },
  9746. {
  9747. name: "Tectonic Shifter",
  9748. height: math.unit(1.7, "megameters")
  9749. },
  9750. {
  9751. name: "Planet Carer",
  9752. height: math.unit(21, "megameters")
  9753. },
  9754. {
  9755. name: "God",
  9756. height: math.unit(11157.22, "parsecs")
  9757. },
  9758. ]
  9759. ))
  9760. characterMakers.push(() => makeCharacter(
  9761. { name: "Neo" },
  9762. {
  9763. front: {
  9764. height: math.unit(6, "feet"),
  9765. weight: math.unit(120, "lb"),
  9766. name: "Front",
  9767. image: {
  9768. source: "./media/characters/neo/front.svg"
  9769. }
  9770. },
  9771. },
  9772. [
  9773. {
  9774. name: "Micro",
  9775. height: math.unit(2, "inches"),
  9776. default: true
  9777. },
  9778. {
  9779. name: "Human Size",
  9780. height: math.unit(5 + 8 / 12, "feet")
  9781. },
  9782. ]
  9783. ))
  9784. characterMakers.push(() => makeCharacter(
  9785. { name: "Chauncey (Chantz)" },
  9786. {
  9787. front: {
  9788. height: math.unit(13 + 10 / 12, "feet"),
  9789. weight: math.unit(5320, "lb"),
  9790. name: "Front",
  9791. image: {
  9792. source: "./media/characters/chauncey-chantz/front.svg",
  9793. extra: 1587 / 1435,
  9794. bottom: 0.02
  9795. }
  9796. },
  9797. },
  9798. [
  9799. {
  9800. name: "Normal",
  9801. height: math.unit(13 + 10 / 12, "feet"),
  9802. default: true
  9803. },
  9804. {
  9805. name: "Macro",
  9806. height: math.unit(45, "feet")
  9807. },
  9808. {
  9809. name: "Megamacro",
  9810. height: math.unit(250, "miles")
  9811. },
  9812. {
  9813. name: "Planetary",
  9814. height: math.unit(10000, "miles")
  9815. },
  9816. {
  9817. name: "Galactic",
  9818. height: math.unit(40000, "parsecs")
  9819. },
  9820. {
  9821. name: "Universal",
  9822. height: math.unit(1, "yottameter")
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Epifox" },
  9828. {
  9829. front: {
  9830. height: math.unit(6, "feet"),
  9831. weight: math.unit(150, "lb"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/epifox/front.svg",
  9835. extra: 1,
  9836. bottom: 0.075
  9837. }
  9838. },
  9839. },
  9840. [
  9841. {
  9842. name: "Micro",
  9843. height: math.unit(6, "inches")
  9844. },
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(12, "feet"),
  9848. default: true
  9849. },
  9850. {
  9851. name: "Macro",
  9852. height: math.unit(3810, "feet")
  9853. },
  9854. {
  9855. name: "Megamacro",
  9856. height: math.unit(500, "miles")
  9857. },
  9858. ]
  9859. ))
  9860. characterMakers.push(() => makeCharacter(
  9861. { name: "Colin T." },
  9862. {
  9863. front: {
  9864. height: math.unit(1.8796, "m"),
  9865. weight: math.unit(230, "lb"),
  9866. name: "Front",
  9867. image: {
  9868. source: "./media/characters/colin-t/front.svg",
  9869. extra: 1272 / 1193,
  9870. bottom: 0.07
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Micro",
  9877. height: math.unit(0.571, "meters")
  9878. },
  9879. {
  9880. name: "Normal",
  9881. height: math.unit(1.8796, "meters"),
  9882. default: true
  9883. },
  9884. {
  9885. name: "Tall",
  9886. height: math.unit(4, "meters")
  9887. },
  9888. {
  9889. name: "Macro",
  9890. height: math.unit(67.241, "meters")
  9891. },
  9892. {
  9893. name: "Megamacro",
  9894. height: math.unit(371.856, "meters")
  9895. },
  9896. {
  9897. name: "Planetary",
  9898. height: math.unit(12631.5689, "km")
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Matvei" },
  9904. {
  9905. front: {
  9906. height: math.unit(1.85, "meters"),
  9907. weight: math.unit(80, "kg"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/matvei/front.svg",
  9911. extra: 614 / 594,
  9912. bottom: 0.01
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(1.85, "meters"),
  9920. default: true
  9921. },
  9922. ]
  9923. ))
  9924. characterMakers.push(() => makeCharacter(
  9925. { name: "Quincy" },
  9926. {
  9927. front: {
  9928. height: math.unit(5 + 9 / 12, "feet"),
  9929. weight: math.unit(70, "lb"),
  9930. name: "Front",
  9931. image: {
  9932. source: "./media/characters/quincy/front.svg",
  9933. extra: 3041 / 2751
  9934. }
  9935. },
  9936. back: {
  9937. height: math.unit(5 + 9 / 12, "feet"),
  9938. weight: math.unit(70, "lb"),
  9939. name: "Back",
  9940. image: {
  9941. source: "./media/characters/quincy/back.svg",
  9942. extra: 3041 / 2751
  9943. }
  9944. },
  9945. flying: {
  9946. height: math.unit(5 + 4 / 12, "feet"),
  9947. weight: math.unit(70, "lb"),
  9948. name: "Flying",
  9949. image: {
  9950. source: "./media/characters/quincy/flying.svg",
  9951. extra: 1044 / 930
  9952. }
  9953. },
  9954. },
  9955. [
  9956. {
  9957. name: "Micro",
  9958. height: math.unit(3, "cm")
  9959. },
  9960. {
  9961. name: "Normal",
  9962. height: math.unit(5 + 9 / 12, "feet")
  9963. },
  9964. {
  9965. name: "Macro",
  9966. height: math.unit(200, "meters"),
  9967. default: true
  9968. },
  9969. {
  9970. name: "Megamacro",
  9971. height: math.unit(1000, "meters")
  9972. },
  9973. ]
  9974. ))
  9975. characterMakers.push(() => makeCharacter(
  9976. { name: "Vanrel" },
  9977. {
  9978. front: {
  9979. height: math.unit(4 + 7 / 12, "feet"),
  9980. weight: math.unit(150, "lb"),
  9981. name: "Front",
  9982. image: {
  9983. source: "./media/characters/vanrel/front.svg",
  9984. extra: 1,
  9985. bottom: 0.02
  9986. }
  9987. },
  9988. elemental: {
  9989. height: math.unit(3, "feet"),
  9990. weight: math.unit(150, "lb"),
  9991. name: "Elemental",
  9992. image: {
  9993. source: "./media/characters/vanrel/elemental.svg",
  9994. extra: 192.3/162.8,
  9995. bottom: 1.79/194.17
  9996. }
  9997. },
  9998. side: {
  9999. height: math.unit(4 + 7 / 12, "feet"),
  10000. weight: math.unit(150, "lb"),
  10001. name: "Side",
  10002. image: {
  10003. source: "./media/characters/vanrel/side.svg",
  10004. extra: 1,
  10005. bottom: 0.025
  10006. }
  10007. },
  10008. tome: {
  10009. height: math.unit(1.35, "feet"),
  10010. weight: math.unit(10, "lb"),
  10011. name: "Vanrel's Tome",
  10012. rename: true,
  10013. image: {
  10014. source: "./media/characters/vanrel/tome.svg"
  10015. }
  10016. },
  10017. beans: {
  10018. height: math.unit(0.89, "feet"),
  10019. name: "Beans",
  10020. image: {
  10021. source: "./media/characters/vanrel/beans.svg"
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(4 + 7 / 12, "feet"),
  10029. default: true
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Kuiper Vanrel" },
  10035. {
  10036. front: {
  10037. height: math.unit(7 + 5 / 12, "feet"),
  10038. weight: math.unit(150, "lb"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/kuiper-vanrel/front.svg",
  10042. extra: 1118 / 1068,
  10043. bottom: 0.09
  10044. }
  10045. },
  10046. foot: {
  10047. height: math.unit(0.55, "meters"),
  10048. name: "Foot",
  10049. image: {
  10050. source: "./media/characters/kuiper-vanrel/foot.svg",
  10051. }
  10052. },
  10053. battle: {
  10054. height: math.unit(6.824, "feet"),
  10055. weight: math.unit(150, "lb"),
  10056. name: "Battle",
  10057. image: {
  10058. source: "./media/characters/kuiper-vanrel/battle.svg",
  10059. extra: 1466/1327,
  10060. bottom: 29/1492.5
  10061. }
  10062. },
  10063. },
  10064. [
  10065. {
  10066. name: "Normal",
  10067. height: math.unit(7 + 5 / 12, "feet"),
  10068. default: true
  10069. },
  10070. ]
  10071. ))
  10072. characterMakers.push(() => makeCharacter(
  10073. { name: "Keset Vanrel" },
  10074. {
  10075. front: {
  10076. height: math.unit(8 + 5 / 12, "feet"),
  10077. weight: math.unit(150, "lb"),
  10078. name: "Front",
  10079. image: {
  10080. source: "./media/characters/keset-vanrel/front.svg",
  10081. extra: 1150 / 1084,
  10082. bottom: 0.05
  10083. }
  10084. },
  10085. hand: {
  10086. height: math.unit(0.6, "meters"),
  10087. name: "Hand",
  10088. image: {
  10089. source: "./media/characters/keset-vanrel/hand.svg"
  10090. }
  10091. },
  10092. foot: {
  10093. height: math.unit(0.94978, "meters"),
  10094. name: "Foot",
  10095. image: {
  10096. source: "./media/characters/keset-vanrel/foot.svg"
  10097. }
  10098. },
  10099. battle: {
  10100. height: math.unit(7.408, "feet"),
  10101. weight: math.unit(150, "lb"),
  10102. name: "Battle",
  10103. image: {
  10104. source: "./media/characters/keset-vanrel/battle.svg",
  10105. extra: 1890/1386,
  10106. bottom: 73.28/1970
  10107. }
  10108. },
  10109. },
  10110. [
  10111. {
  10112. name: "Normal",
  10113. height: math.unit(8 + 5 / 12, "feet"),
  10114. default: true
  10115. },
  10116. ]
  10117. ))
  10118. characterMakers.push(() => makeCharacter(
  10119. { name: "Neos" },
  10120. {
  10121. front: {
  10122. height: math.unit(6, "feet"),
  10123. weight: math.unit(150, "lb"),
  10124. name: "Front",
  10125. image: {
  10126. source: "./media/characters/neos/front.svg",
  10127. extra: 1696 / 992,
  10128. bottom: 0.14
  10129. }
  10130. },
  10131. },
  10132. [
  10133. {
  10134. name: "Normal",
  10135. height: math.unit(54, "cm"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Macro",
  10140. height: math.unit(100, "m")
  10141. },
  10142. {
  10143. name: "Megamacro",
  10144. height: math.unit(10, "km")
  10145. },
  10146. {
  10147. name: "Megamacro+",
  10148. height: math.unit(100, "km")
  10149. },
  10150. {
  10151. name: "Gigamacro",
  10152. height: math.unit(100, "Mm")
  10153. },
  10154. {
  10155. name: "Teramacro",
  10156. height: math.unit(100, "Gm")
  10157. },
  10158. {
  10159. name: "Examacro",
  10160. height: math.unit(100, "Em")
  10161. },
  10162. {
  10163. name: "Godly",
  10164. height: math.unit(10000, "Ym")
  10165. },
  10166. {
  10167. name: "Beyond Godly",
  10168. height: math.unit(10000000, "Ym")
  10169. },
  10170. ]
  10171. ))
  10172. characterMakers.push(() => makeCharacter(
  10173. { name: "Sammy Mouse" },
  10174. {
  10175. feminine: {
  10176. height: math.unit(5, "feet"),
  10177. weight: math.unit(100, "lb"),
  10178. name: "Feminine",
  10179. image: {
  10180. source: "./media/characters/sammy-mouse/feminine.svg",
  10181. extra: 2526 / 2425,
  10182. bottom: 0.123
  10183. }
  10184. },
  10185. masculine: {
  10186. height: math.unit(5, "feet"),
  10187. weight: math.unit(100, "lb"),
  10188. name: "Masculine",
  10189. image: {
  10190. source: "./media/characters/sammy-mouse/masculine.svg",
  10191. extra: 2526 / 2425,
  10192. bottom: 0.123
  10193. }
  10194. },
  10195. },
  10196. [
  10197. {
  10198. name: "Micro",
  10199. height: math.unit(5, "inches")
  10200. },
  10201. {
  10202. name: "Normal",
  10203. height: math.unit(5, "feet"),
  10204. default: true
  10205. },
  10206. {
  10207. name: "Macro",
  10208. height: math.unit(60, "feet")
  10209. },
  10210. ]
  10211. ))
  10212. characterMakers.push(() => makeCharacter(
  10213. { name: "Kole" },
  10214. {
  10215. front: {
  10216. height: math.unit(4, "feet"),
  10217. weight: math.unit(50, "lb"),
  10218. name: "Front",
  10219. image: {
  10220. source: "./media/characters/kole/front.svg",
  10221. extra: 1423 / 1303,
  10222. bottom: 0.025
  10223. }
  10224. },
  10225. back: {
  10226. height: math.unit(4, "feet"),
  10227. weight: math.unit(50, "lb"),
  10228. name: "Back",
  10229. image: {
  10230. source: "./media/characters/kole/back.svg",
  10231. extra: 1426 / 1280,
  10232. bottom: 0.02
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(4, "feet"),
  10240. default: true
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Rufran" },
  10246. {
  10247. front: {
  10248. height: math.unit(2 + 6 / 12, "feet"),
  10249. weight: math.unit(20, "lb"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/rufran/front.svg",
  10253. extra: 2041 / 1839,
  10254. bottom: 0.055
  10255. }
  10256. },
  10257. back: {
  10258. height: math.unit(2 + 6 / 12, "feet"),
  10259. weight: math.unit(20, "lb"),
  10260. name: "Back",
  10261. image: {
  10262. source: "./media/characters/rufran/back.svg",
  10263. extra: 2054 / 1839,
  10264. bottom: 0.01
  10265. }
  10266. },
  10267. hand: {
  10268. height: math.unit(0.2166, "meters"),
  10269. name: "Hand",
  10270. image: {
  10271. source: "./media/characters/rufran/hand.svg"
  10272. }
  10273. },
  10274. foot: {
  10275. height: math.unit(0.185, "meters"),
  10276. name: "Foot",
  10277. image: {
  10278. source: "./media/characters/rufran/foot.svg"
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Micro",
  10285. height: math.unit(1, "inch")
  10286. },
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(2 + 6 / 12, "feet"),
  10290. default: true
  10291. },
  10292. {
  10293. name: "Big",
  10294. height: math.unit(60, "feet")
  10295. },
  10296. {
  10297. name: "Macro",
  10298. height: math.unit(325, "feet")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Chip" },
  10304. {
  10305. front: {
  10306. height: math.unit(0.3, "meters"),
  10307. weight: math.unit(3.5, "kg"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/chip/front.svg",
  10311. extra: 748 / 674
  10312. }
  10313. },
  10314. },
  10315. [
  10316. {
  10317. name: "Micro",
  10318. height: math.unit(1, "inch"),
  10319. default: true
  10320. },
  10321. ]
  10322. ))
  10323. characterMakers.push(() => makeCharacter(
  10324. { name: "Torvid" },
  10325. {
  10326. side: {
  10327. height: math.unit(2.3, "meters"),
  10328. weight: math.unit(3500, "lb"),
  10329. name: "Side",
  10330. image: {
  10331. source: "./media/characters/torvid/side.svg",
  10332. extra: 1972 / 722,
  10333. bottom: 0.035
  10334. }
  10335. },
  10336. },
  10337. [
  10338. {
  10339. name: "Normal",
  10340. height: math.unit(2.3, "meters"),
  10341. default: true
  10342. },
  10343. ]
  10344. ))
  10345. characterMakers.push(() => makeCharacter(
  10346. { name: "Susan" },
  10347. {
  10348. front: {
  10349. height: math.unit(2, "meters"),
  10350. weight: math.unit(150.5, "kg"),
  10351. name: "Front",
  10352. image: {
  10353. source: "./media/characters/susan/front.svg",
  10354. extra: 693 / 635,
  10355. bottom: 0.05
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Megamacro",
  10362. height: math.unit(505, "miles"),
  10363. default: true
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Raindrops" },
  10369. {
  10370. front: {
  10371. height: math.unit(6, "feet"),
  10372. weight: math.unit(150, "lb"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/raindrops/front.svg",
  10376. extra: 2655 / 2461,
  10377. bottom: 0.02
  10378. }
  10379. },
  10380. back: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(150, "lb"),
  10383. name: "Back",
  10384. image: {
  10385. source: "./media/characters/raindrops/back.svg",
  10386. extra: 2574 / 2400,
  10387. bottom: 0.03
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Micro",
  10394. height: math.unit(6, "inches")
  10395. },
  10396. {
  10397. name: "Normal",
  10398. height: math.unit(6 + 2 / 12, "feet")
  10399. },
  10400. {
  10401. name: "Macro",
  10402. height: math.unit(131, "feet"),
  10403. default: true
  10404. },
  10405. {
  10406. name: "Megamacro",
  10407. height: math.unit(15, "miles")
  10408. },
  10409. {
  10410. name: "Gigamacro",
  10411. height: math.unit(4000, "miles")
  10412. },
  10413. {
  10414. name: "Teramacro",
  10415. height: math.unit(315000, "miles")
  10416. },
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Tezwa" },
  10421. {
  10422. front: {
  10423. height: math.unit(2.794, "meters"),
  10424. weight: math.unit(325, "kg"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/tezwa/front.svg",
  10428. extra: 2083 / 1906,
  10429. bottom: 0.031
  10430. }
  10431. },
  10432. foot: {
  10433. height: math.unit(0.687, "meters"),
  10434. name: "Foot",
  10435. image: {
  10436. source: "./media/characters/tezwa/foot.svg"
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Normal",
  10443. height: math.unit(9 + 2 / 12, "feet"),
  10444. default: true
  10445. },
  10446. ]
  10447. ))
  10448. characterMakers.push(() => makeCharacter(
  10449. { name: "Typhus" },
  10450. {
  10451. front: {
  10452. height: math.unit(58, "feet"),
  10453. weight: math.unit(89000, "lb"),
  10454. name: "Front",
  10455. image: {
  10456. source: "./media/characters/typhus/front.svg",
  10457. extra: 816 / 800,
  10458. bottom: 0.065
  10459. }
  10460. },
  10461. },
  10462. [
  10463. {
  10464. name: "Macro",
  10465. height: math.unit(58, "feet"),
  10466. default: true
  10467. },
  10468. ]
  10469. ))
  10470. characterMakers.push(() => makeCharacter(
  10471. { name: "Lyra Von Wulf" },
  10472. {
  10473. front: {
  10474. height: math.unit(12, "feet"),
  10475. weight: math.unit(6, "tonnes"),
  10476. name: "Front",
  10477. image: {
  10478. source: "./media/characters/lyra-von-wulf/front.svg",
  10479. extra: 1,
  10480. bottom: 0.10
  10481. }
  10482. },
  10483. frontMecha: {
  10484. height: math.unit(12, "feet"),
  10485. weight: math.unit(12, "tonnes"),
  10486. name: "Front (Mecha)",
  10487. image: {
  10488. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  10489. extra: 1,
  10490. bottom: 0.042
  10491. }
  10492. },
  10493. maw: {
  10494. height: math.unit(2.2, "feet"),
  10495. name: "Maw",
  10496. image: {
  10497. source: "./media/characters/lyra-von-wulf/maw.svg"
  10498. }
  10499. },
  10500. },
  10501. [
  10502. {
  10503. name: "Normal",
  10504. height: math.unit(12, "feet"),
  10505. default: true
  10506. },
  10507. {
  10508. name: "Classic",
  10509. height: math.unit(50, "feet")
  10510. },
  10511. {
  10512. name: "Macro",
  10513. height: math.unit(500, "feet")
  10514. },
  10515. {
  10516. name: "Megamacro",
  10517. height: math.unit(1, "mile")
  10518. },
  10519. {
  10520. name: "Gigamacro",
  10521. height: math.unit(400, "miles")
  10522. },
  10523. {
  10524. name: "Teramacro",
  10525. height: math.unit(22000, "miles")
  10526. },
  10527. {
  10528. name: "Solarmacro",
  10529. height: math.unit(8600000, "miles")
  10530. },
  10531. {
  10532. name: "Galactic",
  10533. height: math.unit(1057000, "lightyears")
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "Dixon" },
  10539. {
  10540. front: {
  10541. height: math.unit(6 + 10 / 12, "feet"),
  10542. weight: math.unit(150, "lb"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/dixon/front.svg",
  10546. extra: 3361 / 3209,
  10547. bottom: 0.01
  10548. }
  10549. },
  10550. },
  10551. [
  10552. {
  10553. name: "Normal",
  10554. height: math.unit(6 + 10 / 12, "feet"),
  10555. default: true
  10556. },
  10557. {
  10558. name: "Big",
  10559. height: math.unit(12, "meters")
  10560. },
  10561. {
  10562. name: "Macro",
  10563. height: math.unit(500, "meters")
  10564. },
  10565. {
  10566. name: "Megamacro",
  10567. height: math.unit(2, "km")
  10568. },
  10569. ]
  10570. ))
  10571. characterMakers.push(() => makeCharacter(
  10572. { name: "Kauko" },
  10573. {
  10574. front: {
  10575. height: math.unit(185, "cm"),
  10576. weight: math.unit(68, "kg"),
  10577. name: "Front",
  10578. image: {
  10579. source: "./media/characters/kauko/front.svg",
  10580. extra: 1455 / 1421,
  10581. bottom: 0.03
  10582. }
  10583. },
  10584. back: {
  10585. height: math.unit(185, "cm"),
  10586. weight: math.unit(68, "kg"),
  10587. name: "Back",
  10588. image: {
  10589. source: "./media/characters/kauko/back.svg",
  10590. extra: 1455 / 1421,
  10591. bottom: 0.004
  10592. }
  10593. },
  10594. },
  10595. [
  10596. {
  10597. name: "Normal",
  10598. height: math.unit(185, "cm"),
  10599. default: true
  10600. },
  10601. ]
  10602. ))
  10603. characterMakers.push(() => makeCharacter(
  10604. { name: "Varg" },
  10605. {
  10606. front: {
  10607. height: math.unit(6, "feet"),
  10608. weight: math.unit(150, "kg"),
  10609. name: "Front",
  10610. image: {
  10611. source: "./media/characters/varg/front.svg",
  10612. extra: 1108 / 1018,
  10613. bottom: 0.0375
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Normal",
  10620. height: math.unit(5, "meters")
  10621. },
  10622. {
  10623. name: "Macro",
  10624. height: math.unit(200, "meters")
  10625. },
  10626. {
  10627. name: "Megamacro",
  10628. height: math.unit(20, "kilometers")
  10629. },
  10630. {
  10631. name: "True Size",
  10632. height: math.unit(211, "km"),
  10633. default: true
  10634. },
  10635. {
  10636. name: "Gigamacro",
  10637. height: math.unit(1000, "km")
  10638. },
  10639. {
  10640. name: "Gigamacro+",
  10641. height: math.unit(8000, "km")
  10642. },
  10643. {
  10644. name: "Teramacro",
  10645. height: math.unit(1000000, "km")
  10646. },
  10647. ]
  10648. ))
  10649. characterMakers.push(() => makeCharacter(
  10650. { name: "Dayza" },
  10651. {
  10652. front: {
  10653. height: math.unit(7 + 7 / 12, "feet"),
  10654. weight: math.unit(267, "lb"),
  10655. name: "Front",
  10656. image: {
  10657. source: "./media/characters/dayza/front.svg",
  10658. extra: 1262 / 1200,
  10659. bottom: 0.035
  10660. }
  10661. },
  10662. side: {
  10663. height: math.unit(7 + 7 / 12, "feet"),
  10664. weight: math.unit(267, "lb"),
  10665. name: "Side",
  10666. image: {
  10667. source: "./media/characters/dayza/side.svg",
  10668. extra: 1295 / 1245,
  10669. bottom: 0.05
  10670. }
  10671. },
  10672. back: {
  10673. height: math.unit(7 + 7 / 12, "feet"),
  10674. weight: math.unit(267, "lb"),
  10675. name: "Back",
  10676. image: {
  10677. source: "./media/characters/dayza/back.svg",
  10678. extra: 1241 / 1170
  10679. }
  10680. },
  10681. },
  10682. [
  10683. {
  10684. name: "Normal",
  10685. height: math.unit(7 + 7 / 12, "feet"),
  10686. default: true
  10687. },
  10688. {
  10689. name: "Macro",
  10690. height: math.unit(155, "feet")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Xanthos" },
  10696. {
  10697. front: {
  10698. height: math.unit(6 + 5 / 12, "feet"),
  10699. weight: math.unit(160, "lb"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/xanthos/front.svg",
  10703. extra: 1,
  10704. bottom: 0.04
  10705. }
  10706. },
  10707. back: {
  10708. height: math.unit(6 + 5 / 12, "feet"),
  10709. weight: math.unit(160, "lb"),
  10710. name: "Back",
  10711. image: {
  10712. source: "./media/characters/xanthos/back.svg",
  10713. extra: 1,
  10714. bottom: 0.03
  10715. }
  10716. },
  10717. hand: {
  10718. height: math.unit(0.928, "feet"),
  10719. name: "Hand",
  10720. image: {
  10721. source: "./media/characters/xanthos/hand.svg"
  10722. }
  10723. },
  10724. foot: {
  10725. height: math.unit(1.286, "feet"),
  10726. name: "Foot",
  10727. image: {
  10728. source: "./media/characters/xanthos/foot.svg"
  10729. }
  10730. },
  10731. },
  10732. [
  10733. {
  10734. name: "Normal",
  10735. height: math.unit(6 + 5 / 12, "feet"),
  10736. default: true
  10737. },
  10738. {
  10739. name: "Normal+",
  10740. height: math.unit(6, "meters")
  10741. },
  10742. {
  10743. name: "Macro",
  10744. height: math.unit(40, "feet")
  10745. },
  10746. {
  10747. name: "Macro+",
  10748. height: math.unit(200, "meters")
  10749. },
  10750. {
  10751. name: "Megamacro",
  10752. height: math.unit(20, "km")
  10753. },
  10754. {
  10755. name: "Megamacro+",
  10756. height: math.unit(100, "km")
  10757. },
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "Grynn" },
  10762. {
  10763. front: {
  10764. height: math.unit(6 + 3 / 12, "feet"),
  10765. weight: math.unit(215, "lb"),
  10766. name: "Front",
  10767. image: {
  10768. source: "./media/characters/grynn/front.svg",
  10769. extra: 4627 / 4209,
  10770. bottom: 0.047
  10771. }
  10772. },
  10773. },
  10774. [
  10775. {
  10776. name: "Micro",
  10777. height: math.unit(6, "inches")
  10778. },
  10779. {
  10780. name: "Normal",
  10781. height: math.unit(6 + 3 / 12, "feet"),
  10782. default: true
  10783. },
  10784. {
  10785. name: "Big",
  10786. height: math.unit(104, "feet")
  10787. },
  10788. {
  10789. name: "Macro",
  10790. height: math.unit(944, "feet")
  10791. },
  10792. {
  10793. name: "Macro+",
  10794. height: math.unit(9480, "feet")
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(78752, "feet")
  10799. },
  10800. {
  10801. name: "Megamacro+",
  10802. height: math.unit(630128, "feet")
  10803. },
  10804. {
  10805. name: "Megamacro++",
  10806. height: math.unit(3150695, "feet")
  10807. },
  10808. ]
  10809. ))
  10810. characterMakers.push(() => makeCharacter(
  10811. { name: "Mocha Aura" },
  10812. {
  10813. front: {
  10814. height: math.unit(7 + 5 / 12, "feet"),
  10815. weight: math.unit(450, "lb"),
  10816. name: "Front",
  10817. image: {
  10818. source: "./media/characters/mocha-aura/front.svg",
  10819. extra: 1907 / 1817,
  10820. bottom: 0.04
  10821. }
  10822. },
  10823. back: {
  10824. height: math.unit(7 + 5 / 12, "feet"),
  10825. weight: math.unit(450, "lb"),
  10826. name: "Back",
  10827. image: {
  10828. source: "./media/characters/mocha-aura/back.svg",
  10829. extra: 1900 / 1825,
  10830. bottom: 0.045
  10831. }
  10832. },
  10833. },
  10834. [
  10835. {
  10836. name: "Nano",
  10837. height: math.unit(1, "nm")
  10838. },
  10839. {
  10840. name: "Megamicro",
  10841. height: math.unit(1, "mm")
  10842. },
  10843. {
  10844. name: "Micro",
  10845. height: math.unit(3, "inches")
  10846. },
  10847. {
  10848. name: "Normal",
  10849. height: math.unit(7 + 5 / 12, "feet"),
  10850. default: true
  10851. },
  10852. {
  10853. name: "Macro",
  10854. height: math.unit(30, "feet")
  10855. },
  10856. {
  10857. name: "Megamacro",
  10858. height: math.unit(3500, "feet")
  10859. },
  10860. {
  10861. name: "Teramacro",
  10862. height: math.unit(500000, "miles")
  10863. },
  10864. {
  10865. name: "Petamacro",
  10866. height: math.unit(50000000000000000, "parsecs")
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Ilisha Devya" },
  10872. {
  10873. front: {
  10874. height: math.unit(6, "feet"),
  10875. weight: math.unit(150, "lb"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/ilisha-devya/front.svg",
  10879. extra: 1,
  10880. bottom: 0.175
  10881. }
  10882. },
  10883. back: {
  10884. height: math.unit(6, "feet"),
  10885. weight: math.unit(150, "lb"),
  10886. name: "Back",
  10887. image: {
  10888. source: "./media/characters/ilisha-devya/back.svg",
  10889. extra: 1,
  10890. bottom: 0.015
  10891. }
  10892. },
  10893. },
  10894. [
  10895. {
  10896. name: "Macro",
  10897. height: math.unit(500, "feet"),
  10898. default: true
  10899. },
  10900. {
  10901. name: "Megamacro",
  10902. height: math.unit(10, "miles")
  10903. },
  10904. {
  10905. name: "Gigamacro",
  10906. height: math.unit(100000, "miles")
  10907. },
  10908. {
  10909. name: "Examacro",
  10910. height: math.unit(1e9, "lightyears")
  10911. },
  10912. {
  10913. name: "Omniversal",
  10914. height: math.unit(1e33, "lightyears")
  10915. },
  10916. {
  10917. name: "Beyond Infinite",
  10918. height: math.unit(1e100, "lightyears")
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Mira" },
  10924. {
  10925. Side: {
  10926. height: math.unit(6, "feet"),
  10927. weight: math.unit(150, "lb"),
  10928. name: "Side",
  10929. image: {
  10930. source: "./media/characters/mira/side.svg",
  10931. extra: 900 / 799,
  10932. bottom: 0.02
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Human Size",
  10939. height: math.unit(6, "feet")
  10940. },
  10941. {
  10942. name: "Macro",
  10943. height: math.unit(100, "feet"),
  10944. default: true
  10945. },
  10946. {
  10947. name: "Megamacro",
  10948. height: math.unit(10, "miles")
  10949. },
  10950. {
  10951. name: "Gigamacro",
  10952. height: math.unit(25000, "miles")
  10953. },
  10954. {
  10955. name: "Teramacro",
  10956. height: math.unit(300, "AU")
  10957. },
  10958. {
  10959. name: "Full Size",
  10960. height: math.unit(4.5e10, "lightyears")
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Holly" },
  10966. {
  10967. front: {
  10968. height: math.unit(6, "feet"),
  10969. weight: math.unit(150, "lb"),
  10970. name: "Front",
  10971. image: {
  10972. source: "./media/characters/holly/front.svg",
  10973. extra: 639 / 606
  10974. }
  10975. },
  10976. back: {
  10977. height: math.unit(6, "feet"),
  10978. weight: math.unit(150, "lb"),
  10979. name: "Back",
  10980. image: {
  10981. source: "./media/characters/holly/back.svg",
  10982. extra: 623 / 598
  10983. }
  10984. },
  10985. frontWorking: {
  10986. height: math.unit(6, "feet"),
  10987. weight: math.unit(150, "lb"),
  10988. name: "Front (Working)",
  10989. image: {
  10990. source: "./media/characters/holly/front-working.svg",
  10991. extra: 607 / 577,
  10992. bottom: 0.048
  10993. }
  10994. },
  10995. },
  10996. [
  10997. {
  10998. name: "Normal",
  10999. height: math.unit(12 + 3 / 12, "feet"),
  11000. default: true
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Porter" },
  11006. {
  11007. front: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(150, "lb"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/porter/front.svg",
  11013. extra: 1,
  11014. bottom: 0.01
  11015. }
  11016. },
  11017. frontRobes: {
  11018. height: math.unit(6, "feet"),
  11019. weight: math.unit(150, "lb"),
  11020. name: "Front (Robes)",
  11021. image: {
  11022. source: "./media/characters/porter/front-robes.svg",
  11023. extra: 1.01,
  11024. bottom: 0.01
  11025. }
  11026. },
  11027. },
  11028. [
  11029. {
  11030. name: "Normal",
  11031. height: math.unit(11 + 9 / 12, "feet"),
  11032. default: true
  11033. },
  11034. ]
  11035. ))
  11036. characterMakers.push(() => makeCharacter(
  11037. { name: "Lucy" },
  11038. {
  11039. legendary: {
  11040. height: math.unit(6, "feet"),
  11041. weight: math.unit(150, "lb"),
  11042. name: "Legendary",
  11043. image: {
  11044. source: "./media/characters/lucy/legendary.svg",
  11045. extra: 1355 / 1100,
  11046. bottom: 0.045
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Legendary",
  11053. height: math.unit(86882 * 2, "miles"),
  11054. default: true
  11055. },
  11056. ]
  11057. ))
  11058. characterMakers.push(() => makeCharacter(
  11059. { name: "Drusilla" },
  11060. {
  11061. front: {
  11062. height: math.unit(6, "feet"),
  11063. weight: math.unit(150, "lb"),
  11064. name: "Front",
  11065. image: {
  11066. source: "./media/characters/drusilla/front.svg",
  11067. extra: 678 / 635,
  11068. bottom: 0.03
  11069. }
  11070. },
  11071. back: {
  11072. height: math.unit(6, "feet"),
  11073. weight: math.unit(150, "lb"),
  11074. name: "Back",
  11075. image: {
  11076. source: "./media/characters/drusilla/back.svg",
  11077. extra: 678 / 635,
  11078. bottom: 0.005
  11079. }
  11080. },
  11081. },
  11082. [
  11083. {
  11084. name: "Macro",
  11085. height: math.unit(100, "feet")
  11086. },
  11087. {
  11088. name: "Canon Height",
  11089. height: math.unit(2000, "feet"),
  11090. default: true
  11091. },
  11092. ]
  11093. ))
  11094. characterMakers.push(() => makeCharacter(
  11095. { name: "Renard Thatch" },
  11096. {
  11097. front: {
  11098. height: math.unit(6, "feet"),
  11099. weight: math.unit(180, "lb"),
  11100. name: "Front",
  11101. image: {
  11102. source: "./media/characters/renard-thatch/front.svg",
  11103. extra: 2411 / 2275,
  11104. bottom: 0.01
  11105. }
  11106. },
  11107. frontPosing: {
  11108. height: math.unit(6, "feet"),
  11109. weight: math.unit(180, "lb"),
  11110. name: "Front (Posing)",
  11111. image: {
  11112. source: "./media/characters/renard-thatch/front-posing.svg",
  11113. extra: 2381 / 2261,
  11114. bottom: 0.01
  11115. }
  11116. },
  11117. back: {
  11118. height: math.unit(6, "feet"),
  11119. weight: math.unit(180, "lb"),
  11120. name: "Back",
  11121. image: {
  11122. source: "./media/characters/renard-thatch/back.svg",
  11123. extra: 2428 / 2288
  11124. }
  11125. },
  11126. },
  11127. [
  11128. {
  11129. name: "Micro",
  11130. height: math.unit(3, "inches")
  11131. },
  11132. {
  11133. name: "Default",
  11134. height: math.unit(6, "feet"),
  11135. default: true
  11136. },
  11137. {
  11138. name: "Macro",
  11139. height: math.unit(75, "feet")
  11140. },
  11141. ]
  11142. ))
  11143. characterMakers.push(() => makeCharacter(
  11144. { name: "Sekvra" },
  11145. {
  11146. front: {
  11147. height: math.unit(1450, "feet"),
  11148. weight: math.unit(1.21e6, "tons"),
  11149. name: "Front",
  11150. image: {
  11151. source: "./media/characters/sekvra/front.svg",
  11152. extra: 1,
  11153. bottom: 0.03
  11154. }
  11155. },
  11156. frontClothed: {
  11157. height: math.unit(1450, "feet"),
  11158. weight: math.unit(1.21e6, "tons"),
  11159. name: "Front (Clothed)",
  11160. image: {
  11161. source: "./media/characters/sekvra/front-clothed.svg",
  11162. extra: 1,
  11163. bottom: 0.03
  11164. }
  11165. },
  11166. side: {
  11167. height: math.unit(1450, "feet"),
  11168. weight: math.unit(1.21e6, "tons"),
  11169. name: "Side",
  11170. image: {
  11171. source: "./media/characters/sekvra/side.svg",
  11172. extra: 1,
  11173. bottom: 0.025
  11174. }
  11175. },
  11176. back: {
  11177. height: math.unit(1450, "feet"),
  11178. weight: math.unit(1.21e6, "tons"),
  11179. name: "Back",
  11180. image: {
  11181. source: "./media/characters/sekvra/back.svg",
  11182. extra: 1,
  11183. bottom: 0.005
  11184. }
  11185. },
  11186. },
  11187. [
  11188. {
  11189. name: "Macro",
  11190. height: math.unit(1450, "feet"),
  11191. default: true
  11192. },
  11193. {
  11194. name: "Megamacro",
  11195. height: math.unit(15000, "feet")
  11196. },
  11197. ]
  11198. ))
  11199. characterMakers.push(() => makeCharacter(
  11200. { name: "Carmine" },
  11201. {
  11202. front: {
  11203. height: math.unit(6, "feet"),
  11204. weight: math.unit(150, "lb"),
  11205. name: "Front",
  11206. image: {
  11207. source: "./media/characters/carmine/front.svg",
  11208. extra: 1,
  11209. bottom: 0.035
  11210. }
  11211. },
  11212. frontArmor: {
  11213. height: math.unit(6, "feet"),
  11214. weight: math.unit(150, "lb"),
  11215. name: "Front (Armor)",
  11216. image: {
  11217. source: "./media/characters/carmine/front-armor.svg",
  11218. extra: 1,
  11219. bottom: 0.035
  11220. }
  11221. },
  11222. },
  11223. [
  11224. {
  11225. name: "Large",
  11226. height: math.unit(1, "mile")
  11227. },
  11228. {
  11229. name: "Huge",
  11230. height: math.unit(40, "miles"),
  11231. default: true
  11232. },
  11233. {
  11234. name: "Colossal",
  11235. height: math.unit(2500, "miles")
  11236. },
  11237. ]
  11238. ))
  11239. characterMakers.push(() => makeCharacter(
  11240. { name: "Elyssia" },
  11241. {
  11242. front: {
  11243. height: math.unit(6, "feet"),
  11244. weight: math.unit(150, "lb"),
  11245. name: "Front",
  11246. image: {
  11247. source: "./media/characters/elyssia/front.svg",
  11248. extra: 2201 / 2035,
  11249. bottom: 0.05
  11250. }
  11251. },
  11252. frontClothed: {
  11253. height: math.unit(6, "feet"),
  11254. weight: math.unit(150, "lb"),
  11255. name: "Front (Clothed)",
  11256. image: {
  11257. source: "./media/characters/elyssia/front-clothed.svg",
  11258. extra: 2201 / 2035,
  11259. bottom: 0.05
  11260. }
  11261. },
  11262. back: {
  11263. height: math.unit(6, "feet"),
  11264. weight: math.unit(150, "lb"),
  11265. name: "Back",
  11266. image: {
  11267. source: "./media/characters/elyssia/back.svg",
  11268. extra: 2201 / 2035,
  11269. bottom: 0.013
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Smaller",
  11276. height: math.unit(150, "feet")
  11277. },
  11278. {
  11279. name: "Standard",
  11280. height: math.unit(1400, "feet"),
  11281. default: true
  11282. },
  11283. {
  11284. name: "Distracted",
  11285. height: math.unit(15000, "feet")
  11286. },
  11287. ]
  11288. ))
  11289. characterMakers.push(() => makeCharacter(
  11290. { name: "Geno Maxwell" },
  11291. {
  11292. front: {
  11293. height: math.unit(7 + 4 / 12, "feet"),
  11294. weight: math.unit(500, "lb"),
  11295. name: "Front",
  11296. image: {
  11297. source: "./media/characters/geno-maxwell/front.svg",
  11298. extra: 2207 / 2040,
  11299. bottom: 0.015
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Micro",
  11306. height: math.unit(3, "inches")
  11307. },
  11308. {
  11309. name: "Normal",
  11310. height: math.unit(7 + 4 / 12, "feet"),
  11311. default: true
  11312. },
  11313. {
  11314. name: "Macro",
  11315. height: math.unit(220, "feet")
  11316. },
  11317. {
  11318. name: "Megamacro",
  11319. height: math.unit(11, "miles")
  11320. },
  11321. ]
  11322. ))
  11323. characterMakers.push(() => makeCharacter(
  11324. { name: "Regena Maxwell" },
  11325. {
  11326. front: {
  11327. height: math.unit(7 + 4 / 12, "feet"),
  11328. weight: math.unit(500, "lb"),
  11329. name: "Front",
  11330. image: {
  11331. source: "./media/characters/regena-maxwell/front.svg",
  11332. extra: 3115 / 2770,
  11333. bottom: 0.02
  11334. }
  11335. },
  11336. },
  11337. [
  11338. {
  11339. name: "Normal",
  11340. height: math.unit(7 + 4 / 12, "feet"),
  11341. default: true
  11342. },
  11343. {
  11344. name: "Macro",
  11345. height: math.unit(220, "feet")
  11346. },
  11347. {
  11348. name: "Megamacro",
  11349. height: math.unit(11, "miles")
  11350. },
  11351. ]
  11352. ))
  11353. characterMakers.push(() => makeCharacter(
  11354. { name: "XGlidingDragonX" },
  11355. {
  11356. front: {
  11357. height: math.unit(6, "feet"),
  11358. weight: math.unit(150, "lb"),
  11359. name: "Front",
  11360. image: {
  11361. source: "./media/characters/x-gliding-dragon-x/front.svg",
  11362. extra: 860 / 690,
  11363. bottom: 0.03
  11364. }
  11365. },
  11366. },
  11367. [
  11368. {
  11369. name: "Normal",
  11370. height: math.unit(1.7, "meters"),
  11371. default: true
  11372. },
  11373. ]
  11374. ))
  11375. characterMakers.push(() => makeCharacter(
  11376. { name: "Quilly" },
  11377. {
  11378. front: {
  11379. height: math.unit(6, "feet"),
  11380. weight: math.unit(150, "lb"),
  11381. name: "Front",
  11382. image: {
  11383. source: "./media/characters/quilly/front.svg",
  11384. extra: 890 / 776
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Gigamacro",
  11391. height: math.unit(404090, "miles"),
  11392. default: true
  11393. },
  11394. ]
  11395. ))
  11396. characterMakers.push(() => makeCharacter(
  11397. { name: "Tempest" },
  11398. {
  11399. front: {
  11400. height: math.unit(7 + 8 / 12, "feet"),
  11401. weight: math.unit(350, "lb"),
  11402. name: "Front",
  11403. image: {
  11404. source: "./media/characters/tempest/front.svg",
  11405. extra: 1175 / 1086,
  11406. bottom: 0.02
  11407. }
  11408. },
  11409. },
  11410. [
  11411. {
  11412. name: "Normal",
  11413. height: math.unit(7 + 8 / 12, "feet"),
  11414. default: true
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Rodger" },
  11420. {
  11421. side: {
  11422. height: math.unit(4 + 5 / 12, "feet"),
  11423. weight: math.unit(80, "lb"),
  11424. name: "Side",
  11425. image: {
  11426. source: "./media/characters/rodger/side.svg",
  11427. extra: 1235 / 1118
  11428. }
  11429. },
  11430. },
  11431. [
  11432. {
  11433. name: "Micro",
  11434. height: math.unit(1, "inch")
  11435. },
  11436. {
  11437. name: "Normal",
  11438. height: math.unit(4 + 5 / 12, "feet"),
  11439. default: true
  11440. },
  11441. {
  11442. name: "Macro",
  11443. height: math.unit(120, "feet")
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Danyel" },
  11449. {
  11450. front: {
  11451. height: math.unit(6, "feet"),
  11452. weight: math.unit(150, "lb"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/danyel/front.svg",
  11456. extra: 1185 / 1123,
  11457. bottom: 0.05
  11458. }
  11459. },
  11460. },
  11461. [
  11462. {
  11463. name: "Shrunken",
  11464. height: math.unit(0.5, "mm")
  11465. },
  11466. {
  11467. name: "Micro",
  11468. height: math.unit(1, "mm"),
  11469. default: true
  11470. },
  11471. {
  11472. name: "Upsized",
  11473. height: math.unit(5 + 5 / 12, "feet")
  11474. },
  11475. ]
  11476. ))
  11477. characterMakers.push(() => makeCharacter(
  11478. { name: "Vivian Bijoux" },
  11479. {
  11480. front: {
  11481. height: math.unit(5 + 6 / 12, "feet"),
  11482. weight: math.unit(200, "lb"),
  11483. name: "Front",
  11484. image: {
  11485. source: "./media/characters/vivian-bijoux/front.svg",
  11486. extra: 1,
  11487. bottom: 0.072
  11488. }
  11489. },
  11490. },
  11491. [
  11492. {
  11493. name: "Normal",
  11494. height: math.unit(5 + 6 / 12, "feet"),
  11495. default: true
  11496. },
  11497. {
  11498. name: "Bad Dream",
  11499. height: math.unit(500, "feet")
  11500. },
  11501. {
  11502. name: "Nightmare",
  11503. height: math.unit(500, "miles")
  11504. },
  11505. ]
  11506. ))
  11507. characterMakers.push(() => makeCharacter(
  11508. { name: "Zeta" },
  11509. {
  11510. front: {
  11511. height: math.unit(6 + 1 / 12, "feet"),
  11512. weight: math.unit(260, "lb"),
  11513. name: "Front",
  11514. image: {
  11515. source: "./media/characters/zeta/front.svg",
  11516. extra: 1968 / 1889,
  11517. bottom: 0.06
  11518. }
  11519. },
  11520. back: {
  11521. height: math.unit(6 + 1 / 12, "feet"),
  11522. weight: math.unit(260, "lb"),
  11523. name: "Back",
  11524. image: {
  11525. source: "./media/characters/zeta/back.svg",
  11526. extra: 1944 / 1858,
  11527. bottom: 0.03
  11528. }
  11529. },
  11530. hand: {
  11531. height: math.unit(1.112, "feet"),
  11532. name: "Hand",
  11533. image: {
  11534. source: "./media/characters/zeta/hand.svg"
  11535. }
  11536. },
  11537. foot: {
  11538. height: math.unit(1.48, "feet"),
  11539. name: "Foot",
  11540. image: {
  11541. source: "./media/characters/zeta/foot.svg"
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Micro",
  11548. height: math.unit(6, "inches")
  11549. },
  11550. {
  11551. name: "Normal",
  11552. height: math.unit(6 + 1 / 12, "feet"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Macro",
  11557. height: math.unit(20, "feet")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Jamie Larsen" },
  11563. {
  11564. front: {
  11565. height: math.unit(6, "feet"),
  11566. weight: math.unit(150, "lb"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/jamie-larsen/front.svg",
  11570. extra: 962 / 933,
  11571. bottom: 0.02
  11572. }
  11573. },
  11574. back: {
  11575. height: math.unit(6, "feet"),
  11576. weight: math.unit(150, "lb"),
  11577. name: "Back",
  11578. image: {
  11579. source: "./media/characters/jamie-larsen/back.svg",
  11580. extra: 997 / 946
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Macro",
  11587. height: math.unit(28 + 7 / 12, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Macro+",
  11592. height: math.unit(180, "feet")
  11593. },
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(10, "miles")
  11597. },
  11598. {
  11599. name: "Gigamacro",
  11600. height: math.unit(200000, "miles")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Vance" },
  11606. {
  11607. front: {
  11608. height: math.unit(6, "feet"),
  11609. weight: math.unit(120, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/vance/front.svg",
  11613. extra: 1980 / 1890,
  11614. bottom: 0.09
  11615. }
  11616. },
  11617. back: {
  11618. height: math.unit(6, "feet"),
  11619. weight: math.unit(120, "lb"),
  11620. name: "Back",
  11621. image: {
  11622. source: "./media/characters/vance/back.svg",
  11623. extra: 2081 / 1994,
  11624. bottom: 0.014
  11625. }
  11626. },
  11627. hand: {
  11628. height: math.unit(0.88, "feet"),
  11629. name: "Hand",
  11630. image: {
  11631. source: "./media/characters/vance/hand.svg"
  11632. }
  11633. },
  11634. foot: {
  11635. height: math.unit(0.64, "feet"),
  11636. name: "Foot",
  11637. image: {
  11638. source: "./media/characters/vance/foot.svg"
  11639. }
  11640. },
  11641. },
  11642. [
  11643. {
  11644. name: "Small",
  11645. height: math.unit(90, "feet"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Macro",
  11650. height: math.unit(100, "meters")
  11651. },
  11652. {
  11653. name: "Megamacro",
  11654. height: math.unit(15, "miles")
  11655. },
  11656. ]
  11657. ))
  11658. characterMakers.push(() => makeCharacter(
  11659. { name: "Xochitl" },
  11660. {
  11661. front: {
  11662. height: math.unit(6, "feet"),
  11663. weight: math.unit(180, "lb"),
  11664. name: "Front",
  11665. image: {
  11666. source: "./media/characters/xochitl/front.svg",
  11667. extra: 2297 / 2261,
  11668. bottom: 0.065
  11669. }
  11670. },
  11671. back: {
  11672. height: math.unit(6, "feet"),
  11673. weight: math.unit(180, "lb"),
  11674. name: "Back",
  11675. image: {
  11676. source: "./media/characters/xochitl/back.svg",
  11677. extra: 2386 / 2354,
  11678. bottom: 0.01
  11679. }
  11680. },
  11681. foot: {
  11682. height: math.unit(6 / 5 * 1.15, "feet"),
  11683. weight: math.unit(150, "lb"),
  11684. name: "Foot",
  11685. image: {
  11686. source: "./media/characters/xochitl/foot.svg"
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Macro",
  11693. height: math.unit(80, "feet")
  11694. },
  11695. {
  11696. name: "Macro+",
  11697. height: math.unit(400, "feet"),
  11698. default: true
  11699. },
  11700. {
  11701. name: "Gigamacro",
  11702. height: math.unit(80000, "miles")
  11703. },
  11704. {
  11705. name: "Gigamacro+",
  11706. height: math.unit(400000, "miles")
  11707. },
  11708. {
  11709. name: "Teramacro",
  11710. height: math.unit(300, "AU")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Vincent" },
  11716. {
  11717. front: {
  11718. height: math.unit(6, "feet"),
  11719. weight: math.unit(150, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/vincent/front.svg",
  11723. extra: 1130 / 1080,
  11724. bottom: 0.055
  11725. }
  11726. },
  11727. beak: {
  11728. height: math.unit(6 * 0.1, "feet"),
  11729. name: "Beak",
  11730. image: {
  11731. source: "./media/characters/vincent/beak.svg"
  11732. }
  11733. },
  11734. hand: {
  11735. height: math.unit(6 * 0.85, "feet"),
  11736. weight: math.unit(150, "lb"),
  11737. name: "Hand",
  11738. image: {
  11739. source: "./media/characters/vincent/hand.svg"
  11740. }
  11741. },
  11742. foot: {
  11743. height: math.unit(6 * 0.19, "feet"),
  11744. weight: math.unit(150, "lb"),
  11745. name: "Foot",
  11746. image: {
  11747. source: "./media/characters/vincent/foot.svg"
  11748. }
  11749. },
  11750. },
  11751. [
  11752. {
  11753. name: "Base",
  11754. height: math.unit(6 + 5 / 12, "feet"),
  11755. default: true
  11756. },
  11757. {
  11758. name: "Macro",
  11759. height: math.unit(300, "feet")
  11760. },
  11761. {
  11762. name: "Megamacro",
  11763. height: math.unit(2, "miles")
  11764. },
  11765. {
  11766. name: "Gigamacro",
  11767. height: math.unit(1000, "miles")
  11768. },
  11769. ]
  11770. ))
  11771. characterMakers.push(() => makeCharacter(
  11772. { name: "Jay" },
  11773. {
  11774. front: {
  11775. height: math.unit(6 + 2 / 12, "feet"),
  11776. weight: math.unit(265, "lb"),
  11777. name: "Front",
  11778. image: {
  11779. source: "./media/characters/jay/front.svg",
  11780. extra: 1510 / 1430,
  11781. bottom: 0.042
  11782. }
  11783. },
  11784. back: {
  11785. height: math.unit(6 + 2 / 12, "feet"),
  11786. weight: math.unit(265, "lb"),
  11787. name: "Back",
  11788. image: {
  11789. source: "./media/characters/jay/back.svg",
  11790. extra: 1510 / 1430,
  11791. bottom: 0.025
  11792. }
  11793. },
  11794. clothed: {
  11795. height: math.unit(6 + 2 / 12, "feet"),
  11796. weight: math.unit(265, "lb"),
  11797. name: "Front (Clothed)",
  11798. image: {
  11799. source: "./media/characters/jay/clothed.svg",
  11800. extra: 744 / 699,
  11801. bottom: 0.043
  11802. }
  11803. },
  11804. head: {
  11805. height: math.unit(1.772, "feet"),
  11806. name: "Head",
  11807. image: {
  11808. source: "./media/characters/jay/head.svg"
  11809. }
  11810. },
  11811. sizeRay: {
  11812. height: math.unit(1.331, "feet"),
  11813. name: "Size Ray",
  11814. image: {
  11815. source: "./media/characters/jay/size-ray.svg"
  11816. }
  11817. },
  11818. },
  11819. [
  11820. {
  11821. name: "Micro",
  11822. height: math.unit(1, "inch")
  11823. },
  11824. {
  11825. name: "Normal",
  11826. height: math.unit(6 + 2 / 12, "feet"),
  11827. default: true
  11828. },
  11829. {
  11830. name: "Macro",
  11831. height: math.unit(1, "mile")
  11832. },
  11833. {
  11834. name: "Megamacro",
  11835. height: math.unit(100, "miles")
  11836. },
  11837. ]
  11838. ))
  11839. characterMakers.push(() => makeCharacter(
  11840. { name: "Coatl" },
  11841. {
  11842. front: {
  11843. height: math.unit(2, "meters"),
  11844. weight: math.unit(500, "kg"),
  11845. name: "Front",
  11846. image: {
  11847. source: "./media/characters/coatl/front.svg",
  11848. extra: 3948 / 3500,
  11849. bottom: 0.082
  11850. }
  11851. },
  11852. },
  11853. [
  11854. {
  11855. name: "Normal",
  11856. height: math.unit(4, "meters")
  11857. },
  11858. {
  11859. name: "Macro",
  11860. height: math.unit(100, "meters"),
  11861. default: true
  11862. },
  11863. {
  11864. name: "Macro+",
  11865. height: math.unit(300, "meters")
  11866. },
  11867. {
  11868. name: "Megamacro",
  11869. height: math.unit(3, "gigameters")
  11870. },
  11871. {
  11872. name: "Megamacro+",
  11873. height: math.unit(300, "terameters")
  11874. },
  11875. {
  11876. name: "Megamacro++",
  11877. height: math.unit(3, "lightyears")
  11878. },
  11879. ]
  11880. ))
  11881. characterMakers.push(() => makeCharacter(
  11882. { name: "Shiroryu" },
  11883. {
  11884. front: {
  11885. height: math.unit(6, "feet"),
  11886. weight: math.unit(50, "kg"),
  11887. name: "front",
  11888. image: {
  11889. source: "./media/characters/shiroryu/front.svg",
  11890. extra: 1990 / 1935
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Mortal Mingling",
  11897. height: math.unit(3, "meters")
  11898. },
  11899. {
  11900. name: "Kaiju-ish",
  11901. height: math.unit(250, "meters")
  11902. },
  11903. {
  11904. name: "Somewhat Godly",
  11905. height: math.unit(400, "km"),
  11906. default: true
  11907. },
  11908. {
  11909. name: "Planetary",
  11910. height: math.unit(300, "megameters")
  11911. },
  11912. {
  11913. name: "Galaxy-dwarfing",
  11914. height: math.unit(450, "kiloparsecs")
  11915. },
  11916. {
  11917. name: "Universe Eater",
  11918. height: math.unit(150, "gigaparsecs")
  11919. },
  11920. {
  11921. name: "Almost Immeasurable",
  11922. height: math.unit(1.3e266, "yottaparsecs")
  11923. },
  11924. ]
  11925. ))
  11926. characterMakers.push(() => makeCharacter(
  11927. { name: "Umeko" },
  11928. {
  11929. front: {
  11930. height: math.unit(6, "feet"),
  11931. weight: math.unit(150, "lb"),
  11932. name: "Front",
  11933. image: {
  11934. source: "./media/characters/umeko/front.svg",
  11935. extra: 1,
  11936. bottom: 0.019
  11937. }
  11938. },
  11939. frontArmored: {
  11940. height: math.unit(6, "feet"),
  11941. weight: math.unit(150, "lb"),
  11942. name: "Front (Armored)",
  11943. image: {
  11944. source: "./media/characters/umeko/front-armored.svg",
  11945. extra: 1,
  11946. bottom: 0.021
  11947. }
  11948. },
  11949. },
  11950. [
  11951. {
  11952. name: "Macro",
  11953. height: math.unit(220, "feet"),
  11954. default: true
  11955. },
  11956. {
  11957. name: "Guardian Dragon",
  11958. height: math.unit(50, "miles")
  11959. },
  11960. {
  11961. name: "Cosmic",
  11962. height: math.unit(800000, "miles")
  11963. },
  11964. ]
  11965. ))
  11966. characterMakers.push(() => makeCharacter(
  11967. { name: "Cassidy" },
  11968. {
  11969. front: {
  11970. height: math.unit(6, "feet"),
  11971. weight: math.unit(150, "lb"),
  11972. name: "Front",
  11973. image: {
  11974. source: "./media/characters/cassidy/front.svg",
  11975. extra: 1,
  11976. bottom: 0.043
  11977. }
  11978. },
  11979. },
  11980. [
  11981. {
  11982. name: "Canon Height",
  11983. height: math.unit(120, "feet"),
  11984. default: true
  11985. },
  11986. {
  11987. name: "Macro+",
  11988. height: math.unit(400, "feet")
  11989. },
  11990. {
  11991. name: "Macro++",
  11992. height: math.unit(4000, "feet")
  11993. },
  11994. {
  11995. name: "Megamacro",
  11996. height: math.unit(3, "miles")
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Isaac" },
  12002. {
  12003. front: {
  12004. height: math.unit(6, "feet"),
  12005. weight: math.unit(150, "lb"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/isaac/front.svg",
  12009. extra: 896 / 815,
  12010. bottom: 0.11
  12011. }
  12012. },
  12013. },
  12014. [
  12015. {
  12016. name: "Human Size",
  12017. height: math.unit(8, "feet"),
  12018. default: true
  12019. },
  12020. {
  12021. name: "Macro",
  12022. height: math.unit(400, "feet")
  12023. },
  12024. {
  12025. name: "Megamacro",
  12026. height: math.unit(50, "miles")
  12027. },
  12028. {
  12029. name: "Canon Height",
  12030. height: math.unit(200, "AU")
  12031. },
  12032. ]
  12033. ))
  12034. characterMakers.push(() => makeCharacter(
  12035. { name: "Sleekit" },
  12036. {
  12037. front: {
  12038. height: math.unit(6, "feet"),
  12039. weight: math.unit(72, "kg"),
  12040. name: "Front",
  12041. image: {
  12042. source: "./media/characters/sleekit/front.svg",
  12043. extra: 4693 / 4487,
  12044. bottom: 0.012
  12045. }
  12046. },
  12047. },
  12048. [
  12049. {
  12050. name: "Minimum Height",
  12051. height: math.unit(10, "meters")
  12052. },
  12053. {
  12054. name: "Smaller",
  12055. height: math.unit(25, "meters")
  12056. },
  12057. {
  12058. name: "Larger",
  12059. height: math.unit(38, "meters"),
  12060. default: true
  12061. },
  12062. {
  12063. name: "Maximum height",
  12064. height: math.unit(100, "meters")
  12065. },
  12066. ]
  12067. ))
  12068. characterMakers.push(() => makeCharacter(
  12069. { name: "Nillia" },
  12070. {
  12071. front: {
  12072. height: math.unit(6, "feet"),
  12073. weight: math.unit(150, "lb"),
  12074. name: "Front",
  12075. image: {
  12076. source: "./media/characters/nillia/front.svg",
  12077. extra: 2195 / 2037,
  12078. bottom: 0.005
  12079. }
  12080. },
  12081. back: {
  12082. height: math.unit(6, "feet"),
  12083. weight: math.unit(150, "lb"),
  12084. name: "Back",
  12085. image: {
  12086. source: "./media/characters/nillia/back.svg",
  12087. extra: 2195 / 2037,
  12088. bottom: 0.005
  12089. }
  12090. },
  12091. },
  12092. [
  12093. {
  12094. name: "Canon Height",
  12095. height: math.unit(489, "feet"),
  12096. default: true
  12097. }
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Mesmyriza" },
  12102. {
  12103. front: {
  12104. height: math.unit(6, "feet"),
  12105. weight: math.unit(150, "lb"),
  12106. name: "Front",
  12107. image: {
  12108. source: "./media/characters/mesmyriza/front.svg",
  12109. extra: 2067 / 1784,
  12110. bottom: 0.035
  12111. }
  12112. },
  12113. foot: {
  12114. height: math.unit(6 / (250 / 35), "feet"),
  12115. name: "Foot",
  12116. image: {
  12117. source: "./media/characters/mesmyriza/foot.svg"
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Macro",
  12124. height: math.unit(457, "meters"),
  12125. default: true
  12126. },
  12127. {
  12128. name: "Megamacro",
  12129. height: math.unit(8, "megameters")
  12130. },
  12131. ]
  12132. ))
  12133. characterMakers.push(() => makeCharacter(
  12134. { name: "Saudade" },
  12135. {
  12136. front: {
  12137. height: math.unit(6, "feet"),
  12138. weight: math.unit(250, "lb"),
  12139. name: "Front",
  12140. image: {
  12141. source: "./media/characters/saudade/front.svg",
  12142. extra: 1172 / 1139,
  12143. bottom: 0.035
  12144. }
  12145. },
  12146. },
  12147. [
  12148. {
  12149. name: "Micro",
  12150. height: math.unit(3, "inches")
  12151. },
  12152. {
  12153. name: "Normal",
  12154. height: math.unit(6, "feet"),
  12155. default: true
  12156. },
  12157. {
  12158. name: "Macro",
  12159. height: math.unit(50, "feet")
  12160. },
  12161. {
  12162. name: "Megamacro",
  12163. height: math.unit(2800, "feet")
  12164. },
  12165. ]
  12166. ))
  12167. characterMakers.push(() => makeCharacter(
  12168. { name: "Keireer" },
  12169. {
  12170. front: {
  12171. height: math.unit(5 + 4 / 12, "feet"),
  12172. weight: math.unit(100, "lb"),
  12173. name: "Front",
  12174. image: {
  12175. source: "./media/characters/keireer/front.svg",
  12176. extra: 716 / 666,
  12177. bottom: 0.05
  12178. }
  12179. },
  12180. },
  12181. [
  12182. {
  12183. name: "Normal",
  12184. height: math.unit(5 + 4 / 12, "feet"),
  12185. default: true
  12186. },
  12187. ]
  12188. ))
  12189. characterMakers.push(() => makeCharacter(
  12190. { name: "Mirja" },
  12191. {
  12192. front: {
  12193. height: math.unit(6, "feet"),
  12194. weight: math.unit(90, "kg"),
  12195. name: "Front",
  12196. image: {
  12197. source: "./media/characters/mirja/front.svg",
  12198. extra: 1789 / 1683,
  12199. bottom: 0.05
  12200. }
  12201. },
  12202. frontDressed: {
  12203. height: math.unit(6, "feet"),
  12204. weight: math.unit(90, "lb"),
  12205. name: "Front (Dressed)",
  12206. image: {
  12207. source: "./media/characters/mirja/front-dressed.svg",
  12208. extra: 1789 / 1683,
  12209. bottom: 0.05
  12210. }
  12211. },
  12212. back: {
  12213. height: math.unit(6, "feet"),
  12214. weight: math.unit(90, "lb"),
  12215. name: "Back",
  12216. image: {
  12217. source: "./media/characters/mirja/back.svg",
  12218. extra: 953 / 917,
  12219. bottom: 0.017
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "\"Incognito\"",
  12226. height: math.unit(3, "meters")
  12227. },
  12228. {
  12229. name: "Strolling Size",
  12230. height: math.unit(15, "km")
  12231. },
  12232. {
  12233. name: "Larger Strolling Size",
  12234. height: math.unit(400, "km")
  12235. },
  12236. {
  12237. name: "Preferred Size",
  12238. height: math.unit(5000, "km")
  12239. },
  12240. {
  12241. name: "True Size",
  12242. height: math.unit(30657809462086840000000000000000, "parsecs"),
  12243. default: true
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Nightraver" },
  12249. {
  12250. front: {
  12251. height: math.unit(15, "feet"),
  12252. weight: math.unit(880, "kg"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/nightraver/front.svg",
  12256. extra: 2444 / 2160,
  12257. bottom: 0.027
  12258. }
  12259. },
  12260. back: {
  12261. height: math.unit(15, "feet"),
  12262. weight: math.unit(880, "kg"),
  12263. name: "Back",
  12264. image: {
  12265. source: "./media/characters/nightraver/back.svg",
  12266. extra: 2309 / 2180,
  12267. bottom: 0.005
  12268. }
  12269. },
  12270. sole: {
  12271. height: math.unit(2.878, "feet"),
  12272. name: "Sole",
  12273. image: {
  12274. source: "./media/characters/nightraver/sole.svg"
  12275. }
  12276. },
  12277. foot: {
  12278. height: math.unit(2.285, "feet"),
  12279. name: "Foot",
  12280. image: {
  12281. source: "./media/characters/nightraver/foot.svg"
  12282. }
  12283. },
  12284. maw: {
  12285. height: math.unit(2.67, "feet"),
  12286. name: "Maw",
  12287. image: {
  12288. source: "./media/characters/nightraver/maw.svg"
  12289. }
  12290. },
  12291. },
  12292. [
  12293. {
  12294. name: "Micro",
  12295. height: math.unit(1, "cm")
  12296. },
  12297. {
  12298. name: "Normal",
  12299. height: math.unit(15, "feet"),
  12300. default: true
  12301. },
  12302. {
  12303. name: "Macro",
  12304. height: math.unit(300, "feet")
  12305. },
  12306. {
  12307. name: "Megamacro",
  12308. height: math.unit(300, "miles")
  12309. },
  12310. {
  12311. name: "Gigamacro",
  12312. height: math.unit(10000, "miles")
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "Arc" },
  12318. {
  12319. side: {
  12320. height: math.unit(2, "inches"),
  12321. weight: math.unit(5, "grams"),
  12322. name: "Side",
  12323. image: {
  12324. source: "./media/characters/arc/side.svg"
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Micro",
  12331. height: math.unit(2, "inches"),
  12332. default: true
  12333. },
  12334. ]
  12335. ))
  12336. characterMakers.push(() => makeCharacter(
  12337. { name: "Nebula Shahar" },
  12338. {
  12339. front: {
  12340. height: math.unit(1.1938, "meters"),
  12341. weight: math.unit(54, "kg"),
  12342. name: "Front",
  12343. image: {
  12344. source: "./media/characters/nebula-shahar/front.svg",
  12345. extra: 1642 / 1436,
  12346. bottom: 0.06
  12347. }
  12348. },
  12349. },
  12350. [
  12351. {
  12352. name: "Megamicro",
  12353. height: math.unit(0.3, "mm")
  12354. },
  12355. {
  12356. name: "Micro",
  12357. height: math.unit(3, "cm")
  12358. },
  12359. {
  12360. name: "Normal",
  12361. height: math.unit(138, "cm"),
  12362. default: true
  12363. },
  12364. {
  12365. name: "Macro",
  12366. height: math.unit(30, "m")
  12367. },
  12368. ]
  12369. ))
  12370. characterMakers.push(() => makeCharacter(
  12371. { name: "Shayla" },
  12372. {
  12373. front: {
  12374. height: math.unit(5.24, "feet"),
  12375. weight: math.unit(150, "lb"),
  12376. name: "Front",
  12377. image: {
  12378. source: "./media/characters/shayla/front.svg",
  12379. extra: 1512 / 1414,
  12380. bottom: 0.01
  12381. }
  12382. },
  12383. back: {
  12384. height: math.unit(5.24, "feet"),
  12385. weight: math.unit(150, "lb"),
  12386. name: "Back",
  12387. image: {
  12388. source: "./media/characters/shayla/back.svg",
  12389. extra: 1512 / 1414
  12390. }
  12391. },
  12392. hand: {
  12393. height: math.unit(0.7781496062992126, "feet"),
  12394. name: "Hand",
  12395. image: {
  12396. source: "./media/characters/shayla/hand.svg"
  12397. }
  12398. },
  12399. foot: {
  12400. height: math.unit(1.4206036745406823, "feet"),
  12401. name: "Foot",
  12402. image: {
  12403. source: "./media/characters/shayla/foot.svg"
  12404. }
  12405. },
  12406. },
  12407. [
  12408. {
  12409. name: "Micro",
  12410. height: math.unit(0.32, "feet")
  12411. },
  12412. {
  12413. name: "Normal",
  12414. height: math.unit(5.24, "feet"),
  12415. default: true
  12416. },
  12417. {
  12418. name: "Macro",
  12419. height: math.unit(492.12, "feet")
  12420. },
  12421. {
  12422. name: "Megamacro",
  12423. height: math.unit(186.41, "miles")
  12424. },
  12425. ]
  12426. ))
  12427. characterMakers.push(() => makeCharacter(
  12428. { name: "Pia Jr." },
  12429. {
  12430. front: {
  12431. height: math.unit(2.2, "m"),
  12432. weight: math.unit(120, "kg"),
  12433. name: "Front",
  12434. image: {
  12435. source: "./media/characters/pia-jr/front.svg",
  12436. extra: 1000 / 970,
  12437. bottom: 0.035
  12438. }
  12439. },
  12440. hand: {
  12441. height: math.unit(0.759 * 7.21 / 6, "feet"),
  12442. name: "Hand",
  12443. image: {
  12444. source: "./media/characters/pia-jr/hand.svg"
  12445. }
  12446. },
  12447. paw: {
  12448. height: math.unit(1.185 * 7.21 / 6, "feet"),
  12449. name: "Paw",
  12450. image: {
  12451. source: "./media/characters/pia-jr/paw.svg"
  12452. }
  12453. },
  12454. },
  12455. [
  12456. {
  12457. name: "Micro",
  12458. height: math.unit(1.2, "cm")
  12459. },
  12460. {
  12461. name: "Normal",
  12462. height: math.unit(2.2, "m"),
  12463. default: true
  12464. },
  12465. {
  12466. name: "Macro",
  12467. height: math.unit(180, "m")
  12468. },
  12469. {
  12470. name: "Megamacro",
  12471. height: math.unit(420, "km")
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "Pia Sr." },
  12477. {
  12478. front: {
  12479. height: math.unit(2, "m"),
  12480. weight: math.unit(115, "kg"),
  12481. name: "Front",
  12482. image: {
  12483. source: "./media/characters/pia-sr/front.svg",
  12484. extra: 760 / 730,
  12485. bottom: 0.015
  12486. }
  12487. },
  12488. back: {
  12489. height: math.unit(2, "m"),
  12490. weight: math.unit(115, "kg"),
  12491. name: "Back",
  12492. image: {
  12493. source: "./media/characters/pia-sr/back.svg",
  12494. extra: 760 / 730,
  12495. bottom: 0.01
  12496. }
  12497. },
  12498. hand: {
  12499. height: math.unit(0.89 * 6.56 / 6, "feet"),
  12500. name: "Hand",
  12501. image: {
  12502. source: "./media/characters/pia-sr/hand.svg"
  12503. }
  12504. },
  12505. foot: {
  12506. height: math.unit(1.83, "feet"),
  12507. name: "Foot",
  12508. image: {
  12509. source: "./media/characters/pia-sr/foot.svg"
  12510. }
  12511. },
  12512. },
  12513. [
  12514. {
  12515. name: "Micro",
  12516. height: math.unit(88, "mm")
  12517. },
  12518. {
  12519. name: "Normal",
  12520. height: math.unit(2, "m"),
  12521. default: true
  12522. },
  12523. {
  12524. name: "Macro",
  12525. height: math.unit(200, "m")
  12526. },
  12527. {
  12528. name: "Megamacro",
  12529. height: math.unit(420, "km")
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "KIBIBYTE" },
  12535. {
  12536. front: {
  12537. height: math.unit(8 + 2 / 12, "feet"),
  12538. weight: math.unit(300, "lb"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/kibibyte/front.svg",
  12542. extra: 2221 / 2098,
  12543. bottom: 0.04
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Normal",
  12550. height: math.unit(8 + 2 / 12, "feet"),
  12551. default: true
  12552. },
  12553. {
  12554. name: "Socialable Macro",
  12555. height: math.unit(50, "feet")
  12556. },
  12557. {
  12558. name: "Macro",
  12559. height: math.unit(300, "feet")
  12560. },
  12561. {
  12562. name: "Megamacro",
  12563. height: math.unit(500, "miles")
  12564. },
  12565. ]
  12566. ))
  12567. characterMakers.push(() => makeCharacter(
  12568. { name: "Felix" },
  12569. {
  12570. front: {
  12571. height: math.unit(6, "feet"),
  12572. weight: math.unit(150, "lb"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/felix/front.svg",
  12576. extra: 762 / 722,
  12577. bottom: 0.02
  12578. }
  12579. },
  12580. frontClothed: {
  12581. height: math.unit(6, "feet"),
  12582. weight: math.unit(150, "lb"),
  12583. name: "Front (Clothed)",
  12584. image: {
  12585. source: "./media/characters/felix/front-clothed.svg",
  12586. extra: 762 / 722,
  12587. bottom: 0.02
  12588. }
  12589. },
  12590. },
  12591. [
  12592. {
  12593. name: "Normal",
  12594. height: math.unit(6 + 8 / 12, "feet"),
  12595. default: true
  12596. },
  12597. {
  12598. name: "Macro",
  12599. height: math.unit(2600, "feet")
  12600. },
  12601. {
  12602. name: "Megamacro",
  12603. height: math.unit(450, "miles")
  12604. },
  12605. ]
  12606. ))
  12607. characterMakers.push(() => makeCharacter(
  12608. { name: "Tobo" },
  12609. {
  12610. front: {
  12611. height: math.unit(6 + 1 / 12, "feet"),
  12612. weight: math.unit(250, "lb"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/tobo/front.svg",
  12616. extra: 608 / 586,
  12617. bottom: 0.023
  12618. }
  12619. },
  12620. back: {
  12621. height: math.unit(6 + 1 / 12, "feet"),
  12622. weight: math.unit(250, "lb"),
  12623. name: "Back",
  12624. image: {
  12625. source: "./media/characters/tobo/back.svg",
  12626. extra: 608 / 586
  12627. }
  12628. },
  12629. },
  12630. [
  12631. {
  12632. name: "Nano",
  12633. height: math.unit(2, "nm")
  12634. },
  12635. {
  12636. name: "Megamicro",
  12637. height: math.unit(0.1, "mm")
  12638. },
  12639. {
  12640. name: "Micro",
  12641. height: math.unit(1, "inch"),
  12642. default: true
  12643. },
  12644. {
  12645. name: "Human-sized",
  12646. height: math.unit(6 + 1 / 12, "feet")
  12647. },
  12648. {
  12649. name: "Macro",
  12650. height: math.unit(250, "feet")
  12651. },
  12652. {
  12653. name: "Megamacro",
  12654. height: math.unit(75, "miles")
  12655. },
  12656. {
  12657. name: "Texas-sized",
  12658. height: math.unit(750, "miles")
  12659. },
  12660. {
  12661. name: "Teramacro",
  12662. height: math.unit(50000, "miles")
  12663. },
  12664. ]
  12665. ))
  12666. characterMakers.push(() => makeCharacter(
  12667. { name: "Danny Kapowsky" },
  12668. {
  12669. front: {
  12670. height: math.unit(6, "feet"),
  12671. weight: math.unit(269, "lb"),
  12672. name: "Front",
  12673. image: {
  12674. source: "./media/characters/danny-kapowsky/front.svg",
  12675. extra: 766 / 736,
  12676. bottom: 0.044
  12677. }
  12678. },
  12679. back: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(269, "lb"),
  12682. name: "Back",
  12683. image: {
  12684. source: "./media/characters/danny-kapowsky/back.svg",
  12685. extra: 797 / 760,
  12686. bottom: 0.025
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Macro",
  12693. height: math.unit(150, "feet"),
  12694. default: true
  12695. },
  12696. {
  12697. name: "Macro+",
  12698. height: math.unit(200, "feet")
  12699. },
  12700. {
  12701. name: "Macro++",
  12702. height: math.unit(300, "feet")
  12703. },
  12704. {
  12705. name: "Macro+++",
  12706. height: math.unit(400, "feet")
  12707. },
  12708. ]
  12709. ))
  12710. characterMakers.push(() => makeCharacter(
  12711. { name: "Finn" },
  12712. {
  12713. side: {
  12714. height: math.unit(6, "feet"),
  12715. weight: math.unit(170, "lb"),
  12716. name: "Side",
  12717. image: {
  12718. source: "./media/characters/finn/side.svg",
  12719. extra: 1953 / 1807,
  12720. bottom: 0.057
  12721. }
  12722. },
  12723. },
  12724. [
  12725. {
  12726. name: "Megamacro",
  12727. height: math.unit(14445, "feet"),
  12728. default: true
  12729. },
  12730. ]
  12731. ))
  12732. characterMakers.push(() => makeCharacter(
  12733. { name: "Roy" },
  12734. {
  12735. front: {
  12736. height: math.unit(5 + 6 / 12, "feet"),
  12737. weight: math.unit(125, "lb"),
  12738. name: "Front",
  12739. image: {
  12740. source: "./media/characters/roy/front.svg",
  12741. extra: 1,
  12742. bottom: 0.11
  12743. }
  12744. },
  12745. },
  12746. [
  12747. {
  12748. name: "Micro",
  12749. height: math.unit(3, "inches"),
  12750. default: true
  12751. },
  12752. {
  12753. name: "Normal",
  12754. height: math.unit(5 + 6 / 12, "feet")
  12755. },
  12756. {
  12757. name: "Lesser Macro",
  12758. height: math.unit(60, "feet")
  12759. },
  12760. {
  12761. name: "Greater Macro",
  12762. height: math.unit(120, "feet")
  12763. },
  12764. ]
  12765. ))
  12766. characterMakers.push(() => makeCharacter(
  12767. { name: "Aevsivs" },
  12768. {
  12769. front: {
  12770. height: math.unit(6, "feet"),
  12771. weight: math.unit(100, "lb"),
  12772. name: "Front",
  12773. image: {
  12774. source: "./media/characters/aevsivs/front.svg",
  12775. extra: 1,
  12776. bottom: 0.03
  12777. }
  12778. },
  12779. back: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(100, "lb"),
  12782. name: "Back",
  12783. image: {
  12784. source: "./media/characters/aevsivs/back.svg"
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Micro",
  12791. height: math.unit(2, "inches"),
  12792. default: true
  12793. },
  12794. {
  12795. name: "Normal",
  12796. height: math.unit(5, "feet")
  12797. },
  12798. ]
  12799. ))
  12800. characterMakers.push(() => makeCharacter(
  12801. { name: "Hildegard" },
  12802. {
  12803. front: {
  12804. height: math.unit(5 + 7 / 12, "feet"),
  12805. weight: math.unit(159, "lb"),
  12806. name: "Front",
  12807. image: {
  12808. source: "./media/characters/hildegard/front.svg",
  12809. extra: 312 / 286,
  12810. bottom: 0.005
  12811. }
  12812. },
  12813. },
  12814. [
  12815. {
  12816. name: "Normal",
  12817. height: math.unit(5 + 7 / 12, "feet"),
  12818. default: true
  12819. },
  12820. ]
  12821. ))
  12822. characterMakers.push(() => makeCharacter(
  12823. { name: "Bernard & Wilder" },
  12824. {
  12825. bernard: {
  12826. height: math.unit(2 + 7 / 12, "feet"),
  12827. weight: math.unit(66, "lb"),
  12828. name: "Bernard",
  12829. rename: true,
  12830. image: {
  12831. source: "./media/characters/bernard-wilder/bernard.svg",
  12832. extra: 192 / 128,
  12833. bottom: 0.05
  12834. }
  12835. },
  12836. wilder: {
  12837. height: math.unit(5 + 8 / 12, "feet"),
  12838. weight: math.unit(143, "lb"),
  12839. name: "Wilder",
  12840. rename: true,
  12841. image: {
  12842. source: "./media/characters/bernard-wilder/wilder.svg",
  12843. extra: 361 / 312,
  12844. bottom: 0.02
  12845. }
  12846. },
  12847. },
  12848. [
  12849. {
  12850. name: "Normal",
  12851. height: math.unit(2 + 7 / 12, "feet"),
  12852. default: true
  12853. },
  12854. ]
  12855. ))
  12856. characterMakers.push(() => makeCharacter(
  12857. { name: "Hearth" },
  12858. {
  12859. anthro: {
  12860. height: math.unit(6 + 1 / 12, "feet"),
  12861. weight: math.unit(155, "lb"),
  12862. name: "Anthro",
  12863. image: {
  12864. source: "./media/characters/hearth/anthro.svg",
  12865. extra: 260 / 250,
  12866. bottom: 0.02
  12867. }
  12868. },
  12869. feral: {
  12870. height: math.unit(3.78, "feet"),
  12871. weight: math.unit(35, "kg"),
  12872. name: "Feral",
  12873. image: {
  12874. source: "./media/characters/hearth/feral.svg",
  12875. extra: 153 / 135,
  12876. bottom: 0.03
  12877. }
  12878. },
  12879. },
  12880. [
  12881. {
  12882. name: "Normal",
  12883. height: math.unit(6 + 1 / 12, "feet"),
  12884. default: true
  12885. },
  12886. ]
  12887. ))
  12888. characterMakers.push(() => makeCharacter(
  12889. { name: "Ingrid" },
  12890. {
  12891. front: {
  12892. height: math.unit(6, "feet"),
  12893. weight: math.unit(182, "lb"),
  12894. name: "Front",
  12895. image: {
  12896. source: "./media/characters/ingrid/front.svg",
  12897. extra: 294 / 268,
  12898. bottom: 0.027
  12899. }
  12900. },
  12901. },
  12902. [
  12903. {
  12904. name: "Normal",
  12905. height: math.unit(6, "feet"),
  12906. default: true
  12907. },
  12908. ]
  12909. ))
  12910. characterMakers.push(() => makeCharacter(
  12911. { name: "Malgam" },
  12912. {
  12913. eevee: {
  12914. height: math.unit(2 + 10 / 12, "feet"),
  12915. weight: math.unit(86, "lb"),
  12916. name: "Malgam",
  12917. image: {
  12918. source: "./media/characters/malgam/eevee.svg",
  12919. extra: 218 / 180,
  12920. bottom: 0.2
  12921. }
  12922. },
  12923. sylveon: {
  12924. height: math.unit(4, "feet"),
  12925. weight: math.unit(101, "lb"),
  12926. name: "Future Malgam",
  12927. rename: true,
  12928. image: {
  12929. source: "./media/characters/malgam/sylveon.svg",
  12930. extra: 371 / 325,
  12931. bottom: 0.015
  12932. }
  12933. },
  12934. gigantamax: {
  12935. height: math.unit(50, "feet"),
  12936. name: "Gigantamax Malgam",
  12937. rename: true,
  12938. image: {
  12939. source: "./media/characters/malgam/gigantamax.svg"
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Normal",
  12946. height: math.unit(2 + 10 / 12, "feet"),
  12947. default: true
  12948. },
  12949. ]
  12950. ))
  12951. characterMakers.push(() => makeCharacter(
  12952. { name: "Fleur" },
  12953. {
  12954. front: {
  12955. height: math.unit(5 + 11 / 12, "feet"),
  12956. weight: math.unit(188, "lb"),
  12957. name: "Front",
  12958. image: {
  12959. source: "./media/characters/fleur/front.svg",
  12960. extra: 309 / 283,
  12961. bottom: 0.007
  12962. }
  12963. },
  12964. },
  12965. [
  12966. {
  12967. name: "Normal",
  12968. height: math.unit(5 + 11 / 12, "feet"),
  12969. default: true
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Jude" },
  12975. {
  12976. front: {
  12977. height: math.unit(5 + 4 / 12, "feet"),
  12978. weight: math.unit(122, "lb"),
  12979. name: "Front",
  12980. image: {
  12981. source: "./media/characters/jude/front.svg",
  12982. extra: 288 / 273,
  12983. bottom: 0.03
  12984. }
  12985. },
  12986. },
  12987. [
  12988. {
  12989. name: "Normal",
  12990. height: math.unit(5 + 4 / 12, "feet"),
  12991. default: true
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "Seara" },
  12997. {
  12998. front: {
  12999. height: math.unit(5 + 11 / 12, "feet"),
  13000. weight: math.unit(190, "lb"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/seara/front.svg",
  13004. extra: 1,
  13005. bottom: 0.05
  13006. }
  13007. },
  13008. },
  13009. [
  13010. {
  13011. name: "Normal",
  13012. height: math.unit(5 + 11 / 12, "feet"),
  13013. default: true
  13014. },
  13015. ]
  13016. ))
  13017. characterMakers.push(() => makeCharacter(
  13018. { name: "Caspian" },
  13019. {
  13020. front: {
  13021. height: math.unit(16 + 5 / 12, "feet"),
  13022. weight: math.unit(524, "lb"),
  13023. name: "Front",
  13024. image: {
  13025. source: "./media/characters/caspian/front.svg",
  13026. extra: 1,
  13027. bottom: 0.04
  13028. }
  13029. },
  13030. },
  13031. [
  13032. {
  13033. name: "Normal",
  13034. height: math.unit(16 + 5 / 12, "feet"),
  13035. default: true
  13036. },
  13037. ]
  13038. ))
  13039. characterMakers.push(() => makeCharacter(
  13040. { name: "Mika" },
  13041. {
  13042. front: {
  13043. height: math.unit(5 + 7 / 12, "feet"),
  13044. weight: math.unit(170, "lb"),
  13045. name: "Front",
  13046. image: {
  13047. source: "./media/characters/mika/front.svg",
  13048. extra: 1,
  13049. bottom: 0.016
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Normal",
  13056. height: math.unit(5 + 7 / 12, "feet"),
  13057. default: true
  13058. },
  13059. ]
  13060. ))
  13061. characterMakers.push(() => makeCharacter(
  13062. { name: "Sol" },
  13063. {
  13064. front: {
  13065. height: math.unit(6 + 2 / 12, "feet"),
  13066. weight: math.unit(268, "lb"),
  13067. name: "Front",
  13068. image: {
  13069. source: "./media/characters/sol/front.svg",
  13070. extra: 247 / 231,
  13071. bottom: 0.05
  13072. }
  13073. },
  13074. },
  13075. [
  13076. {
  13077. name: "Normal",
  13078. height: math.unit(6 + 2 / 12, "feet"),
  13079. default: true
  13080. },
  13081. ]
  13082. ))
  13083. characterMakers.push(() => makeCharacter(
  13084. { name: "Umiko" },
  13085. {
  13086. buizel: {
  13087. height: math.unit(2 + 5 / 12, "feet"),
  13088. weight: math.unit(87, "lb"),
  13089. name: "Buizel",
  13090. image: {
  13091. source: "./media/characters/umiko/buizel.svg",
  13092. extra: 172 / 157,
  13093. bottom: 0.01
  13094. }
  13095. },
  13096. floatzel: {
  13097. height: math.unit(5 + 9 / 12, "feet"),
  13098. weight: math.unit(250, "lb"),
  13099. name: "Floatzel",
  13100. image: {
  13101. source: "./media/characters/umiko/floatzel.svg",
  13102. extra: 262 / 248
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Normal",
  13109. height: math.unit(2 + 5 / 12, "feet"),
  13110. default: true
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Iliac" },
  13116. {
  13117. front: {
  13118. height: math.unit(6 + 2 / 12, "feet"),
  13119. weight: math.unit(146, "lb"),
  13120. name: "Front",
  13121. image: {
  13122. source: "./media/characters/iliac/front.svg",
  13123. extra: 389 / 365,
  13124. bottom: 0.035
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Normal",
  13131. height: math.unit(6 + 2 / 12, "feet"),
  13132. default: true
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Topaz" },
  13138. {
  13139. front: {
  13140. height: math.unit(6, "feet"),
  13141. weight: math.unit(170, "lb"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/topaz/front.svg",
  13145. extra: 317 / 303,
  13146. bottom: 0.055
  13147. }
  13148. },
  13149. },
  13150. [
  13151. {
  13152. name: "Normal",
  13153. height: math.unit(6, "feet"),
  13154. default: true
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Gabriel" },
  13160. {
  13161. front: {
  13162. height: math.unit(5 + 11 / 12, "feet"),
  13163. weight: math.unit(144, "lb"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/gabriel/front.svg",
  13167. extra: 285 / 262,
  13168. bottom: 0.004
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Normal",
  13175. height: math.unit(5 + 11 / 12, "feet"),
  13176. default: true
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Tempest (Suicune)" },
  13182. {
  13183. side: {
  13184. height: math.unit(6 + 5 / 12, "feet"),
  13185. weight: math.unit(300, "lb"),
  13186. name: "Side",
  13187. image: {
  13188. source: "./media/characters/tempest-suicune/side.svg",
  13189. extra: 195 / 154,
  13190. bottom: 0.04
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(6 + 5 / 12, "feet"),
  13198. default: true
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Vulcan" },
  13204. {
  13205. front: {
  13206. height: math.unit(7 + 2 / 12, "feet"),
  13207. weight: math.unit(322, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/vulcan/front.svg",
  13211. extra: 154 / 147,
  13212. bottom: 0.04
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Normal",
  13219. height: math.unit(7 + 2 / 12, "feet"),
  13220. default: true
  13221. },
  13222. ]
  13223. ))
  13224. characterMakers.push(() => makeCharacter(
  13225. { name: "Gault" },
  13226. {
  13227. front: {
  13228. height: math.unit(5 + 10 / 12, "feet"),
  13229. weight: math.unit(264, "lb"),
  13230. name: "Front",
  13231. image: {
  13232. source: "./media/characters/gault/front.svg",
  13233. extra: 161 / 140,
  13234. bottom: 0.028
  13235. }
  13236. },
  13237. },
  13238. [
  13239. {
  13240. name: "Normal",
  13241. height: math.unit(5 + 10 / 12, "feet"),
  13242. default: true
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Shard" },
  13248. {
  13249. front: {
  13250. height: math.unit(6, "feet"),
  13251. weight: math.unit(150, "lb"),
  13252. name: "Front",
  13253. image: {
  13254. source: "./media/characters/shard/front.svg",
  13255. extra: 273 / 238,
  13256. bottom: 0.02
  13257. }
  13258. },
  13259. },
  13260. [
  13261. {
  13262. name: "Normal",
  13263. height: math.unit(3 + 6 / 12, "feet"),
  13264. default: true
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Ashe" },
  13270. {
  13271. front: {
  13272. height: math.unit(5 + 11 / 12, "feet"),
  13273. weight: math.unit(146, "lb"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/ashe/front.svg",
  13277. extra: 400 / 373,
  13278. bottom: 0.01
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Normal",
  13285. height: math.unit(5 + 11 / 12, "feet"),
  13286. default: true
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Beatrix" },
  13292. {
  13293. front: {
  13294. height: math.unit(5 + 5 / 12, "feet"),
  13295. weight: math.unit(135, "lb"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/beatrix/front.svg",
  13299. extra: 392 / 379,
  13300. bottom: 0.01
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(6, "feet"),
  13308. default: true
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Ignatius" },
  13314. {
  13315. front: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(150, "lb"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/ignatius/front.svg",
  13321. extra: 245 / 222,
  13322. bottom: 0.01
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "Normal",
  13329. height: math.unit(5 + 5 / 12, "feet"),
  13330. default: true
  13331. },
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Mei Li" },
  13336. {
  13337. front: {
  13338. height: math.unit(6 + 2 / 12, "feet"),
  13339. weight: math.unit(138, "lb"),
  13340. name: "Front",
  13341. image: {
  13342. source: "./media/characters/mei-li/front.svg",
  13343. extra: 237 / 229,
  13344. bottom: 0.03
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Normal",
  13351. height: math.unit(6 + 2 / 12, "feet"),
  13352. default: true
  13353. },
  13354. ]
  13355. ))
  13356. characterMakers.push(() => makeCharacter(
  13357. { name: "Puru" },
  13358. {
  13359. front: {
  13360. height: math.unit(2 + 4 / 12, "feet"),
  13361. weight: math.unit(62, "lb"),
  13362. name: "Front",
  13363. image: {
  13364. source: "./media/characters/puru/front.svg",
  13365. extra: 206 / 149,
  13366. bottom: 0.06
  13367. }
  13368. },
  13369. },
  13370. [
  13371. {
  13372. name: "Normal",
  13373. height: math.unit(2 + 4 / 12, "feet"),
  13374. default: true
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Kee" },
  13380. {
  13381. taur: {
  13382. height: math.unit(11, "feet"),
  13383. weight: math.unit(500, "lb"),
  13384. name: "Taur",
  13385. image: {
  13386. source: "./media/characters/kee/taur.svg",
  13387. extra: 1,
  13388. bottom: 0.04
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Normal",
  13395. height: math.unit(11, "feet"),
  13396. default: true
  13397. },
  13398. ]
  13399. ))
  13400. characterMakers.push(() => makeCharacter(
  13401. { name: "Cobalt (Dracha)" },
  13402. {
  13403. anthro: {
  13404. height: math.unit(7, "feet"),
  13405. weight: math.unit(190, "lb"),
  13406. name: "Anthro",
  13407. image: {
  13408. source: "./media/characters/cobalt-dracha/anthro.svg",
  13409. extra: 231 / 225,
  13410. bottom: 0.04
  13411. }
  13412. },
  13413. feral: {
  13414. height: math.unit(9 + 7 / 12, "feet"),
  13415. weight: math.unit(294, "lb"),
  13416. name: "Feral",
  13417. image: {
  13418. source: "./media/characters/cobalt-dracha/feral.svg",
  13419. extra: 692 / 633,
  13420. bottom: 0.05
  13421. }
  13422. },
  13423. },
  13424. [
  13425. {
  13426. name: "Normal",
  13427. height: math.unit(7, "feet"),
  13428. default: true
  13429. },
  13430. ]
  13431. ))
  13432. characterMakers.push(() => makeCharacter(
  13433. { name: "Java" },
  13434. {
  13435. fallen: {
  13436. height: math.unit(11 + 8 / 12, "feet"),
  13437. weight: math.unit(485, "lb"),
  13438. name: "Java (Fallen)",
  13439. rename: true,
  13440. image: {
  13441. source: "./media/characters/java/fallen.svg",
  13442. extra: 226 / 208,
  13443. bottom: 0.005
  13444. }
  13445. },
  13446. godkin: {
  13447. height: math.unit(10 + 6 / 12, "feet"),
  13448. weight: math.unit(328, "lb"),
  13449. name: "Java (Godkin)",
  13450. rename: true,
  13451. image: {
  13452. source: "./media/characters/java/godkin.svg",
  13453. extra: 270 / 262,
  13454. bottom: 0.02
  13455. }
  13456. },
  13457. },
  13458. [
  13459. {
  13460. name: "Normal",
  13461. height: math.unit(11 + 8 / 12, "feet"),
  13462. default: true
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Skoll" },
  13468. {
  13469. front: {
  13470. height: math.unit(7 + 8 / 12, "feet"),
  13471. weight: math.unit(320, "lb"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/skoll/front.svg",
  13475. extra: 232 / 220,
  13476. bottom: 0.02
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Normal",
  13483. height: math.unit(7 + 8 / 12, "feet"),
  13484. default: true
  13485. },
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Purna" },
  13490. {
  13491. front: {
  13492. height: math.unit(5 + 9 / 12, "feet"),
  13493. weight: math.unit(170, "lb"),
  13494. name: "Front",
  13495. image: {
  13496. source: "./media/characters/purna/front.svg",
  13497. extra: 239 / 229,
  13498. bottom: 0.01
  13499. }
  13500. },
  13501. },
  13502. [
  13503. {
  13504. name: "Normal",
  13505. height: math.unit(5 + 9 / 12, "feet"),
  13506. default: true
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Kuva" },
  13512. {
  13513. front: {
  13514. height: math.unit(5 + 9 / 12, "feet"),
  13515. weight: math.unit(142, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/kuva/front.svg",
  13519. extra: 281 / 271,
  13520. bottom: 0.006
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Normal",
  13527. height: math.unit(5 + 9 / 12, "feet"),
  13528. default: true
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Embra" },
  13534. {
  13535. anthro: {
  13536. height: math.unit(9 + 2 / 12, "feet"),
  13537. weight: math.unit(270, "lb"),
  13538. name: "Anthro",
  13539. image: {
  13540. source: "./media/characters/embra/anthro.svg",
  13541. extra: 200 / 187,
  13542. bottom: 0.02
  13543. }
  13544. },
  13545. feral: {
  13546. height: math.unit(18 + 8 / 12, "feet"),
  13547. weight: math.unit(576, "lb"),
  13548. name: "Feral",
  13549. image: {
  13550. source: "./media/characters/embra/feral.svg",
  13551. extra: 152 / 137,
  13552. bottom: 0.037
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Normal",
  13559. height: math.unit(9 + 2 / 12, "feet"),
  13560. default: true
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Grottos" },
  13566. {
  13567. anthro: {
  13568. height: math.unit(10 + 9 / 12, "feet"),
  13569. weight: math.unit(224, "lb"),
  13570. name: "Anthro",
  13571. image: {
  13572. source: "./media/characters/grottos/anthro.svg",
  13573. extra: 350 / 332,
  13574. bottom: 0.045
  13575. }
  13576. },
  13577. feral: {
  13578. height: math.unit(20 + 7 / 12, "feet"),
  13579. weight: math.unit(629, "lb"),
  13580. name: "Feral",
  13581. image: {
  13582. source: "./media/characters/grottos/feral.svg",
  13583. extra: 207 / 190,
  13584. bottom: 0.05
  13585. }
  13586. },
  13587. },
  13588. [
  13589. {
  13590. name: "Normal",
  13591. height: math.unit(10 + 9 / 12, "feet"),
  13592. default: true
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Frifna" },
  13598. {
  13599. anthro: {
  13600. height: math.unit(9 + 6 / 12, "feet"),
  13601. weight: math.unit(298, "lb"),
  13602. name: "Anthro",
  13603. image: {
  13604. source: "./media/characters/frifna/anthro.svg",
  13605. extra: 282 / 269,
  13606. bottom: 0.015
  13607. }
  13608. },
  13609. feral: {
  13610. height: math.unit(16 + 2 / 12, "feet"),
  13611. weight: math.unit(624, "lb"),
  13612. name: "Feral",
  13613. image: {
  13614. source: "./media/characters/frifna/feral.svg"
  13615. }
  13616. },
  13617. },
  13618. [
  13619. {
  13620. name: "Normal",
  13621. height: math.unit(9 + 6 / 12, "feet"),
  13622. default: true
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Elise" },
  13628. {
  13629. front: {
  13630. height: math.unit(6 + 2 / 12, "feet"),
  13631. weight: math.unit(168, "lb"),
  13632. name: "Front",
  13633. image: {
  13634. source: "./media/characters/elise/front.svg",
  13635. extra: 276 / 271
  13636. }
  13637. },
  13638. },
  13639. [
  13640. {
  13641. name: "Normal",
  13642. height: math.unit(6 + 2 / 12, "feet"),
  13643. default: true
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Glade" },
  13649. {
  13650. front: {
  13651. height: math.unit(5 + 10 / 12, "feet"),
  13652. weight: math.unit(210, "lb"),
  13653. name: "Front",
  13654. image: {
  13655. source: "./media/characters/glade/front.svg",
  13656. extra: 258 / 247,
  13657. bottom: 0.008
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Normal",
  13664. height: math.unit(5 + 10 / 12, "feet"),
  13665. default: true
  13666. },
  13667. ]
  13668. ))
  13669. characterMakers.push(() => makeCharacter(
  13670. { name: "Rina" },
  13671. {
  13672. front: {
  13673. height: math.unit(5 + 10 / 12, "feet"),
  13674. weight: math.unit(129, "lb"),
  13675. name: "Front",
  13676. image: {
  13677. source: "./media/characters/rina/front.svg",
  13678. extra: 266 / 255,
  13679. bottom: 0.005
  13680. }
  13681. },
  13682. },
  13683. [
  13684. {
  13685. name: "Normal",
  13686. height: math.unit(5 + 10 / 12, "feet"),
  13687. default: true
  13688. },
  13689. ]
  13690. ))
  13691. characterMakers.push(() => makeCharacter(
  13692. { name: "Veronica" },
  13693. {
  13694. front: {
  13695. height: math.unit(6 + 1 / 12, "feet"),
  13696. weight: math.unit(192, "lb"),
  13697. name: "Front",
  13698. image: {
  13699. source: "./media/characters/veronica/front.svg",
  13700. extra: 319 / 309,
  13701. bottom: 0.005
  13702. }
  13703. },
  13704. },
  13705. [
  13706. {
  13707. name: "Normal",
  13708. height: math.unit(6 + 1 / 12, "feet"),
  13709. default: true
  13710. },
  13711. ]
  13712. ))
  13713. characterMakers.push(() => makeCharacter(
  13714. { name: "Braxton" },
  13715. {
  13716. front: {
  13717. height: math.unit(9 + 3 / 12, "feet"),
  13718. weight: math.unit(1100, "lb"),
  13719. name: "Front",
  13720. image: {
  13721. source: "./media/characters/braxton/front.svg",
  13722. extra: 1057 / 984,
  13723. bottom: 0.05
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Normal",
  13730. height: math.unit(9 + 3 / 12, "feet")
  13731. },
  13732. {
  13733. name: "Giant",
  13734. height: math.unit(300, "feet"),
  13735. default: true
  13736. },
  13737. {
  13738. name: "Macro",
  13739. height: math.unit(700, "feet")
  13740. },
  13741. {
  13742. name: "Megamacro",
  13743. height: math.unit(6000, "feet")
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Blue Feyonics" },
  13749. {
  13750. front: {
  13751. height: math.unit(6 + 7 / 12, "feet"),
  13752. weight: math.unit(150, "lb"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/blue-feyonics/front.svg",
  13756. extra: 1403 / 1306,
  13757. bottom: 0.047
  13758. }
  13759. },
  13760. },
  13761. [
  13762. {
  13763. name: "Normal",
  13764. height: math.unit(6 + 7 / 12, "feet"),
  13765. default: true
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Maxwell" },
  13771. {
  13772. front: {
  13773. height: math.unit(1.8, "meters"),
  13774. weight: math.unit(60, "kg"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/maxwell/front.svg",
  13778. extra: 2060 / 1873
  13779. }
  13780. },
  13781. },
  13782. [
  13783. {
  13784. name: "Micro",
  13785. height: math.unit(1, "mm")
  13786. },
  13787. {
  13788. name: "Normal",
  13789. height: math.unit(1.8, "meter"),
  13790. default: true
  13791. },
  13792. {
  13793. name: "Macro",
  13794. height: math.unit(30, "meters")
  13795. },
  13796. {
  13797. name: "Megamacro",
  13798. height: math.unit(10, "km")
  13799. },
  13800. ]
  13801. ))
  13802. characterMakers.push(() => makeCharacter(
  13803. { name: "Jack" },
  13804. {
  13805. front: {
  13806. height: math.unit(6, "feet"),
  13807. weight: math.unit(150, "lb"),
  13808. name: "Front",
  13809. image: {
  13810. source: "./media/characters/jack/front.svg",
  13811. extra: 1754 / 1640,
  13812. bottom: 0.01
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Normal",
  13819. height: math.unit(80000, "feet"),
  13820. default: true
  13821. },
  13822. {
  13823. name: "Max size",
  13824. height: math.unit(10, "lightyears")
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Cafat" },
  13830. {
  13831. upright: {
  13832. height: math.unit(7, "feet"),
  13833. weight: math.unit(170, "lb"),
  13834. name: "Upright",
  13835. image: {
  13836. source: "./media/characters/cafat/upright.svg",
  13837. bottom: 0.01
  13838. }
  13839. },
  13840. uprightFull: {
  13841. height: math.unit(7, "feet"),
  13842. weight: math.unit(170, "lb"),
  13843. name: "Upright (Full)",
  13844. image: {
  13845. source: "./media/characters/cafat/upright-full.svg",
  13846. bottom: 0.01
  13847. }
  13848. },
  13849. side: {
  13850. height: math.unit(5, "feet"),
  13851. weight: math.unit(150, "lb"),
  13852. name: "Side",
  13853. image: {
  13854. source: "./media/characters/cafat/side.svg"
  13855. }
  13856. },
  13857. },
  13858. [
  13859. {
  13860. name: "Small",
  13861. height: math.unit(7, "feet"),
  13862. default: true
  13863. },
  13864. {
  13865. name: "Large",
  13866. height: math.unit(15.5, "feet")
  13867. },
  13868. ]
  13869. ))
  13870. characterMakers.push(() => makeCharacter(
  13871. { name: "Verin Raharra" },
  13872. {
  13873. front: {
  13874. height: math.unit(6, "feet"),
  13875. weight: math.unit(150, "lb"),
  13876. name: "Front",
  13877. image: {
  13878. source: "./media/characters/verin-raharra/front.svg",
  13879. extra: 5019 / 4835,
  13880. bottom: 0.023
  13881. }
  13882. },
  13883. },
  13884. [
  13885. {
  13886. name: "Normal",
  13887. height: math.unit(7 + 5 / 12, "feet"),
  13888. default: true
  13889. },
  13890. {
  13891. name: "Upsized",
  13892. height: math.unit(20, "feet")
  13893. },
  13894. ]
  13895. ))
  13896. characterMakers.push(() => makeCharacter(
  13897. { name: "Nakata" },
  13898. {
  13899. front: {
  13900. height: math.unit(7, "feet"),
  13901. weight: math.unit(230, "lb"),
  13902. name: "Front",
  13903. image: {
  13904. source: "./media/characters/nakata/front.svg",
  13905. extra: 1.005,
  13906. bottom: 0.01
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Normal",
  13913. height: math.unit(7, "feet"),
  13914. default: true
  13915. },
  13916. {
  13917. name: "Big",
  13918. height: math.unit(14, "feet")
  13919. },
  13920. {
  13921. name: "Macro",
  13922. height: math.unit(400, "feet")
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Lily" },
  13928. {
  13929. front: {
  13930. height: math.unit(4.91, "feet"),
  13931. weight: math.unit(100, "lb"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/lily/front.svg",
  13935. extra: 1585 / 1415,
  13936. bottom: 0.02
  13937. }
  13938. },
  13939. },
  13940. [
  13941. {
  13942. name: "Normal",
  13943. height: math.unit(4.91, "feet"),
  13944. default: true
  13945. },
  13946. ]
  13947. ))
  13948. characterMakers.push(() => makeCharacter(
  13949. { name: "Sheila" },
  13950. {
  13951. laying: {
  13952. height: math.unit(4 + 4 / 12, "feet"),
  13953. weight: math.unit(600, "lb"),
  13954. name: "Laying",
  13955. image: {
  13956. source: "./media/characters/sheila/laying.svg",
  13957. extra: 1333 / 1265,
  13958. bottom: 0.16
  13959. }
  13960. },
  13961. },
  13962. [
  13963. {
  13964. name: "Normal",
  13965. height: math.unit(4 + 4 / 12, "feet"),
  13966. default: true
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Sax" },
  13972. {
  13973. front: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(190, "lb"),
  13976. name: "Front",
  13977. image: {
  13978. source: "./media/characters/sax/front.svg",
  13979. extra: 1187 / 973,
  13980. bottom: 0.042
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Micro",
  13987. height: math.unit(4, "inches"),
  13988. default: true
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Pandora" },
  13994. {
  13995. front: {
  13996. height: math.unit(6, "feet"),
  13997. weight: math.unit(150, "lb"),
  13998. name: "Front",
  13999. image: {
  14000. source: "./media/characters/pandora/front.svg",
  14001. extra: 2720 / 2556,
  14002. bottom: 0.015
  14003. }
  14004. },
  14005. back: {
  14006. height: math.unit(6, "feet"),
  14007. weight: math.unit(150, "lb"),
  14008. name: "Back",
  14009. image: {
  14010. source: "./media/characters/pandora/back.svg",
  14011. extra: 2720 / 2556,
  14012. bottom: 0.01
  14013. }
  14014. },
  14015. beans: {
  14016. height: math.unit(6 / 8, "feet"),
  14017. name: "Beans",
  14018. image: {
  14019. source: "./media/characters/pandora/beans.svg"
  14020. }
  14021. },
  14022. skirt: {
  14023. height: math.unit(6, "feet"),
  14024. weight: math.unit(150, "lb"),
  14025. name: "Skirt",
  14026. image: {
  14027. source: "./media/characters/pandora/skirt.svg",
  14028. extra: 1622 / 1525,
  14029. bottom: 0.015
  14030. }
  14031. },
  14032. hoodie: {
  14033. height: math.unit(6, "feet"),
  14034. weight: math.unit(150, "lb"),
  14035. name: "Hoodie",
  14036. image: {
  14037. source: "./media/characters/pandora/hoodie.svg",
  14038. extra: 1622 / 1525,
  14039. bottom: 0.015
  14040. }
  14041. },
  14042. casual: {
  14043. height: math.unit(6, "feet"),
  14044. weight: math.unit(150, "lb"),
  14045. name: "Casual",
  14046. image: {
  14047. source: "./media/characters/pandora/casual.svg",
  14048. extra: 1622 / 1525,
  14049. bottom: 0.015
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Normal",
  14056. height: math.unit(6, "feet")
  14057. },
  14058. {
  14059. name: "Big Steppy",
  14060. height: math.unit(1, "km"),
  14061. default: true
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "Venio Darcony" },
  14067. {
  14068. side: {
  14069. height: math.unit(10, "feet"),
  14070. weight: math.unit(800, "kg"),
  14071. name: "Side",
  14072. image: {
  14073. source: "./media/characters/venio-darcony/side.svg",
  14074. extra: 1373 / 1003,
  14075. bottom: 0.037
  14076. }
  14077. },
  14078. front: {
  14079. height: math.unit(19, "feet"),
  14080. weight: math.unit(800, "kg"),
  14081. name: "Front",
  14082. image: {
  14083. source: "./media/characters/venio-darcony/front.svg"
  14084. }
  14085. },
  14086. back: {
  14087. height: math.unit(19, "feet"),
  14088. weight: math.unit(800, "kg"),
  14089. name: "Back",
  14090. image: {
  14091. source: "./media/characters/venio-darcony/back.svg"
  14092. }
  14093. },
  14094. sideNsfw: {
  14095. height: math.unit(10, "feet"),
  14096. weight: math.unit(800, "kg"),
  14097. name: "Side (NSFW)",
  14098. image: {
  14099. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14100. extra: 1373 / 1003,
  14101. bottom: 0.037
  14102. }
  14103. },
  14104. frontNsfw: {
  14105. height: math.unit(19, "feet"),
  14106. weight: math.unit(800, "kg"),
  14107. name: "Front (NSFW)",
  14108. image: {
  14109. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14110. }
  14111. },
  14112. backNsfw: {
  14113. height: math.unit(19, "feet"),
  14114. weight: math.unit(800, "kg"),
  14115. name: "Back (NSFW)",
  14116. image: {
  14117. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14118. }
  14119. },
  14120. sideArmored: {
  14121. height: math.unit(10, "feet"),
  14122. weight: math.unit(800, "kg"),
  14123. name: "Side (Armored)",
  14124. image: {
  14125. source: "./media/characters/venio-darcony/side-armored.svg",
  14126. extra: 1373 / 1003,
  14127. bottom: 0.037
  14128. }
  14129. },
  14130. frontArmored: {
  14131. height: math.unit(19, "feet"),
  14132. weight: math.unit(900, "kg"),
  14133. name: "Front (Armored)",
  14134. image: {
  14135. source: "./media/characters/venio-darcony/front-armored.svg"
  14136. }
  14137. },
  14138. backArmored: {
  14139. height: math.unit(19, "feet"),
  14140. weight: math.unit(900, "kg"),
  14141. name: "Back (Armored)",
  14142. image: {
  14143. source: "./media/characters/venio-darcony/back-armored.svg"
  14144. }
  14145. },
  14146. sword: {
  14147. height: math.unit(10, "feet"),
  14148. weight: math.unit(50, "lb"),
  14149. name: "Sword",
  14150. image: {
  14151. source: "./media/characters/venio-darcony/sword.svg"
  14152. }
  14153. },
  14154. },
  14155. [
  14156. {
  14157. name: "Normal",
  14158. height: math.unit(10, "feet")
  14159. },
  14160. {
  14161. name: "Macro",
  14162. height: math.unit(130, "feet"),
  14163. default: true
  14164. },
  14165. {
  14166. name: "Macro+",
  14167. height: math.unit(240, "feet")
  14168. },
  14169. ]
  14170. ))
  14171. characterMakers.push(() => makeCharacter(
  14172. { name: "Veski" },
  14173. {
  14174. front: {
  14175. height: math.unit(6, "feet"),
  14176. weight: math.unit(150, "lb"),
  14177. name: "Front",
  14178. image: {
  14179. source: "./media/characters/veski/front.svg",
  14180. extra: 1299 / 1225,
  14181. bottom: 0.04
  14182. }
  14183. },
  14184. back: {
  14185. height: math.unit(6, "feet"),
  14186. weight: math.unit(150, "lb"),
  14187. name: "Back",
  14188. image: {
  14189. source: "./media/characters/veski/back.svg",
  14190. extra: 1299 / 1225,
  14191. bottom: 0.008
  14192. }
  14193. },
  14194. maw: {
  14195. height: math.unit(1.5 * 1.21, "feet"),
  14196. name: "Maw",
  14197. image: {
  14198. source: "./media/characters/veski/maw.svg"
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Macro",
  14205. height: math.unit(2, "km"),
  14206. default: true
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Isabelle" },
  14212. {
  14213. front: {
  14214. height: math.unit(5 + 7 / 12, "feet"),
  14215. name: "Front",
  14216. image: {
  14217. source: "./media/characters/isabelle/front.svg",
  14218. extra: 2130 / 1976,
  14219. bottom: 0.05
  14220. }
  14221. },
  14222. },
  14223. [
  14224. {
  14225. name: "Supermicro",
  14226. height: math.unit(10, "micrometers")
  14227. },
  14228. {
  14229. name: "Micro",
  14230. height: math.unit(1, "inch")
  14231. },
  14232. {
  14233. name: "Tiny",
  14234. height: math.unit(5, "inches")
  14235. },
  14236. {
  14237. name: "Standard",
  14238. height: math.unit(5 + 7 / 12, "inches")
  14239. },
  14240. {
  14241. name: "Macro",
  14242. height: math.unit(80, "meters"),
  14243. default: true
  14244. },
  14245. {
  14246. name: "Megamacro",
  14247. height: math.unit(250, "meters")
  14248. },
  14249. {
  14250. name: "Gigamacro",
  14251. height: math.unit(5, "km")
  14252. },
  14253. {
  14254. name: "Cosmic",
  14255. height: math.unit(2.5e6, "miles")
  14256. },
  14257. ]
  14258. ))
  14259. characterMakers.push(() => makeCharacter(
  14260. { name: "Hanzo" },
  14261. {
  14262. front: {
  14263. height: math.unit(6, "feet"),
  14264. weight: math.unit(150, "lb"),
  14265. name: "Front",
  14266. image: {
  14267. source: "./media/characters/hanzo/front.svg",
  14268. extra: 374 / 344,
  14269. bottom: 0.02
  14270. }
  14271. },
  14272. },
  14273. [
  14274. {
  14275. name: "Normal",
  14276. height: math.unit(8, "feet"),
  14277. default: true
  14278. },
  14279. ]
  14280. ))
  14281. characterMakers.push(() => makeCharacter(
  14282. { name: "Anna" },
  14283. {
  14284. front: {
  14285. height: math.unit(7, "feet"),
  14286. weight: math.unit(130, "lb"),
  14287. name: "Front",
  14288. image: {
  14289. source: "./media/characters/anna/front.svg",
  14290. extra: 169 / 145,
  14291. bottom: 0.06
  14292. }
  14293. },
  14294. full: {
  14295. height: math.unit(4.96, "feet"),
  14296. weight: math.unit(220, "lb"),
  14297. name: "Full",
  14298. image: {
  14299. source: "./media/characters/anna/full.svg",
  14300. extra: 138 / 114,
  14301. bottom: 0.15
  14302. }
  14303. },
  14304. tongue: {
  14305. height: math.unit(2.53, "feet"),
  14306. name: "Tongue",
  14307. image: {
  14308. source: "./media/characters/anna/tongue.svg"
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Normal",
  14315. height: math.unit(7, "feet"),
  14316. default: true
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Ian Corvid" },
  14322. {
  14323. front: {
  14324. height: math.unit(7, "feet"),
  14325. weight: math.unit(150, "lb"),
  14326. name: "Front",
  14327. image: {
  14328. source: "./media/characters/ian-corvid/front.svg",
  14329. extra: 150 / 142,
  14330. bottom: 0.02
  14331. }
  14332. },
  14333. back: {
  14334. height: math.unit(7, "feet"),
  14335. weight: math.unit(150, "lb"),
  14336. name: "Back",
  14337. image: {
  14338. source: "./media/characters/ian-corvid/back.svg",
  14339. extra: 150 / 143,
  14340. bottom: 0.01
  14341. }
  14342. },
  14343. stomping: {
  14344. height: math.unit(7, "feet"),
  14345. weight: math.unit(150, "lb"),
  14346. name: "Stomping",
  14347. image: {
  14348. source: "./media/characters/ian-corvid/stomping.svg",
  14349. extra: 76 / 72
  14350. }
  14351. },
  14352. sitting: {
  14353. height: math.unit(7 / 1.8, "feet"),
  14354. weight: math.unit(150, "lb"),
  14355. name: "Sitting",
  14356. image: {
  14357. source: "./media/characters/ian-corvid/sitting.svg",
  14358. extra: 1400 / 1269,
  14359. bottom: 0.15
  14360. }
  14361. },
  14362. },
  14363. [
  14364. {
  14365. name: "Tiny Microw",
  14366. height: math.unit(1, "inch")
  14367. },
  14368. {
  14369. name: "Microw",
  14370. height: math.unit(6, "inches")
  14371. },
  14372. {
  14373. name: "Crow",
  14374. height: math.unit(7 + 1 / 12, "feet"),
  14375. default: true
  14376. },
  14377. {
  14378. name: "Macrow",
  14379. height: math.unit(176, "feet")
  14380. },
  14381. ]
  14382. ))
  14383. characterMakers.push(() => makeCharacter(
  14384. { name: "Natalie Kellon" },
  14385. {
  14386. front: {
  14387. height: math.unit(5 + 7 / 12, "feet"),
  14388. weight: math.unit(147, "lb"),
  14389. name: "Front",
  14390. image: {
  14391. source: "./media/characters/natalie-kellon/front.svg",
  14392. extra: 1214 / 1141,
  14393. bottom: 0.02
  14394. }
  14395. },
  14396. },
  14397. [
  14398. {
  14399. name: "Micro",
  14400. height: math.unit(1 / 16, "inch")
  14401. },
  14402. {
  14403. name: "Tiny",
  14404. height: math.unit(4, "inches")
  14405. },
  14406. {
  14407. name: "Normal",
  14408. height: math.unit(5 + 7 / 12, "feet"),
  14409. default: true
  14410. },
  14411. {
  14412. name: "Amazon",
  14413. height: math.unit(12, "feet")
  14414. },
  14415. {
  14416. name: "Giantess",
  14417. height: math.unit(160, "meters")
  14418. },
  14419. {
  14420. name: "Titaness",
  14421. height: math.unit(800, "meters")
  14422. },
  14423. ]
  14424. ))
  14425. characterMakers.push(() => makeCharacter(
  14426. { name: "Alluria" },
  14427. {
  14428. front: {
  14429. height: math.unit(6, "feet"),
  14430. weight: math.unit(150, "lb"),
  14431. name: "Front",
  14432. image: {
  14433. source: "./media/characters/alluria/front.svg",
  14434. extra: 806 / 738,
  14435. bottom: 0.01
  14436. }
  14437. },
  14438. side: {
  14439. height: math.unit(6, "feet"),
  14440. weight: math.unit(150, "lb"),
  14441. name: "Side",
  14442. image: {
  14443. source: "./media/characters/alluria/side.svg",
  14444. extra: 800 / 750,
  14445. }
  14446. },
  14447. back: {
  14448. height: math.unit(6, "feet"),
  14449. weight: math.unit(150, "lb"),
  14450. name: "Back",
  14451. image: {
  14452. source: "./media/characters/alluria/back.svg",
  14453. extra: 806 / 738,
  14454. }
  14455. },
  14456. frontMaid: {
  14457. height: math.unit(6, "feet"),
  14458. weight: math.unit(150, "lb"),
  14459. name: "Front (Maid)",
  14460. image: {
  14461. source: "./media/characters/alluria/front-maid.svg",
  14462. extra: 806 / 738,
  14463. bottom: 0.01
  14464. }
  14465. },
  14466. sideMaid: {
  14467. height: math.unit(6, "feet"),
  14468. weight: math.unit(150, "lb"),
  14469. name: "Side (Maid)",
  14470. image: {
  14471. source: "./media/characters/alluria/side-maid.svg",
  14472. extra: 800 / 750,
  14473. bottom: 0.005
  14474. }
  14475. },
  14476. backMaid: {
  14477. height: math.unit(6, "feet"),
  14478. weight: math.unit(150, "lb"),
  14479. name: "Back (Maid)",
  14480. image: {
  14481. source: "./media/characters/alluria/back-maid.svg",
  14482. extra: 806 / 738,
  14483. }
  14484. },
  14485. },
  14486. [
  14487. {
  14488. name: "Micro",
  14489. height: math.unit(6, "inches"),
  14490. default: true
  14491. },
  14492. ]
  14493. ))
  14494. characterMakers.push(() => makeCharacter(
  14495. { name: "Kyle" },
  14496. {
  14497. front: {
  14498. height: math.unit(6, "feet"),
  14499. weight: math.unit(150, "lb"),
  14500. name: "Front",
  14501. image: {
  14502. source: "./media/characters/kyle/front.svg",
  14503. extra: 1069 / 962,
  14504. bottom: 77.228 / 1727.45
  14505. }
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Macro",
  14511. height: math.unit(150, "feet"),
  14512. default: true
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Duncan" },
  14518. {
  14519. front: {
  14520. height: math.unit(6, "feet"),
  14521. weight: math.unit(300, "lb"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/duncan/front.svg",
  14525. extra: 1650 / 1482,
  14526. bottom: 0.05
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Macro",
  14533. height: math.unit(100, "feet"),
  14534. default: true
  14535. },
  14536. ]
  14537. ))
  14538. characterMakers.push(() => makeCharacter(
  14539. { name: "Memory" },
  14540. {
  14541. front: {
  14542. height: math.unit(5 + 4 / 12, "feet"),
  14543. weight: math.unit(220, "lb"),
  14544. name: "Front",
  14545. image: {
  14546. source: "./media/characters/memory/front.svg",
  14547. extra: 3641 / 3545,
  14548. bottom: 0.03
  14549. }
  14550. },
  14551. back: {
  14552. height: math.unit(5 + 4 / 12, "feet"),
  14553. weight: math.unit(220, "lb"),
  14554. name: "Back",
  14555. image: {
  14556. source: "./media/characters/memory/back.svg",
  14557. extra: 3641 / 3545,
  14558. bottom: 0.025
  14559. }
  14560. },
  14561. frontSkirt: {
  14562. height: math.unit(5 + 4 / 12, "feet"),
  14563. weight: math.unit(220, "lb"),
  14564. name: "Front (Skirt)",
  14565. image: {
  14566. source: "./media/characters/memory/front-skirt.svg",
  14567. extra: 3641 / 3545,
  14568. bottom: 0.03
  14569. }
  14570. },
  14571. frontDress: {
  14572. height: math.unit(5 + 4 / 12, "feet"),
  14573. weight: math.unit(220, "lb"),
  14574. name: "Front (Dress)",
  14575. image: {
  14576. source: "./media/characters/memory/front-dress.svg",
  14577. extra: 3641 / 3545,
  14578. bottom: 0.03
  14579. }
  14580. },
  14581. },
  14582. [
  14583. {
  14584. name: "Micro",
  14585. height: math.unit(6, "inches"),
  14586. default: true
  14587. },
  14588. {
  14589. name: "Normal",
  14590. height: math.unit(5 + 4 / 12, "feet")
  14591. },
  14592. ]
  14593. ))
  14594. characterMakers.push(() => makeCharacter(
  14595. { name: "Luno" },
  14596. {
  14597. front: {
  14598. height: math.unit(4 + 11 / 12, "feet"),
  14599. weight: math.unit(100, "lb"),
  14600. name: "Front",
  14601. image: {
  14602. source: "./media/characters/luno/front.svg",
  14603. extra: 1535 / 1487,
  14604. bottom: 0.03
  14605. }
  14606. },
  14607. },
  14608. [
  14609. {
  14610. name: "Micro",
  14611. height: math.unit(3, "inches")
  14612. },
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(4 + 11 / 12, "feet"),
  14616. default: true
  14617. },
  14618. {
  14619. name: "Macro",
  14620. height: math.unit(300, "feet")
  14621. },
  14622. {
  14623. name: "Megamacro",
  14624. height: math.unit(700, "miles")
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Jamesy" },
  14630. {
  14631. front: {
  14632. height: math.unit(6 + 2 / 12, "feet"),
  14633. weight: math.unit(170, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/jamesy/front.svg",
  14637. extra: 440 / 382,
  14638. bottom: 0.005
  14639. }
  14640. },
  14641. },
  14642. [
  14643. {
  14644. name: "Micro",
  14645. height: math.unit(3, "inches")
  14646. },
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(6 + 2 / 12, "feet"),
  14650. default: true
  14651. },
  14652. {
  14653. name: "Macro",
  14654. height: math.unit(300, "feet")
  14655. },
  14656. {
  14657. name: "Megamacro",
  14658. height: math.unit(700, "miles")
  14659. },
  14660. ]
  14661. ))
  14662. characterMakers.push(() => makeCharacter(
  14663. { name: "Mark" },
  14664. {
  14665. front: {
  14666. height: math.unit(6, "feet"),
  14667. weight: math.unit(160, "lb"),
  14668. name: "Front",
  14669. image: {
  14670. source: "./media/characters/mark/front.svg",
  14671. extra: 3300 / 3100,
  14672. bottom: 136.42 / 3440.47
  14673. }
  14674. },
  14675. },
  14676. [
  14677. {
  14678. name: "Macro",
  14679. height: math.unit(120, "meters")
  14680. },
  14681. {
  14682. name: "Bigger Macro",
  14683. height: math.unit(350, "meters")
  14684. },
  14685. {
  14686. name: "Megamacro",
  14687. height: math.unit(8, "km"),
  14688. default: true
  14689. },
  14690. {
  14691. name: "Continental",
  14692. height: math.unit(4550, "km")
  14693. },
  14694. {
  14695. name: "Planetary",
  14696. height: math.unit(65000, "km")
  14697. },
  14698. ]
  14699. ))
  14700. characterMakers.push(() => makeCharacter(
  14701. { name: "Mac" },
  14702. {
  14703. front: {
  14704. height: math.unit(6, "feet"),
  14705. weight: math.unit(400, "lb"),
  14706. name: "Front",
  14707. image: {
  14708. source: "./media/characters/mac/front.svg",
  14709. extra: 1048 / 987.7,
  14710. bottom: 60 / 1107.6,
  14711. }
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Macro",
  14717. height: math.unit(500, "feet"),
  14718. default: true
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Bari" },
  14724. {
  14725. front: {
  14726. height: math.unit(5 + 2 / 12, "feet"),
  14727. weight: math.unit(190, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/bari/front.svg",
  14731. extra: 3156 / 2880,
  14732. bottom: 0.03
  14733. }
  14734. },
  14735. back: {
  14736. height: math.unit(5 + 2 / 12, "feet"),
  14737. weight: math.unit(190, "lb"),
  14738. name: "Back",
  14739. image: {
  14740. source: "./media/characters/bari/back.svg",
  14741. extra: 3260 / 2834,
  14742. bottom: 0.025
  14743. }
  14744. },
  14745. frontPlush: {
  14746. height: math.unit(5 + 2 / 12, "feet"),
  14747. weight: math.unit(190, "lb"),
  14748. name: "Front (Plush)",
  14749. image: {
  14750. source: "./media/characters/bari/front-plush.svg",
  14751. extra: 1112 / 1061,
  14752. bottom: 0.002
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Micro",
  14759. height: math.unit(3, "inches")
  14760. },
  14761. {
  14762. name: "Normal",
  14763. height: math.unit(5 + 2 / 12, "feet"),
  14764. default: true
  14765. },
  14766. {
  14767. name: "Macro",
  14768. height: math.unit(20, "feet")
  14769. },
  14770. ]
  14771. ))
  14772. characterMakers.push(() => makeCharacter(
  14773. { name: "Hunter Misha Raven" },
  14774. {
  14775. front: {
  14776. height: math.unit(6 + 1 / 12, "feet"),
  14777. weight: math.unit(275, "lb"),
  14778. name: "Front",
  14779. image: {
  14780. source: "./media/characters/hunter-misha-raven/front.svg"
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Mortal",
  14787. height: math.unit(6 + 1 / 12, "feet")
  14788. },
  14789. {
  14790. name: "Divine",
  14791. height: math.unit(1.12134e34, "parsecs"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Max Calore" },
  14798. {
  14799. front: {
  14800. height: math.unit(6 + 3 / 12, "feet"),
  14801. weight: math.unit(220, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/max-calore/front.svg",
  14805. extra: 1700 / 1648,
  14806. bottom: 0.01
  14807. }
  14808. },
  14809. back: {
  14810. height: math.unit(6 + 3 / 12, "feet"),
  14811. weight: math.unit(220, "lb"),
  14812. name: "Back",
  14813. image: {
  14814. source: "./media/characters/max-calore/back.svg",
  14815. extra: 1700 / 1648,
  14816. bottom: 0.01
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Normal",
  14823. height: math.unit(6 + 3 / 12, "feet"),
  14824. default: true
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Aspen" },
  14830. {
  14831. side: {
  14832. height: math.unit(2 + 8 / 12, "feet"),
  14833. weight: math.unit(99, "lb"),
  14834. name: "Side",
  14835. image: {
  14836. source: "./media/characters/aspen/side.svg",
  14837. extra: 152 / 138,
  14838. bottom: 0.032
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Normal",
  14845. height: math.unit(2 + 8 / 12, "feet"),
  14846. default: true
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Sheila (Feral Wolf)" },
  14852. {
  14853. side: {
  14854. height: math.unit(3 + 2 / 12, "feet"),
  14855. weight: math.unit(224, "lb"),
  14856. name: "Side",
  14857. image: {
  14858. source: "./media/characters/sheila-feral-wolf/side.svg",
  14859. extra: 179 / 166,
  14860. bottom: 0.03
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(3 + 2 / 12, "feet"),
  14868. default: true
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Michelle" },
  14874. {
  14875. side: {
  14876. height: math.unit(1 + 9 / 12, "feet"),
  14877. weight: math.unit(38, "lb"),
  14878. name: "Side",
  14879. image: {
  14880. source: "./media/characters/michelle/side.svg",
  14881. extra: 147 / 136.7,
  14882. bottom: 0.03
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(1 + 9 / 12, "feet"),
  14890. default: true
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Nino" },
  14896. {
  14897. front: {
  14898. height: math.unit(1 + 1 / 12, "feet"),
  14899. weight: math.unit(18, "lb"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/nino/front.svg"
  14903. }
  14904. },
  14905. },
  14906. [
  14907. {
  14908. name: "Normal",
  14909. height: math.unit(1 + 1 / 12, "feet"),
  14910. default: true
  14911. },
  14912. ]
  14913. ))
  14914. characterMakers.push(() => makeCharacter(
  14915. { name: "Viola" },
  14916. {
  14917. front: {
  14918. height: math.unit(1, "feet"),
  14919. weight: math.unit(16, "lb"),
  14920. name: "Front",
  14921. image: {
  14922. source: "./media/characters/viola/front.svg"
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Normal",
  14929. height: math.unit(1, "feet"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Atlas" },
  14936. {
  14937. front: {
  14938. height: math.unit(6 + 5 / 12, "feet"),
  14939. weight: math.unit(580, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/atlas/front.svg",
  14943. extra: 298.5 / 290,
  14944. bottom: 0.015
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Normal",
  14951. height: math.unit(6 + 5 / 12, "feet"),
  14952. default: true
  14953. },
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Davy" },
  14958. {
  14959. side: {
  14960. height: math.unit(1 + 10 / 12, "feet"),
  14961. weight: math.unit(25, "lb"),
  14962. name: "Side",
  14963. image: {
  14964. source: "./media/characters/davy/side.svg",
  14965. extra: 200 / 170,
  14966. bottom: 0.01
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Normal",
  14973. height: math.unit(1 + 10 / 12, "feet"),
  14974. default: true
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Fiona" },
  14980. {
  14981. side: {
  14982. height: math.unit(4 + 8 / 12, "feet"),
  14983. weight: math.unit(166, "lb"),
  14984. name: "Side",
  14985. image: {
  14986. source: "./media/characters/fiona/side.svg",
  14987. extra: 232 / 220,
  14988. bottom: 0.03
  14989. }
  14990. },
  14991. },
  14992. [
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(4 + 8 / 12, "feet"),
  14996. default: true
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Lyla" },
  15002. {
  15003. front: {
  15004. height: math.unit(2, "feet"),
  15005. weight: math.unit(62, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/lyla/front.svg",
  15009. bottom: 0.1
  15010. }
  15011. },
  15012. },
  15013. [
  15014. {
  15015. name: "Normal",
  15016. height: math.unit(2, "feet"),
  15017. default: true
  15018. },
  15019. ]
  15020. ))
  15021. characterMakers.push(() => makeCharacter(
  15022. { name: "Perseus" },
  15023. {
  15024. side: {
  15025. height: math.unit(1.8, "feet"),
  15026. weight: math.unit(44, "lb"),
  15027. name: "Side",
  15028. image: {
  15029. source: "./media/characters/perseus/side.svg",
  15030. bottom: 0.21
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Normal",
  15037. height: math.unit(1.8, "feet"),
  15038. default: true
  15039. },
  15040. ]
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Remus" },
  15044. {
  15045. side: {
  15046. height: math.unit(4 + 2 / 12, "feet"),
  15047. weight: math.unit(20, "lb"),
  15048. name: "Side",
  15049. image: {
  15050. source: "./media/characters/remus/side.svg"
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(4 + 2 / 12, "feet"),
  15058. default: true
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Raf" },
  15064. {
  15065. front: {
  15066. height: math.unit(4 + 11 / 12, "feet"),
  15067. weight: math.unit(114, "lb"),
  15068. name: "Front",
  15069. image: {
  15070. source: "./media/characters/raf/front.svg",
  15071. bottom: 0.01
  15072. }
  15073. },
  15074. side: {
  15075. height: math.unit(4 + 11 / 12, "feet"),
  15076. weight: math.unit(114, "lb"),
  15077. name: "Side",
  15078. image: {
  15079. source: "./media/characters/raf/side.svg",
  15080. bottom: 0.005
  15081. }
  15082. },
  15083. },
  15084. [
  15085. {
  15086. name: "Micro",
  15087. height: math.unit(2, "inches")
  15088. },
  15089. {
  15090. name: "Normal",
  15091. height: math.unit(4 + 11 / 12, "feet"),
  15092. default: true
  15093. },
  15094. {
  15095. name: "Macro",
  15096. height: math.unit(70, "feet")
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Liam Einarr" },
  15102. {
  15103. front: {
  15104. height: math.unit(1.5, "meters"),
  15105. weight: math.unit(68, "kg"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/liam-einarr/front.svg",
  15109. extra: 2822 / 2666
  15110. }
  15111. },
  15112. back: {
  15113. height: math.unit(1.5, "meters"),
  15114. weight: math.unit(68, "kg"),
  15115. name: "Back",
  15116. image: {
  15117. source: "./media/characters/liam-einarr/back.svg",
  15118. extra: 2822 / 2666,
  15119. bottom: 0.015
  15120. }
  15121. },
  15122. },
  15123. [
  15124. {
  15125. name: "Normal",
  15126. height: math.unit(1.5, "meters"),
  15127. default: true
  15128. },
  15129. {
  15130. name: "Macro",
  15131. height: math.unit(150, "meters")
  15132. },
  15133. {
  15134. name: "Megamacro",
  15135. height: math.unit(35, "km")
  15136. },
  15137. ]
  15138. ))
  15139. characterMakers.push(() => makeCharacter(
  15140. { name: "Linda" },
  15141. {
  15142. front: {
  15143. height: math.unit(6, "feet"),
  15144. weight: math.unit(75, "kg"),
  15145. name: "Front",
  15146. image: {
  15147. source: "./media/characters/linda/front.svg",
  15148. extra: 930 / 874,
  15149. bottom: 0.004
  15150. }
  15151. },
  15152. },
  15153. [
  15154. {
  15155. name: "Normal",
  15156. height: math.unit(6, "feet"),
  15157. default: true
  15158. },
  15159. ]
  15160. ))
  15161. characterMakers.push(() => makeCharacter(
  15162. { name: "Caylex" },
  15163. {
  15164. front: {
  15165. height: math.unit(6 + 8 / 12, "feet"),
  15166. weight: math.unit(220, "lb"),
  15167. name: "Front",
  15168. image: {
  15169. source: "./media/characters/caylex/front.svg",
  15170. extra: 821 / 772,
  15171. bottom: 0.07
  15172. }
  15173. },
  15174. back: {
  15175. height: math.unit(6 + 8 / 12, "feet"),
  15176. weight: math.unit(220, "lb"),
  15177. name: "Back",
  15178. image: {
  15179. source: "./media/characters/caylex/back.svg",
  15180. extra: 821 / 772,
  15181. bottom: 0.022
  15182. }
  15183. },
  15184. hand: {
  15185. height: math.unit(1.25, "feet"),
  15186. name: "Hand",
  15187. image: {
  15188. source: "./media/characters/caylex/hand.svg"
  15189. }
  15190. },
  15191. foot: {
  15192. height: math.unit(1.6, "feet"),
  15193. name: "Foot",
  15194. image: {
  15195. source: "./media/characters/caylex/foot.svg"
  15196. }
  15197. },
  15198. armored: {
  15199. height: math.unit(6 + 8 / 12, "feet"),
  15200. weight: math.unit(250, "lb"),
  15201. name: "Armored",
  15202. image: {
  15203. source: "./media/characters/caylex/armored.svg",
  15204. extra: 1420 / 1310,
  15205. bottom: 0.045
  15206. }
  15207. },
  15208. },
  15209. [
  15210. {
  15211. name: "Normal",
  15212. height: math.unit(6 + 8 / 12, "feet"),
  15213. default: true
  15214. },
  15215. {
  15216. name: "Normal+",
  15217. height: math.unit(12, "feet")
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Alana" },
  15223. {
  15224. front: {
  15225. height: math.unit(7 + 6 / 12, "feet"),
  15226. weight: math.unit(288, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/alana/front.svg",
  15230. extra: 679 / 653,
  15231. bottom: 22.5 / 701
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Normal",
  15238. height: math.unit(7 + 6 / 12, "feet")
  15239. },
  15240. {
  15241. name: "Large",
  15242. height: math.unit(50, "feet")
  15243. },
  15244. {
  15245. name: "Macro",
  15246. height: math.unit(100, "feet"),
  15247. default: true
  15248. },
  15249. {
  15250. name: "Macro+",
  15251. height: math.unit(200, "feet")
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Hasani" },
  15257. {
  15258. front: {
  15259. height: math.unit(6 + 1 / 12, "feet"),
  15260. weight: math.unit(210, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/hasani/front.svg",
  15264. extra: 244 / 232,
  15265. bottom: 0.01
  15266. }
  15267. },
  15268. back: {
  15269. height: math.unit(6 + 1 / 12, "feet"),
  15270. weight: math.unit(210, "lb"),
  15271. name: "Back",
  15272. image: {
  15273. source: "./media/characters/hasani/back.svg",
  15274. extra: 244 / 232,
  15275. bottom: 0.01
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(6 + 1 / 12, "feet")
  15283. },
  15284. {
  15285. name: "Macro",
  15286. height: math.unit(175, "feet"),
  15287. default: true
  15288. },
  15289. ]
  15290. ))
  15291. characterMakers.push(() => makeCharacter(
  15292. { name: "Nita" },
  15293. {
  15294. front: {
  15295. height: math.unit(1.82, "meters"),
  15296. weight: math.unit(140, "lb"),
  15297. name: "Front",
  15298. image: {
  15299. source: "./media/characters/nita/front.svg",
  15300. extra: 2473 / 2363,
  15301. bottom: 0.01
  15302. }
  15303. },
  15304. },
  15305. [
  15306. {
  15307. name: "Normal",
  15308. height: math.unit(1.82, "m")
  15309. },
  15310. {
  15311. name: "Macro",
  15312. height: math.unit(300, "m")
  15313. },
  15314. {
  15315. name: "Mistake Canon",
  15316. height: math.unit(0.5, "miles"),
  15317. default: true
  15318. },
  15319. {
  15320. name: "Big Mistake",
  15321. height: math.unit(13, "miles")
  15322. },
  15323. {
  15324. name: "Playing God",
  15325. height: math.unit(2450, "miles")
  15326. },
  15327. ]
  15328. ))
  15329. characterMakers.push(() => makeCharacter(
  15330. { name: "Shiriko" },
  15331. {
  15332. front: {
  15333. height: math.unit(4, "feet"),
  15334. weight: math.unit(120, "lb"),
  15335. name: "Front",
  15336. image: {
  15337. source: "./media/characters/shiriko/front.svg",
  15338. extra: 195 / 188
  15339. }
  15340. },
  15341. },
  15342. [
  15343. {
  15344. name: "Normal",
  15345. height: math.unit(4, "feet"),
  15346. default: true
  15347. },
  15348. ]
  15349. ))
  15350. characterMakers.push(() => makeCharacter(
  15351. { name: "Deja" },
  15352. {
  15353. front: {
  15354. height: math.unit(6, "feet"),
  15355. name: "front",
  15356. image: {
  15357. source: "./media/characters/deja/front.svg",
  15358. extra: 926 / 840,
  15359. bottom: 0.07
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Planck Length",
  15366. height: math.unit(1.6e-35, "meters")
  15367. },
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(30.48, "meters"),
  15371. default: true
  15372. },
  15373. {
  15374. name: "Universal",
  15375. height: math.unit(8.8e26, "meters")
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Anima" },
  15381. {
  15382. side: {
  15383. height: math.unit(8, "feet"),
  15384. weight: math.unit(6300, "lb"),
  15385. name: "Side",
  15386. image: {
  15387. source: "./media/characters/anima/side.svg",
  15388. bottom: 0.035
  15389. }
  15390. },
  15391. },
  15392. [
  15393. {
  15394. name: "Normal",
  15395. height: math.unit(8, "feet"),
  15396. default: true
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Bianca" },
  15402. {
  15403. front: {
  15404. height: math.unit(8, "feet"),
  15405. weight: math.unit(350, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/bianca/front.svg",
  15409. extra: 234 / 225,
  15410. bottom: 0.03
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Normal",
  15417. height: math.unit(8, "feet"),
  15418. default: true
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Adinia" },
  15424. {
  15425. front: {
  15426. height: math.unit(6, "feet"),
  15427. weight: math.unit(150, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/adinia/front.svg",
  15431. extra: 1845 / 1672,
  15432. bottom: 0.02
  15433. }
  15434. },
  15435. back: {
  15436. height: math.unit(6, "feet"),
  15437. weight: math.unit(150, "lb"),
  15438. name: "Back",
  15439. image: {
  15440. source: "./media/characters/adinia/back.svg",
  15441. extra: 1845 / 1672,
  15442. bottom: 0.002
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Normal",
  15449. height: math.unit(11 + 5 / 12, "feet"),
  15450. default: true
  15451. },
  15452. ]
  15453. ))
  15454. characterMakers.push(() => makeCharacter(
  15455. { name: "Lykasa" },
  15456. {
  15457. front: {
  15458. height: math.unit(3, "meters"),
  15459. weight: math.unit(200, "kg"),
  15460. name: "Front",
  15461. image: {
  15462. source: "./media/characters/lykasa/front.svg",
  15463. extra: 1076 / 976,
  15464. bottom: 0.06
  15465. }
  15466. },
  15467. },
  15468. [
  15469. {
  15470. name: "Normal",
  15471. height: math.unit(3, "meters")
  15472. },
  15473. {
  15474. name: "Kaiju",
  15475. height: math.unit(120, "meters"),
  15476. default: true
  15477. },
  15478. {
  15479. name: "Mega Kaiju",
  15480. height: math.unit(240, "km")
  15481. },
  15482. {
  15483. name: "Giga Kaiju",
  15484. height: math.unit(400, "megameters")
  15485. },
  15486. {
  15487. name: "Tera Kaiju",
  15488. height: math.unit(800, "gigameters")
  15489. },
  15490. {
  15491. name: "Kaiju Dragon Goddess",
  15492. height: math.unit(26, "zettaparsecs")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Malfaren" },
  15498. {
  15499. side: {
  15500. height: math.unit(283 / 124 * 6, "feet"),
  15501. weight: math.unit(35000, "lb"),
  15502. name: "Side",
  15503. image: {
  15504. source: "./media/characters/malfaren/side.svg",
  15505. extra: 2500 / 1010,
  15506. bottom: 0.01
  15507. }
  15508. },
  15509. front: {
  15510. height: math.unit(22.36, "feet"),
  15511. weight: math.unit(35000, "lb"),
  15512. name: "Front",
  15513. image: {
  15514. source: "./media/characters/malfaren/front.svg",
  15515. extra: 1631 / 1476,
  15516. bottom: 0.01
  15517. }
  15518. },
  15519. maw: {
  15520. height: math.unit(6.9, "feet"),
  15521. name: "Maw",
  15522. image: {
  15523. source: "./media/characters/malfaren/maw.svg"
  15524. }
  15525. },
  15526. },
  15527. [
  15528. {
  15529. name: "Big",
  15530. height: math.unit(283 / 162 * 6, "feet"),
  15531. },
  15532. {
  15533. name: "Bigger",
  15534. height: math.unit(283 / 124 * 6, "feet")
  15535. },
  15536. {
  15537. name: "Massive",
  15538. height: math.unit(283 / 92 * 6, "feet"),
  15539. default: true
  15540. },
  15541. {
  15542. name: "👀💦",
  15543. height: math.unit(283 / 73 * 6, "feet"),
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Kernel" },
  15549. {
  15550. front: {
  15551. height: math.unit(1.7, "m"),
  15552. weight: math.unit(70, "kg"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/kernel/front.svg",
  15556. extra: 222 / 210,
  15557. bottom: 0.007
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Nano",
  15564. height: math.unit(17, "micrometers")
  15565. },
  15566. {
  15567. name: "Micro",
  15568. height: math.unit(1.7, "mm")
  15569. },
  15570. {
  15571. name: "Small",
  15572. height: math.unit(1.7, "cm")
  15573. },
  15574. {
  15575. name: "Normal",
  15576. height: math.unit(1.7, "m"),
  15577. default: true
  15578. },
  15579. ]
  15580. ))
  15581. characterMakers.push(() => makeCharacter(
  15582. { name: "Jayne Folest" },
  15583. {
  15584. front: {
  15585. height: math.unit(1.75, "meters"),
  15586. weight: math.unit(65, "kg"),
  15587. name: "Front",
  15588. image: {
  15589. source: "./media/characters/jayne-folest/front.svg",
  15590. extra: 2115 / 2007,
  15591. bottom: 0.02
  15592. }
  15593. },
  15594. back: {
  15595. height: math.unit(1.75, "meters"),
  15596. weight: math.unit(65, "kg"),
  15597. name: "Back",
  15598. image: {
  15599. source: "./media/characters/jayne-folest/back.svg",
  15600. extra: 2115 / 2007,
  15601. bottom: 0.005
  15602. }
  15603. },
  15604. frontClothed: {
  15605. height: math.unit(1.75, "meters"),
  15606. weight: math.unit(65, "kg"),
  15607. name: "Front (Clothed)",
  15608. image: {
  15609. source: "./media/characters/jayne-folest/front-clothed.svg",
  15610. extra: 2115 / 2007,
  15611. bottom: 0.035
  15612. }
  15613. },
  15614. hand: {
  15615. height: math.unit(1 / 1.260, "feet"),
  15616. name: "Hand",
  15617. image: {
  15618. source: "./media/characters/jayne-folest/hand.svg"
  15619. }
  15620. },
  15621. foot: {
  15622. height: math.unit(1 / 0.918, "feet"),
  15623. name: "Foot",
  15624. image: {
  15625. source: "./media/characters/jayne-folest/foot.svg"
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Micro",
  15632. height: math.unit(4, "cm")
  15633. },
  15634. {
  15635. name: "Normal",
  15636. height: math.unit(1.75, "meters")
  15637. },
  15638. {
  15639. name: "Macro",
  15640. height: math.unit(47.5, "meters"),
  15641. default: true
  15642. },
  15643. ]
  15644. ))
  15645. characterMakers.push(() => makeCharacter(
  15646. { name: "Algier" },
  15647. {
  15648. front: {
  15649. height: math.unit(180, "cm"),
  15650. weight: math.unit(70, "kg"),
  15651. name: "Front",
  15652. image: {
  15653. source: "./media/characters/algier/front.svg",
  15654. extra: 596 / 572,
  15655. bottom: 0.04
  15656. }
  15657. },
  15658. back: {
  15659. height: math.unit(180, "cm"),
  15660. weight: math.unit(70, "kg"),
  15661. name: "Back",
  15662. image: {
  15663. source: "./media/characters/algier/back.svg",
  15664. extra: 596 / 572,
  15665. bottom: 0.025
  15666. }
  15667. },
  15668. frontdressed: {
  15669. height: math.unit(180, "cm"),
  15670. weight: math.unit(150, "kg"),
  15671. name: "Front-dressed",
  15672. image: {
  15673. source: "./media/characters/algier/front-dressed.svg",
  15674. extra: 596 / 572,
  15675. bottom: 0.038
  15676. }
  15677. },
  15678. },
  15679. [
  15680. {
  15681. name: "Micro",
  15682. height: math.unit(5, "cm")
  15683. },
  15684. {
  15685. name: "Normal",
  15686. height: math.unit(180, "cm"),
  15687. default: true
  15688. },
  15689. {
  15690. name: "Macro",
  15691. height: math.unit(64, "m")
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Pretzel" },
  15697. {
  15698. upright: {
  15699. height: math.unit(7, "feet"),
  15700. weight: math.unit(300, "lb"),
  15701. name: "Upright",
  15702. image: {
  15703. source: "./media/characters/pretzel/upright.svg",
  15704. extra: 534 / 522,
  15705. bottom: 0.065
  15706. }
  15707. },
  15708. sprawling: {
  15709. height: math.unit(3.75, "feet"),
  15710. weight: math.unit(300, "lb"),
  15711. name: "Sprawling",
  15712. image: {
  15713. source: "./media/characters/pretzel/sprawling.svg",
  15714. extra: 314 / 281,
  15715. bottom: 0.1
  15716. }
  15717. },
  15718. tongue: {
  15719. height: math.unit(2, "feet"),
  15720. name: "Tongue",
  15721. image: {
  15722. source: "./media/characters/pretzel/tongue.svg"
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(7, "feet"),
  15730. default: true
  15731. },
  15732. {
  15733. name: "Oversized",
  15734. height: math.unit(15, "feet")
  15735. },
  15736. {
  15737. name: "Huge",
  15738. height: math.unit(30, "feet")
  15739. },
  15740. {
  15741. name: "Macro",
  15742. height: math.unit(250, "feet")
  15743. },
  15744. ]
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Roxi" },
  15748. {
  15749. sideFront: {
  15750. height: math.unit(5 + 2 / 12, "feet"),
  15751. weight: math.unit(120, "lb"),
  15752. name: "Front Side",
  15753. image: {
  15754. source: "./media/characters/roxi/side-front.svg",
  15755. extra: 2924 / 2717,
  15756. bottom: 0.08
  15757. }
  15758. },
  15759. sideBack: {
  15760. height: math.unit(5 + 2 / 12, "feet"),
  15761. weight: math.unit(120, "lb"),
  15762. name: "Back Side",
  15763. image: {
  15764. source: "./media/characters/roxi/side-back.svg",
  15765. extra: 2904 / 2693,
  15766. bottom: 0.06
  15767. }
  15768. },
  15769. front: {
  15770. height: math.unit(5 + 2 / 12, "feet"),
  15771. weight: math.unit(120, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/roxi/front.svg",
  15775. extra: 2028 / 1907,
  15776. bottom: 0.01
  15777. }
  15778. },
  15779. frontAlt: {
  15780. height: math.unit(5 + 2 / 12, "feet"),
  15781. weight: math.unit(120, "lb"),
  15782. name: "Front (Alt)",
  15783. image: {
  15784. source: "./media/characters/roxi/front-alt.svg",
  15785. extra: 1828 / 1798,
  15786. bottom: 0.01
  15787. }
  15788. },
  15789. sitting: {
  15790. height: math.unit(2.8, "feet"),
  15791. weight: math.unit(120, "lb"),
  15792. name: "Sitting",
  15793. image: {
  15794. source: "./media/characters/roxi/sitting.svg",
  15795. extra: 2660 / 2462,
  15796. bottom: 0.1
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Normal",
  15803. height: math.unit(5 + 2 / 12, "feet"),
  15804. default: true
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Shadow" },
  15810. {
  15811. side: {
  15812. height: math.unit(55, "feet"),
  15813. weight: math.unit(153, "tons"),
  15814. name: "Side",
  15815. image: {
  15816. source: "./media/characters/shadow/side.svg",
  15817. extra: 701 / 628,
  15818. bottom: 0.02
  15819. }
  15820. },
  15821. flying: {
  15822. height: math.unit(145, "feet"),
  15823. weight: math.unit(153, "tons"),
  15824. name: "Flying",
  15825. image: {
  15826. source: "./media/characters/shadow/flying.svg"
  15827. }
  15828. },
  15829. },
  15830. [
  15831. {
  15832. name: "Normal",
  15833. height: math.unit(55, "feet"),
  15834. default: true
  15835. },
  15836. ]
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Marcie" },
  15840. {
  15841. front: {
  15842. height: math.unit(6, "feet"),
  15843. weight: math.unit(200, "lb"),
  15844. name: "Front",
  15845. image: {
  15846. source: "./media/characters/marcie/front.svg",
  15847. extra: 960 / 876,
  15848. bottom: 58 / 1017.87
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Macro",
  15855. height: math.unit(1, "mile"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Kachina" },
  15862. {
  15863. front: {
  15864. height: math.unit(7, "feet"),
  15865. weight: math.unit(200, "lb"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/kachina/front.svg",
  15869. extra: 1290.68 / 1119,
  15870. bottom: 36.5 / 1327.18
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(7, "feet"),
  15878. default: true
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Kash" },
  15884. {
  15885. looking: {
  15886. height: math.unit(2, "meters"),
  15887. weight: math.unit(300, "kg"),
  15888. name: "Looking",
  15889. image: {
  15890. source: "./media/characters/kash/looking.svg",
  15891. extra: 474 / 344,
  15892. bottom: 0.03
  15893. }
  15894. },
  15895. side: {
  15896. height: math.unit(2, "meters"),
  15897. weight: math.unit(300, "kg"),
  15898. name: "Side",
  15899. image: {
  15900. source: "./media/characters/kash/side.svg",
  15901. extra: 302 / 251,
  15902. bottom: 0.03
  15903. }
  15904. },
  15905. front: {
  15906. height: math.unit(2, "meters"),
  15907. weight: math.unit(300, "kg"),
  15908. name: "Front",
  15909. image: {
  15910. source: "./media/characters/kash/front.svg",
  15911. extra: 495 / 360,
  15912. bottom: 0.015
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Normal",
  15919. height: math.unit(2, "meters"),
  15920. default: true
  15921. },
  15922. {
  15923. name: "Big",
  15924. height: math.unit(3, "meters")
  15925. },
  15926. {
  15927. name: "Large",
  15928. height: math.unit(5, "meters")
  15929. },
  15930. ]
  15931. ))
  15932. characterMakers.push(() => makeCharacter(
  15933. { name: "Lalim" },
  15934. {
  15935. feeding: {
  15936. height: math.unit(6.7, "feet"),
  15937. weight: math.unit(350, "lb"),
  15938. name: "Feeding",
  15939. image: {
  15940. source: "./media/characters/lalim/feeding.svg",
  15941. }
  15942. },
  15943. },
  15944. [
  15945. {
  15946. name: "Normal",
  15947. height: math.unit(6.7, "feet"),
  15948. default: true
  15949. },
  15950. ]
  15951. ))
  15952. characterMakers.push(() => makeCharacter(
  15953. { name: "De'Vout" },
  15954. {
  15955. front: {
  15956. height: math.unit(9.5, "feet"),
  15957. weight: math.unit(600, "lb"),
  15958. name: "Front",
  15959. image: {
  15960. source: "./media/characters/de'vout/front.svg",
  15961. extra: 1443 / 1328,
  15962. bottom: 0.025
  15963. }
  15964. },
  15965. back: {
  15966. height: math.unit(9.5, "feet"),
  15967. weight: math.unit(600, "lb"),
  15968. name: "Back",
  15969. image: {
  15970. source: "./media/characters/de'vout/back.svg",
  15971. extra: 1443 / 1328
  15972. }
  15973. },
  15974. frontDressed: {
  15975. height: math.unit(9.5, "feet"),
  15976. weight: math.unit(600, "lb"),
  15977. name: "Front (Dressed",
  15978. image: {
  15979. source: "./media/characters/de'vout/front-dressed.svg",
  15980. extra: 1443 / 1328,
  15981. bottom: 0.025
  15982. }
  15983. },
  15984. backDressed: {
  15985. height: math.unit(9.5, "feet"),
  15986. weight: math.unit(600, "lb"),
  15987. name: "Back (Dressed",
  15988. image: {
  15989. source: "./media/characters/de'vout/back-dressed.svg",
  15990. extra: 1443 / 1328
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(9.5, "feet"),
  15998. default: true
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Talana" },
  16004. {
  16005. front: {
  16006. height: math.unit(8, "feet"),
  16007. weight: math.unit(225, "lb"),
  16008. name: "Front",
  16009. image: {
  16010. source: "./media/characters/talana/front.svg",
  16011. extra: 1410 / 1300,
  16012. bottom: 0.015
  16013. }
  16014. },
  16015. frontDressed: {
  16016. height: math.unit(8, "feet"),
  16017. weight: math.unit(225, "lb"),
  16018. name: "Front (Dressed",
  16019. image: {
  16020. source: "./media/characters/talana/front-dressed.svg",
  16021. extra: 1410 / 1300,
  16022. bottom: 0.015
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Normal",
  16029. height: math.unit(8, "feet"),
  16030. default: true
  16031. },
  16032. ]
  16033. ))
  16034. characterMakers.push(() => makeCharacter(
  16035. { name: "Xeauvok" },
  16036. {
  16037. side: {
  16038. height: math.unit(7.2, "feet"),
  16039. weight: math.unit(150, "lb"),
  16040. name: "Side",
  16041. image: {
  16042. source: "./media/characters/xeauvok/side.svg",
  16043. extra: 1975 / 1523,
  16044. bottom: 0.07
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Normal",
  16051. height: math.unit(7.2, "feet"),
  16052. default: true
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Zara" },
  16058. {
  16059. side: {
  16060. height: math.unit(10, "feet"),
  16061. weight: math.unit(900, "kg"),
  16062. name: "Side",
  16063. image: {
  16064. source: "./media/characters/zara/side.svg",
  16065. extra: 504 / 498
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Normal",
  16072. height: math.unit(10, "feet"),
  16073. default: true
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Richard (Dragon)" },
  16079. {
  16080. side: {
  16081. height: math.unit(6, "feet"),
  16082. weight: math.unit(150, "lb"),
  16083. name: "Side",
  16084. image: {
  16085. source: "./media/characters/richard-dragon/side.svg",
  16086. extra: 845 / 340,
  16087. bottom: 0.017
  16088. }
  16089. },
  16090. maw: {
  16091. height: math.unit(2.97, "feet"),
  16092. name: "Maw",
  16093. image: {
  16094. source: "./media/characters/richard-dragon/maw.svg"
  16095. }
  16096. },
  16097. },
  16098. [
  16099. ]
  16100. ))
  16101. characterMakers.push(() => makeCharacter(
  16102. { name: "Richard (Smeargle)" },
  16103. {
  16104. front: {
  16105. height: math.unit(4, "feet"),
  16106. weight: math.unit(100, "lb"),
  16107. name: "Front",
  16108. image: {
  16109. source: "./media/characters/richard-smeargle/front.svg",
  16110. extra: 2952 / 2820,
  16111. bottom: 0.028
  16112. }
  16113. },
  16114. },
  16115. [
  16116. {
  16117. name: "Normal",
  16118. height: math.unit(4, "feet"),
  16119. default: true
  16120. },
  16121. {
  16122. name: "Dynamax",
  16123. height: math.unit(20, "meters")
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Klay" },
  16129. {
  16130. front: {
  16131. height: math.unit(6, "feet"),
  16132. weight: math.unit(110, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/klay/front.svg",
  16136. extra: 962 / 883,
  16137. bottom: 0.04
  16138. }
  16139. },
  16140. back: {
  16141. height: math.unit(6, "feet"),
  16142. weight: math.unit(110, "lb"),
  16143. name: "Back",
  16144. image: {
  16145. source: "./media/characters/klay/back.svg",
  16146. extra: 962 / 883
  16147. }
  16148. },
  16149. beans: {
  16150. height: math.unit(1.15, "feet"),
  16151. name: "Beans",
  16152. image: {
  16153. source: "./media/characters/klay/beans.svg"
  16154. }
  16155. },
  16156. },
  16157. [
  16158. {
  16159. name: "Micro",
  16160. height: math.unit(6, "inches")
  16161. },
  16162. {
  16163. name: "Mini",
  16164. height: math.unit(3, "feet")
  16165. },
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(6, "feet"),
  16169. default: true
  16170. },
  16171. {
  16172. name: "Big",
  16173. height: math.unit(25, "feet")
  16174. },
  16175. {
  16176. name: "Macro",
  16177. height: math.unit(100, "feet")
  16178. },
  16179. {
  16180. name: "Megamacro",
  16181. height: math.unit(400, "feet")
  16182. },
  16183. ]
  16184. ))
  16185. characterMakers.push(() => makeCharacter(
  16186. { name: "Marcus" },
  16187. {
  16188. front: {
  16189. height: math.unit(6, "feet"),
  16190. weight: math.unit(160, "lb"),
  16191. name: "Front",
  16192. image: {
  16193. source: "./media/characters/marcus/front.svg",
  16194. extra: 734 / 676,
  16195. bottom: 0.03
  16196. }
  16197. },
  16198. },
  16199. [
  16200. {
  16201. name: "Little",
  16202. height: math.unit(6, "feet")
  16203. },
  16204. {
  16205. name: "Normal",
  16206. height: math.unit(110, "feet"),
  16207. default: true
  16208. },
  16209. {
  16210. name: "Macro",
  16211. height: math.unit(250, "feet")
  16212. },
  16213. {
  16214. name: "Megamacro",
  16215. height: math.unit(1000, "feet")
  16216. },
  16217. ]
  16218. ))
  16219. characterMakers.push(() => makeCharacter(
  16220. { name: "Claude DelRoute" },
  16221. {
  16222. front: {
  16223. height: math.unit(7, "feet"),
  16224. weight: math.unit(275, "lb"),
  16225. name: "Front",
  16226. image: {
  16227. source: "./media/characters/claude-delroute/front.svg",
  16228. extra: 230 / 214,
  16229. bottom: 0.007
  16230. }
  16231. },
  16232. side: {
  16233. height: math.unit(7, "feet"),
  16234. weight: math.unit(275, "lb"),
  16235. name: "Side",
  16236. image: {
  16237. source: "./media/characters/claude-delroute/side.svg",
  16238. extra: 222 / 214,
  16239. bottom: 0.01
  16240. }
  16241. },
  16242. back: {
  16243. height: math.unit(7, "feet"),
  16244. weight: math.unit(275, "lb"),
  16245. name: "Back",
  16246. image: {
  16247. source: "./media/characters/claude-delroute/back.svg",
  16248. extra: 230 / 214,
  16249. bottom: 0.015
  16250. }
  16251. },
  16252. maw: {
  16253. height: math.unit(0.6407, "meters"),
  16254. name: "Maw",
  16255. image: {
  16256. source: "./media/characters/claude-delroute/maw.svg"
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(7, "feet"),
  16264. default: true
  16265. },
  16266. {
  16267. name: "Lorge",
  16268. height: math.unit(20, "feet")
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Dragonien" },
  16274. {
  16275. front: {
  16276. height: math.unit(8 + 4 / 12, "feet"),
  16277. weight: math.unit(600, "lb"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/dragonien/front.svg",
  16281. extra: 100 / 94,
  16282. bottom: 3.3 / 103.3445
  16283. }
  16284. },
  16285. back: {
  16286. height: math.unit(8 + 4 / 12, "feet"),
  16287. weight: math.unit(600, "lb"),
  16288. name: "Back",
  16289. image: {
  16290. source: "./media/characters/dragonien/back.svg",
  16291. extra: 776 / 746,
  16292. bottom: 6.4 / 782.0616
  16293. }
  16294. },
  16295. foot: {
  16296. height: math.unit(1.54, "feet"),
  16297. name: "Foot",
  16298. image: {
  16299. source: "./media/characters/dragonien/foot.svg",
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(8 + 4 / 12, "feet"),
  16307. default: true
  16308. },
  16309. {
  16310. name: "Macro",
  16311. height: math.unit(200, "feet")
  16312. },
  16313. {
  16314. name: "Megamacro",
  16315. height: math.unit(1, "mile")
  16316. },
  16317. {
  16318. name: "Gigamacro",
  16319. height: math.unit(1000, "miles")
  16320. },
  16321. ]
  16322. ))
  16323. characterMakers.push(() => makeCharacter(
  16324. { name: "Desta" },
  16325. {
  16326. front: {
  16327. height: math.unit(5 + 2 / 12, "feet"),
  16328. weight: math.unit(110, "lb"),
  16329. name: "Front",
  16330. image: {
  16331. source: "./media/characters/desta/front.svg",
  16332. extra: 1482 / 1417
  16333. }
  16334. },
  16335. side: {
  16336. height: math.unit(5 + 2 / 12, "feet"),
  16337. weight: math.unit(110, "lb"),
  16338. name: "Side",
  16339. image: {
  16340. source: "./media/characters/desta/side.svg",
  16341. extra: 2579 / 2491,
  16342. bottom: 0.053
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Micro",
  16349. height: math.unit(6, "inches")
  16350. },
  16351. {
  16352. name: "Normal",
  16353. height: math.unit(5 + 2 / 12, "feet"),
  16354. default: true
  16355. },
  16356. {
  16357. name: "Macro",
  16358. height: math.unit(62, "feet")
  16359. },
  16360. {
  16361. name: "Megamacro",
  16362. height: math.unit(1800, "feet")
  16363. },
  16364. ]
  16365. ))
  16366. characterMakers.push(() => makeCharacter(
  16367. { name: "Storm Alystar" },
  16368. {
  16369. front: {
  16370. height: math.unit(10, "feet"),
  16371. weight: math.unit(700, "lb"),
  16372. name: "Front",
  16373. image: {
  16374. source: "./media/characters/storm-alystar/front.svg",
  16375. extra: 2112 / 1898,
  16376. bottom: 0.034
  16377. }
  16378. },
  16379. },
  16380. [
  16381. {
  16382. name: "Micro",
  16383. height: math.unit(3.5, "inches")
  16384. },
  16385. {
  16386. name: "Normal",
  16387. height: math.unit(10, "feet"),
  16388. default: true
  16389. },
  16390. {
  16391. name: "Macro",
  16392. height: math.unit(400, "feet")
  16393. },
  16394. {
  16395. name: "Deific",
  16396. height: math.unit(60, "miles")
  16397. },
  16398. ]
  16399. ))
  16400. characterMakers.push(() => makeCharacter(
  16401. { name: "Ilia" },
  16402. {
  16403. front: {
  16404. height: math.unit(2.35, "meters"),
  16405. weight: math.unit(119, "kg"),
  16406. name: "Front",
  16407. image: {
  16408. source: "./media/characters/ilia/front.svg",
  16409. extra: 1285 / 1255,
  16410. bottom: 0.06
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(2.35, "meters")
  16418. },
  16419. {
  16420. name: "Macro",
  16421. height: math.unit(140, "meters"),
  16422. default: true
  16423. },
  16424. {
  16425. name: "Megamacro",
  16426. height: math.unit(100, "miles")
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "KingDead" },
  16432. {
  16433. front: {
  16434. height: math.unit(6 + 5 / 12, "feet"),
  16435. weight: math.unit(190, "lb"),
  16436. name: "Front",
  16437. image: {
  16438. source: "./media/characters/kingdead/front.svg",
  16439. extra: 1228 / 1177
  16440. }
  16441. },
  16442. },
  16443. [
  16444. {
  16445. name: "Micro",
  16446. height: math.unit(7, "inches")
  16447. },
  16448. {
  16449. name: "Normal",
  16450. height: math.unit(6 + 5 / 12, "feet")
  16451. },
  16452. {
  16453. name: "Macro",
  16454. height: math.unit(150, "feet"),
  16455. default: true
  16456. },
  16457. {
  16458. name: "Megamacro",
  16459. height: math.unit(200, "miles")
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Kyrehx" },
  16465. {
  16466. front: {
  16467. height: math.unit(8, "feet"),
  16468. weight: math.unit(600, "lb"),
  16469. name: "Front",
  16470. image: {
  16471. source: "./media/characters/kyrehx/front.svg",
  16472. extra: 1195 / 1095,
  16473. bottom: 0.034
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Micro",
  16480. height: math.unit(2, "inches")
  16481. },
  16482. {
  16483. name: "Normal",
  16484. height: math.unit(8, "feet"),
  16485. default: true
  16486. },
  16487. {
  16488. name: "Macro",
  16489. height: math.unit(255, "feet")
  16490. },
  16491. ]
  16492. ))
  16493. characterMakers.push(() => makeCharacter(
  16494. { name: "Xang" },
  16495. {
  16496. front: {
  16497. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16498. weight: math.unit(184, "lb"),
  16499. name: "Front",
  16500. image: {
  16501. source: "./media/characters/xang/front.svg",
  16502. extra: 845 / 755
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  16510. default: true
  16511. },
  16512. {
  16513. name: "Macro",
  16514. height: math.unit(0.935 * 146, "feet")
  16515. },
  16516. {
  16517. name: "Megamacro",
  16518. height: math.unit(0.935 * 3, "miles")
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Doc Weardno" },
  16524. {
  16525. frontDressed: {
  16526. height: math.unit(5 + 7 / 12, "feet"),
  16527. weight: math.unit(140, "lb"),
  16528. name: "Front (Dressed)",
  16529. image: {
  16530. source: "./media/characters/doc-weardno/front-dressed.svg",
  16531. extra: 263 / 234
  16532. }
  16533. },
  16534. backDressed: {
  16535. height: math.unit(5 + 7 / 12, "feet"),
  16536. weight: math.unit(140, "lb"),
  16537. name: "Back (Dressed)",
  16538. image: {
  16539. source: "./media/characters/doc-weardno/back-dressed.svg",
  16540. extra: 266 / 238
  16541. }
  16542. },
  16543. front: {
  16544. height: math.unit(5 + 7 / 12, "feet"),
  16545. weight: math.unit(140, "lb"),
  16546. name: "Front",
  16547. image: {
  16548. source: "./media/characters/doc-weardno/front.svg",
  16549. extra: 254 / 233
  16550. }
  16551. },
  16552. },
  16553. [
  16554. {
  16555. name: "Micro",
  16556. height: math.unit(3, "inches")
  16557. },
  16558. {
  16559. name: "Normal",
  16560. height: math.unit(5 + 7 / 12, "feet"),
  16561. default: true
  16562. },
  16563. {
  16564. name: "Macro",
  16565. height: math.unit(25, "feet")
  16566. },
  16567. {
  16568. name: "Megamacro",
  16569. height: math.unit(2, "miles")
  16570. },
  16571. ]
  16572. ))
  16573. characterMakers.push(() => makeCharacter(
  16574. { name: "Seth Whilst" },
  16575. {
  16576. front: {
  16577. height: math.unit(6 + 2 / 12, "feet"),
  16578. weight: math.unit(153, "lb"),
  16579. name: "Front",
  16580. image: {
  16581. source: "./media/characters/seth-whilst/front.svg",
  16582. bottom: 0.07
  16583. }
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Micro",
  16589. height: math.unit(5, "inches")
  16590. },
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(6 + 2 / 12, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Pocket Jabari" },
  16600. {
  16601. front: {
  16602. height: math.unit(3, "inches"),
  16603. weight: math.unit(8, "grams"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/pocket-jabari/front.svg",
  16607. extra: 1024 / 974,
  16608. bottom: 0.039
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Minimicro",
  16615. height: math.unit(8, "mm")
  16616. },
  16617. {
  16618. name: "Micro",
  16619. height: math.unit(3, "inches"),
  16620. default: true
  16621. },
  16622. {
  16623. name: "Normal",
  16624. height: math.unit(3, "feet")
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Sapphy" },
  16630. {
  16631. front: {
  16632. height: math.unit(15, "feet"),
  16633. weight: math.unit(3280, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/sapphy/front.svg",
  16637. extra: 671 / 577,
  16638. bottom: 0.085
  16639. }
  16640. },
  16641. back: {
  16642. height: math.unit(15, "feet"),
  16643. weight: math.unit(3280, "lb"),
  16644. name: "Back",
  16645. image: {
  16646. source: "./media/characters/sapphy/back.svg",
  16647. extra: 631 / 607,
  16648. bottom: 0.045
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(15, "feet")
  16656. },
  16657. {
  16658. name: "Casual Macro",
  16659. height: math.unit(120, "feet")
  16660. },
  16661. {
  16662. name: "Macro",
  16663. height: math.unit(2150, "feet"),
  16664. default: true
  16665. },
  16666. {
  16667. name: "Megamacro",
  16668. height: math.unit(8, "miles")
  16669. },
  16670. {
  16671. name: "Galaxy Mom",
  16672. height: math.unit(6, "megalightyears")
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Kiro" },
  16678. {
  16679. front: {
  16680. height: math.unit(6, "feet"),
  16681. weight: math.unit(170, "lb"),
  16682. name: "Front",
  16683. image: {
  16684. source: "./media/characters/kiro/front.svg",
  16685. extra: 1064 / 1012,
  16686. bottom: 0.052
  16687. }
  16688. },
  16689. },
  16690. [
  16691. {
  16692. name: "Micro",
  16693. height: math.unit(6, "inches")
  16694. },
  16695. {
  16696. name: "Normal",
  16697. height: math.unit(6, "feet"),
  16698. default: true
  16699. },
  16700. {
  16701. name: "Macro",
  16702. height: math.unit(72, "feet")
  16703. },
  16704. ]
  16705. ))
  16706. characterMakers.push(() => makeCharacter(
  16707. { name: "Irishfox" },
  16708. {
  16709. front: {
  16710. height: math.unit(5 + 9 / 12, "feet"),
  16711. weight: math.unit(175, "lb"),
  16712. name: "Front",
  16713. image: {
  16714. source: "./media/characters/irishfox/front.svg",
  16715. extra: 1912 / 1680,
  16716. bottom: 0.02
  16717. }
  16718. },
  16719. },
  16720. [
  16721. {
  16722. name: "Nano",
  16723. height: math.unit(1, "mm")
  16724. },
  16725. {
  16726. name: "Micro",
  16727. height: math.unit(2, "inches")
  16728. },
  16729. {
  16730. name: "Normal",
  16731. height: math.unit(5 + 9 / 12, "feet"),
  16732. default: true
  16733. },
  16734. {
  16735. name: "Macro",
  16736. height: math.unit(45, "feet")
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Aronai Sieyes" },
  16742. {
  16743. front: {
  16744. height: math.unit(6 + 1 / 12, "feet"),
  16745. weight: math.unit(150, "lb"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/aronai-sieyes/front.svg",
  16749. extra: 1556 / 1480,
  16750. bottom: 0.015
  16751. }
  16752. },
  16753. side: {
  16754. height: math.unit(6 + 1 / 12, "feet"),
  16755. weight: math.unit(150, "lb"),
  16756. name: "Side",
  16757. image: {
  16758. source: "./media/characters/aronai-sieyes/side.svg",
  16759. extra: 1433 / 1390,
  16760. bottom: 0.0393
  16761. }
  16762. },
  16763. back: {
  16764. height: math.unit(6 + 1 / 12, "feet"),
  16765. weight: math.unit(150, "lb"),
  16766. name: "Back",
  16767. image: {
  16768. source: "./media/characters/aronai-sieyes/back.svg",
  16769. extra: 1544 / 1494,
  16770. bottom: 0.02
  16771. }
  16772. },
  16773. frontClothed: {
  16774. height: math.unit(6 + 1 / 12, "feet"),
  16775. weight: math.unit(150, "lb"),
  16776. name: "Front (Clothed)",
  16777. image: {
  16778. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  16779. extra: 1582 / 1527
  16780. }
  16781. },
  16782. feral: {
  16783. height: math.unit(18, "feet"),
  16784. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  16785. name: "Feral",
  16786. image: {
  16787. source: "./media/characters/aronai-sieyes/feral.svg",
  16788. extra: 1530 / 1240,
  16789. bottom: 0.035
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Micro",
  16796. height: math.unit(2, "inches")
  16797. },
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(6 + 1 / 12, "feet"),
  16801. default: true
  16802. }
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Xuna" },
  16807. {
  16808. front: {
  16809. height: math.unit(12, "feet"),
  16810. weight: math.unit(410, "kg"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/xuna/front.svg",
  16814. extra: 2184 / 1980
  16815. }
  16816. },
  16817. side: {
  16818. height: math.unit(12, "feet"),
  16819. weight: math.unit(410, "kg"),
  16820. name: "Side",
  16821. image: {
  16822. source: "./media/characters/xuna/side.svg",
  16823. extra: 2184 / 1980
  16824. }
  16825. },
  16826. back: {
  16827. height: math.unit(12, "feet"),
  16828. weight: math.unit(410, "kg"),
  16829. name: "Back",
  16830. image: {
  16831. source: "./media/characters/xuna/back.svg",
  16832. extra: 2184 / 1980
  16833. }
  16834. },
  16835. },
  16836. [
  16837. {
  16838. name: "Nano glow",
  16839. height: math.unit(10, "nm")
  16840. },
  16841. {
  16842. name: "Micro floof",
  16843. height: math.unit(0.3, "m")
  16844. },
  16845. {
  16846. name: "Huggable softy boi",
  16847. height: math.unit(3.6576, "m"),
  16848. default: true
  16849. },
  16850. {
  16851. name: "Admirable floof",
  16852. height: math.unit(80, "meters")
  16853. },
  16854. {
  16855. name: "Gentle macro",
  16856. height: math.unit(300, "meters")
  16857. },
  16858. {
  16859. name: "Very careful floof",
  16860. height: math.unit(3200, "meters")
  16861. },
  16862. {
  16863. name: "The mega floof",
  16864. height: math.unit(36000, "meters")
  16865. },
  16866. {
  16867. name: "Giga-fur-Wicker",
  16868. height: math.unit(4800000, "meters")
  16869. },
  16870. {
  16871. name: "Licky world",
  16872. height: math.unit(20000000, "meters")
  16873. },
  16874. {
  16875. name: "Floofy cyan sun",
  16876. height: math.unit(1500000000, "meters")
  16877. },
  16878. {
  16879. name: "Milky Wicker",
  16880. height: math.unit(1000000000000000000000, "meters")
  16881. },
  16882. {
  16883. name: "The observing Wicker",
  16884. height: math.unit(999999999999999999999999999, "meters")
  16885. },
  16886. ]
  16887. ))
  16888. characterMakers.push(() => makeCharacter(
  16889. { name: "Arokha Sieyes" },
  16890. {
  16891. front: {
  16892. height: math.unit(5 + 9 / 12, "feet"),
  16893. weight: math.unit(150, "lb"),
  16894. name: "Front",
  16895. image: {
  16896. source: "./media/characters/arokha-sieyes/front.svg",
  16897. extra: 1425 / 1284,
  16898. bottom: 0.05
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(5 + 9 / 12, "feet")
  16906. },
  16907. {
  16908. name: "Macro",
  16909. height: math.unit(30, "meters"),
  16910. default: true
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Arokh Sieyes" },
  16916. {
  16917. front: {
  16918. height: math.unit(6, "feet"),
  16919. weight: math.unit(180, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/arokh-sieyes/front.svg",
  16923. extra: 1830 / 1769,
  16924. bottom: 0.01
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(6, "feet")
  16932. },
  16933. {
  16934. name: "Macro",
  16935. height: math.unit(30, "meters"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Goldeneye" },
  16942. {
  16943. side: {
  16944. height: math.unit(13 + 1 / 12, "feet"),
  16945. weight: math.unit(8.5, "tonnes"),
  16946. name: "Side",
  16947. image: {
  16948. source: "./media/characters/goldeneye/side.svg",
  16949. extra: 1182 / 778,
  16950. bottom: 0.067
  16951. }
  16952. },
  16953. paw: {
  16954. height: math.unit(3.4, "feet"),
  16955. name: "Paw",
  16956. image: {
  16957. source: "./media/characters/goldeneye/paw.svg"
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(13 + 1 / 12, "feet"),
  16965. default: true
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Leonardo Lycheborne" },
  16971. {
  16972. front: {
  16973. height: math.unit(6 + 1 / 12, "feet"),
  16974. weight: math.unit(210, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/leonardo-lycheborne/front.svg",
  16978. extra: 390 / 365,
  16979. bottom: 0.032
  16980. }
  16981. },
  16982. side: {
  16983. height: math.unit(6 + 1 / 12, "feet"),
  16984. weight: math.unit(210, "lb"),
  16985. name: "Side",
  16986. image: {
  16987. source: "./media/characters/leonardo-lycheborne/side.svg",
  16988. extra: 390 / 365,
  16989. bottom: 0.005
  16990. }
  16991. },
  16992. back: {
  16993. height: math.unit(6 + 1 / 12, "feet"),
  16994. weight: math.unit(210, "lb"),
  16995. name: "Back",
  16996. image: {
  16997. source: "./media/characters/leonardo-lycheborne/back.svg",
  16998. extra: 392 / 366,
  16999. bottom: 0.01
  17000. }
  17001. },
  17002. hand: {
  17003. height: math.unit(1.08, "feet"),
  17004. name: "Hand",
  17005. image: {
  17006. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17007. }
  17008. },
  17009. foot: {
  17010. height: math.unit(1.32, "feet"),
  17011. name: "Foot",
  17012. image: {
  17013. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17014. }
  17015. },
  17016. were: {
  17017. height: math.unit(20, "feet"),
  17018. weight: math.unit(7800, "lb"),
  17019. name: "Were",
  17020. image: {
  17021. source: "./media/characters/leonardo-lycheborne/were.svg",
  17022. extra: 308 / 294,
  17023. bottom: 0.048
  17024. }
  17025. },
  17026. feral: {
  17027. height: math.unit(7.5, "feet"),
  17028. weight: math.unit(600, "lb"),
  17029. name: "Feral",
  17030. image: {
  17031. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17032. extra: 210 / 186,
  17033. bottom: 0.108
  17034. }
  17035. },
  17036. taur: {
  17037. height: math.unit(11, "feet"),
  17038. weight: math.unit(3300, "lb"),
  17039. name: "Taur",
  17040. image: {
  17041. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17042. extra: 320 / 303,
  17043. bottom: 0.025
  17044. }
  17045. },
  17046. barghest: {
  17047. height: math.unit(11, "feet"),
  17048. weight: math.unit(1300, "lb"),
  17049. name: "Barghest",
  17050. image: {
  17051. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17052. extra: 323 / 302,
  17053. bottom: 0.027
  17054. }
  17055. },
  17056. dick: {
  17057. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17058. name: "Dick",
  17059. image: {
  17060. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17061. }
  17062. },
  17063. dickWere: {
  17064. height: math.unit((20) / 3.8, "feet"),
  17065. name: "Dick (Were)",
  17066. image: {
  17067. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(6 + 1 / 12, "feet"),
  17075. default: true
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Jet" },
  17081. {
  17082. front: {
  17083. height: math.unit(10, "feet"),
  17084. weight: math.unit(350, "lb"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/jet/front.svg",
  17088. extra: 2050 / 1980,
  17089. bottom: 0.013
  17090. }
  17091. },
  17092. back: {
  17093. height: math.unit(10, "feet"),
  17094. weight: math.unit(350, "lb"),
  17095. name: "Back",
  17096. image: {
  17097. source: "./media/characters/jet/back.svg",
  17098. extra: 2050 / 1980,
  17099. bottom: 0.013
  17100. }
  17101. },
  17102. },
  17103. [
  17104. {
  17105. name: "Micro",
  17106. height: math.unit(6, "inches")
  17107. },
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(10, "feet"),
  17111. default: true
  17112. },
  17113. {
  17114. name: "Macro",
  17115. height: math.unit(100, "feet")
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Tanarath" },
  17121. {
  17122. front: {
  17123. height: math.unit(15, "feet"),
  17124. weight: math.unit(2800, "lb"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/tanarath/front.svg",
  17128. extra: 2392 / 2220,
  17129. bottom: 0.03
  17130. }
  17131. },
  17132. back: {
  17133. height: math.unit(15, "feet"),
  17134. weight: math.unit(2800, "lb"),
  17135. name: "Back",
  17136. image: {
  17137. source: "./media/characters/tanarath/back.svg",
  17138. extra: 2392 / 2220,
  17139. bottom: 0.03
  17140. }
  17141. },
  17142. },
  17143. [
  17144. {
  17145. name: "Normal",
  17146. height: math.unit(15, "feet"),
  17147. default: true
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Patty CattyBatty" },
  17153. {
  17154. front: {
  17155. height: math.unit(7 + 1 / 12, "feet"),
  17156. weight: math.unit(175, "lb"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/patty-cattybatty/front.svg",
  17160. extra: 908 / 874,
  17161. bottom: 0.025
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Micro",
  17168. height: math.unit(1, "inch")
  17169. },
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(7 + 1 / 12, "feet")
  17173. },
  17174. {
  17175. name: "Mini Macro",
  17176. height: math.unit(155, "feet")
  17177. },
  17178. {
  17179. name: "Macro",
  17180. height: math.unit(1077, "feet")
  17181. },
  17182. {
  17183. name: "Mega Macro",
  17184. height: math.unit(47650, "feet"),
  17185. default: true
  17186. },
  17187. {
  17188. name: "Giga Macro",
  17189. height: math.unit(440, "miles")
  17190. },
  17191. {
  17192. name: "Tera Macro",
  17193. height: math.unit(8700, "miles")
  17194. },
  17195. {
  17196. name: "Planetary Macro",
  17197. height: math.unit(32700, "miles")
  17198. },
  17199. {
  17200. name: "Solar Macro",
  17201. height: math.unit(550000, "miles")
  17202. },
  17203. {
  17204. name: "Celestial Macro",
  17205. height: math.unit(2.5, "AU")
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Cappu" },
  17211. {
  17212. front: {
  17213. height: math.unit(4 + 5 / 12, "feet"),
  17214. weight: math.unit(90, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/cappu/front.svg",
  17218. extra: 1247 / 1152,
  17219. bottom: 0.012
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(4 + 5 / 12, "feet"),
  17227. default: true
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Sebi" },
  17233. {
  17234. frontDressed: {
  17235. height: math.unit(70, "cm"),
  17236. weight: math.unit(6, "kg"),
  17237. name: "Front (Dressed)",
  17238. image: {
  17239. source: "./media/characters/sebi/front-dressed.svg",
  17240. extra: 713.5 / 686.5,
  17241. bottom: 0.003
  17242. }
  17243. },
  17244. front: {
  17245. height: math.unit(70, "cm"),
  17246. weight: math.unit(5, "kg"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/sebi/front.svg",
  17250. extra: 713.5 / 686.5,
  17251. bottom: 0.003
  17252. }
  17253. }
  17254. },
  17255. [
  17256. {
  17257. name: "Normal",
  17258. height: math.unit(70, "cm"),
  17259. default: true
  17260. },
  17261. {
  17262. name: "Macro",
  17263. height: math.unit(8, "meters")
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Typhek" },
  17269. {
  17270. front: {
  17271. height: math.unit(6, "feet"),
  17272. weight: math.unit(150, "lb"),
  17273. name: "Front",
  17274. image: {
  17275. source: "./media/characters/typhek/front.svg",
  17276. extra: 1948 / 1929,
  17277. bottom: 0.025
  17278. }
  17279. },
  17280. side: {
  17281. height: math.unit(6, "feet"),
  17282. weight: math.unit(150, "lb"),
  17283. name: "Side",
  17284. image: {
  17285. source: "./media/characters/typhek/side.svg",
  17286. extra: 2034 / 2010,
  17287. bottom: 0.003
  17288. }
  17289. },
  17290. back: {
  17291. height: math.unit(6, "feet"),
  17292. weight: math.unit(150, "lb"),
  17293. name: "Back",
  17294. image: {
  17295. source: "./media/characters/typhek/back.svg",
  17296. extra: 2005 / 1978,
  17297. bottom: 0.004
  17298. }
  17299. },
  17300. palm: {
  17301. height: math.unit(1.2, "feet"),
  17302. name: "Palm",
  17303. image: {
  17304. source: "./media/characters/typhek/palm.svg"
  17305. }
  17306. },
  17307. fist: {
  17308. height: math.unit(1.1, "feet"),
  17309. name: "Fist",
  17310. image: {
  17311. source: "./media/characters/typhek/fist.svg"
  17312. }
  17313. },
  17314. foot: {
  17315. height: math.unit(1.57, "feet"),
  17316. name: "Foot",
  17317. image: {
  17318. source: "./media/characters/typhek/foot.svg"
  17319. }
  17320. },
  17321. sole: {
  17322. height: math.unit(2.05, "feet"),
  17323. name: "Sole",
  17324. image: {
  17325. source: "./media/characters/typhek/sole.svg"
  17326. }
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Macro",
  17332. height: math.unit(40, "stories"),
  17333. default: true
  17334. },
  17335. {
  17336. name: "Megamacro",
  17337. height: math.unit(1, "mile")
  17338. },
  17339. {
  17340. name: "Gigamacro",
  17341. height: math.unit(4000, "solarradii")
  17342. },
  17343. {
  17344. name: "Universal",
  17345. height: math.unit(1.1, "universes")
  17346. }
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Kassy" },
  17351. {
  17352. side: {
  17353. height: math.unit(5 + 7 / 12, "feet"),
  17354. weight: math.unit(150, "lb"),
  17355. name: "Side",
  17356. image: {
  17357. source: "./media/characters/kassy/side.svg",
  17358. extra: 1280 / 1225,
  17359. bottom: 0.002
  17360. }
  17361. },
  17362. front: {
  17363. height: math.unit(5 + 7 / 12, "feet"),
  17364. weight: math.unit(150, "lb"),
  17365. name: "Front",
  17366. image: {
  17367. source: "./media/characters/kassy/front.svg",
  17368. extra: 1280 / 1225,
  17369. bottom: 0.025
  17370. }
  17371. },
  17372. back: {
  17373. height: math.unit(5 + 7 / 12, "feet"),
  17374. weight: math.unit(150, "lb"),
  17375. name: "Back",
  17376. image: {
  17377. source: "./media/characters/kassy/back.svg",
  17378. extra: 1280 / 1225,
  17379. bottom: 0.002
  17380. }
  17381. },
  17382. foot: {
  17383. height: math.unit(1.266, "feet"),
  17384. name: "Foot",
  17385. image: {
  17386. source: "./media/characters/kassy/foot.svg"
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(5 + 7 / 12, "feet")
  17394. },
  17395. {
  17396. name: "Macro",
  17397. height: math.unit(137, "feet"),
  17398. default: true
  17399. },
  17400. {
  17401. name: "Megamacro",
  17402. height: math.unit(1, "mile")
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Neil" },
  17408. {
  17409. front: {
  17410. height: math.unit(6 + 1 / 12, "feet"),
  17411. weight: math.unit(200, "lb"),
  17412. name: "Front",
  17413. image: {
  17414. source: "./media/characters/neil/front.svg",
  17415. extra: 1326 / 1250,
  17416. bottom: 0.023
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(6 + 1 / 12, "feet"),
  17424. default: true
  17425. },
  17426. {
  17427. name: "Macro",
  17428. height: math.unit(200, "feet")
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Atticus" },
  17434. {
  17435. front: {
  17436. height: math.unit(5 + 9 / 12, "feet"),
  17437. weight: math.unit(190, "lb"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/atticus/front.svg",
  17441. extra: 2934 / 2785,
  17442. bottom: 0.025
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(5 + 9 / 12, "feet"),
  17450. default: true
  17451. },
  17452. {
  17453. name: "Macro",
  17454. height: math.unit(180, "feet")
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Milo" },
  17460. {
  17461. side: {
  17462. height: math.unit(9, "feet"),
  17463. weight: math.unit(650, "lb"),
  17464. name: "Side",
  17465. image: {
  17466. source: "./media/characters/milo/side.svg",
  17467. extra: 2644 / 2310,
  17468. bottom: 0.032
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Normal",
  17475. height: math.unit(9, "feet"),
  17476. default: true
  17477. },
  17478. {
  17479. name: "Macro",
  17480. height: math.unit(300, "feet")
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Ijzer" },
  17486. {
  17487. side: {
  17488. height: math.unit(8, "meters"),
  17489. weight: math.unit(90000, "kg"),
  17490. name: "Side",
  17491. image: {
  17492. source: "./media/characters/ijzer/side.svg",
  17493. extra: 2756 / 1600,
  17494. bottom: 0.01
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Small",
  17501. height: math.unit(3, "meters")
  17502. },
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(8, "meters"),
  17506. default: true
  17507. },
  17508. {
  17509. name: "Normal+",
  17510. height: math.unit(10, "meters")
  17511. },
  17512. {
  17513. name: "Bigger",
  17514. height: math.unit(24, "meters")
  17515. },
  17516. {
  17517. name: "Huge",
  17518. height: math.unit(80, "meters")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Luca Cervicum" },
  17524. {
  17525. front: {
  17526. height: math.unit(6 + 2 / 12, "feet"),
  17527. weight: math.unit(153, "lb"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/luca-cervicum/front.svg",
  17531. extra: 370 / 327,
  17532. bottom: 0.015
  17533. }
  17534. },
  17535. back: {
  17536. height: math.unit(6 + 2 / 12, "feet"),
  17537. weight: math.unit(153, "lb"),
  17538. name: "Back",
  17539. image: {
  17540. source: "./media/characters/luca-cervicum/back.svg",
  17541. extra: 367 / 333,
  17542. bottom: 0.005
  17543. }
  17544. },
  17545. frontGear: {
  17546. height: math.unit(6 + 2 / 12, "feet"),
  17547. weight: math.unit(173, "lb"),
  17548. name: "Front (Gear)",
  17549. image: {
  17550. source: "./media/characters/luca-cervicum/front-gear.svg",
  17551. extra: 377 / 333,
  17552. bottom: 0.006
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Normal",
  17559. height: math.unit(6 + 2 / 12, "feet"),
  17560. default: true
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "Oliver" },
  17566. {
  17567. front: {
  17568. height: math.unit(6 + 1 / 12, "feet"),
  17569. weight: math.unit(304, "lb"),
  17570. name: "Front",
  17571. image: {
  17572. source: "./media/characters/oliver/front.svg",
  17573. extra: 157 / 143,
  17574. bottom: 0.08
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Normal",
  17581. height: math.unit(6 + 1 / 12, "feet"),
  17582. default: true
  17583. },
  17584. ]
  17585. ))
  17586. characterMakers.push(() => makeCharacter(
  17587. { name: "Shane" },
  17588. {
  17589. front: {
  17590. height: math.unit(5 + 7 / 12, "feet"),
  17591. weight: math.unit(140, "lb"),
  17592. name: "Front",
  17593. image: {
  17594. source: "./media/characters/shane/front.svg",
  17595. extra: 304 / 289,
  17596. bottom: 0.005
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Normal",
  17603. height: math.unit(5 + 7 / 12, "feet"),
  17604. default: true
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Shin" },
  17610. {
  17611. front: {
  17612. height: math.unit(5 + 9 / 12, "feet"),
  17613. weight: math.unit(178, "lb"),
  17614. name: "Front",
  17615. image: {
  17616. source: "./media/characters/shin/front.svg",
  17617. extra: 159 / 151,
  17618. bottom: 0.015
  17619. }
  17620. },
  17621. },
  17622. [
  17623. {
  17624. name: "Normal",
  17625. height: math.unit(5 + 9 / 12, "feet"),
  17626. default: true
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Xerxes" },
  17632. {
  17633. front: {
  17634. height: math.unit(5 + 10 / 12, "feet"),
  17635. weight: math.unit(168, "lb"),
  17636. name: "Front",
  17637. image: {
  17638. source: "./media/characters/xerxes/front.svg",
  17639. extra: 282 / 260,
  17640. bottom: 0.045
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Normal",
  17647. height: math.unit(5 + 10 / 12, "feet"),
  17648. default: true
  17649. },
  17650. ]
  17651. ))
  17652. characterMakers.push(() => makeCharacter(
  17653. { name: "Chaska" },
  17654. {
  17655. front: {
  17656. height: math.unit(6 + 7 / 12, "feet"),
  17657. weight: math.unit(208, "lb"),
  17658. name: "Front",
  17659. image: {
  17660. source: "./media/characters/chaska/front.svg",
  17661. extra: 332 / 319,
  17662. bottom: 0.015
  17663. }
  17664. },
  17665. },
  17666. [
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(6 + 7 / 12, "feet"),
  17670. default: true
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Enuk" },
  17676. {
  17677. front: {
  17678. height: math.unit(5 + 8 / 12, "feet"),
  17679. weight: math.unit(208, "lb"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/enuk/front.svg",
  17683. extra: 437 / 406,
  17684. bottom: 0.02
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(5 + 8 / 12, "feet"),
  17692. default: true
  17693. },
  17694. ]
  17695. ))
  17696. characterMakers.push(() => makeCharacter(
  17697. { name: "Bruun" },
  17698. {
  17699. front: {
  17700. height: math.unit(5 + 10 / 12, "feet"),
  17701. weight: math.unit(252, "lb"),
  17702. name: "Front",
  17703. image: {
  17704. source: "./media/characters/bruun/front.svg",
  17705. extra: 197 / 187,
  17706. bottom: 0.012
  17707. }
  17708. },
  17709. },
  17710. [
  17711. {
  17712. name: "Normal",
  17713. height: math.unit(5 + 10 / 12, "feet"),
  17714. default: true
  17715. },
  17716. ]
  17717. ))
  17718. characterMakers.push(() => makeCharacter(
  17719. { name: "Alexeev" },
  17720. {
  17721. front: {
  17722. height: math.unit(6 + 10 / 12, "feet"),
  17723. weight: math.unit(255, "lb"),
  17724. name: "Front",
  17725. image: {
  17726. source: "./media/characters/alexeev/front.svg",
  17727. extra: 213 / 200,
  17728. bottom: 0.05
  17729. }
  17730. },
  17731. },
  17732. [
  17733. {
  17734. name: "Normal",
  17735. height: math.unit(6 + 10 / 12, "feet"),
  17736. default: true
  17737. },
  17738. ]
  17739. ))
  17740. characterMakers.push(() => makeCharacter(
  17741. { name: "Evelyn" },
  17742. {
  17743. front: {
  17744. height: math.unit(2 + 8 / 12, "feet"),
  17745. weight: math.unit(22, "lb"),
  17746. name: "Front",
  17747. image: {
  17748. source: "./media/characters/evelyn/front.svg",
  17749. extra: 208 / 180
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Normal",
  17756. height: math.unit(2 + 8 / 12, "feet"),
  17757. default: true
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Inca" },
  17763. {
  17764. front: {
  17765. height: math.unit(5 + 9 / 12, "feet"),
  17766. weight: math.unit(139, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/inca/front.svg",
  17770. extra: 294 / 291,
  17771. bottom: 0.03
  17772. }
  17773. },
  17774. },
  17775. [
  17776. {
  17777. name: "Normal",
  17778. height: math.unit(5 + 9 / 12, "feet"),
  17779. default: true
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Magdalene" },
  17785. {
  17786. front: {
  17787. height: math.unit(5 + 1 / 12, "feet"),
  17788. weight: math.unit(84, "lb"),
  17789. name: "Front",
  17790. image: {
  17791. source: "./media/characters/magdalene/front.svg",
  17792. extra: 293 / 273
  17793. }
  17794. },
  17795. },
  17796. [
  17797. {
  17798. name: "Normal",
  17799. height: math.unit(5 + 1 / 12, "feet"),
  17800. default: true
  17801. },
  17802. ]
  17803. ))
  17804. characterMakers.push(() => makeCharacter(
  17805. { name: "Mera" },
  17806. {
  17807. front: {
  17808. height: math.unit(6 + 3 / 12, "feet"),
  17809. weight: math.unit(185, "lb"),
  17810. name: "Front",
  17811. image: {
  17812. source: "./media/characters/mera/front.svg",
  17813. extra: 291 / 277,
  17814. bottom: 0.03
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(6 + 3 / 12, "feet"),
  17822. default: true
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Ceres" },
  17828. {
  17829. front: {
  17830. height: math.unit(6 + 7 / 12, "feet"),
  17831. weight: math.unit(160, "lb"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/ceres/front.svg",
  17835. extra: 1023 / 950,
  17836. bottom: 0.027
  17837. }
  17838. },
  17839. back: {
  17840. height: math.unit(6 + 7 / 12, "feet"),
  17841. weight: math.unit(160, "lb"),
  17842. name: "Back",
  17843. image: {
  17844. source: "./media/characters/ceres/back.svg",
  17845. extra: 1023 / 950
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Normal",
  17852. height: math.unit(6 + 7 / 12, "feet"),
  17853. default: true
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Kris" },
  17859. {
  17860. front: {
  17861. height: math.unit(5 + 10 / 12, "feet"),
  17862. weight: math.unit(150, "lb"),
  17863. name: "Front",
  17864. image: {
  17865. source: "./media/characters/kris/front.svg",
  17866. extra: 885 / 803,
  17867. bottom: 0.03
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Normal",
  17874. height: math.unit(5 + 10 / 12, "feet"),
  17875. default: true
  17876. },
  17877. ]
  17878. ))
  17879. characterMakers.push(() => makeCharacter(
  17880. { name: "Taluthus" },
  17881. {
  17882. front: {
  17883. height: math.unit(7, "feet"),
  17884. weight: math.unit(120, "kg"),
  17885. name: "Front",
  17886. image: {
  17887. source: "./media/characters/taluthus/front.svg",
  17888. extra: 903 / 833,
  17889. bottom: 0.015
  17890. }
  17891. },
  17892. },
  17893. [
  17894. {
  17895. name: "Normal",
  17896. height: math.unit(7, "feet"),
  17897. default: true
  17898. },
  17899. {
  17900. name: "Macro",
  17901. height: math.unit(300, "feet")
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Dawn" },
  17907. {
  17908. front: {
  17909. height: math.unit(5 + 9 / 12, "feet"),
  17910. weight: math.unit(145, "lb"),
  17911. name: "Front",
  17912. image: {
  17913. source: "./media/characters/dawn/front.svg",
  17914. extra: 2094 / 2016,
  17915. bottom: 0.025
  17916. }
  17917. },
  17918. back: {
  17919. height: math.unit(5 + 9 / 12, "feet"),
  17920. weight: math.unit(160, "lb"),
  17921. name: "Back",
  17922. image: {
  17923. source: "./media/characters/dawn/back.svg",
  17924. extra: 2112 / 2080,
  17925. bottom: 0.005
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(6 + 7 / 12, "feet"),
  17933. default: true
  17934. },
  17935. ]
  17936. ))
  17937. characterMakers.push(() => makeCharacter(
  17938. { name: "Arador" },
  17939. {
  17940. anthro: {
  17941. height: math.unit(8 + 3 / 12, "feet"),
  17942. weight: math.unit(450, "lb"),
  17943. name: "Anthro",
  17944. image: {
  17945. source: "./media/characters/arador/anthro.svg",
  17946. extra: 1835 / 1718,
  17947. bottom: 0.025
  17948. }
  17949. },
  17950. feral: {
  17951. height: math.unit(4, "feet"),
  17952. weight: math.unit(200, "lb"),
  17953. name: "Feral",
  17954. image: {
  17955. source: "./media/characters/arador/feral.svg",
  17956. extra: 1683 / 1514,
  17957. bottom: 0.07
  17958. }
  17959. },
  17960. },
  17961. [
  17962. {
  17963. name: "Normal",
  17964. height: math.unit(8 + 3 / 12, "feet")
  17965. },
  17966. {
  17967. name: "Macro",
  17968. height: math.unit(82.5, "feet"),
  17969. default: true
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "Dharsi" },
  17975. {
  17976. front: {
  17977. height: math.unit(5 + 10 / 12, "feet"),
  17978. weight: math.unit(125, "lb"),
  17979. name: "Front",
  17980. image: {
  17981. source: "./media/characters/dharsi/front.svg",
  17982. extra: 716 / 630,
  17983. bottom: 0.035
  17984. }
  17985. },
  17986. },
  17987. [
  17988. {
  17989. name: "Nano",
  17990. height: math.unit(100, "nm")
  17991. },
  17992. {
  17993. name: "Micro",
  17994. height: math.unit(2, "inches")
  17995. },
  17996. {
  17997. name: "Normal",
  17998. height: math.unit(5 + 10 / 12, "feet"),
  17999. default: true
  18000. },
  18001. {
  18002. name: "Macro",
  18003. height: math.unit(1000, "feet")
  18004. },
  18005. {
  18006. name: "Megamacro",
  18007. height: math.unit(10, "miles")
  18008. },
  18009. {
  18010. name: "Gigamacro",
  18011. height: math.unit(3000, "miles")
  18012. },
  18013. {
  18014. name: "Teramacro",
  18015. height: math.unit(500000, "miles")
  18016. },
  18017. {
  18018. name: "Teramacro+",
  18019. height: math.unit(30, "galaxies")
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Deathy" },
  18025. {
  18026. front: {
  18027. height: math.unit(6, "feet"),
  18028. weight: math.unit(150, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/deathy/front.svg",
  18032. extra: 1552 / 1463,
  18033. bottom: 0.025
  18034. }
  18035. },
  18036. side: {
  18037. height: math.unit(6, "feet"),
  18038. weight: math.unit(150, "lb"),
  18039. name: "Side",
  18040. image: {
  18041. source: "./media/characters/deathy/side.svg",
  18042. extra: 1604 / 1455,
  18043. bottom: 0.025
  18044. }
  18045. },
  18046. back: {
  18047. height: math.unit(6, "feet"),
  18048. weight: math.unit(150, "lb"),
  18049. name: "Back",
  18050. image: {
  18051. source: "./media/characters/deathy/back.svg",
  18052. extra: 1580 / 1463,
  18053. bottom: 0.005
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Micro",
  18060. height: math.unit(5, "millimeters")
  18061. },
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(6 + 5 / 12, "feet"),
  18065. default: true
  18066. },
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Juniper" },
  18071. {
  18072. front: {
  18073. height: math.unit(16, "feet"),
  18074. weight: math.unit(4000, "lb"),
  18075. name: "Front",
  18076. image: {
  18077. source: "./media/characters/juniper/front.svg",
  18078. bottom: 0.04
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Normal",
  18085. height: math.unit(16, "feet"),
  18086. default: true
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Hipster" },
  18092. {
  18093. front: {
  18094. height: math.unit(6, "feet"),
  18095. weight: math.unit(150, "lb"),
  18096. name: "Front",
  18097. image: {
  18098. source: "./media/characters/hipster/front.svg",
  18099. extra: 1312 / 1209,
  18100. bottom: 0.025
  18101. }
  18102. },
  18103. back: {
  18104. height: math.unit(6, "feet"),
  18105. weight: math.unit(150, "lb"),
  18106. name: "Back",
  18107. image: {
  18108. source: "./media/characters/hipster/back.svg",
  18109. extra: 1281 / 1196,
  18110. bottom: 0.01
  18111. }
  18112. },
  18113. },
  18114. [
  18115. {
  18116. name: "Micro",
  18117. height: math.unit(1, "mm")
  18118. },
  18119. {
  18120. name: "Normal",
  18121. height: math.unit(4, "inches"),
  18122. default: true
  18123. },
  18124. {
  18125. name: "Macro",
  18126. height: math.unit(500, "feet")
  18127. },
  18128. {
  18129. name: "Megamacro",
  18130. height: math.unit(1000, "miles")
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Tendirmuldr" },
  18136. {
  18137. front: {
  18138. height: math.unit(6, "feet"),
  18139. weight: math.unit(150, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/tendirmuldr/front.svg",
  18143. extra: 1878 / 1772,
  18144. bottom: 0.015
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Megamacro",
  18151. height: math.unit(1500, "miles"),
  18152. default: true
  18153. },
  18154. ]
  18155. ))
  18156. characterMakers.push(() => makeCharacter(
  18157. { name: "Mort" },
  18158. {
  18159. front: {
  18160. height: math.unit(14, "feet"),
  18161. weight: math.unit(12000, "lb"),
  18162. name: "Front",
  18163. image: {
  18164. source: "./media/characters/mort/front.svg",
  18165. extra: 365 / 318,
  18166. bottom: 0.01
  18167. }
  18168. },
  18169. side: {
  18170. height: math.unit(14, "feet"),
  18171. weight: math.unit(12000, "lb"),
  18172. name: "Side",
  18173. image: {
  18174. source: "./media/characters/mort/side.svg",
  18175. extra: 365 / 318,
  18176. bottom: 0.052
  18177. },
  18178. default: true
  18179. },
  18180. back: {
  18181. height: math.unit(14, "feet"),
  18182. weight: math.unit(12000, "lb"),
  18183. name: "Back",
  18184. image: {
  18185. source: "./media/characters/mort/back.svg",
  18186. extra: 371 / 332,
  18187. bottom: 0.18
  18188. }
  18189. },
  18190. },
  18191. [
  18192. {
  18193. name: "Normal",
  18194. height: math.unit(14, "feet"),
  18195. default: true
  18196. },
  18197. ]
  18198. ))
  18199. characterMakers.push(() => makeCharacter(
  18200. { name: "Lycoa" },
  18201. {
  18202. front: {
  18203. height: math.unit(8, "feet"),
  18204. weight: math.unit(1, "ton"),
  18205. name: "Front",
  18206. image: {
  18207. source: "./media/characters/lycoa/front.svg",
  18208. extra: 1875 / 1789,
  18209. bottom: 0.022
  18210. }
  18211. },
  18212. back: {
  18213. height: math.unit(8, "feet"),
  18214. weight: math.unit(1, "ton"),
  18215. name: "Back",
  18216. image: {
  18217. source: "./media/characters/lycoa/back.svg",
  18218. extra: 1835 / 1781,
  18219. bottom: 0.03
  18220. }
  18221. },
  18222. },
  18223. [
  18224. {
  18225. name: "Normal",
  18226. height: math.unit(8, "feet"),
  18227. default: true
  18228. },
  18229. {
  18230. name: "Macro",
  18231. height: math.unit(30, "feet")
  18232. },
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Naldara" },
  18237. {
  18238. front: {
  18239. height: math.unit(4 + 2 / 12, "feet"),
  18240. weight: math.unit(70, "lb"),
  18241. name: "Front",
  18242. image: {
  18243. source: "./media/characters/naldara/front.svg",
  18244. extra: 841 / 720,
  18245. bottom: 0.04
  18246. }
  18247. },
  18248. },
  18249. [
  18250. {
  18251. name: "Normal",
  18252. height: math.unit(4 + 2 / 12, "feet"),
  18253. default: true
  18254. },
  18255. ]
  18256. ))
  18257. characterMakers.push(() => makeCharacter(
  18258. { name: "Briar" },
  18259. {
  18260. front: {
  18261. height: math.unit(13 + 7 / 12, "feet"),
  18262. weight: math.unit(1500, "lb"),
  18263. name: "Front",
  18264. image: {
  18265. source: "./media/characters/briar/front.svg",
  18266. extra: 626 / 596,
  18267. bottom: 0.08
  18268. }
  18269. },
  18270. },
  18271. [
  18272. {
  18273. name: "Normal",
  18274. height: math.unit(13 + 7 / 12, "feet"),
  18275. default: true
  18276. },
  18277. ]
  18278. ))
  18279. characterMakers.push(() => makeCharacter(
  18280. { name: "Vanguard" },
  18281. {
  18282. side: {
  18283. height: math.unit(10, "feet"),
  18284. weight: math.unit(500, "lb"),
  18285. name: "Side",
  18286. image: {
  18287. source: "./media/characters/vanguard/side.svg",
  18288. extra: 502 / 425,
  18289. bottom: 0.087
  18290. }
  18291. },
  18292. },
  18293. [
  18294. {
  18295. name: "Normal",
  18296. height: math.unit(10, "feet"),
  18297. default: true
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Artemis" },
  18303. {
  18304. front: {
  18305. height: math.unit(7.5, "feet"),
  18306. weight: math.unit(2, "lb"),
  18307. name: "Front",
  18308. image: {
  18309. source: "./media/characters/artemis/front.svg",
  18310. extra: 1192 / 1075,
  18311. bottom: 0.07
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(7.5, "feet"),
  18319. default: true
  18320. },
  18321. {
  18322. name: "Enlarged",
  18323. height: math.unit(12, "feet")
  18324. },
  18325. ]
  18326. ))
  18327. characterMakers.push(() => makeCharacter(
  18328. { name: "Kira" },
  18329. {
  18330. front: {
  18331. height: math.unit(5 + 3 / 12, "feet"),
  18332. weight: math.unit(160, "lb"),
  18333. name: "Front",
  18334. image: {
  18335. source: "./media/characters/kira/front.svg",
  18336. extra: 906 / 786,
  18337. bottom: 0.01
  18338. }
  18339. },
  18340. back: {
  18341. height: math.unit(5 + 3 / 12, "feet"),
  18342. weight: math.unit(160, "lb"),
  18343. name: "Back",
  18344. image: {
  18345. source: "./media/characters/kira/back.svg",
  18346. extra: 882 / 757,
  18347. bottom: 0.005
  18348. }
  18349. },
  18350. frontDressed: {
  18351. height: math.unit(5 + 3 / 12, "feet"),
  18352. weight: math.unit(160, "lb"),
  18353. name: "Front (Dressed)",
  18354. image: {
  18355. source: "./media/characters/kira/front-dressed.svg",
  18356. extra: 906 / 786,
  18357. bottom: 0.01
  18358. }
  18359. },
  18360. beans: {
  18361. height: math.unit(0.92, "feet"),
  18362. name: "Beans",
  18363. image: {
  18364. source: "./media/characters/kira/beans.svg"
  18365. }
  18366. },
  18367. },
  18368. [
  18369. {
  18370. name: "Normal",
  18371. height: math.unit(5 + 3 / 12, "feet"),
  18372. default: true
  18373. },
  18374. ]
  18375. ))
  18376. characterMakers.push(() => makeCharacter(
  18377. { name: "Scramble" },
  18378. {
  18379. front: {
  18380. height: math.unit(5 + 4 / 12, "feet"),
  18381. weight: math.unit(145, "lb"),
  18382. name: "Front",
  18383. image: {
  18384. source: "./media/characters/scramble/front.svg",
  18385. extra: 763 / 727,
  18386. bottom: 0.05
  18387. }
  18388. },
  18389. back: {
  18390. height: math.unit(5 + 4 / 12, "feet"),
  18391. weight: math.unit(145, "lb"),
  18392. name: "Back",
  18393. image: {
  18394. source: "./media/characters/scramble/back.svg",
  18395. extra: 826 / 737,
  18396. bottom: 0.002
  18397. }
  18398. },
  18399. },
  18400. [
  18401. {
  18402. name: "Normal",
  18403. height: math.unit(5 + 4 / 12, "feet"),
  18404. default: true
  18405. },
  18406. ]
  18407. ))
  18408. characterMakers.push(() => makeCharacter(
  18409. { name: "Biscuit" },
  18410. {
  18411. side: {
  18412. height: math.unit(6 + 2 / 12, "feet"),
  18413. weight: math.unit(190, "lb"),
  18414. name: "Side",
  18415. image: {
  18416. source: "./media/characters/biscuit/side.svg",
  18417. extra: 858 / 791,
  18418. bottom: 0.044
  18419. }
  18420. },
  18421. },
  18422. [
  18423. {
  18424. name: "Normal",
  18425. height: math.unit(6 + 2 / 12, "feet"),
  18426. default: true
  18427. },
  18428. ]
  18429. ))
  18430. characterMakers.push(() => makeCharacter(
  18431. { name: "Poffin" },
  18432. {
  18433. front: {
  18434. height: math.unit(5 + 2 / 12, "feet"),
  18435. weight: math.unit(120, "lb"),
  18436. name: "Front",
  18437. image: {
  18438. source: "./media/characters/poffin/front.svg",
  18439. extra: 786 / 680,
  18440. bottom: 0.005
  18441. }
  18442. },
  18443. },
  18444. [
  18445. {
  18446. name: "Normal",
  18447. height: math.unit(5 + 2 / 12, "feet"),
  18448. default: true
  18449. },
  18450. ]
  18451. ))
  18452. characterMakers.push(() => makeCharacter(
  18453. { name: "Dhari" },
  18454. {
  18455. front: {
  18456. height: math.unit(6 + 3 / 12, "feet"),
  18457. weight: math.unit(519, "lb"),
  18458. name: "Front",
  18459. image: {
  18460. source: "./media/characters/dhari/front.svg",
  18461. extra: 1048 / 946,
  18462. bottom: 0.015
  18463. }
  18464. },
  18465. back: {
  18466. height: math.unit(6 + 3 / 12, "feet"),
  18467. weight: math.unit(519, "lb"),
  18468. name: "Back",
  18469. image: {
  18470. source: "./media/characters/dhari/back.svg",
  18471. extra: 1048 / 931,
  18472. bottom: 0.005
  18473. }
  18474. },
  18475. frontDressed: {
  18476. height: math.unit(6 + 3 / 12, "feet"),
  18477. weight: math.unit(519, "lb"),
  18478. name: "Front (Dressed)",
  18479. image: {
  18480. source: "./media/characters/dhari/front-dressed.svg",
  18481. extra: 1713 / 1546,
  18482. bottom: 0.02
  18483. }
  18484. },
  18485. backDressed: {
  18486. height: math.unit(6 + 3 / 12, "feet"),
  18487. weight: math.unit(519, "lb"),
  18488. name: "Back (Dressed)",
  18489. image: {
  18490. source: "./media/characters/dhari/back-dressed.svg",
  18491. extra: 1699 / 1537,
  18492. bottom: 0.01
  18493. }
  18494. },
  18495. maw: {
  18496. height: math.unit(0.95, "feet"),
  18497. name: "Maw",
  18498. image: {
  18499. source: "./media/characters/dhari/maw.svg"
  18500. }
  18501. },
  18502. wereFront: {
  18503. height: math.unit(12 + 8 / 12, "feet"),
  18504. weight: math.unit(4000, "lb"),
  18505. name: "Front (Were)",
  18506. image: {
  18507. source: "./media/characters/dhari/were-front.svg",
  18508. extra: 1065 / 969,
  18509. bottom: 0.015
  18510. }
  18511. },
  18512. wereBack: {
  18513. height: math.unit(12 + 8 / 12, "feet"),
  18514. weight: math.unit(4000, "lb"),
  18515. name: "Back (Were)",
  18516. image: {
  18517. source: "./media/characters/dhari/were-back.svg",
  18518. extra: 1065 / 969,
  18519. bottom: 0.012
  18520. }
  18521. },
  18522. wereMaw: {
  18523. height: math.unit(0.625, "meters"),
  18524. name: "Maw (Were)",
  18525. image: {
  18526. source: "./media/characters/dhari/were-maw.svg"
  18527. }
  18528. },
  18529. },
  18530. [
  18531. {
  18532. name: "Normal",
  18533. height: math.unit(6 + 3 / 12, "feet"),
  18534. default: true
  18535. },
  18536. ]
  18537. ))
  18538. characterMakers.push(() => makeCharacter(
  18539. { name: "Rena Dyne" },
  18540. {
  18541. anthro: {
  18542. height: math.unit(5 + 7 / 12, "feet"),
  18543. weight: math.unit(175, "lb"),
  18544. name: "Anthro",
  18545. image: {
  18546. source: "./media/characters/rena-dyne/anthro.svg",
  18547. extra: 1849 / 1785,
  18548. bottom: 0.005
  18549. }
  18550. },
  18551. taur: {
  18552. height: math.unit(15 + 6 / 12, "feet"),
  18553. weight: math.unit(8000, "lb"),
  18554. name: "Taur",
  18555. image: {
  18556. source: "./media/characters/rena-dyne/taur.svg",
  18557. extra: 2315 / 2234,
  18558. bottom: 0.033
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Normal",
  18565. height: math.unit(5 + 7 / 12, "feet"),
  18566. default: true
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Weremeep" },
  18572. {
  18573. front: {
  18574. height: math.unit(8, "feet"),
  18575. weight: math.unit(600, "lb"),
  18576. name: "Front",
  18577. image: {
  18578. source: "./media/characters/weremeep/front.svg",
  18579. extra: 967 / 862,
  18580. bottom: 0.01
  18581. }
  18582. },
  18583. },
  18584. [
  18585. {
  18586. name: "Normal",
  18587. height: math.unit(8, "feet"),
  18588. default: true
  18589. },
  18590. {
  18591. name: "Lorg",
  18592. height: math.unit(12, "feet")
  18593. },
  18594. {
  18595. name: "Oh Lawd She Comin'",
  18596. height: math.unit(20, "feet")
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Reza" },
  18602. {
  18603. front: {
  18604. height: math.unit(4, "feet"),
  18605. weight: math.unit(90, "lb"),
  18606. name: "Front",
  18607. image: {
  18608. source: "./media/characters/reza/front.svg",
  18609. extra: 1183 / 1111,
  18610. bottom: 0.017
  18611. }
  18612. },
  18613. back: {
  18614. height: math.unit(4, "feet"),
  18615. weight: math.unit(90, "lb"),
  18616. name: "Back",
  18617. image: {
  18618. source: "./media/characters/reza/back.svg",
  18619. extra: 1183 / 1111,
  18620. bottom: 0.01
  18621. }
  18622. },
  18623. drake: {
  18624. height: math.unit(30, "feet"),
  18625. weight: math.unit(246960, "lb"),
  18626. name: "Drake",
  18627. image: {
  18628. source: "./media/characters/reza/drake.svg",
  18629. extra: 2350/2024,
  18630. bottom: 60.7/2403
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(4, "feet"),
  18638. default: true
  18639. },
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "Athea" },
  18644. {
  18645. side: {
  18646. height: math.unit(15, "feet"),
  18647. weight: math.unit(14, "tons"),
  18648. name: "Side",
  18649. image: {
  18650. source: "./media/characters/athea/side.svg",
  18651. extra: 960 / 540,
  18652. bottom: 0.003
  18653. }
  18654. },
  18655. sitting: {
  18656. height: math.unit(6 * 2.85, "feet"),
  18657. weight: math.unit(14, "tons"),
  18658. name: "Sitting",
  18659. image: {
  18660. source: "./media/characters/athea/sitting.svg",
  18661. extra: 621 / 581,
  18662. bottom: 0.075
  18663. }
  18664. },
  18665. maw: {
  18666. height: math.unit(7.59498031496063, "feet"),
  18667. name: "Maw",
  18668. image: {
  18669. source: "./media/characters/athea/maw.svg"
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Lap Cat",
  18676. height: math.unit(2.5, "feet")
  18677. },
  18678. {
  18679. name: "Minimacro",
  18680. height: math.unit(15, "feet"),
  18681. default: true
  18682. },
  18683. {
  18684. name: "Macro",
  18685. height: math.unit(120, "feet")
  18686. },
  18687. {
  18688. name: "Macro+",
  18689. height: math.unit(640, "feet")
  18690. },
  18691. {
  18692. name: "Colossus",
  18693. height: math.unit(2.2, "miles")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Seroko" },
  18699. {
  18700. front: {
  18701. height: math.unit(8 + 8 / 12, "feet"),
  18702. weight: math.unit(130, "kg"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/seroko/front.svg",
  18706. extra: 1385 / 1280,
  18707. bottom: 0.025
  18708. }
  18709. },
  18710. back: {
  18711. height: math.unit(8 + 8 / 12, "feet"),
  18712. weight: math.unit(130, "kg"),
  18713. name: "Back",
  18714. image: {
  18715. source: "./media/characters/seroko/back.svg",
  18716. extra: 1369 / 1238,
  18717. bottom: 0.018
  18718. }
  18719. },
  18720. frontDressed: {
  18721. height: math.unit(8 + 8 / 12, "feet"),
  18722. weight: math.unit(130, "kg"),
  18723. name: "Front (Dressed)",
  18724. image: {
  18725. source: "./media/characters/seroko/front-dressed.svg",
  18726. extra: 1366 / 1275,
  18727. bottom: 0.03
  18728. }
  18729. },
  18730. },
  18731. [
  18732. {
  18733. name: "Normal",
  18734. height: math.unit(8 + 8 / 12, "feet"),
  18735. default: true
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Quatzi" },
  18741. {
  18742. front: {
  18743. height: math.unit(5.5, "feet"),
  18744. weight: math.unit(160, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/quatzi/front.svg",
  18748. extra: 2346 / 2242,
  18749. bottom: 0.015
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(5.5, "feet"),
  18757. default: true
  18758. },
  18759. {
  18760. name: "Big",
  18761. height: math.unit(7.7, "feet")
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Sen" },
  18767. {
  18768. front: {
  18769. height: math.unit(5 + 11 / 12, "feet"),
  18770. weight: math.unit(180, "lb"),
  18771. name: "Front",
  18772. image: {
  18773. source: "./media/characters/sen/front.svg",
  18774. extra: 1321 / 1254,
  18775. bottom: 0.015
  18776. }
  18777. },
  18778. side: {
  18779. height: math.unit(5 + 11 / 12, "feet"),
  18780. weight: math.unit(180, "lb"),
  18781. name: "Side",
  18782. image: {
  18783. source: "./media/characters/sen/side.svg",
  18784. extra: 1321 / 1254,
  18785. bottom: 0.007
  18786. }
  18787. },
  18788. back: {
  18789. height: math.unit(5 + 11 / 12, "feet"),
  18790. weight: math.unit(180, "lb"),
  18791. name: "Back",
  18792. image: {
  18793. source: "./media/characters/sen/back.svg",
  18794. extra: 1321 / 1254
  18795. }
  18796. },
  18797. },
  18798. [
  18799. {
  18800. name: "Normal",
  18801. height: math.unit(5 + 11 / 12, "feet"),
  18802. default: true
  18803. },
  18804. ]
  18805. ))
  18806. characterMakers.push(() => makeCharacter(
  18807. { name: "Fruity" },
  18808. {
  18809. front: {
  18810. height: math.unit(166.6, "cm"),
  18811. weight: math.unit(66.6, "kg"),
  18812. name: "Front",
  18813. image: {
  18814. source: "./media/characters/fruity/front.svg",
  18815. extra: 1510 / 1386,
  18816. bottom: 0.04
  18817. }
  18818. },
  18819. back: {
  18820. height: math.unit(166.6, "cm"),
  18821. weight: math.unit(66.6, "lb"),
  18822. name: "Back",
  18823. image: {
  18824. source: "./media/characters/fruity/back.svg",
  18825. extra: 1563 / 1435,
  18826. bottom: 0.005
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Normal",
  18833. height: math.unit(166.6, "cm"),
  18834. default: true
  18835. },
  18836. {
  18837. name: "Demonic",
  18838. height: math.unit(166.6, "feet")
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Zost" },
  18844. {
  18845. side: {
  18846. height: math.unit(10, "feet"),
  18847. weight: math.unit(500, "lb"),
  18848. name: "Side",
  18849. image: {
  18850. source: "./media/characters/zost/side.svg",
  18851. extra: 966 / 880,
  18852. bottom: 0.075
  18853. }
  18854. },
  18855. mawFront: {
  18856. height: math.unit(1.08, "meters"),
  18857. name: "Maw (Front)",
  18858. image: {
  18859. source: "./media/characters/zost/maw-front.svg"
  18860. }
  18861. },
  18862. mawSide: {
  18863. height: math.unit(2.66, "feet"),
  18864. name: "Maw (Side)",
  18865. image: {
  18866. source: "./media/characters/zost/maw-side.svg"
  18867. }
  18868. },
  18869. },
  18870. [
  18871. {
  18872. name: "Normal",
  18873. height: math.unit(10, "feet"),
  18874. default: true
  18875. },
  18876. ]
  18877. ))
  18878. characterMakers.push(() => makeCharacter(
  18879. { name: "Luci" },
  18880. {
  18881. front: {
  18882. height: math.unit(5 + 4 / 12, "feet"),
  18883. weight: math.unit(120, "lb"),
  18884. name: "Front",
  18885. image: {
  18886. source: "./media/characters/luci/front.svg",
  18887. extra: 1985 / 1884,
  18888. bottom: 0.04
  18889. }
  18890. },
  18891. back: {
  18892. height: math.unit(5 + 4 / 12, "feet"),
  18893. weight: math.unit(120, "lb"),
  18894. name: "Back",
  18895. image: {
  18896. source: "./media/characters/luci/back.svg",
  18897. extra: 1892 / 1791,
  18898. bottom: 0.002
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Normal",
  18905. height: math.unit(5 + 4 / 12, "feet"),
  18906. default: true
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "2th" },
  18912. {
  18913. front: {
  18914. height: math.unit(1500, "feet"),
  18915. weight: math.unit(3.8e6, "tons"),
  18916. name: "Front",
  18917. image: {
  18918. source: "./media/characters/2th/front.svg",
  18919. extra: 3489 / 3350,
  18920. bottom: 0.1
  18921. }
  18922. },
  18923. foot: {
  18924. height: math.unit(461, "feet"),
  18925. name: "Foot",
  18926. image: {
  18927. source: "./media/characters/2th/foot.svg"
  18928. }
  18929. },
  18930. },
  18931. [
  18932. {
  18933. name: "\"Micro\"",
  18934. height: math.unit(15 + 7 / 12, "feet")
  18935. },
  18936. {
  18937. name: "Normal",
  18938. height: math.unit(1500, "feet"),
  18939. default: true
  18940. },
  18941. {
  18942. name: "Macro",
  18943. height: math.unit(5000, "feet")
  18944. },
  18945. {
  18946. name: "Megamacro",
  18947. height: math.unit(15, "miles")
  18948. },
  18949. {
  18950. name: "Gigamacro",
  18951. height: math.unit(4000, "miles")
  18952. },
  18953. {
  18954. name: "Galactic",
  18955. height: math.unit(50, "AU")
  18956. },
  18957. ]
  18958. ))
  18959. characterMakers.push(() => makeCharacter(
  18960. { name: "Amethyst" },
  18961. {
  18962. front: {
  18963. height: math.unit(5 + 6 / 12, "feet"),
  18964. weight: math.unit(220, "lb"),
  18965. name: "Front",
  18966. image: {
  18967. source: "./media/characters/amethyst/front.svg",
  18968. extra: 2078 / 2040,
  18969. bottom: 0.045
  18970. }
  18971. },
  18972. back: {
  18973. height: math.unit(5 + 6 / 12, "feet"),
  18974. weight: math.unit(220, "lb"),
  18975. name: "Back",
  18976. image: {
  18977. source: "./media/characters/amethyst/back.svg",
  18978. extra: 2021 / 1989,
  18979. bottom: 0.02
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Normal",
  18986. height: math.unit(5 + 6 / 12, "feet"),
  18987. default: true
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Yumi Akiyama" },
  18993. {
  18994. front: {
  18995. height: math.unit(4 + 11 / 12, "feet"),
  18996. weight: math.unit(120, "lb"),
  18997. name: "Front",
  18998. image: {
  18999. source: "./media/characters/yumi-akiyama/front.svg",
  19000. extra: 1327 / 1235,
  19001. bottom: 0.02
  19002. }
  19003. },
  19004. back: {
  19005. height: math.unit(4 + 11 / 12, "feet"),
  19006. weight: math.unit(120, "lb"),
  19007. name: "Back",
  19008. image: {
  19009. source: "./media/characters/yumi-akiyama/back.svg",
  19010. extra: 1287 / 1245,
  19011. bottom: 0.002
  19012. }
  19013. },
  19014. },
  19015. [
  19016. {
  19017. name: "Galactic",
  19018. height: math.unit(50, "galaxies"),
  19019. default: true
  19020. },
  19021. {
  19022. name: "Universal",
  19023. height: math.unit(100, "universes")
  19024. },
  19025. ]
  19026. ))
  19027. characterMakers.push(() => makeCharacter(
  19028. { name: "Rifter Yrmori" },
  19029. {
  19030. front: {
  19031. height: math.unit(8, "feet"),
  19032. weight: math.unit(500, "lb"),
  19033. name: "Front",
  19034. image: {
  19035. source: "./media/characters/rifter-yrmori/front.svg",
  19036. extra: 1180 / 1125,
  19037. bottom: 0.02
  19038. }
  19039. },
  19040. back: {
  19041. height: math.unit(8, "feet"),
  19042. weight: math.unit(500, "lb"),
  19043. name: "Back",
  19044. image: {
  19045. source: "./media/characters/rifter-yrmori/back.svg",
  19046. extra: 1190 / 1145,
  19047. bottom: 0.001
  19048. }
  19049. },
  19050. wings: {
  19051. height: math.unit(7.75, "feet"),
  19052. weight: math.unit(500, "lb"),
  19053. name: "Wings",
  19054. image: {
  19055. source: "./media/characters/rifter-yrmori/wings.svg",
  19056. extra: 1357 / 1285
  19057. }
  19058. },
  19059. maw: {
  19060. height: math.unit(0.8, "feet"),
  19061. name: "Maw",
  19062. image: {
  19063. source: "./media/characters/rifter-yrmori/maw.svg"
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(8, "feet"),
  19071. default: true
  19072. },
  19073. {
  19074. name: "Macro",
  19075. height: math.unit(42, "meters")
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Tahajin" },
  19081. {
  19082. were: {
  19083. height: math.unit(25 + 6 / 12, "feet"),
  19084. weight: math.unit(10000, "lb"),
  19085. name: "Were",
  19086. image: {
  19087. source: "./media/characters/tahajin/were.svg",
  19088. extra: 801 / 770,
  19089. bottom: 0.042
  19090. }
  19091. },
  19092. aquatic: {
  19093. height: math.unit(6 + 4 / 12, "feet"),
  19094. weight: math.unit(160, "lb"),
  19095. name: "Aquatic",
  19096. image: {
  19097. source: "./media/characters/tahajin/aquatic.svg",
  19098. extra: 572 / 542,
  19099. bottom: 0.04
  19100. }
  19101. },
  19102. chow: {
  19103. height: math.unit(8 + 11 / 12, "feet"),
  19104. weight: math.unit(450, "lb"),
  19105. name: "Chow",
  19106. image: {
  19107. source: "./media/characters/tahajin/chow.svg",
  19108. extra: 660 / 640,
  19109. bottom: 0.015
  19110. }
  19111. },
  19112. demiNaga: {
  19113. height: math.unit(6 + 8 / 12, "feet"),
  19114. weight: math.unit(300, "lb"),
  19115. name: "Demi Naga",
  19116. image: {
  19117. source: "./media/characters/tahajin/demi-naga.svg",
  19118. extra: 643 / 615,
  19119. bottom: 0.1
  19120. }
  19121. },
  19122. data: {
  19123. height: math.unit(5, "inches"),
  19124. weight: math.unit(0.1, "lb"),
  19125. name: "Data",
  19126. image: {
  19127. source: "./media/characters/tahajin/data.svg"
  19128. }
  19129. },
  19130. fluu: {
  19131. height: math.unit(5 + 7 / 12, "feet"),
  19132. weight: math.unit(140, "lb"),
  19133. name: "Fluu",
  19134. image: {
  19135. source: "./media/characters/tahajin/fluu.svg",
  19136. extra: 628 / 592,
  19137. bottom: 0.02
  19138. }
  19139. },
  19140. starWarrior: {
  19141. height: math.unit(4 + 5 / 12, "feet"),
  19142. weight: math.unit(50, "lb"),
  19143. name: "Star Warrior",
  19144. image: {
  19145. source: "./media/characters/tahajin/star-warrior.svg"
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(25 + 6 / 12, "feet"),
  19153. default: true
  19154. },
  19155. ]
  19156. ))
  19157. characterMakers.push(() => makeCharacter(
  19158. { name: "Gabira" },
  19159. {
  19160. front: {
  19161. height: math.unit(8, "feet"),
  19162. weight: math.unit(350, "lb"),
  19163. name: "Front",
  19164. image: {
  19165. source: "./media/characters/gabira/front.svg",
  19166. extra: 608 / 580,
  19167. bottom: 0.03
  19168. }
  19169. },
  19170. back: {
  19171. height: math.unit(8, "feet"),
  19172. weight: math.unit(350, "lb"),
  19173. name: "Back",
  19174. image: {
  19175. source: "./media/characters/gabira/back.svg",
  19176. extra: 608 / 580,
  19177. bottom: 0.03
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(8, "feet"),
  19185. default: true
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Sasha Katraine" },
  19191. {
  19192. front: {
  19193. height: math.unit(5 + 3 / 12, "feet"),
  19194. weight: math.unit(137, "lb"),
  19195. name: "Front",
  19196. image: {
  19197. source: "./media/characters/sasha-katraine/front.svg",
  19198. bottom: 0.045
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Micro",
  19205. height: math.unit(5, "inches")
  19206. },
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(5 + 3 / 12, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Der" },
  19216. {
  19217. side: {
  19218. height: math.unit(4, "inches"),
  19219. weight: math.unit(200, "grams"),
  19220. name: "Side",
  19221. image: {
  19222. source: "./media/characters/der/side.svg",
  19223. extra: 719 / 400,
  19224. bottom: 30.6 / 749.9187
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Micro",
  19231. height: math.unit(4, "inches"),
  19232. default: true
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Fixerdragon" },
  19238. {
  19239. side: {
  19240. height: math.unit(30, "meters"),
  19241. weight: math.unit(700, "tonnes"),
  19242. name: "Side",
  19243. image: {
  19244. source: "./media/characters/fixerdragon/side.svg",
  19245. extra: (1293.0514 - 116.03) / 1106.86,
  19246. bottom: 116.03 / 1293.0514
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Planck",
  19253. height: math.unit(1.6e-35, "meters")
  19254. },
  19255. {
  19256. name: "Micro",
  19257. height: math.unit(0.4, "meters")
  19258. },
  19259. {
  19260. name: "Normal",
  19261. height: math.unit(30, "meters"),
  19262. default: true
  19263. },
  19264. {
  19265. name: "Megamacro",
  19266. height: math.unit(1.2, "megameters")
  19267. },
  19268. {
  19269. name: "Teramacro",
  19270. height: math.unit(130, "terameters")
  19271. },
  19272. {
  19273. name: "Yottamacro",
  19274. height: math.unit(6200, "yottameters")
  19275. },
  19276. ]
  19277. ));
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Kite" },
  19280. {
  19281. front: {
  19282. height: math.unit(8, "feet"),
  19283. weight: math.unit(250, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/kite/front.svg",
  19287. extra: 2796 / 2659,
  19288. bottom: 0.002
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(8, "feet"),
  19296. default: true
  19297. },
  19298. {
  19299. name: "Macro",
  19300. height: math.unit(360, "feet")
  19301. },
  19302. {
  19303. name: "Megamacro",
  19304. height: math.unit(1500, "feet")
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Poojawa Vynar" },
  19310. {
  19311. front: {
  19312. height: math.unit(5 + 10 / 12, "feet"),
  19313. weight: math.unit(150, "lb"),
  19314. name: "Front",
  19315. image: {
  19316. source: "./media/characters/poojawa-vynar/front.svg",
  19317. extra: (1506.1547 - 55) / 1356.6,
  19318. bottom: 55 / 1506.1547
  19319. }
  19320. },
  19321. frontTailless: {
  19322. height: math.unit(5 + 10 / 12, "feet"),
  19323. weight: math.unit(150, "lb"),
  19324. name: "Front (Tailless)",
  19325. image: {
  19326. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  19327. extra: (1506.1547 - 55) / 1356.6,
  19328. bottom: 55 / 1506.1547
  19329. }
  19330. },
  19331. },
  19332. [
  19333. {
  19334. name: "Normal",
  19335. height: math.unit(5 + 10 / 12, "feet"),
  19336. default: true
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Violette" },
  19342. {
  19343. front: {
  19344. height: math.unit(293, "meters"),
  19345. weight: math.unit(70400, "tons"),
  19346. name: "Front",
  19347. image: {
  19348. source: "./media/characters/violette/front.svg",
  19349. extra: 1227 / 1180,
  19350. bottom: 0.005
  19351. }
  19352. },
  19353. back: {
  19354. height: math.unit(293, "meters"),
  19355. weight: math.unit(70400, "tons"),
  19356. name: "Back",
  19357. image: {
  19358. source: "./media/characters/violette/back.svg",
  19359. extra: 1227 / 1180,
  19360. bottom: 0.005
  19361. }
  19362. },
  19363. },
  19364. [
  19365. {
  19366. name: "Macro",
  19367. height: math.unit(293, "meters"),
  19368. default: true
  19369. },
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Alessandra" },
  19374. {
  19375. front: {
  19376. height: math.unit(1050, "feet"),
  19377. weight: math.unit(200000, "tons"),
  19378. name: "Front",
  19379. image: {
  19380. source: "./media/characters/alessandra/front.svg",
  19381. extra: 960 / 912,
  19382. bottom: 0.06
  19383. }
  19384. },
  19385. },
  19386. [
  19387. {
  19388. name: "Macro",
  19389. height: math.unit(1050, "feet")
  19390. },
  19391. {
  19392. name: "Macro+",
  19393. height: math.unit(900, "meters"),
  19394. default: true
  19395. },
  19396. ]
  19397. ))
  19398. characterMakers.push(() => makeCharacter(
  19399. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  19400. {
  19401. front: {
  19402. height: math.unit(5, "feet"),
  19403. weight: math.unit(187, "lb"),
  19404. name: "Front",
  19405. image: {
  19406. source: "./media/characters/person/front.svg",
  19407. extra: 3087 / 2945,
  19408. bottom: 91 / 3181
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Micro",
  19415. height: math.unit(3, "inches")
  19416. },
  19417. {
  19418. name: "Normal",
  19419. height: math.unit(5, "feet"),
  19420. default: true
  19421. },
  19422. {
  19423. name: "Macro",
  19424. height: math.unit(90, "feet")
  19425. },
  19426. {
  19427. name: "Max Size",
  19428. height: math.unit(280, "feet")
  19429. },
  19430. ]
  19431. ))
  19432. characterMakers.push(() => makeCharacter(
  19433. { name: "Ty" },
  19434. {
  19435. front: {
  19436. height: math.unit(4.5, "meters"),
  19437. weight: math.unit(3200, "lb"),
  19438. name: "Front",
  19439. image: {
  19440. source: "./media/characters/ty/front.svg",
  19441. extra: 1038 / 960,
  19442. bottom: 31.156 / 1068
  19443. }
  19444. },
  19445. back: {
  19446. height: math.unit(4.5, "meters"),
  19447. weight: math.unit(3200, "lb"),
  19448. name: "Back",
  19449. image: {
  19450. source: "./media/characters/ty/back.svg",
  19451. extra: 1044 / 966,
  19452. bottom: 7.48 / 1049
  19453. }
  19454. },
  19455. },
  19456. [
  19457. {
  19458. name: "Normal",
  19459. height: math.unit(4.5, "meters"),
  19460. default: true
  19461. },
  19462. ]
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Rocky" },
  19466. {
  19467. front: {
  19468. height: math.unit(5 + 4 / 12, "feet"),
  19469. weight: math.unit(115, "lb"),
  19470. name: "Front",
  19471. image: {
  19472. source: "./media/characters/rocky/front.svg",
  19473. extra: 1012 / 975,
  19474. bottom: 54 / 1066
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Normal",
  19481. height: math.unit(5 + 4 / 12, "feet"),
  19482. default: true
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Ruin" },
  19488. {
  19489. upright: {
  19490. height: math.unit(6, "meters"),
  19491. weight: math.unit(4000, "kg"),
  19492. name: "Upright",
  19493. image: {
  19494. source: "./media/characters/ruin/upright.svg",
  19495. extra: 668 / 661,
  19496. bottom: 42 / 799.8396
  19497. }
  19498. },
  19499. },
  19500. [
  19501. {
  19502. name: "Normal",
  19503. height: math.unit(6, "meters"),
  19504. default: true
  19505. },
  19506. ]
  19507. ))
  19508. characterMakers.push(() => makeCharacter(
  19509. { name: "Robin" },
  19510. {
  19511. front: {
  19512. height: math.unit(5, "feet"),
  19513. weight: math.unit(106, "lb"),
  19514. name: "Front",
  19515. image: {
  19516. source: "./media/characters/robin/front.svg",
  19517. extra: 862 / 799,
  19518. bottom: 42.4 / 914.8856
  19519. }
  19520. },
  19521. },
  19522. [
  19523. {
  19524. name: "Normal",
  19525. height: math.unit(5, "feet"),
  19526. default: true
  19527. },
  19528. ]
  19529. ))
  19530. characterMakers.push(() => makeCharacter(
  19531. { name: "Saian" },
  19532. {
  19533. side: {
  19534. height: math.unit(3, "feet"),
  19535. weight: math.unit(225, "lb"),
  19536. name: "Side",
  19537. image: {
  19538. source: "./media/characters/saian/side.svg",
  19539. extra: 566 / 356,
  19540. bottom: 79.7 / 643
  19541. }
  19542. },
  19543. maw: {
  19544. height: math.unit(2.85, "feet"),
  19545. name: "Maw",
  19546. image: {
  19547. source: "./media/characters/saian/maw.svg"
  19548. }
  19549. },
  19550. },
  19551. [
  19552. {
  19553. name: "Normal",
  19554. height: math.unit(3, "feet"),
  19555. default: true
  19556. },
  19557. ]
  19558. ))
  19559. characterMakers.push(() => makeCharacter(
  19560. { name: "Equus Silvermane" },
  19561. {
  19562. side: {
  19563. height: math.unit(8, "feet"),
  19564. weight: math.unit(300, "lb"),
  19565. name: "Side",
  19566. image: {
  19567. source: "./media/characters/equus-silvermane/side.svg",
  19568. extra: 2176 / 2050,
  19569. bottom: 65.7 / 2245
  19570. }
  19571. },
  19572. front: {
  19573. height: math.unit(8, "feet"),
  19574. weight: math.unit(300, "lb"),
  19575. name: "Front",
  19576. image: {
  19577. source: "./media/characters/equus-silvermane/front.svg",
  19578. extra: 4633 / 4400,
  19579. bottom: 71.3 / 4706.915
  19580. }
  19581. },
  19582. sideStepping: {
  19583. height: math.unit(8, "feet"),
  19584. weight: math.unit(300, "lb"),
  19585. name: "Side (Stepping)",
  19586. image: {
  19587. source: "./media/characters/equus-silvermane/side-stepping.svg",
  19588. extra: 1968 / 1860,
  19589. bottom: 16.4 / 1989
  19590. }
  19591. },
  19592. },
  19593. [
  19594. {
  19595. name: "Normal",
  19596. height: math.unit(8, "feet")
  19597. },
  19598. {
  19599. name: "Minimacro",
  19600. height: math.unit(75, "feet"),
  19601. default: true
  19602. },
  19603. {
  19604. name: "Macro",
  19605. height: math.unit(150, "feet")
  19606. },
  19607. {
  19608. name: "Macro+",
  19609. height: math.unit(1000, "feet")
  19610. },
  19611. {
  19612. name: "Megamacro",
  19613. height: math.unit(1, "mile")
  19614. },
  19615. ]
  19616. ))
  19617. characterMakers.push(() => makeCharacter(
  19618. { name: "Windar" },
  19619. {
  19620. side: {
  19621. height: math.unit(20, "feet"),
  19622. weight: math.unit(30000, "kg"),
  19623. name: "Side",
  19624. image: {
  19625. source: "./media/characters/windar/side.svg",
  19626. extra: 1491 / 1248,
  19627. bottom: 82.56 / 1568
  19628. }
  19629. },
  19630. },
  19631. [
  19632. {
  19633. name: "Normal",
  19634. height: math.unit(20, "feet"),
  19635. default: true
  19636. },
  19637. ]
  19638. ))
  19639. characterMakers.push(() => makeCharacter(
  19640. { name: "Melody" },
  19641. {
  19642. side: {
  19643. height: math.unit(15.66, "feet"),
  19644. weight: math.unit(150, "lb"),
  19645. name: "Side",
  19646. image: {
  19647. source: "./media/characters/melody/side.svg",
  19648. extra: 1097 / 944,
  19649. bottom: 11.8 / 1109
  19650. }
  19651. },
  19652. sideOutfit: {
  19653. height: math.unit(15.66, "feet"),
  19654. weight: math.unit(150, "lb"),
  19655. name: "Side (Outfit)",
  19656. image: {
  19657. source: "./media/characters/melody/side-outfit.svg",
  19658. extra: 1097 / 944,
  19659. bottom: 11.8 / 1109
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(15.66, "feet"),
  19667. default: true
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Windera" },
  19673. {
  19674. front: {
  19675. height: math.unit(8, "feet"),
  19676. weight: math.unit(325, "lb"),
  19677. name: "Front",
  19678. image: {
  19679. source: "./media/characters/windera/front.svg",
  19680. extra: 3180 / 2845,
  19681. bottom: 178 / 3365
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(8, "feet"),
  19689. default: true
  19690. },
  19691. ]
  19692. ))
  19693. characterMakers.push(() => makeCharacter(
  19694. { name: "Sonear" },
  19695. {
  19696. front: {
  19697. height: math.unit(28.75, "feet"),
  19698. weight: math.unit(2000, "kg"),
  19699. name: "Front",
  19700. image: {
  19701. source: "./media/characters/sonear/front.svg",
  19702. extra: 1041.1 / 964.9,
  19703. bottom: 53.7 / 1096.6
  19704. }
  19705. },
  19706. },
  19707. [
  19708. {
  19709. name: "Normal",
  19710. height: math.unit(28.75, "feet"),
  19711. default: true
  19712. },
  19713. ]
  19714. ))
  19715. characterMakers.push(() => makeCharacter(
  19716. { name: "Kanara" },
  19717. {
  19718. side: {
  19719. height: math.unit(25.5, "feet"),
  19720. weight: math.unit(23000, "kg"),
  19721. name: "Side",
  19722. image: {
  19723. source: "./media/characters/kanara/side.svg"
  19724. }
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "Normal",
  19730. height: math.unit(25.5, "feet"),
  19731. default: true
  19732. },
  19733. ]
  19734. ))
  19735. characterMakers.push(() => makeCharacter(
  19736. { name: "Ereus" },
  19737. {
  19738. side: {
  19739. height: math.unit(10, "feet"),
  19740. weight: math.unit(1000, "kg"),
  19741. name: "Side",
  19742. image: {
  19743. source: "./media/characters/ereus/side.svg",
  19744. extra: 1157 / 959,
  19745. bottom: 153 / 1312.5
  19746. }
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Normal",
  19752. height: math.unit(10, "feet"),
  19753. default: true
  19754. },
  19755. ]
  19756. ))
  19757. characterMakers.push(() => makeCharacter(
  19758. { name: "E-ter" },
  19759. {
  19760. side: {
  19761. height: math.unit(4.5, "feet"),
  19762. weight: math.unit(500, "lb"),
  19763. name: "Side",
  19764. image: {
  19765. source: "./media/characters/e-ter/side.svg",
  19766. extra: 1550 / 1248,
  19767. bottom: 146 / 1694
  19768. }
  19769. },
  19770. },
  19771. [
  19772. {
  19773. name: "Normal",
  19774. height: math.unit(4.5, "feet"),
  19775. default: true
  19776. },
  19777. ]
  19778. ))
  19779. characterMakers.push(() => makeCharacter(
  19780. { name: "Yamie" },
  19781. {
  19782. side: {
  19783. height: math.unit(9.7, "feet"),
  19784. weight: math.unit(4000, "kg"),
  19785. name: "Side",
  19786. image: {
  19787. source: "./media/characters/yamie/side.svg"
  19788. }
  19789. },
  19790. },
  19791. [
  19792. {
  19793. name: "Normal",
  19794. height: math.unit(9.7, "feet"),
  19795. default: true
  19796. },
  19797. ]
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Anders" },
  19801. {
  19802. front: {
  19803. height: math.unit(50, "feet"),
  19804. weight: math.unit(50000, "kg"),
  19805. name: "Front",
  19806. image: {
  19807. source: "./media/characters/anders/front.svg",
  19808. extra: 570 / 539,
  19809. bottom: 14.7 / 586.7
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Large",
  19816. height: math.unit(50, "feet")
  19817. },
  19818. {
  19819. name: "Macro",
  19820. height: math.unit(2000, "feet"),
  19821. default: true
  19822. },
  19823. {
  19824. name: "Megamacro",
  19825. height: math.unit(12, "miles")
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Reban" },
  19831. {
  19832. front: {
  19833. height: math.unit(7 + 2 / 12, "feet"),
  19834. weight: math.unit(300, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/reban/front.svg",
  19838. extra: 516 / 487,
  19839. bottom: 42.82 / 558.356
  19840. }
  19841. },
  19842. dick: {
  19843. height: math.unit(7 / 5, "feet"),
  19844. name: "Dick",
  19845. image: {
  19846. source: "./media/characters/reban/dick.svg"
  19847. }
  19848. },
  19849. },
  19850. [
  19851. {
  19852. name: "Natural Height",
  19853. height: math.unit(7 + 2 / 12, "feet")
  19854. },
  19855. {
  19856. name: "Macro",
  19857. height: math.unit(500, "feet"),
  19858. default: true
  19859. },
  19860. {
  19861. name: "Canon Height",
  19862. height: math.unit(50, "AU")
  19863. },
  19864. ]
  19865. ))
  19866. characterMakers.push(() => makeCharacter(
  19867. { name: "Terrance Keayes" },
  19868. {
  19869. front: {
  19870. height: math.unit(6, "feet"),
  19871. weight: math.unit(150, "lb"),
  19872. name: "Front",
  19873. image: {
  19874. source: "./media/characters/terrance-keayes/front.svg",
  19875. extra: 1.005,
  19876. bottom: 151 / 1615
  19877. }
  19878. },
  19879. side: {
  19880. height: math.unit(6, "feet"),
  19881. weight: math.unit(150, "lb"),
  19882. name: "Side",
  19883. image: {
  19884. source: "./media/characters/terrance-keayes/side.svg",
  19885. extra: 1.005,
  19886. bottom: 129.4 / 1544
  19887. }
  19888. },
  19889. back: {
  19890. height: math.unit(6, "feet"),
  19891. weight: math.unit(150, "lb"),
  19892. name: "Back",
  19893. image: {
  19894. source: "./media/characters/terrance-keayes/back.svg",
  19895. extra: 1.005,
  19896. bottom: 58.4 / 1557.3
  19897. }
  19898. },
  19899. dick: {
  19900. height: math.unit(6 * 0.208, "feet"),
  19901. name: "Dick",
  19902. image: {
  19903. source: "./media/characters/terrance-keayes/dick.svg"
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Canon Height",
  19910. height: math.unit(35, "miles"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Ofelia" },
  19917. {
  19918. front: {
  19919. height: math.unit(6, "feet"),
  19920. weight: math.unit(150, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/ofelia/front.svg",
  19924. extra: 546 / 541,
  19925. bottom: 39 / 583
  19926. }
  19927. },
  19928. back: {
  19929. height: math.unit(6, "feet"),
  19930. weight: math.unit(150, "lb"),
  19931. name: "Back",
  19932. image: {
  19933. source: "./media/characters/ofelia/back.svg",
  19934. extra: 564 / 559.5,
  19935. bottom: 8.69 / 573.02
  19936. }
  19937. },
  19938. maw: {
  19939. height: math.unit(1, "feet"),
  19940. name: "Maw",
  19941. image: {
  19942. source: "./media/characters/ofelia/maw.svg"
  19943. }
  19944. },
  19945. foot: {
  19946. height: math.unit(1.949, "feet"),
  19947. name: "Foot",
  19948. image: {
  19949. source: "./media/characters/ofelia/foot.svg"
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Canon Height",
  19956. height: math.unit(2000, "miles"),
  19957. default: true
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Samuel" },
  19963. {
  19964. front: {
  19965. height: math.unit(6, "feet"),
  19966. weight: math.unit(150, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/samuel/front.svg",
  19970. extra: 265 / 258,
  19971. bottom: 2 / 266.1566
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Macro",
  19978. height: math.unit(100, "feet"),
  19979. default: true
  19980. },
  19981. {
  19982. name: "Full Size",
  19983. height: math.unit(1000, "miles")
  19984. },
  19985. ]
  19986. ))
  19987. characterMakers.push(() => makeCharacter(
  19988. { name: "Beishir Kiel" },
  19989. {
  19990. front: {
  19991. height: math.unit(6, "feet"),
  19992. weight: math.unit(300, "lb"),
  19993. name: "Front",
  19994. image: {
  19995. source: "./media/characters/beishir-kiel/front.svg",
  19996. extra: 569 / 547,
  19997. bottom: 41.9 / 609
  19998. }
  19999. },
  20000. maw: {
  20001. height: math.unit(6 * 0.202, "feet"),
  20002. name: "Maw",
  20003. image: {
  20004. source: "./media/characters/beishir-kiel/maw.svg"
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Macro",
  20011. height: math.unit(300, "feet"),
  20012. default: true
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Logan Grey" },
  20018. {
  20019. front: {
  20020. height: math.unit(5 + 8 / 12, "feet"),
  20021. weight: math.unit(120, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/logan-grey/front.svg",
  20025. extra: 2539 / 2393,
  20026. bottom: 97.6 / 2636.37
  20027. }
  20028. },
  20029. frontAlt: {
  20030. height: math.unit(5 + 8 / 12, "feet"),
  20031. weight: math.unit(120, "lb"),
  20032. name: "Front (Alt)",
  20033. image: {
  20034. source: "./media/characters/logan-grey/front-alt.svg",
  20035. extra: 958 / 893,
  20036. bottom: 15 / 970.768
  20037. }
  20038. },
  20039. back: {
  20040. height: math.unit(5 + 8 / 12, "feet"),
  20041. weight: math.unit(120, "lb"),
  20042. name: "Back",
  20043. image: {
  20044. source: "./media/characters/logan-grey/back.svg",
  20045. extra: 958 / 893,
  20046. bottom: 2.1881 / 970.9788
  20047. }
  20048. },
  20049. dick: {
  20050. height: math.unit(1.437, "feet"),
  20051. name: "Dick",
  20052. image: {
  20053. source: "./media/characters/logan-grey/dick.svg"
  20054. }
  20055. },
  20056. },
  20057. [
  20058. {
  20059. name: "Normal",
  20060. height: math.unit(5 + 8 / 12, "feet")
  20061. },
  20062. {
  20063. name: "The 500 Foot Femboy",
  20064. height: math.unit(500, "feet"),
  20065. default: true
  20066. },
  20067. {
  20068. name: "Megmacro",
  20069. height: math.unit(20, "miles")
  20070. },
  20071. ]
  20072. ))
  20073. characterMakers.push(() => makeCharacter(
  20074. { name: "Draganta" },
  20075. {
  20076. front: {
  20077. height: math.unit(8 + 2 / 12, "feet"),
  20078. weight: math.unit(275, "lb"),
  20079. name: "Front",
  20080. image: {
  20081. source: "./media/characters/draganta/front.svg",
  20082. extra: 1177 / 1135,
  20083. bottom: 33.46 / 1212.1
  20084. }
  20085. },
  20086. },
  20087. [
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(8 + 6 / 12, "feet"),
  20091. default: true
  20092. },
  20093. {
  20094. name: "Macro",
  20095. height: math.unit(150, "feet")
  20096. },
  20097. {
  20098. name: "Megamacro",
  20099. height: math.unit(1000, "miles")
  20100. },
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20105. {
  20106. front: {
  20107. height: math.unit(1.72, "m"),
  20108. weight: math.unit(80, "lb"),
  20109. name: "Front",
  20110. image: {
  20111. source: "./media/characters/voski/front.svg",
  20112. extra: 2076.22 / 2022.4,
  20113. bottom: 102.7 / 2177.3866
  20114. }
  20115. },
  20116. frontNsfw: {
  20117. height: math.unit(1.72, "m"),
  20118. weight: math.unit(80, "lb"),
  20119. name: "Front (NSFW)",
  20120. image: {
  20121. source: "./media/characters/voski/front-nsfw.svg",
  20122. extra: 2076.22 / 2022.4,
  20123. bottom: 102.7 / 2177.3866
  20124. }
  20125. },
  20126. back: {
  20127. height: math.unit(1.72, "m"),
  20128. weight: math.unit(80, "lb"),
  20129. name: "Back",
  20130. image: {
  20131. source: "./media/characters/voski/back.svg",
  20132. extra: 2104 / 2051,
  20133. bottom: 10.45 / 2113.63
  20134. }
  20135. },
  20136. },
  20137. [
  20138. {
  20139. name: "Normal",
  20140. height: math.unit(1.72, "m")
  20141. },
  20142. {
  20143. name: "Macro",
  20144. height: math.unit(55, "m"),
  20145. default: true
  20146. },
  20147. {
  20148. name: "Macro+",
  20149. height: math.unit(300, "m")
  20150. },
  20151. {
  20152. name: "Macro++",
  20153. height: math.unit(700, "m")
  20154. },
  20155. {
  20156. name: "Macro+++",
  20157. height: math.unit(4500, "m")
  20158. },
  20159. {
  20160. name: "Macro++++",
  20161. height: math.unit(45, "km")
  20162. },
  20163. {
  20164. name: "Macro+++++",
  20165. height: math.unit(1220, "km")
  20166. },
  20167. ]
  20168. ))
  20169. characterMakers.push(() => makeCharacter(
  20170. { name: "Icowom Lee" },
  20171. {
  20172. front: {
  20173. height: math.unit(2.3, "m"),
  20174. weight: math.unit(304, "kg"),
  20175. name: "Front",
  20176. image: {
  20177. source: "./media/characters/icowom-lee/front.svg",
  20178. extra: 3076 / 2933,
  20179. bottom: 51.4 / 3125.1889
  20180. }
  20181. },
  20182. },
  20183. [
  20184. {
  20185. name: "Normal",
  20186. height: math.unit(2.3, "meters"),
  20187. default: true
  20188. },
  20189. {
  20190. name: "Macro",
  20191. height: math.unit(94, "meters"),
  20192. default: true
  20193. },
  20194. ]
  20195. ))
  20196. characterMakers.push(() => makeCharacter(
  20197. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  20198. {
  20199. front: {
  20200. height: math.unit(22, "meters"),
  20201. weight: math.unit(21000, "kg"),
  20202. name: "Front",
  20203. image: {
  20204. source: "./media/characters/shock-diamond/front.svg",
  20205. extra: 2204 / 2053,
  20206. bottom: 65 / 2239.47
  20207. }
  20208. },
  20209. frontNude: {
  20210. height: math.unit(22, "meters"),
  20211. weight: math.unit(21000, "kg"),
  20212. name: "Front (Nude)",
  20213. image: {
  20214. source: "./media/characters/shock-diamond/front-nude.svg",
  20215. extra: 2514 / 2285,
  20216. bottom: 13 / 2527.56
  20217. }
  20218. },
  20219. },
  20220. [
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(3, "meters")
  20224. },
  20225. {
  20226. name: "Macro",
  20227. height: math.unit(22, "meters"),
  20228. default: true
  20229. },
  20230. ]
  20231. ))
  20232. characterMakers.push(() => makeCharacter(
  20233. { name: "Rory" },
  20234. {
  20235. front: {
  20236. height: math.unit(5 + 4 / 12, "feet"),
  20237. weight: math.unit(120, "lb"),
  20238. name: "Front",
  20239. image: {
  20240. source: "./media/characters/rory/front.svg",
  20241. extra: 589 / 556,
  20242. bottom: 45.7 / 635.76
  20243. }
  20244. },
  20245. frontNude: {
  20246. height: math.unit(5 + 4 / 12, "feet"),
  20247. weight: math.unit(120, "lb"),
  20248. name: "Front (Nude)",
  20249. image: {
  20250. source: "./media/characters/rory/front-nude.svg",
  20251. extra: 589 / 556,
  20252. bottom: 45.7 / 635.76
  20253. }
  20254. },
  20255. side: {
  20256. height: math.unit(5 + 4 / 12, "feet"),
  20257. weight: math.unit(120, "lb"),
  20258. name: "Side",
  20259. image: {
  20260. source: "./media/characters/rory/side.svg",
  20261. extra: 597 / 564,
  20262. bottom: 55 / 653
  20263. }
  20264. },
  20265. back: {
  20266. height: math.unit(5 + 4 / 12, "feet"),
  20267. weight: math.unit(120, "lb"),
  20268. name: "Back",
  20269. image: {
  20270. source: "./media/characters/rory/back.svg",
  20271. extra: 620 / 585,
  20272. bottom: 8.86 / 630.43
  20273. }
  20274. },
  20275. dick: {
  20276. height: math.unit(0.86, "feet"),
  20277. name: "Dick",
  20278. image: {
  20279. source: "./media/characters/rory/dick.svg"
  20280. }
  20281. },
  20282. },
  20283. [
  20284. {
  20285. name: "Normal",
  20286. height: math.unit(5 + 4 / 12, "feet"),
  20287. default: true
  20288. },
  20289. {
  20290. name: "Macro",
  20291. height: math.unit(100, "feet")
  20292. },
  20293. {
  20294. name: "Macro+",
  20295. height: math.unit(140, "feet")
  20296. },
  20297. {
  20298. name: "Macro++",
  20299. height: math.unit(300, "feet")
  20300. },
  20301. ]
  20302. ))
  20303. characterMakers.push(() => makeCharacter(
  20304. { name: "Sprisk" },
  20305. {
  20306. front: {
  20307. height: math.unit(5 + 9 / 12, "feet"),
  20308. weight: math.unit(190, "lb"),
  20309. name: "Front",
  20310. image: {
  20311. source: "./media/characters/sprisk/front.svg",
  20312. extra: 1225 / 1180,
  20313. bottom: 42.7 / 1266.4
  20314. }
  20315. },
  20316. frontNsfw: {
  20317. height: math.unit(5 + 9 / 12, "feet"),
  20318. weight: math.unit(190, "lb"),
  20319. name: "Front (NSFW)",
  20320. image: {
  20321. source: "./media/characters/sprisk/front-nsfw.svg",
  20322. extra: 1225 / 1180,
  20323. bottom: 42.7 / 1266.4
  20324. }
  20325. },
  20326. back: {
  20327. height: math.unit(5 + 9 / 12, "feet"),
  20328. weight: math.unit(190, "lb"),
  20329. name: "Back",
  20330. image: {
  20331. source: "./media/characters/sprisk/back.svg",
  20332. extra: 1247 / 1200,
  20333. bottom: 5.6 / 1253.04
  20334. }
  20335. },
  20336. },
  20337. [
  20338. {
  20339. name: "Tiny",
  20340. height: math.unit(2, "inches")
  20341. },
  20342. {
  20343. name: "Normal",
  20344. height: math.unit(5 + 9 / 12, "feet"),
  20345. default: true
  20346. },
  20347. {
  20348. name: "Mini Macro",
  20349. height: math.unit(18, "feet")
  20350. },
  20351. {
  20352. name: "Macro",
  20353. height: math.unit(100, "feet")
  20354. },
  20355. {
  20356. name: "MACRO",
  20357. height: math.unit(50, "miles")
  20358. },
  20359. {
  20360. name: "M A C R O",
  20361. height: math.unit(300, "miles")
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Bunsen" },
  20367. {
  20368. side: {
  20369. height: math.unit(15.6, "meters"),
  20370. weight: math.unit(700000, "kg"),
  20371. name: "Side",
  20372. image: {
  20373. source: "./media/characters/bunsen/side.svg",
  20374. extra: 1644 / 358
  20375. }
  20376. },
  20377. foot: {
  20378. height: math.unit(1.611 * 1644 / 358, "meter"),
  20379. name: "Foot",
  20380. image: {
  20381. source: "./media/characters/bunsen/foot.svg"
  20382. }
  20383. },
  20384. },
  20385. [
  20386. {
  20387. name: "Small",
  20388. height: math.unit(10, "feet")
  20389. },
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(15.6, "meters"),
  20393. default: true
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Sesh" },
  20399. {
  20400. front: {
  20401. height: math.unit(4 + 11 / 12, "feet"),
  20402. weight: math.unit(140, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/sesh/front.svg",
  20406. extra: 3420 / 3231,
  20407. bottom: 72 / 3949.5
  20408. }
  20409. },
  20410. },
  20411. [
  20412. {
  20413. name: "Normal",
  20414. height: math.unit(4 + 11 / 12, "feet")
  20415. },
  20416. {
  20417. name: "Grown",
  20418. height: math.unit(15, "feet"),
  20419. default: true
  20420. },
  20421. {
  20422. name: "Macro",
  20423. height: math.unit(1500, "feet")
  20424. },
  20425. {
  20426. name: "Megamacro",
  20427. height: math.unit(30, "miles")
  20428. },
  20429. {
  20430. name: "Continental",
  20431. height: math.unit(3000, "miles")
  20432. },
  20433. {
  20434. name: "Gravity Mass",
  20435. height: math.unit(300000, "miles")
  20436. },
  20437. {
  20438. name: "Planet Buster",
  20439. height: math.unit(30000000, "miles")
  20440. },
  20441. {
  20442. name: "Big",
  20443. height: math.unit(3000000000, "miles")
  20444. },
  20445. ]
  20446. ))
  20447. characterMakers.push(() => makeCharacter(
  20448. { name: "Pepper" },
  20449. {
  20450. front: {
  20451. height: math.unit(9, "feet"),
  20452. weight: math.unit(350, "lb"),
  20453. name: "Front",
  20454. image: {
  20455. source: "./media/characters/pepper/front.svg",
  20456. extra: 1448/1312,
  20457. bottom: 9.4/1457.88
  20458. }
  20459. },
  20460. back: {
  20461. height: math.unit(9, "feet"),
  20462. weight: math.unit(350, "lb"),
  20463. name: "Back",
  20464. image: {
  20465. source: "./media/characters/pepper/back.svg",
  20466. extra: 1423/1300,
  20467. bottom: 4.6/1429
  20468. }
  20469. },
  20470. maw: {
  20471. height: math.unit(0.932, "feet"),
  20472. name: "Maw",
  20473. image: {
  20474. source: "./media/characters/pepper/maw.svg"
  20475. }
  20476. },
  20477. },
  20478. [
  20479. {
  20480. name: "Normal",
  20481. height: math.unit(9, "feet"),
  20482. default: true
  20483. },
  20484. ]
  20485. ))
  20486. characterMakers.push(() => makeCharacter(
  20487. { name: "Maelstrom" },
  20488. {
  20489. front: {
  20490. height: math.unit(6, "feet"),
  20491. weight: math.unit(150, "lb"),
  20492. name: "Front",
  20493. image: {
  20494. source: "./media/characters/maelstrom/front.svg",
  20495. extra: 2100/1883,
  20496. bottom: 94/2196.7
  20497. }
  20498. },
  20499. },
  20500. [
  20501. {
  20502. name: "Less Kaiju",
  20503. height: math.unit(200, "feet")
  20504. },
  20505. {
  20506. name: "Kaiju",
  20507. height: math.unit(400, "feet"),
  20508. default: true
  20509. },
  20510. {
  20511. name: "Kaiju-er",
  20512. height: math.unit(600, "feet")
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Lexir" },
  20518. {
  20519. front: {
  20520. height: math.unit(6 + 5/12, "feet"),
  20521. weight: math.unit(180, "lb"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/lexir/front.svg",
  20525. extra: 180/172,
  20526. bottom: 12/192
  20527. }
  20528. },
  20529. back: {
  20530. height: math.unit(6 + 5/12, "feet"),
  20531. weight: math.unit(180, "lb"),
  20532. name: "Back",
  20533. image: {
  20534. source: "./media/characters/lexir/back.svg",
  20535. extra: 183.84/175.5,
  20536. bottom: 3.1/187
  20537. }
  20538. },
  20539. },
  20540. [
  20541. {
  20542. name: "Very Smal",
  20543. height: math.unit(1, "nm")
  20544. },
  20545. {
  20546. name: "Normal",
  20547. height: math.unit(6 + 5/12, "feet"),
  20548. default: true
  20549. },
  20550. {
  20551. name: "Macro",
  20552. height: math.unit(1, "mile")
  20553. },
  20554. {
  20555. name: "Megamacro",
  20556. height: math.unit(50, "miles")
  20557. },
  20558. ]
  20559. ))
  20560. characterMakers.push(() => makeCharacter(
  20561. { name: "Maksio" },
  20562. {
  20563. front: {
  20564. height: math.unit(1.5, "meters"),
  20565. weight: math.unit(100, "lb"),
  20566. name: "Front",
  20567. image: {
  20568. source: "./media/characters/maksio/front.svg",
  20569. extra: 1549/1531,
  20570. bottom: 123.7/1674.5429
  20571. }
  20572. },
  20573. back: {
  20574. height: math.unit(1.5, "meters"),
  20575. weight: math.unit(100, "lb"),
  20576. name: "Back",
  20577. image: {
  20578. source: "./media/characters/maksio/back.svg",
  20579. extra: 1541/1509,
  20580. bottom: 97/1639
  20581. }
  20582. },
  20583. hand: {
  20584. height: math.unit(0.621, "feet"),
  20585. name: "Hand",
  20586. image: {
  20587. source: "./media/characters/maksio/hand.svg"
  20588. }
  20589. },
  20590. foot: {
  20591. height: math.unit(1.611, "feet"),
  20592. name: "Foot",
  20593. image: {
  20594. source: "./media/characters/maksio/foot.svg"
  20595. }
  20596. },
  20597. },
  20598. [
  20599. {
  20600. name: "Shrunken",
  20601. height: math.unit(10, "cm")
  20602. },
  20603. {
  20604. name: "Normal",
  20605. height: math.unit(150, "cm"),
  20606. default: true
  20607. },
  20608. ]
  20609. ))
  20610. characterMakers.push(() => makeCharacter(
  20611. { name: "Erza Bear" },
  20612. {
  20613. front: {
  20614. height: math.unit(100, "feet"),
  20615. name: "Front",
  20616. image: {
  20617. source: "./media/characters/erza-bear/front.svg",
  20618. extra: 2449/2390,
  20619. bottom: 46/2494
  20620. }
  20621. },
  20622. back: {
  20623. height: math.unit(100, "feet"),
  20624. name: "Back",
  20625. image: {
  20626. source: "./media/characters/erza-bear/back.svg",
  20627. extra: 2489/2430,
  20628. bottom: 85.4/2480
  20629. }
  20630. },
  20631. tail: {
  20632. height: math.unit(42, "feet"),
  20633. name: "Tail",
  20634. image: {
  20635. source: "./media/characters/erza-bear/tail.svg"
  20636. }
  20637. },
  20638. tongue: {
  20639. height: math.unit(8, "feet"),
  20640. name: "Tongue",
  20641. image: {
  20642. source: "./media/characters/erza-bear/tongue.svg"
  20643. }
  20644. },
  20645. dick: {
  20646. height: math.unit(10.5, "feet"),
  20647. name: "Dick",
  20648. image: {
  20649. source: "./media/characters/erza-bear/dick.svg"
  20650. }
  20651. },
  20652. dickVertical: {
  20653. height: math.unit(16.9, "feet"),
  20654. name: "Dick (Vertical)",
  20655. image: {
  20656. source: "./media/characters/erza-bear/dick-vertical.svg"
  20657. }
  20658. },
  20659. },
  20660. [
  20661. {
  20662. name: "Macro",
  20663. height: math.unit(100, "feet"),
  20664. default: true
  20665. },
  20666. ]
  20667. ))
  20668. characterMakers.push(() => makeCharacter(
  20669. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  20670. {
  20671. front: {
  20672. height: math.unit(172, "cm"),
  20673. weight: math.unit(73, "kg"),
  20674. name: "Front",
  20675. image: {
  20676. source: "./media/characters/violet-flor/front.svg",
  20677. extra: 1530/1442,
  20678. bottom: 61.9/1588.8
  20679. }
  20680. },
  20681. back: {
  20682. height: math.unit(180, "cm"),
  20683. weight: math.unit(73, "kg"),
  20684. name: "Back",
  20685. image: {
  20686. source: "./media/characters/violet-flor/back.svg",
  20687. extra: 1692/1630,
  20688. bottom: 20/1712
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(172, "cm"),
  20696. default: true
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  20702. {
  20703. front: {
  20704. height: math.unit(6, "feet"),
  20705. weight: math.unit(220, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/lynn-rhea/front.svg",
  20709. extra: 310/273
  20710. }
  20711. },
  20712. back: {
  20713. height: math.unit(6, "feet"),
  20714. weight: math.unit(220, "lb"),
  20715. name: "Back",
  20716. image: {
  20717. source: "./media/characters/lynn-rhea/back.svg",
  20718. extra: 310/273
  20719. }
  20720. },
  20721. dicks: {
  20722. height: math.unit(0.9, "feet"),
  20723. name: "Dicks",
  20724. image: {
  20725. source: "./media/characters/lynn-rhea/dicks.svg"
  20726. }
  20727. },
  20728. slit: {
  20729. height: math.unit(0.4, "feet"),
  20730. name: "Slit",
  20731. image: {
  20732. source: "./media/characters/lynn-rhea/slit.svg"
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Micro",
  20739. height: math.unit(1, "inch")
  20740. },
  20741. {
  20742. name: "Macro",
  20743. height: math.unit(60, "feet"),
  20744. default: true
  20745. },
  20746. {
  20747. name: "Megamacro",
  20748. height: math.unit(2, "miles")
  20749. },
  20750. {
  20751. name: "Gigamacro",
  20752. height: math.unit(3, "earths")
  20753. },
  20754. {
  20755. name: "Galactic",
  20756. height: math.unit(0.8, "galaxies")
  20757. },
  20758. ]
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Valathos" },
  20762. {
  20763. front: {
  20764. height: math.unit(1600, "feet"),
  20765. weight: math.unit(85758785169, "kg"),
  20766. name: "Front",
  20767. image: {
  20768. source: "./media/characters/valathos/front.svg",
  20769. extra: 1451/1339
  20770. }
  20771. },
  20772. },
  20773. [
  20774. {
  20775. name: "Macro",
  20776. height: math.unit(1600, "feet"),
  20777. default: true
  20778. },
  20779. ]
  20780. ))
  20781. characterMakers.push(() => makeCharacter(
  20782. { name: "Azula" },
  20783. {
  20784. front: {
  20785. height: math.unit(7 + 5/12, "feet"),
  20786. weight: math.unit(300, "lb"),
  20787. name: "Front",
  20788. image: {
  20789. source: "./media/characters/azula/front.svg",
  20790. extra: 3208/2880,
  20791. bottom: 80.2/3277
  20792. }
  20793. },
  20794. back: {
  20795. height: math.unit(7 + 5/12, "feet"),
  20796. weight: math.unit(300, "lb"),
  20797. name: "Back",
  20798. image: {
  20799. source: "./media/characters/azula/back.svg",
  20800. extra: 3169/2822,
  20801. bottom: 150.6/3321
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(7 + 5/12, "feet"),
  20809. default: true
  20810. },
  20811. {
  20812. name: "Big",
  20813. height: math.unit(20, "feet")
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Rupert" },
  20819. {
  20820. front: {
  20821. height: math.unit(5 + 1/12, "feet"),
  20822. weight: math.unit(110, "lb"),
  20823. name: "Front",
  20824. image: {
  20825. source: "./media/characters/rupert/front.svg",
  20826. extra: 1549/1495,
  20827. bottom: 54.2/1604.4
  20828. }
  20829. },
  20830. },
  20831. [
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(5 + 1/12, "feet"),
  20835. default: true
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Sheera Castellar" },
  20841. {
  20842. front: {
  20843. height: math.unit(8 + 4/12, "feet"),
  20844. weight: math.unit(350, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/sheera-castellar/front.svg",
  20848. extra: 1957/1894,
  20849. bottom: 26.97/1975.017
  20850. }
  20851. },
  20852. side: {
  20853. height: math.unit(8 + 4/12, "feet"),
  20854. weight: math.unit(350, "lb"),
  20855. name: "Side",
  20856. image: {
  20857. source: "./media/characters/sheera-castellar/side.svg",
  20858. extra: 1957/1894
  20859. }
  20860. },
  20861. back: {
  20862. height: math.unit(8 + 4/12, "feet"),
  20863. weight: math.unit(350, "lb"),
  20864. name: "Back",
  20865. image: {
  20866. source: "./media/characters/sheera-castellar/back.svg",
  20867. extra: 1957/1894
  20868. }
  20869. },
  20870. angled: {
  20871. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  20872. weight: math.unit(350, "lb"),
  20873. name: "Angled",
  20874. image: {
  20875. source: "./media/characters/sheera-castellar/angled.svg",
  20876. extra: 1807/1707,
  20877. bottom: 68/1875
  20878. }
  20879. },
  20880. genitals: {
  20881. height: math.unit(2.2, "feet"),
  20882. name: "Genitals",
  20883. image: {
  20884. source: "./media/characters/sheera-castellar/genitals.svg"
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(8 + 4/12, "feet")
  20892. },
  20893. {
  20894. name: "Macro",
  20895. height: math.unit(150, "feet"),
  20896. default: true
  20897. },
  20898. {
  20899. name: "Macro+",
  20900. height: math.unit(800, "feet")
  20901. },
  20902. ]
  20903. ))
  20904. characterMakers.push(() => makeCharacter(
  20905. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  20906. {
  20907. front: {
  20908. height: math.unit(6, "feet"),
  20909. weight: math.unit(150, "lb"),
  20910. name: "Front",
  20911. image: {
  20912. source: "./media/characters/jaipur/front.svg",
  20913. extra: 3860/3731,
  20914. bottom: 287/4140
  20915. }
  20916. },
  20917. back: {
  20918. height: math.unit(6, "feet"),
  20919. weight: math.unit(150, "lb"),
  20920. name: "Back",
  20921. image: {
  20922. source: "./media/characters/jaipur/back.svg",
  20923. extra: 4060/3930,
  20924. bottom: 151/4200
  20925. }
  20926. },
  20927. },
  20928. [
  20929. {
  20930. name: "Normal",
  20931. height: math.unit(1.85, "meters"),
  20932. default: true
  20933. },
  20934. {
  20935. name: "Macro",
  20936. height: math.unit(150, "meters")
  20937. },
  20938. {
  20939. name: "Macro+",
  20940. height: math.unit(0.5, "miles")
  20941. },
  20942. {
  20943. name: "Macro++",
  20944. height: math.unit(2.5, "miles")
  20945. },
  20946. {
  20947. name: "Macro+++",
  20948. height: math.unit(12, "miles")
  20949. },
  20950. {
  20951. name: "Macro++++",
  20952. height: math.unit(120, "miles")
  20953. },
  20954. {
  20955. name: "Macro+++++",
  20956. height: math.unit(1200, "miles")
  20957. },
  20958. ]
  20959. ))
  20960. characterMakers.push(() => makeCharacter(
  20961. { name: "Sheila (Wolf)" },
  20962. {
  20963. front: {
  20964. height: math.unit(6, "feet"),
  20965. weight: math.unit(150, "lb"),
  20966. name: "Front",
  20967. image: {
  20968. source: "./media/characters/sheila-wolf/front.svg",
  20969. extra: 1931/1808,
  20970. bottom: 29.5/1960
  20971. }
  20972. },
  20973. dick: {
  20974. height: math.unit(1.464, "feet"),
  20975. name: "Dick",
  20976. image: {
  20977. source: "./media/characters/sheila-wolf/dick.svg"
  20978. }
  20979. },
  20980. muzzle: {
  20981. height: math.unit(0.513, "feet"),
  20982. name: "Muzzle",
  20983. image: {
  20984. source: "./media/characters/sheila-wolf/muzzle.svg"
  20985. }
  20986. },
  20987. },
  20988. [
  20989. {
  20990. name: "Macro",
  20991. height: math.unit(70, "feet"),
  20992. default: true
  20993. },
  20994. ]
  20995. ))
  20996. characterMakers.push(() => makeCharacter(
  20997. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  20998. {
  20999. front: {
  21000. height: math.unit(32, "meters"),
  21001. weight: math.unit(300000, "kg"),
  21002. name: "Front",
  21003. image: {
  21004. source: "./media/characters/almor/front.svg",
  21005. extra: 1408/1322,
  21006. bottom: 94.6/1506.5
  21007. }
  21008. },
  21009. },
  21010. [
  21011. {
  21012. name: "Macro",
  21013. height: math.unit(32, "meters"),
  21014. default: true
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Silver" },
  21020. {
  21021. front: {
  21022. height: math.unit(7, "feet"),
  21023. weight: math.unit(200, "lb"),
  21024. name: "Front",
  21025. image: {
  21026. source: "./media/characters/silver/front.svg",
  21027. extra: 472.1/450.5,
  21028. bottom: 26.5/499.424
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(7, "feet"),
  21036. default: true
  21037. },
  21038. {
  21039. name: "Macro",
  21040. height: math.unit(800, "feet")
  21041. },
  21042. {
  21043. name: "Megamacro",
  21044. height: math.unit(250, "miles")
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Pliskin" },
  21050. {
  21051. front: {
  21052. height: math.unit(6, "feet"),
  21053. weight: math.unit(150, "lb"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/pliskin/front.svg",
  21057. extra: 1469/1359,
  21058. bottom: 70/1540
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Micro",
  21065. height: math.unit(3, "inches")
  21066. },
  21067. {
  21068. name: "Normal",
  21069. height: math.unit(5 + 11/12, "feet"),
  21070. default: true
  21071. },
  21072. {
  21073. name: "Macro",
  21074. height: math.unit(120, "feet")
  21075. },
  21076. ]
  21077. ))
  21078. characterMakers.push(() => makeCharacter(
  21079. { name: "Sammy" },
  21080. {
  21081. front: {
  21082. height: math.unit(6, "feet"),
  21083. weight: math.unit(150, "lb"),
  21084. name: "Front",
  21085. image: {
  21086. source: "./media/characters/sammy/front.svg",
  21087. extra: 1193/1089,
  21088. bottom: 30.5/1226
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Macro",
  21095. height: math.unit(1700, "feet"),
  21096. default: true
  21097. },
  21098. {
  21099. name: "Examacro",
  21100. height: math.unit(2.5e9, "lightyears")
  21101. },
  21102. ]
  21103. ))
  21104. characterMakers.push(() => makeCharacter(
  21105. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21106. {
  21107. front: {
  21108. height: math.unit(21, "meters"),
  21109. weight: math.unit(12, "tonnes"),
  21110. name: "Front",
  21111. image: {
  21112. source: "./media/characters/kuru/front.svg",
  21113. extra: 4301/3785,
  21114. bottom: 371.3/4691
  21115. }
  21116. },
  21117. },
  21118. [
  21119. {
  21120. name: "Macro",
  21121. height: math.unit(21, "meters"),
  21122. default: true
  21123. },
  21124. ]
  21125. ))
  21126. characterMakers.push(() => makeCharacter(
  21127. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  21128. {
  21129. front: {
  21130. height: math.unit(23, "meters"),
  21131. weight: math.unit(12.2, "tonnes"),
  21132. name: "Front",
  21133. image: {
  21134. source: "./media/characters/rakka/front.svg",
  21135. extra: 4670/4169,
  21136. bottom: 301/4968.7
  21137. }
  21138. },
  21139. },
  21140. [
  21141. {
  21142. name: "Macro",
  21143. height: math.unit(23, "meters"),
  21144. default: true
  21145. },
  21146. ]
  21147. ))
  21148. characterMakers.push(() => makeCharacter(
  21149. { name: "Rhys (Feline)" },
  21150. {
  21151. front: {
  21152. height: math.unit(6, "feet"),
  21153. weight: math.unit(150, "lb"),
  21154. name: "Front",
  21155. image: {
  21156. source: "./media/characters/rhys-feline/front.svg",
  21157. extra: 2488/2308,
  21158. bottom: 35.67/2519.19
  21159. }
  21160. },
  21161. },
  21162. [
  21163. {
  21164. name: "Really Small",
  21165. height: math.unit(1, "nm")
  21166. },
  21167. {
  21168. name: "Micro",
  21169. height: math.unit(4, "inches")
  21170. },
  21171. {
  21172. name: "Normal",
  21173. height: math.unit(4 + 10/12, "feet"),
  21174. default: true
  21175. },
  21176. {
  21177. name: "Macro",
  21178. height: math.unit(100, "feet")
  21179. },
  21180. {
  21181. name: "Megamacto",
  21182. height: math.unit(50, "miles")
  21183. },
  21184. ]
  21185. ))
  21186. characterMakers.push(() => makeCharacter(
  21187. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  21188. {
  21189. side: {
  21190. height: math.unit(30, "feet"),
  21191. weight: math.unit(35000, "kg"),
  21192. name: "Side",
  21193. image: {
  21194. source: "./media/characters/alydar/side.svg",
  21195. extra: 234/222,
  21196. bottom: 6.5/241
  21197. }
  21198. },
  21199. front: {
  21200. height: math.unit(30, "feet"),
  21201. weight: math.unit(35000, "kg"),
  21202. name: "Front",
  21203. image: {
  21204. source: "./media/characters/alydar/front.svg",
  21205. extra: 223.37/210.2,
  21206. bottom: 22.3/246.76
  21207. }
  21208. },
  21209. top: {
  21210. height: math.unit(64.54, "feet"),
  21211. weight: math.unit(35000, "kg"),
  21212. name: "Top",
  21213. image: {
  21214. source: "./media/characters/alydar/top.svg"
  21215. }
  21216. },
  21217. anthro: {
  21218. height: math.unit(30, "feet"),
  21219. weight: math.unit(9000, "kg"),
  21220. name: "Anthro",
  21221. image: {
  21222. source: "./media/characters/alydar/anthro.svg",
  21223. extra: 432/421,
  21224. bottom: 7.18/440
  21225. }
  21226. },
  21227. maw: {
  21228. height: math.unit(11.693, "feet"),
  21229. name: "Maw",
  21230. image: {
  21231. source: "./media/characters/alydar/maw.svg"
  21232. }
  21233. },
  21234. head: {
  21235. height: math.unit(11.693, "feet"),
  21236. name: "Head",
  21237. image: {
  21238. source: "./media/characters/alydar/head.svg"
  21239. }
  21240. },
  21241. headAlt: {
  21242. height: math.unit(12.861, "feet"),
  21243. name: "Head (Alt)",
  21244. image: {
  21245. source: "./media/characters/alydar/head-alt.svg"
  21246. }
  21247. },
  21248. wing: {
  21249. height: math.unit(20.712, "feet"),
  21250. name: "Wing",
  21251. image: {
  21252. source: "./media/characters/alydar/wing.svg"
  21253. }
  21254. },
  21255. wingFeather: {
  21256. height: math.unit(9.662, "feet"),
  21257. name: "Wing Feather",
  21258. image: {
  21259. source: "./media/characters/alydar/wing-feather.svg"
  21260. }
  21261. },
  21262. countourFeather: {
  21263. height: math.unit(4.154, "feet"),
  21264. name: "Contour Feather",
  21265. image: {
  21266. source: "./media/characters/alydar/contour-feather.svg"
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Diplomatic",
  21273. height: math.unit(13, "feet"),
  21274. default: true
  21275. },
  21276. {
  21277. name: "Small",
  21278. height: math.unit(30, "feet")
  21279. },
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(95, "feet"),
  21283. default: true
  21284. },
  21285. {
  21286. name: "Large",
  21287. height: math.unit(285, "feet")
  21288. },
  21289. {
  21290. name: "Incomprehensible",
  21291. height: math.unit(450, "megameters")
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Selicia" },
  21297. {
  21298. side: {
  21299. height: math.unit(11, "feet"),
  21300. weight: math.unit(1750, "kg"),
  21301. name: "Side",
  21302. image: {
  21303. source: "./media/characters/selicia/side.svg",
  21304. extra: 440/396,
  21305. bottom: 24.8/465.979
  21306. }
  21307. },
  21308. maw: {
  21309. height: math.unit(4.665, "feet"),
  21310. name: "Maw",
  21311. image: {
  21312. source: "./media/characters/selicia/maw.svg"
  21313. }
  21314. },
  21315. },
  21316. [
  21317. {
  21318. name: "Normal",
  21319. height: math.unit(11, "feet"),
  21320. default: true
  21321. },
  21322. ]
  21323. ))
  21324. characterMakers.push(() => makeCharacter(
  21325. { name: "Layla" },
  21326. {
  21327. side: {
  21328. height: math.unit(2 + 6 /12, "feet"),
  21329. weight: math.unit(30, "lb"),
  21330. name: "Side",
  21331. image: {
  21332. source: "./media/characters/layla/side.svg",
  21333. extra: 244/188,
  21334. bottom: 18.2/262.1
  21335. }
  21336. },
  21337. back: {
  21338. height: math.unit(2 + 6 /12, "feet"),
  21339. weight: math.unit(30, "lb"),
  21340. name: "Back",
  21341. image: {
  21342. source: "./media/characters/layla/back.svg",
  21343. extra: 308/241.5,
  21344. bottom: 8.9/316.8
  21345. }
  21346. },
  21347. cumming: {
  21348. height: math.unit(2 + 6 /12, "feet"),
  21349. weight: math.unit(30, "lb"),
  21350. name: "Cumming",
  21351. image: {
  21352. source: "./media/characters/layla/cumming.svg",
  21353. extra: 342/279,
  21354. bottom: 595/938
  21355. }
  21356. },
  21357. dickFlaccid: {
  21358. height: math.unit(2.595, "feet"),
  21359. name: "Flaccid Genitals",
  21360. image: {
  21361. source: "./media/characters/layla/dick-flaccid.svg"
  21362. }
  21363. },
  21364. dickErect: {
  21365. height: math.unit(2.359, "feet"),
  21366. name: "Erect Genitals",
  21367. image: {
  21368. source: "./media/characters/layla/dick-erect.svg"
  21369. }
  21370. },
  21371. },
  21372. [
  21373. {
  21374. name: "Micro",
  21375. height: math.unit(1, "inch")
  21376. },
  21377. {
  21378. name: "Small",
  21379. height: math.unit(1, "foot")
  21380. },
  21381. {
  21382. name: "Normal",
  21383. height: math.unit(2 + 6/12, "feet"),
  21384. default: true
  21385. },
  21386. {
  21387. name: "Macro",
  21388. height: math.unit(200, "feet")
  21389. },
  21390. {
  21391. name: "Megamacro",
  21392. height: math.unit(1000, "miles")
  21393. },
  21394. {
  21395. name: "Planetary",
  21396. height: math.unit(8000, "miles")
  21397. },
  21398. {
  21399. name: "True Layla",
  21400. height: math.unit(200000*7, "multiverses")
  21401. },
  21402. ]
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Knox" },
  21406. {
  21407. back: {
  21408. height: math.unit(10.5, "feet"),
  21409. weight: math.unit(800, "lb"),
  21410. name: "Back",
  21411. image: {
  21412. source: "./media/characters/knox/back.svg",
  21413. extra: 1486/1089,
  21414. bottom: 107/1601.4
  21415. }
  21416. },
  21417. side: {
  21418. height: math.unit(10.5, "feet"),
  21419. weight: math.unit(800, "lb"),
  21420. name: "Side",
  21421. image: {
  21422. source: "./media/characters/knox/side.svg",
  21423. extra: 244/218,
  21424. bottom: 14/260
  21425. }
  21426. },
  21427. },
  21428. [
  21429. {
  21430. name: "Compact",
  21431. height: math.unit(10.5, "feet"),
  21432. default: true
  21433. },
  21434. {
  21435. name: "Dynamax",
  21436. height: math.unit(210, "feet")
  21437. },
  21438. {
  21439. name: "Full Macro",
  21440. height: math.unit(850, "feet")
  21441. },
  21442. ]
  21443. ))
  21444. characterMakers.push(() => makeCharacter(
  21445. { name: "Shin (Pikachu)" },
  21446. {
  21447. front: {
  21448. height: math.unit(6, "feet"),
  21449. weight: math.unit(152, "lb"),
  21450. name: "Front",
  21451. image: {
  21452. source: "./media/characters/shin-pikachu/front.svg",
  21453. extra: 1574/1480,
  21454. bottom: 53.3/1626
  21455. }
  21456. },
  21457. hand: {
  21458. height: math.unit(1.055, "feet"),
  21459. name: "Hand",
  21460. image: {
  21461. source: "./media/characters/shin-pikachu/hand.svg"
  21462. }
  21463. },
  21464. foot: {
  21465. height: math.unit(1.1, "feet"),
  21466. name: "Foot",
  21467. image: {
  21468. source: "./media/characters/shin-pikachu/foot.svg"
  21469. }
  21470. },
  21471. collar: {
  21472. height: math.unit(0.386, "feet"),
  21473. name: "Collar",
  21474. image: {
  21475. source: "./media/characters/shin-pikachu/collar.svg"
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Smallest",
  21482. height: math.unit(0.5, "inches")
  21483. },
  21484. {
  21485. name: "Micro",
  21486. height: math.unit(6, "inches")
  21487. },
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(6, "feet"),
  21491. default: true
  21492. },
  21493. {
  21494. name: "Macro",
  21495. height: math.unit(150, "feet")
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Kayda" },
  21501. {
  21502. front: {
  21503. height: math.unit(28, "feet"),
  21504. weight: math.unit(10500, "lb"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/kayda/front.svg",
  21508. extra: 1536/1428,
  21509. bottom: 68.7/1603
  21510. }
  21511. },
  21512. back: {
  21513. height: math.unit(28, "feet"),
  21514. weight: math.unit(10500, "lb"),
  21515. name: "Back",
  21516. image: {
  21517. source: "./media/characters/kayda/back.svg",
  21518. extra: 1557/1464,
  21519. bottom: 39.5/1597.49
  21520. }
  21521. },
  21522. dick: {
  21523. height: math.unit(3.858, "feet"),
  21524. name: "Dick",
  21525. image: {
  21526. source: "./media/characters/kayda/dick.svg"
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Macro",
  21533. height: math.unit(28, "feet"),
  21534. default: true
  21535. },
  21536. ]
  21537. ))
  21538. characterMakers.push(() => makeCharacter(
  21539. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  21540. {
  21541. front: {
  21542. height: math.unit(10 + 11/12, "feet"),
  21543. weight: math.unit(1400, "lb"),
  21544. name: "Front",
  21545. image: {
  21546. source: "./media/characters/brian/front.svg",
  21547. extra: 737/692,
  21548. bottom: 55.4/785
  21549. }
  21550. },
  21551. },
  21552. [
  21553. {
  21554. name: "Normal",
  21555. height: math.unit(10 + 11/12, "feet"),
  21556. default: true
  21557. },
  21558. ]
  21559. ))
  21560. characterMakers.push(() => makeCharacter(
  21561. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  21562. {
  21563. front: {
  21564. height: math.unit(5 + 8/12, "feet"),
  21565. weight: math.unit(140, "lb"),
  21566. name: "Front",
  21567. image: {
  21568. source: "./media/characters/khemri/front.svg",
  21569. extra: 4780/4059,
  21570. bottom: 80.1/4859.25
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Micro",
  21577. height: math.unit(6, "inches")
  21578. },
  21579. {
  21580. name: "Normal",
  21581. height: math.unit(5 + 8/12, "feet"),
  21582. default: true
  21583. },
  21584. ]
  21585. ))
  21586. characterMakers.push(() => makeCharacter(
  21587. { name: "Felix Braveheart" },
  21588. {
  21589. front: {
  21590. height: math.unit(13, "feet"),
  21591. weight: math.unit(1700, "lb"),
  21592. name: "Front",
  21593. image: {
  21594. source: "./media/characters/felix-braveheart/front.svg",
  21595. extra: 1222/1157,
  21596. bottom: 53.2/1280
  21597. }
  21598. },
  21599. back: {
  21600. height: math.unit(13, "feet"),
  21601. weight: math.unit(1700, "lb"),
  21602. name: "Back",
  21603. image: {
  21604. source: "./media/characters/felix-braveheart/back.svg",
  21605. extra: 1277/1203,
  21606. bottom: 50.2/1327
  21607. }
  21608. },
  21609. feral: {
  21610. height: math.unit(6, "feet"),
  21611. weight: math.unit(400, "lb"),
  21612. name: "Feral",
  21613. image: {
  21614. source: "./media/characters/felix-braveheart/feral.svg",
  21615. extra: 682/625,
  21616. bottom: 6.9/688
  21617. }
  21618. },
  21619. },
  21620. [
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(13, "feet"),
  21624. default: true
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Shadow Blade" },
  21630. {
  21631. side: {
  21632. height: math.unit(5 + 11/12, "feet"),
  21633. weight: math.unit(1400, "lb"),
  21634. name: "Side",
  21635. image: {
  21636. source: "./media/characters/shadow-blade/side.svg",
  21637. extra: 1726/1267,
  21638. bottom: 58.4/1785
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(5 + 11/12, "feet"),
  21646. default: true
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Karla Halldor" },
  21652. {
  21653. front: {
  21654. height: math.unit(1 + 6/12, "feet"),
  21655. weight: math.unit(25, "lb"),
  21656. name: "Front",
  21657. image: {
  21658. source: "./media/characters/karla-halldor/front.svg",
  21659. extra: 1459/1383,
  21660. bottom: 12/1472
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(1 + 6/12, "feet"),
  21668. default: true
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Ariam" },
  21674. {
  21675. front: {
  21676. height: math.unit(6 + 2/12, "feet"),
  21677. weight: math.unit(160, "lb"),
  21678. name: "Front",
  21679. image: {
  21680. source: "./media/characters/ariam/front.svg",
  21681. extra: 714/617,
  21682. bottom: 23.4/737,
  21683. }
  21684. },
  21685. squatting: {
  21686. height: math.unit(4.1, "feet"),
  21687. weight: math.unit(160, "lb"),
  21688. name: "Squatting",
  21689. image: {
  21690. source: "./media/characters/ariam/squatting.svg",
  21691. extra: 2617/2112,
  21692. bottom: 61.2/2681,
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Normal",
  21699. height: math.unit(6 + 2/12, "feet"),
  21700. default: true
  21701. },
  21702. {
  21703. name: "Normal+",
  21704. height: math.unit(4, "meters")
  21705. },
  21706. {
  21707. name: "Macro",
  21708. height: math.unit(50, "meters")
  21709. },
  21710. {
  21711. name: "Macro+",
  21712. height: math.unit(100, "meters")
  21713. },
  21714. {
  21715. name: "Megamacro",
  21716. height: math.unit(20, "km")
  21717. },
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Qodri Class-of-'Fortwelve-Six" },
  21722. {
  21723. front: {
  21724. height: math.unit(1.67, "meters"),
  21725. weight: math.unit(140, "lb"),
  21726. name: "Front",
  21727. image: {
  21728. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  21729. extra: 438/410,
  21730. bottom: 0.75/439
  21731. }
  21732. },
  21733. },
  21734. [
  21735. {
  21736. name: "Shrunken",
  21737. height: math.unit(7.6, "cm")
  21738. },
  21739. {
  21740. name: "Human Scale",
  21741. height: math.unit(1.67, "meters")
  21742. },
  21743. {
  21744. name: "Wolxi Scale",
  21745. height: math.unit(36.7, "meters"),
  21746. default: true
  21747. },
  21748. ]
  21749. ))
  21750. characterMakers.push(() => makeCharacter(
  21751. { name: "Izue Two-Mothers" },
  21752. {
  21753. front: {
  21754. height: math.unit(1.73, "meters"),
  21755. weight: math.unit(240, "lb"),
  21756. name: "Front",
  21757. image: {
  21758. source: "./media/characters/izue-two-mothers/front.svg",
  21759. extra: 469/437,
  21760. bottom: 1.24/470.6
  21761. }
  21762. },
  21763. },
  21764. [
  21765. {
  21766. name: "Shrunken",
  21767. height: math.unit(7.86, "cm")
  21768. },
  21769. {
  21770. name: "Human Scale",
  21771. height: math.unit(1.73, "meters")
  21772. },
  21773. {
  21774. name: "Wolxi Scale",
  21775. height: math.unit(38, "meters"),
  21776. default: true
  21777. },
  21778. ]
  21779. ))
  21780. characterMakers.push(() => makeCharacter(
  21781. { name: "Teeku Love-Shack" },
  21782. {
  21783. front: {
  21784. height: math.unit(1.55, "meters"),
  21785. weight: math.unit(120, "lb"),
  21786. name: "Front",
  21787. image: {
  21788. source: "./media/characters/teeku-love-shack/front.svg",
  21789. extra: 387/362,
  21790. bottom: 1.51/388
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Shrunken",
  21797. height: math.unit(7, "cm")
  21798. },
  21799. {
  21800. name: "Human Scale",
  21801. height: math.unit(1.55, "meters")
  21802. },
  21803. {
  21804. name: "Wolxi Scale",
  21805. height: math.unit(34.1, "meters"),
  21806. default: true
  21807. },
  21808. ]
  21809. ))
  21810. characterMakers.push(() => makeCharacter(
  21811. { name: "Dejma the Red" },
  21812. {
  21813. front: {
  21814. height: math.unit(1.83, "meters"),
  21815. weight: math.unit(135, "lb"),
  21816. name: "Front",
  21817. image: {
  21818. source: "./media/characters/dejma-the-red/front.svg",
  21819. extra: 480/458,
  21820. bottom: 1.8/482
  21821. }
  21822. },
  21823. },
  21824. [
  21825. {
  21826. name: "Shrunken",
  21827. height: math.unit(8.3, "cm")
  21828. },
  21829. {
  21830. name: "Human Scale",
  21831. height: math.unit(1.83, "meters")
  21832. },
  21833. {
  21834. name: "Wolxi Scale",
  21835. height: math.unit(40, "meters"),
  21836. default: true
  21837. },
  21838. ]
  21839. ))
  21840. characterMakers.push(() => makeCharacter(
  21841. { name: "Aki" },
  21842. {
  21843. front: {
  21844. height: math.unit(1.78, "meters"),
  21845. weight: math.unit(65, "kg"),
  21846. name: "Front",
  21847. image: {
  21848. source: "./media/characters/aki/front.svg",
  21849. extra: 452/415
  21850. }
  21851. },
  21852. frontNsfw: {
  21853. height: math.unit(1.78, "meters"),
  21854. weight: math.unit(65, "kg"),
  21855. name: "Front (NSFW)",
  21856. image: {
  21857. source: "./media/characters/aki/front-nsfw.svg",
  21858. extra: 452/415
  21859. }
  21860. },
  21861. back: {
  21862. height: math.unit(1.78, "meters"),
  21863. weight: math.unit(65, "kg"),
  21864. name: "Back",
  21865. image: {
  21866. source: "./media/characters/aki/back.svg",
  21867. extra: 452/415
  21868. }
  21869. },
  21870. rump: {
  21871. height: math.unit(2.05, "feet"),
  21872. name: "Rump",
  21873. image: {
  21874. source: "./media/characters/aki/rump.svg"
  21875. }
  21876. },
  21877. dick: {
  21878. height: math.unit(0.95, "feet"),
  21879. name: "Dick",
  21880. image: {
  21881. source: "./media/characters/aki/dick.svg"
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Micro",
  21888. height: math.unit(15, "cm")
  21889. },
  21890. {
  21891. name: "Normal",
  21892. height: math.unit(178, "cm"),
  21893. default: true
  21894. },
  21895. {
  21896. name: "Macro",
  21897. height: math.unit(214, "m")
  21898. },
  21899. {
  21900. name: "Macro+",
  21901. height: math.unit(534, "m")
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Ari" },
  21907. {
  21908. front: {
  21909. height: math.unit(5 + 5/12, "feet"),
  21910. weight: math.unit(120, "lb"),
  21911. name: "Front",
  21912. image: {
  21913. source: "./media/characters/ari/front.svg",
  21914. extra: 714.5/682,
  21915. bottom: 8/722.5
  21916. }
  21917. },
  21918. },
  21919. [
  21920. {
  21921. name: "Normal",
  21922. height: math.unit(5 + 5/12, "feet")
  21923. },
  21924. {
  21925. name: "Macro",
  21926. height: math.unit(100, "feet"),
  21927. default: true
  21928. },
  21929. {
  21930. name: "Megamacro",
  21931. height: math.unit(100, "miles")
  21932. },
  21933. {
  21934. name: "Gigamacro",
  21935. height: math.unit(80000, "miles")
  21936. },
  21937. ]
  21938. ))
  21939. characterMakers.push(() => makeCharacter(
  21940. { name: "Bolt" },
  21941. {
  21942. side: {
  21943. height: math.unit(9, "feet"),
  21944. weight: math.unit(400, "kg"),
  21945. name: "Side",
  21946. image: {
  21947. source: "./media/characters/bolt/side.svg",
  21948. extra: 1126/896,
  21949. bottom: 60/1187.3,
  21950. }
  21951. },
  21952. },
  21953. [
  21954. {
  21955. name: "Micro",
  21956. height: math.unit(5, "inches")
  21957. },
  21958. {
  21959. name: "Normal",
  21960. height: math.unit(9, "feet"),
  21961. default: true
  21962. },
  21963. {
  21964. name: "Macro",
  21965. height: math.unit(700, "feet")
  21966. },
  21967. {
  21968. name: "Max Size",
  21969. height: math.unit(1.52e22, "yottameters")
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(4.53, "meters"),
  21978. weight: math.unit(3, "tons"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/draekon-sylviar/front.svg",
  21982. extra: 1228/1068,
  21983. bottom: 41/1270
  21984. }
  21985. },
  21986. tail: {
  21987. height: math.unit(1.772, "meter"),
  21988. name: "Tail",
  21989. image: {
  21990. source: "./media/characters/draekon-sylviar/tail.svg"
  21991. }
  21992. },
  21993. head: {
  21994. height: math.unit(1.331, "meter"),
  21995. name: "Head",
  21996. image: {
  21997. source: "./media/characters/draekon-sylviar/head.svg"
  21998. }
  21999. },
  22000. hand: {
  22001. height: math.unit(0.564, "meter"),
  22002. name: "Hand",
  22003. image: {
  22004. source: "./media/characters/draekon-sylviar/hand.svg"
  22005. }
  22006. },
  22007. foot: {
  22008. height: math.unit(0.621, "meter"),
  22009. name: "Foot",
  22010. image: {
  22011. source: "./media/characters/draekon-sylviar/foot.svg",
  22012. bottom: 32/324
  22013. }
  22014. },
  22015. dick: {
  22016. height: math.unit(61, "cm"),
  22017. name: "Dick",
  22018. image: {
  22019. source: "./media/characters/draekon-sylviar/dick.svg"
  22020. }
  22021. },
  22022. dickseparated: {
  22023. height: math.unit(61, "cm"),
  22024. name: "Dick-separated",
  22025. image: {
  22026. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22027. }
  22028. },
  22029. },
  22030. [
  22031. {
  22032. name: "Small",
  22033. height: math.unit(4.53/2, "meters"),
  22034. default: true
  22035. },
  22036. {
  22037. name: "Normal",
  22038. height: math.unit(4.53, "meters"),
  22039. default: true
  22040. },
  22041. {
  22042. name: "Large",
  22043. height: math.unit(4.53*2, "meters"),
  22044. },
  22045. ]
  22046. ))
  22047. characterMakers.push(() => makeCharacter(
  22048. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22049. {
  22050. front: {
  22051. height: math.unit(6 + 2/12, "feet"),
  22052. weight: math.unit(180, "lb"),
  22053. name: "Front",
  22054. image: {
  22055. source: "./media/characters/brawler/front.svg",
  22056. extra: 3301/3027,
  22057. bottom: 138/3439
  22058. }
  22059. },
  22060. },
  22061. [
  22062. {
  22063. name: "Normal",
  22064. height: math.unit(6 + 2/12, "feet"),
  22065. default: true
  22066. },
  22067. ]
  22068. ))
  22069. characterMakers.push(() => makeCharacter(
  22070. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22071. {
  22072. front: {
  22073. height: math.unit(11, "feet"),
  22074. weight: math.unit(1000, "lb"),
  22075. name: "Front",
  22076. image: {
  22077. source: "./media/characters/alex/front.svg",
  22078. bottom: 44.5/620
  22079. }
  22080. },
  22081. },
  22082. [
  22083. {
  22084. name: "Micro",
  22085. height: math.unit(5, "inches")
  22086. },
  22087. {
  22088. name: "Normal",
  22089. height: math.unit(11, "feet"),
  22090. default: true
  22091. },
  22092. {
  22093. name: "Macro",
  22094. height: math.unit(9.5e9, "feet")
  22095. },
  22096. {
  22097. name: "Max Size",
  22098. height: math.unit(1.4e283, "yottameters")
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Zenari" },
  22104. {
  22105. female: {
  22106. height: math.unit(29.9, "m"),
  22107. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  22108. name: "Female",
  22109. image: {
  22110. source: "./media/characters/zenari/female.svg",
  22111. extra: 3281.6/3217,
  22112. bottom: 72.2/3353
  22113. }
  22114. },
  22115. male: {
  22116. height: math.unit(27.7, "m"),
  22117. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  22118. name: "Male",
  22119. image: {
  22120. source: "./media/characters/zenari/male.svg",
  22121. extra: 3008/2991,
  22122. bottom: 54.6/3069
  22123. }
  22124. },
  22125. },
  22126. [
  22127. {
  22128. name: "Macro",
  22129. height: math.unit(29.7, "meters"),
  22130. default: true
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Mactarian" },
  22136. {
  22137. female: {
  22138. height: math.unit(23.8, "m"),
  22139. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22140. name: "Female",
  22141. image: {
  22142. source: "./media/characters/mactarian/female.svg",
  22143. extra: 2662/2569,
  22144. bottom: 73/2736
  22145. }
  22146. },
  22147. male: {
  22148. height: math.unit(23.8, "m"),
  22149. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22150. name: "Male",
  22151. image: {
  22152. source: "./media/characters/mactarian/male.svg",
  22153. extra: 2673/2600,
  22154. bottom: 76/2750
  22155. }
  22156. },
  22157. },
  22158. [
  22159. {
  22160. name: "Macro",
  22161. height: math.unit(23.8, "meters"),
  22162. default: true
  22163. },
  22164. ]
  22165. ))
  22166. characterMakers.push(() => makeCharacter(
  22167. { name: "Umok" },
  22168. {
  22169. female: {
  22170. height: math.unit(19.3, "m"),
  22171. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  22172. name: "Female",
  22173. image: {
  22174. source: "./media/characters/umok/female.svg",
  22175. extra: 2186/2078,
  22176. bottom: 87/2277
  22177. }
  22178. },
  22179. male: {
  22180. height: math.unit(19.5, "m"),
  22181. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  22182. name: "Male",
  22183. image: {
  22184. source: "./media/characters/umok/male.svg",
  22185. extra: 2233/2140,
  22186. bottom: 24.4/2258
  22187. }
  22188. },
  22189. },
  22190. [
  22191. {
  22192. name: "Macro",
  22193. height: math.unit(19.3, "meters"),
  22194. default: true
  22195. },
  22196. ]
  22197. ))
  22198. characterMakers.push(() => makeCharacter(
  22199. { name: "Joraxian" },
  22200. {
  22201. female: {
  22202. height: math.unit(26.15, "m"),
  22203. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  22204. name: "Female",
  22205. image: {
  22206. source: "./media/characters/joraxian/female.svg",
  22207. extra: 2943/2831,
  22208. bottom: 27/2972
  22209. }
  22210. },
  22211. male: {
  22212. height: math.unit(25.4, "m"),
  22213. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  22214. name: "Male",
  22215. image: {
  22216. source: "./media/characters/joraxian/male.svg",
  22217. extra: 2835/2741,
  22218. bottom: 27/2862
  22219. }
  22220. },
  22221. },
  22222. [
  22223. {
  22224. name: "Macro",
  22225. height: math.unit(26.15, "meters"),
  22226. default: true
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Sthara" },
  22232. {
  22233. female: {
  22234. height: math.unit(21.6, "m"),
  22235. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  22236. name: "Female",
  22237. image: {
  22238. source: "./media/characters/sthara/female.svg",
  22239. extra: 2516/2347,
  22240. bottom: 21.5/2537
  22241. }
  22242. },
  22243. male: {
  22244. height: math.unit(24, "m"),
  22245. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  22246. name: "Male",
  22247. image: {
  22248. source: "./media/characters/sthara/male.svg",
  22249. extra: 2732/2607,
  22250. bottom: 23/2732
  22251. }
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Macro",
  22257. height: math.unit(21.6, "meters"),
  22258. default: true
  22259. },
  22260. ]
  22261. ))
  22262. characterMakers.push(() => makeCharacter(
  22263. { name: "Luka Bryzant" },
  22264. {
  22265. front: {
  22266. height: math.unit(6 + 4/12, "feet"),
  22267. weight: math.unit(175, "lb"),
  22268. name: "Front",
  22269. image: {
  22270. source: "./media/characters/luka-bryzant/front.svg",
  22271. extra: 311/289,
  22272. bottom: 4/315
  22273. }
  22274. },
  22275. back: {
  22276. height: math.unit(6 + 4/12, "feet"),
  22277. weight: math.unit(175, "lb"),
  22278. name: "Back",
  22279. image: {
  22280. source: "./media/characters/luka-bryzant/back.svg",
  22281. extra: 311/289,
  22282. bottom: 3.8/313.7
  22283. }
  22284. },
  22285. },
  22286. [
  22287. {
  22288. name: "Micro",
  22289. height: math.unit(10, "inches")
  22290. },
  22291. {
  22292. name: "Normal",
  22293. height: math.unit(6 + 4/12, "feet"),
  22294. default: true
  22295. },
  22296. {
  22297. name: "Large",
  22298. height: math.unit(12, "feet")
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Aman Aquila" },
  22304. {
  22305. front: {
  22306. height: math.unit(5 + 7/12, "feet"),
  22307. weight: math.unit(185, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/aman-aquila/front.svg",
  22311. extra: 1013/976,
  22312. bottom: 45.6/1057
  22313. }
  22314. },
  22315. side: {
  22316. height: math.unit(5 + 7/12, "feet"),
  22317. weight: math.unit(185, "lb"),
  22318. name: "Side",
  22319. image: {
  22320. source: "./media/characters/aman-aquila/side.svg",
  22321. extra: 1054/1011,
  22322. bottom: 15/1070
  22323. }
  22324. },
  22325. back: {
  22326. height: math.unit(5 + 7/12, "feet"),
  22327. weight: math.unit(185, "lb"),
  22328. name: "Back",
  22329. image: {
  22330. source: "./media/characters/aman-aquila/back.svg",
  22331. extra: 1026/970,
  22332. bottom: 12/1039
  22333. }
  22334. },
  22335. head: {
  22336. height: math.unit(1.211, "feet"),
  22337. name: "Head",
  22338. image: {
  22339. source: "./media/characters/aman-aquila/head.svg",
  22340. }
  22341. },
  22342. },
  22343. [
  22344. {
  22345. name: "Minimicro",
  22346. height: math.unit(0.057, "inches")
  22347. },
  22348. {
  22349. name: "Micro",
  22350. height: math.unit(7, "inches")
  22351. },
  22352. {
  22353. name: "Mini",
  22354. height: math.unit(3 + 7/12, "feet")
  22355. },
  22356. {
  22357. name: "Normal",
  22358. height: math.unit(5 + 7/12, "feet"),
  22359. default: true
  22360. },
  22361. {
  22362. name: "Macro",
  22363. height: math.unit(157 + 7/12, "feet")
  22364. },
  22365. {
  22366. name: "Megamacro",
  22367. height: math.unit(1557 + 7/12, "feet")
  22368. },
  22369. {
  22370. name: "Gigamacro",
  22371. height: math.unit(15557 + 7/12, "feet")
  22372. },
  22373. ]
  22374. ))
  22375. characterMakers.push(() => makeCharacter(
  22376. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  22377. {
  22378. front: {
  22379. height: math.unit(3 + 2/12, "inches"),
  22380. weight: math.unit(0.3, "ounces"),
  22381. name: "Front",
  22382. image: {
  22383. source: "./media/characters/hiphae/front.svg",
  22384. extra: 1931/1683,
  22385. bottom: 24/1955
  22386. }
  22387. },
  22388. },
  22389. [
  22390. {
  22391. name: "Normal",
  22392. height: math.unit(3 + 1/2, "inches"),
  22393. default: true
  22394. },
  22395. ]
  22396. ))
  22397. characterMakers.push(() => makeCharacter(
  22398. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  22399. {
  22400. front: {
  22401. height: math.unit(5 + 10/12, "feet"),
  22402. weight: math.unit(165, "lb"),
  22403. name: "Front",
  22404. image: {
  22405. source: "./media/characters/nicky/front.svg",
  22406. extra: 3144/2886,
  22407. bottom: 45.6/3192
  22408. }
  22409. },
  22410. back: {
  22411. height: math.unit(5 + 10/12, "feet"),
  22412. weight: math.unit(165, "lb"),
  22413. name: "Back",
  22414. image: {
  22415. source: "./media/characters/nicky/back.svg",
  22416. extra: 3055/2804,
  22417. bottom: 28.4/3087
  22418. }
  22419. },
  22420. frontclothed: {
  22421. height: math.unit(5 + 10/12, "feet"),
  22422. weight: math.unit(165, "lb"),
  22423. name: "Front-clothed",
  22424. image: {
  22425. source: "./media/characters/nicky/front-clothed.svg",
  22426. extra: 3184.9/2926.9,
  22427. bottom: 86.5/3239.9
  22428. }
  22429. },
  22430. foot: {
  22431. height: math.unit(1.16, "feet"),
  22432. name: "Foot",
  22433. image: {
  22434. source: "./media/characters/nicky/foot.svg"
  22435. }
  22436. },
  22437. feet: {
  22438. height: math.unit(1.34, "feet"),
  22439. name: "Feet",
  22440. image: {
  22441. source: "./media/characters/nicky/feet.svg"
  22442. }
  22443. },
  22444. maw: {
  22445. height: math.unit(0.9, "feet"),
  22446. name: "Maw",
  22447. image: {
  22448. source: "./media/characters/nicky/maw.svg"
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "Normal",
  22455. height: math.unit(5 + 10/12, "feet"),
  22456. default: true
  22457. },
  22458. {
  22459. name: "Macro",
  22460. height: math.unit(60, "feet")
  22461. },
  22462. {
  22463. name: "Megamacro",
  22464. height: math.unit(1, "mile")
  22465. },
  22466. ]
  22467. ))
  22468. characterMakers.push(() => makeCharacter(
  22469. { name: "Blair" },
  22470. {
  22471. side: {
  22472. height: math.unit(10, "feet"),
  22473. weight: math.unit(600, "lb"),
  22474. name: "Side",
  22475. image: {
  22476. source: "./media/characters/blair/side.svg",
  22477. bottom: 16.6/475,
  22478. extra: 458/431
  22479. }
  22480. },
  22481. },
  22482. [
  22483. {
  22484. name: "Micro",
  22485. height: math.unit(8, "inches")
  22486. },
  22487. {
  22488. name: "Normal",
  22489. height: math.unit(10, "feet"),
  22490. default: true
  22491. },
  22492. {
  22493. name: "Macro",
  22494. height: math.unit(180, "feet")
  22495. },
  22496. ]
  22497. ))
  22498. characterMakers.push(() => makeCharacter(
  22499. { name: "Fisher" },
  22500. {
  22501. front: {
  22502. height: math.unit(5 + 4/12, "feet"),
  22503. weight: math.unit(125, "lb"),
  22504. name: "Front",
  22505. image: {
  22506. source: "./media/characters/fisher/front.svg",
  22507. extra: 444/390,
  22508. bottom: 2/444.8
  22509. }
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Micro",
  22515. height: math.unit(4, "inches")
  22516. },
  22517. {
  22518. name: "Normal",
  22519. height: math.unit(5 + 4/12, "feet"),
  22520. default: true
  22521. },
  22522. {
  22523. name: "Macro",
  22524. height: math.unit(100, "feet")
  22525. },
  22526. ]
  22527. ))
  22528. characterMakers.push(() => makeCharacter(
  22529. { name: "Gliss" },
  22530. {
  22531. front: {
  22532. height: math.unit(6.71, "feet"),
  22533. weight: math.unit(200, "lb"),
  22534. capacity: math.unit(1000000, "people"),
  22535. name: "Front",
  22536. image: {
  22537. source: "./media/characters/gliss/front.svg",
  22538. extra: 2347/2231,
  22539. bottom: 113/2462
  22540. }
  22541. },
  22542. hammerspaceSize: {
  22543. height: math.unit(6.71*717, "feet"),
  22544. weight: math.unit(200, "lb"),
  22545. capacity: math.unit(1000000, "people"),
  22546. name: "Hammerspace Size",
  22547. image: {
  22548. source: "./media/characters/gliss/front.svg",
  22549. extra: 2347/2231,
  22550. bottom: 113/2462
  22551. }
  22552. },
  22553. },
  22554. [
  22555. {
  22556. name: "Normal",
  22557. height: math.unit(6.71, "feet"),
  22558. default: true
  22559. },
  22560. ]
  22561. ))
  22562. characterMakers.push(() => makeCharacter(
  22563. { name: "Dune Anderson" },
  22564. {
  22565. side: {
  22566. height: math.unit(1.44, "m"),
  22567. weight: math.unit(80, "kg"),
  22568. name: "Side",
  22569. image: {
  22570. source: "./media/characters/dune-anderson/side.svg",
  22571. bottom: 49/1426
  22572. }
  22573. },
  22574. },
  22575. [
  22576. {
  22577. name: "Wolf-sized",
  22578. height: math.unit(1.44, "meters")
  22579. },
  22580. {
  22581. name: "Normal",
  22582. height: math.unit(5.05, "meters"),
  22583. default: true
  22584. },
  22585. {
  22586. name: "Big",
  22587. height: math.unit(14.4, "meters")
  22588. },
  22589. {
  22590. name: "Huge",
  22591. height: math.unit(144, "meters")
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Hind" },
  22597. {
  22598. front: {
  22599. height: math.unit(7, "feet"),
  22600. weight: math.unit(425, "lb"),
  22601. name: "Front",
  22602. image: {
  22603. source: "./media/characters/hind/front.svg",
  22604. extra: 2091/1860,
  22605. bottom: 129/2220
  22606. }
  22607. },
  22608. back: {
  22609. height: math.unit(7, "feet"),
  22610. weight: math.unit(425, "lb"),
  22611. name: "Back",
  22612. image: {
  22613. source: "./media/characters/hind/back.svg",
  22614. extra: 2091/1860,
  22615. bottom: 24.6/2309
  22616. }
  22617. },
  22618. tail: {
  22619. height: math.unit(2.8, "feet"),
  22620. name: "Tail",
  22621. image: {
  22622. source: "./media/characters/hind/tail.svg"
  22623. }
  22624. },
  22625. head: {
  22626. height: math.unit(2.55, "feet"),
  22627. name: "Head",
  22628. image: {
  22629. source: "./media/characters/hind/head.svg"
  22630. }
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "XS",
  22636. height: math.unit(0.7, "feet")
  22637. },
  22638. {
  22639. name: "Normal",
  22640. height: math.unit(7, "feet"),
  22641. default: true
  22642. },
  22643. {
  22644. name: "XL",
  22645. height: math.unit(70, "feet")
  22646. },
  22647. ]
  22648. ))
  22649. characterMakers.push(() => makeCharacter(
  22650. { name: "Dylan (Skaven)" },
  22651. {
  22652. front: {
  22653. height: math.unit(6, "feet"),
  22654. weight: math.unit(150, "lb"),
  22655. name: "Front",
  22656. image: {
  22657. source: "./media/characters/dylan-skaven/front.svg",
  22658. extra: 2318/2063,
  22659. bottom: 93.4/2410
  22660. }
  22661. },
  22662. },
  22663. [
  22664. {
  22665. name: "Nano",
  22666. height: math.unit(1, "mm")
  22667. },
  22668. {
  22669. name: "Micro",
  22670. height: math.unit(1, "cm")
  22671. },
  22672. {
  22673. name: "Normal",
  22674. height: math.unit(2.1, "meters"),
  22675. default: true
  22676. },
  22677. ]
  22678. ))
  22679. characterMakers.push(() => makeCharacter(
  22680. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  22681. {
  22682. front: {
  22683. height: math.unit(7 + 5/12, "feet"),
  22684. weight: math.unit(357, "lb"),
  22685. name: "Front",
  22686. image: {
  22687. source: "./media/characters/solex-draconov/front.svg",
  22688. extra: 1993/1865,
  22689. bottom: 117/2111
  22690. }
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Natural Height",
  22696. height: math.unit(7 + 5/12, "feet"),
  22697. default: true
  22698. },
  22699. {
  22700. name: "Macro",
  22701. height: math.unit(350, "feet")
  22702. },
  22703. {
  22704. name: "Macro+",
  22705. height: math.unit(1000, "feet")
  22706. },
  22707. {
  22708. name: "Megamacro",
  22709. height: math.unit(20, "km")
  22710. },
  22711. {
  22712. name: "Megamacro+",
  22713. height: math.unit(1000, "km")
  22714. },
  22715. {
  22716. name: "Gigamacro",
  22717. height: math.unit(2.5, "Gm")
  22718. },
  22719. {
  22720. name: "Teramacro",
  22721. height: math.unit(15, "Tm")
  22722. },
  22723. {
  22724. name: "Galactic",
  22725. height: math.unit(30, "Zm")
  22726. },
  22727. {
  22728. name: "Universal",
  22729. height: math.unit(21000, "Ym")
  22730. },
  22731. {
  22732. name: "Omniversal",
  22733. height: math.unit(9.861e50, "Ym")
  22734. },
  22735. {
  22736. name: "Existential",
  22737. height: math.unit(1e300, "meters")
  22738. },
  22739. ]
  22740. ))
  22741. characterMakers.push(() => makeCharacter(
  22742. { name: "Mandarax" },
  22743. {
  22744. side: {
  22745. height: math.unit(25, "feet"),
  22746. weight: math.unit(90000, "lb"),
  22747. name: "Side",
  22748. image: {
  22749. source: "./media/characters/mandarax/side.svg",
  22750. extra: 614/332,
  22751. bottom: 55/630
  22752. }
  22753. },
  22754. head: {
  22755. height: math.unit(11.4, "feet"),
  22756. name: "Head",
  22757. image: {
  22758. source: "./media/characters/mandarax/head.svg"
  22759. }
  22760. },
  22761. belly: {
  22762. height: math.unit(33, "feet"),
  22763. name: "Belly",
  22764. capacity: math.unit(500, "people"),
  22765. image: {
  22766. source: "./media/characters/mandarax/belly.svg"
  22767. }
  22768. },
  22769. dick: {
  22770. height: math.unit(8.46, "feet"),
  22771. name: "Dick",
  22772. image: {
  22773. source: "./media/characters/mandarax/dick.svg"
  22774. }
  22775. },
  22776. top: {
  22777. height: math.unit(28, "meters"),
  22778. name: "Top",
  22779. image: {
  22780. source: "./media/characters/mandarax/top.svg"
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Normal",
  22787. height: math.unit(25, "feet"),
  22788. default: true
  22789. },
  22790. ]
  22791. ))
  22792. characterMakers.push(() => makeCharacter(
  22793. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  22794. {
  22795. front: {
  22796. height: math.unit(5, "feet"),
  22797. weight: math.unit(90, "lb"),
  22798. name: "Front",
  22799. image: {
  22800. source: "./media/characters/pixil/front.svg",
  22801. extra: 2000/1618,
  22802. bottom: 12.3/2011
  22803. }
  22804. },
  22805. },
  22806. [
  22807. {
  22808. name: "Normal",
  22809. height: math.unit(5, "feet"),
  22810. default: true
  22811. },
  22812. {
  22813. name: "Megamacro",
  22814. height: math.unit(10, "miles"),
  22815. },
  22816. ]
  22817. ))
  22818. characterMakers.push(() => makeCharacter(
  22819. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  22820. {
  22821. front: {
  22822. height: math.unit(7 + 2/12, "feet"),
  22823. weight: math.unit(200, "lb"),
  22824. name: "Front",
  22825. image: {
  22826. source: "./media/characters/angel/front.svg",
  22827. extra: 1830/1737,
  22828. bottom: 22.6/1854,
  22829. }
  22830. },
  22831. },
  22832. [
  22833. {
  22834. name: "Normal",
  22835. height: math.unit(7 + 2/12, "feet")
  22836. },
  22837. {
  22838. name: "Macro",
  22839. height: math.unit(1000, "feet")
  22840. },
  22841. {
  22842. name: "Megamacro",
  22843. height: math.unit(2, "miles")
  22844. },
  22845. {
  22846. name: "Gigamacro",
  22847. height: math.unit(20, "earths")
  22848. },
  22849. ]
  22850. ))
  22851. characterMakers.push(() => makeCharacter(
  22852. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  22853. {
  22854. front: {
  22855. height: math.unit(5, "feet"),
  22856. weight: math.unit(180, "lb"),
  22857. name: "Front",
  22858. image: {
  22859. source: "./media/characters/mekana/front.svg",
  22860. extra: 1671/1605,
  22861. bottom: 3.5/1691
  22862. }
  22863. },
  22864. side: {
  22865. height: math.unit(5, "feet"),
  22866. weight: math.unit(180, "lb"),
  22867. name: "Side",
  22868. image: {
  22869. source: "./media/characters/mekana/side.svg",
  22870. extra: 1671/1605,
  22871. bottom: 3.5/1691
  22872. }
  22873. },
  22874. back: {
  22875. height: math.unit(5, "feet"),
  22876. weight: math.unit(180, "lb"),
  22877. name: "Back",
  22878. image: {
  22879. source: "./media/characters/mekana/back.svg",
  22880. extra: 1671/1605,
  22881. bottom: 3.5/1691
  22882. }
  22883. },
  22884. },
  22885. [
  22886. {
  22887. name: "Normal",
  22888. height: math.unit(5, "feet")
  22889. },
  22890. ]
  22891. ))
  22892. //characters
  22893. function makeCharacters() {
  22894. const results = [];
  22895. characterMakers.forEach(character => {
  22896. results.push(character());
  22897. });
  22898. return results;
  22899. }